/* ==========================================================================
   LunchBox ClassX — shared stylesheet
   Used by: index.html, apps.html, services.html, contact.html, privacy.html
   ========================================================================== */

:root {
  --bg:        #08090c;
  --bg-2:      #0d0f14;
  --surface:   #12141b;
  --surface-2: #171a23;
  --line:      #23273312;
  --border:    rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.16);

  --text:      #eef1f6;
  --text-dim:  #a4acbb;
  --text-mute: #6f7787;

  --accent:    #ff7a3d;
  --accent-2:  #4dd6ff;
  --accent-3:  #a879ff;
  --good:      #3ddc97;

  /* Headings only — the orange→cyan sweep reads well as large text on dark. */
  --grad: linear-gradient(120deg, var(--accent) 0%, #ff9d5c 38%, var(--accent-2) 100%);
  /* Buttons — solid-feeling orange so dark label text stays high-contrast. */
  --grad-btn: linear-gradient(120deg, #ff9256 0%, #ff7a3d 55%, #f5601f 100%);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 12% -8%, rgba(255, 122, 61, 0.16), transparent 65%),
    radial-gradient(760px 480px at 92% 4%, rgba(77, 214, 255, 0.12), transparent 62%),
    radial-gradient(700px 700px at 50% 108%, rgba(168, 121, 255, 0.10), transparent 60%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; color: var(--text-dim); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 9, 12, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  font-size: 1.05rem;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand small {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--text-mute);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: .93rem;
  font-weight: 500;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); text-decoration: none; }
.nav-links a.active { color: var(--text); background: rgba(255, 255, 255, 0.08); }

/* Header CTA — same shape and weight as the other nav items, just outlined */
.nav-links a.nav-cta {
  border: 1px solid rgba(255, 122, 61, 0.5);
  color: var(--text);
  margin-left: 6px;
}
.nav-links a.nav-cta:hover {
  border-color: var(--accent);
  background: rgba(255, 122, 61, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  width: 42px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--grad-btn);
  color: #180b02;                /* ~9:1 against the lightest part of the gradient */
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 122, 61, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(120deg, #ffa066 0%, #ff8a4d 55%, #ff6d2c 100%);
  box-shadow: 0 16px 40px rgba(255, 122, 61, 0.38);
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-play:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hi);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.28); }

.btn-sm { padding: 10px 18px; font-size: .87rem; }
.btn:disabled, .btn.is-disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Google Play badge-style button */
.btn-play {
  background: #fff;
  color: #101216;
  padding: 11px 20px 11px 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
.btn-play:hover { background: #f1f3f7; }
.btn-play svg { width: 22px; height: 22px; flex: none; }
.btn-play .play-lines { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.btn-play .play-lines small { font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; opacity: .72; font-weight: 600; }
.btn-play .play-lines strong { font-size: .95rem; font-weight: 700; }

/* ---------- Sections ---------- */

.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.022) 12%, rgba(255, 255, 255, 0.022) 88%, transparent); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.06rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head.center .eyebrow::before { display: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(72px, 11vw, 132px) 0 clamp(72px, 10vw, 118px);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero-lede { font-size: clamp(1.04rem, 1.6vw, 1.2rem); max-width: 44ch; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: .82rem;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 0 rgba(61, 220, 151, 0.6);
  animation: pulse 2.4s infinite;
  flex: none;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(61, 220, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); }
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-stats div strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-stats div span { font-size: .82rem; color: var(--text-mute); }

/* Floating phone mock */
.hero-art { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 18.5;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #262b36, #0e1015 55%);
  border: 1px solid var(--border-hi);
  box-shadow: var(--shadow), 0 0 90px rgba(255, 122, 61, 0.14);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-16px) rotate(1.2deg); }
}
.phone-screen {
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(170deg, #14161e, #0a0b0f);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 20px;
  border-radius: 999px;
  background: #05060a;
  z-index: 2;
}
.mini-app {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
}
.mini-app .app-glyph { width: 40px; height: 40px; border-radius: 12px; flex: none; box-shadow: none; }
.mini-app b { font-size: .84rem; display: block; letter-spacing: -0.01em; }
.mini-app span { font-size: .68rem; color: var(--text-mute); }
.mini-bar {
  height: 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}
.mini-bar.w70 { width: 70%; }
.mini-bar.w45 { width: 45%; }
.mini-bar.accent { background: var(--grad); opacity: .75; }

/* ---------- Cards / grids ---------- */

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px 220px at 50% -30%, rgba(255, 122, 61, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-hi); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card h3 { margin-bottom: .45em; }
.card p { font-size: .95rem; margin-bottom: 0; }

/* App cards */
.app-card { display: flex; flex-direction: column; }
.app-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.app-glyph {
  width: 66px; height: 66px;
  border-radius: 19px;
  flex: none;
  object-fit: cover;          /* real store icons are square PNGs */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}
.app-head h3 { margin: 0; font-size: 1.18rem; }
.app-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 9px;
}
.app-card ul li {
  position: relative;
  padding-left: 26px;
  font-size: .91rem;
  color: var(--text-dim);
}
.app-card ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.app-card .btn { margin-top: auto; align-self: flex-start; }

.tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--border-hi);
  color: var(--text-mute);
  background: rgba(255, 255, 255, 0.04);
}
.tag-live { color: var(--good); border-color: rgba(61, 220, 151, 0.35); background: rgba(61, 220, 151, 0.1); }
.tag-new  { color: var(--accent); border-color: rgba(255, 122, 61, 0.4); background: rgba(255, 122, 61, 0.1); }
.tag-soon { color: var(--accent-3); border-color: rgba(168, 121, 255, 0.4); background: rgba(168, 121, 255, 0.1); }

/* Coming soon block */
.soon {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 24px;
  border: 1px dashed rgba(168, 121, 255, 0.35);
  background:
    radial-gradient(560px 300px at 12% 0%, rgba(168, 121, 255, 0.15), transparent 65%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
}
.soon-logo {
  width: 190px; height: 190px;
  border-radius: 34px;
  border: 1px dashed rgba(168, 121, 255, 0.45);
  background: rgba(168, 121, 255, 0.07);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-mute);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px;
}
.soon-logo svg { width: 62px; height: 62px; margin-bottom: 10px; opacity: .75; }
.soon + .soon { margin-top: 24px; }

/* Real artwork in a coming-soon tile (vs. the dashed placeholder) */
img.soon-logo {
  border: 1px solid var(--border-hi);
  border-style: solid;
  background: none;
  padding: 0;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.tag-game { color: var(--accent-2); border-color: rgba(77, 214, 255, 0.4); background: rgba(77, 214, 255, 0.1); }
.tag + .tag { margin-left: 7px; }
.soon h2 { margin: 14px 0 12px; }

/* Platform availability pills */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.platforms li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--border-hi);
  background: rgba(255, 255, 255, 0.04);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.platforms svg { width: 16px; height: 16px; fill: var(--accent-3); flex: none; }

/* App detail rows (apps.html) */
.app-detail {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 52px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  margin-bottom: 26px;
  scroll-margin-top: 90px;
}
.app-detail:nth-child(even) .app-showcase { order: -1; }
.app-detail h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 14px 0 14px; }
.app-detail .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}
.app-detail .feature-grid li {
  position: relative;
  padding-left: 26px;
  font-size: .93rem;
  color: var(--text-dim);
}
.app-detail .feature-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(255, 122, 61, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 61, 0.5);
}
.app-detail .feature-grid li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: .72em;
  width: 6px; height: 3px;
  border-left: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(-45deg);
}
.app-showcase {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    radial-gradient(420px 260px at 50% 20%, rgba(255, 255, 255, 0.07), transparent 70%),
    rgba(0, 0, 0, 0.3);
}
.app-showcase .app-glyph {
  width: clamp(110px, 22vw, 170px);
  height: clamp(110px, 22vw, 170px);
  border-radius: 30%;
}

/* Services */
.svc-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(255, 122, 61, 0.12);
  border: 1px solid rgba(255, 122, 61, 0.25);
}
.svc-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.svc-icon.cy { background: rgba(77, 214, 255, 0.1); border-color: rgba(77, 214, 255, 0.25); }
.svc-icon.cy svg { stroke: var(--accent-2); }
.svc-icon.pu { background: rgba(168, 121, 255, 0.1); border-color: rgba(168, 121, 255, 0.25); }
.svc-icon.pu svg { stroke: var(--accent-3); }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.step h3 { font-size: 1.05rem; margin-bottom: .3em; }
.step p { margin: 0; font-size: .93rem; }

/* CTA band */
.cta-band {
  position: relative;
  text-align: center;
  padding: 62px 34px;
  border-radius: 26px;
  border: 1px solid var(--border-hi);
  background:
    radial-gradient(700px 340px at 50% -30%, rgba(255, 122, 61, 0.2), transparent 68%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
}
.cta-band h2 { max-width: 18ch; margin: 0 auto .5em; }
.cta-band p { max-width: 56ch; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Prose (privacy page) ---------- */

.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2em; scroll-margin-top: 100px; }
.prose h3 { font-size: 1.08rem; margin-top: 1.7em; }
.prose h4 { font-size: .98rem; margin: 1.5em 0 .45em; color: var(--text); font-weight: 650; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.6em;
  font-size: .9rem;
}
.prose table th,
.prose table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-dim);
}
.prose table th { color: var(--text); font-weight: 650; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.prose table tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.prose ul, .prose ol { color: var(--text-dim); padding-left: 22px; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose a { text-decoration: underline; }
.toc {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  padding: 22px 26px;
  margin-bottom: 44px;
}
.toc h3 { margin-top: 0; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); }
.toc ol { columns: 2; column-gap: 34px; margin: 0; }

.page-hero { padding: 74px 0 30px; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); }
.page-hero p { max-width: 62ch; font-size: 1.05rem; }

.note {
  border-left: 3px solid var(--accent);
  background: rgba(255, 122, 61, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 0 0 1.4em;
}
.note p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
form.card { padding: 34px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 7px;
  color: var(--text-dim);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hi);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 61, 0.18);
}
.field select option { background: #12141b; }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
}
.info-list svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.8; flex: none; margin-top: 3px; }
/* Honeypot — off-screen for humans, still fillable by naive bots.
   Deliberately NOT display:none, which smarter bots know to skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form feedback */
.form-status {
  font-size: .88rem;
  margin: 14px 0 0;
  color: var(--text-dim);
  min-height: 1.2em;
}
.form-status.ok {
  color: var(--good);
  border-left: 3px solid var(--good);
  background: rgba(61, 220, 151, 0.08);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
}
.form-status.bad {
  color: #ff9c8a;
  border-left: 3px solid #ff6b52;
  background: rgba(255, 107, 82, 0.08);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
}

.info-list b { display: block; font-size: .93rem; }
.info-list span { font-size: .89rem; color: var(--text-dim); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  padding: 62px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h4 {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--text-dim); font-size: .92rem; }
.footer-grid a:hover { color: var(--text); }
.footer-about p { font-size: .92rem; max-width: 34ch; margin-top: 16px; }
.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--text-mute);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone { animation: none; }
  .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .soon { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 34px 26px; }
  .soon .platforms { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .app-detail { grid-template-columns: 1fr; gap: 34px; padding: 32px 26px; }
  .app-detail:nth-child(even) .app-showcase { order: 0; }
  .app-showcase { max-width: 320px; margin: 0 auto; width: 100%; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 16px 20px;
    background: rgba(10, 11, 15, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 1rem; }
  .nav-links a.nav-cta { margin: 10px 0 0; text-align: center; }
  .section { padding: 70px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .card { padding: 26px; }
  .toc ol { columns: 1; }
  .hero-stats { gap: 26px; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .app-detail .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .hero-cta .btn { width: 100%; }
}
