/* Kashi for Venues — landing styles.
   Built on the app's real dark tokens (constants/theme.ts): warm near-black canvas,
   single fresh-green signature, amber reserved for deals/events. Nunito throughout. */

:root {
  /* surfaces */
  --bg: #0E0F0D;
  --bg-2: #121413;
  --surface: #181A18;
  --surface-2: #222523;
  --surface-3: #2C302D;
  --hairline: rgba(244, 243, 238, 0.10);
  --hairline-soft: rgba(244, 243, 238, 0.06);

  /* text */
  --text: #F4F3EE;
  --dim: #B6B9B0;
  --mute: #80847B;

  /* signature green — money, action, positive */
  --accent: #34E27A;
  --accent-dim: #1F8F50;
  --on-accent: #07210F;
  --accent-tint: rgba(52, 226, 122, 0.12);
  --accent-glow: rgba(52, 226, 122, 0.22);

  /* deal/event amber — time-limited only */
  --deal: #FF8A3D;
  --deal-dim: #C75F23;
  --on-deal: #2A1405;
  --deal-tint: rgba(255, 138, 61, 0.12);

  --star: #FFC15A;

  /* shape */
  --r-pill: 999px;
  --r-btn: 16px;
  --r-card: 20px;
  --r-lg: 28px;

  /* fluid type */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.92rem);
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3: clamp(1.95rem, 1.6rem + 1.8vw, 3rem);
  --step-4: clamp(2.5rem, 1.9rem + 3vw, 4.25rem);
  --step-5: clamp(3rem, 2.1rem + 4.6vw, 5.5rem);

  --maxw: 1180px;
  --gutter: clamp(1.1rem, 0.6rem + 2.4vw, 2.5rem);

  /* semantic z-scale */
  --z-base: 1;
  --z-sticky: 50;
  --z-nav: 60;
  --z-overlay: 80;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.js [data-reveal] { opacity: 0; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.05; letter-spacing: -0.03em; margin: 0; text-wrap: balance; font-weight: 800; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.02em; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
strong { font-weight: 800; color: var(--text); }

::selection { background: var(--accent); color: var(--on-accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; scroll-margin-top: 84px; }
.section-pad { padding-block: clamp(4rem, 2.5rem + 7vw, 8rem); }
.tagline { color: var(--dim); font-size: var(--step-1); font-weight: 600; max-width: 44ch; line-height: 1.45; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); font-weight: 800; letter-spacing: 0.01em;
  color: var(--accent); background: var(--accent-tint);
  border: 1px solid color-mix(in oklab, var(--accent) 28%, transparent);
  padding: 0.4rem 0.8rem; border-radius: var(--r-pill);
}
.eyebrow.deal { color: var(--deal); background: var(--deal-tint); border-color: color-mix(in oklab, var(--deal) 30%, transparent); }
.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head h2 { margin-block: 0.9rem 0; }
.section-head .tagline { margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: inherit; font-weight: 800; font-size: var(--step-0);
  padding: 0.85rem 1.4rem; border-radius: var(--r-btn);
  border: 1px solid transparent; background: var(--btn-bg); color: var(--text);
  cursor: pointer; transition: transform 0.18s var(--ease-out), background 0.2s, box-shadow 0.2s, border-color 0.2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn-primary {
  --btn-bg: var(--accent); color: var(--on-accent);
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 14px 40px -8px var(--accent-glow); }
.btn-ghost { background: transparent; border-color: var(--hairline); color: var(--text); }
.btn-ghost:hover { border-color: color-mix(in oklab, var(--text) 35%, transparent); background: var(--surface); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: var(--step-1); border-radius: 18px; }
.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--hairline-soft);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.03em; }
.brand img { width: 34px; height: 34px; }
.brand .tag { font-size: 0.7rem; font-weight: 800; color: var(--accent); background: var(--accent-tint); padding: 0.15rem 0.5rem; border-radius: var(--r-pill); letter-spacing: 0.02em; transform: translateY(-1px); }
.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a:not(.btn) { color: var(--dim); font-weight: 700; font-size: 0.95rem; padding: 0.5rem 0.8rem; border-radius: 10px; transition: color 0.15s, background 0.15s; }
.nav-links a:not(.btn):hover { color: var(--text); background: var(--surface); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 1rem + 5vw, 5rem); padding-bottom: clamp(3rem, 1.5rem + 6vw, 7rem); overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 80%;
  background: radial-gradient(60% 70% at 75% 10%, var(--accent-glow), transparent 70%),
              radial-gradient(50% 60% at 10% 0%, rgba(255,138,61,0.10), transparent 70%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center;
}
.hero h1 { font-size: var(--step-5); font-weight: 900; margin-block: 1.4rem 0; }
.hero h1 .g { color: var(--accent); }
.hero .tagline { margin-top: 1.5rem; font-size: var(--step-1); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-trust { margin-top: 1.6rem; color: var(--mute); font-size: var(--step--1); font-weight: 700; display: flex; align-items: center; gap: 0.6rem; }
.hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

/* hero stat strip */
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 0.5rem + 2vw, 2.6rem); margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--hairline-soft); }
.stat .n { font-size: var(--step-3); font-weight: 900; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.stat .n.g { color: var(--accent); }
.stat .l { color: var(--dim); font-size: var(--step--1); font-weight: 700; margin-top: 0.4rem; max-width: 18ch; }

/* ---------- phone ---------- */
.phone-stage { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; width: min(300px, 78vw); aspect-ratio: 300 / 620;
  background: linear-gradient(180deg, #16181 0%, #0c0d0c 100%);
  background: #0a0b0a; border-radius: 42px; padding: 11px;
  box-shadow: 0 2px 0 1px rgba(244,243,238,0.06) inset, 0 40px 80px -30px #000, 0 0 0 1.5px #2a2d2a;
}
.phone::after { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #050605; border-radius: var(--r-pill); z-index: 3; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--bg); }

/* built mini-app UI inside the hero phone (a representation, not a screenshot) */
.app { position: absolute; inset: 0; padding: 40px 16px 16px; display: flex; flex-direction: column; gap: 12px; font-size: 13px; }
.app-top { display: flex; align-items: center; justify-content: space-between; }
.app-hi { color: var(--dim); font-weight: 700; font-size: 12px; }
.app-bal { background: linear-gradient(165deg, var(--surface) 0%, #14241a 100%); border: 1px solid var(--hairline); border-radius: 18px; padding: 14px 16px; }
.app-bal .cap { color: var(--dim); font-size: 11px; font-weight: 700; }
.app-bal .amt { font-size: 30px; font-weight: 900; letter-spacing: -0.04em; margin-top: 2px; }
.app-bal .amt .c { color: var(--accent); }
.app-bal .saved { color: var(--accent); font-weight: 800; font-size: 11px; margin-top: 4px; }
.app-venue { position: relative; border-radius: 18px; overflow: hidden; flex: 1; min-height: 0; border: 1px solid var(--hairline-soft); }
.app-venue img { width: 100%; height: 100%; object-fit: cover; }
.app-venue .shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(8,9,8,0.92) 100%); }
.app-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: var(--on-accent); font-weight: 900; font-size: 12px; padding: 4px 9px; border-radius: var(--r-pill); }
.app-venue .meta { position: absolute; left: 12px; right: 12px; bottom: 12px; }
.app-venue .meta .nm { font-weight: 800; font-size: 15px; }
.app-venue .meta .sub { color: var(--dim); font-size: 11px; font-weight: 700; margin-top: 2px; }
.app-fab { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--on-accent); font-weight: 900; border-radius: 16px; padding: 13px; font-size: 14px; }
.app-tabs { display: flex; justify-content: space-around; padding-top: 6px; color: var(--mute); }
.app-tabs span { font-size: 18px; }
.app-tabs span.on { color: var(--accent); }

/* floating chips around hero phone */
.chip { position: absolute; background: color-mix(in oklab, var(--surface) 88%, transparent); backdrop-filter: blur(8px); border: 1px solid var(--hairline); border-radius: 16px; padding: 10px 13px; box-shadow: 0 18px 40px -18px #000; font-weight: 800; }
.chip .k { display: block; font-size: 10px; font-weight: 800; color: var(--mute); letter-spacing: 0.02em; }
.chip .v { font-size: 17px; font-weight: 900; letter-spacing: -0.02em; }
.chip-earn { top: 12%; right: -7%; }
.chip-earn .v { color: var(--accent); }
.chip-repeat { bottom: 14%; left: -10%; }
.chip-repeat .v { color: var(--text); }
.chip ._ico { font-size: 13px; }

/* ---------- logo wall ---------- */
.proof { padding-block: clamp(2.2rem, 1.5rem + 2vw, 3.4rem); border-block: 1px solid var(--hairline-soft); background: var(--bg-2); }
.proof-label { text-align: center; color: var(--mute); font-weight: 800; font-size: var(--step--1); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.8rem; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: clamp(2rem, 1rem + 3vw, 4rem); width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .logo { flex: 0 0 auto; width: 158px; height: 84px; display: grid; place-items: center; padding: 14px 18px; background: #FFFFFF; border-radius: 16px; transition: transform 0.25s var(--ease-out); }
.marquee-track .logo:hover { transform: translateY(-3px); }
.marquee-track .logo img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- problem ---------- */
.leak-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; }
.leak {
  background: var(--surface); border: 1px solid var(--hairline-soft); border-radius: var(--r-card);
  padding: 1.6rem 1.5rem; position: relative; overflow: hidden;
}
.leak .ico { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--danger, #FF5A5F); color: #2a0809; font-weight: 900; margin-bottom: 1rem; background: rgba(255,90,95,0.14); color: #FF8A8D; font-size: 20px; }
.leak h3 { margin-bottom: 0.5rem; }
.leak p { color: var(--dim); font-size: var(--step--1); line-height: 1.55; }
.leak-answer {
  margin-top: 1.4rem; background: linear-gradient(120deg, #11251a 0%, var(--surface) 70%);
  border: 1px solid color-mix(in oklab, var(--accent) 24%, transparent); border-radius: var(--r-card);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
}
.leak-answer .mk { width: 54px; height: 54px; flex: 0 0 auto; }
.leak-answer p { font-size: var(--step-1); font-weight: 700; color: var(--text); max-width: 60ch; line-height: 1.4; }
.leak-answer .g { color: var(--accent); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--hairline-soft); border-radius: var(--r-card);
  padding: 1.7rem 1.5rem; position: relative;
}
.step .num { font-size: 0.9rem; font-weight: 900; color: var(--accent); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.step .num::before { content: counter(step, decimal-leading-zero); counter-increment: step; font-size: 2.4rem; line-height: 0.8; letter-spacing: -0.05em; color: color-mix(in oklab, var(--accent) 90%, transparent); }
.step h3 { margin-bottom: 0.45rem; font-size: var(--step-0); }
.step p { color: var(--dim); font-size: var(--step--1); line-height: 1.55; }
.step.is-deal .num, .step.is-deal .num::before { color: var(--deal); }
.step .receipt-mini { margin-top: 1rem; }
.how-foot { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.7rem; color: var(--dim); font-weight: 700; font-size: var(--step--1); }
.how-foot .pay-pill { color: var(--accent); background: var(--accent-tint); border-radius: var(--r-pill); padding: 0.3rem 0.7rem; font-weight: 900; }

/* ---------- bento value grid ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; align-items: start; }
.cell {
  background: var(--surface); border: 1px solid var(--hairline-soft); border-radius: var(--r-card);
  padding: 1.7rem; position: relative; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.cell:hover { border-color: var(--hairline); transform: translateY(-3px); }
.cell h3 { margin-bottom: 0.5rem; }
.cell p { color: var(--dim); font-size: var(--step--1); line-height: 1.55; }
.cell .ico { font-size: 22px; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent); margin-bottom: 1.1rem; }
.cell.span-3 { grid-column: span 3; }
.cell.span-2 { grid-column: span 2; }
.cell.span-4 { grid-column: span 4; }
.cell.feature { background: linear-gradient(150deg, #112619 0%, var(--surface) 60%); }
.cell.deal .ico { background: var(--deal-tint); color: var(--deal); }
.cell.deal h3 .g { color: var(--deal); }
.cell .big-num { font-size: var(--step-4); font-weight: 900; letter-spacing: -0.05em; color: var(--accent); line-height: 0.95; margin-bottom: 0.3rem; }
.cell .pay-img { margin-top: auto; border-radius: 14px; overflow: hidden; border: 1px solid var(--hairline-soft); }
.cell .pay-img img { width: 100%; height: 150px; object-fit: cover; }

/* ---------- screenshots gallery ---------- */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.5rem, 1rem + 2vw, 3rem); justify-items: center; }
.shot { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.shot .phone { width: min(260px, 70vw); }
.ph-slot { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; text-align: center; padding: 1.5rem; background: radial-gradient(120% 80% at 50% 0%, #16201a 0%, var(--bg) 70%); }
.ph-slot img.mk { width: 46px; height: 46px; opacity: 0.85; }
.ph-slot .ph-k { color: var(--text); font-weight: 800; font-size: 0.95rem; }
.ph-slot .ph-s { color: var(--mute); font-size: 0.72rem; font-weight: 700; border: 1px dashed var(--hairline); border-radius: var(--r-pill); padding: 0.25rem 0.7rem; }
.shot .cap { color: var(--dim); font-weight: 700; font-size: var(--step--1); text-align: center; }
/* when a real screenshot is dropped in, it covers the placeholder */
.ph-slot .real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- pricing ---------- */
.pricing { background: var(--bg-2); }
.price-card {
  max-width: 760px; margin-inline: auto; background: linear-gradient(160deg, #11241a 0%, var(--surface) 55%);
  border: 1px solid color-mix(in oklab, var(--accent) 26%, transparent); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 1rem + 3vw, 3.2rem); position: relative; overflow: hidden;
}
.price-card .zero-row { display: flex; flex-wrap: wrap; gap: clamp(1rem, 0.5rem + 2vw, 2.6rem); margin-block: 1.4rem; }
.zero .z { font-size: var(--step-4); font-weight: 900; color: var(--accent); letter-spacing: -0.05em; line-height: 1; }
.zero .zl { color: var(--dim); font-weight: 700; font-size: var(--step--1); margin-top: 0.3rem; }
.price-card .model { font-size: var(--step-1); font-weight: 700; color: var(--text); line-height: 1.45; max-width: 52ch; }
.price-card .model .g { color: var(--accent); }
.price-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.7rem 1.4rem; }
.price-list li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--dim); font-weight: 600; font-size: var(--step--1); }
.price-list li .ck { color: var(--accent); font-weight: 900; flex: 0 0 auto; }
.price-card .btn { margin-top: 2rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--hairline-soft); }
.faq summary { list-style: none; cursor: pointer; padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 800; font-size: var(--step-1); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--hairline); border-radius: 50%; color: var(--accent); transition: transform 0.3s var(--ease-out), background 0.2s; font-size: 1.2rem; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--accent-tint); }
.faq .ans { color: var(--dim); padding: 0 0 1.4rem; max-width: 70ch; line-height: 1.6; }
.faq .ans a { color: var(--accent); font-weight: 700; }

/* ---------- final CTA ---------- */
.cta { position: relative; overflow: clip; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 120%, var(--accent-glow), transparent 70%); pointer-events: none; }
.cta-inner { position: relative; background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: clamp(2rem, 1rem + 4vw, 4rem); text-align: center; overflow: hidden; }
.cta-inner h2 { font-size: var(--step-4); font-weight: 900; max-width: 18ch; margin-inline: auto; }
.cta-inner .tagline { margin: 1.2rem auto 0; text-align: center; }
.lead-form { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 2.2rem; }
.lead-form input {
  font-family: inherit; font-weight: 600; font-size: var(--step-0); color: var(--text);
  background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-btn);
  padding: 0.85rem 1.1rem; min-width: 0; flex: 1 1 200px; max-width: 260px;
}
.lead-form input::placeholder { color: var(--mute); }
.lead-form input:focus-visible { border-color: var(--accent); outline: none; }
.lead-form .btn { flex: 0 0 auto; }
.cta-or { margin-top: 1.3rem; color: var(--mute); font-weight: 700; font-size: var(--step--1); }
.cta-or a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--hairline-soft); padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer .brand { font-size: 1.4rem; margin-bottom: 1rem; }
.footer .tagline { font-size: var(--step-0); color: var(--dim); max-width: 34ch; }
.footer .soon { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--mute); font-weight: 700; font-size: var(--step--1); }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mute); font-weight: 800; margin: 0 0 1rem; }
.footer-col a { display: block; color: var(--dim); font-weight: 600; padding: 0.3rem 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--mute); font-size: var(--step--1); font-weight: 600; }

/* ---------- reveal motion ---------- */
[data-reveal] { transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); transform: translateY(20px); }
[data-reveal].in { opacity: 1 !important; transform: none; }
[data-reveal-stagger] > * { transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
html.js [data-reveal-stagger] > * { opacity: 0; transform: translateY(18px); }
[data-reveal-stagger].in > * { opacity: 1 !important; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-stage { order: -1; margin-bottom: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer .brand + .tagline { grid-column: 1 / -1; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .cell.span-3, .cell.span-4 { grid-column: span 4; }
  .cell.span-2 { grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0.3rem;
    background: color-mix(in oklab, var(--bg) 96%, transparent); backdrop-filter: blur(16px);
    padding: 1rem var(--gutter) 1.4rem; border-bottom: 1px solid var(--hairline);
    transform: translateY(-130%); transition: transform 0.35s var(--ease-out); z-index: var(--z-overlay); }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { padding: 0.8rem; font-size: 1.05rem; }
  .nav-links .btn { margin-top: 0.4rem; }
  .nav-toggle { display: inline-grid; place-items: center; width: 42px; height: 42px; background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px; cursor: pointer; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: transform 0.25s, opacity 0.2s; }
  .nav-toggle span::before { position: absolute; top: -6px; } .nav-toggle span::after { position: absolute; top: 6px; }
  .nav-toggle.open span { background: transparent; }
  .nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }
  .brand .tag { display: none; }
  /* keep hero chips within the viewport on small screens */
  .chip-earn { right: 3%; top: 9%; }
  .chip-repeat { left: 3%; bottom: 11%; }
  .chip .v { font-size: 15px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .cell.span-3, .cell.span-4, .cell.span-2 { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .bento { grid-template-columns: 1fr; }
  .cell.span-3, .cell.span-4, .cell.span-2 { grid-column: span 1; }
  .hero-cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html.js [data-reveal], html.js [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
