/* ===========================================================
   OrçaJá — Marketing site
   Design system lifted from the app
   =========================================================== */

:root {
  --bg:        #0A0A0A;
  --bg-2:      #0E0E0E;
  --surface:   #151515;
  --surface-2: #1A1A1A;
  --surface-3: #202020;
  --border:    #262626;
  --border-hi: #333333;

  --ink:       #F5F4F2;
  --ink-2:     #B5B2AD;
  --ink-3:     #807C77;
  --ink-4:     #565250;

  --accent:    #FF5C00;
  --accent-2:  #FF7A2E;
  --accent-lo: #C24700;
  --purple:    #B13BCC;
  --green:     #3DD68C;

  --accent-soft: rgba(255, 92, 0, 0.13);
  --accent-glow: rgba(255, 92, 0, 0.40);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1200px;
  --radius: 20px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--accent); color: #fff; }

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 6px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Layout primitives ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.kicker.center { justify-content: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }

.section { padding: 120px 0; position: relative; }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  margin: 18px 0 0;
  text-wrap: balance;
}
.section-head p {
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 19px);
  margin-top: 18px;
  text-wrap: pretty;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 15px 26px;
  border-radius: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 55%, var(--accent-lo) 100%);
  color: #fff;
  box-shadow: 0 10px 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover::after { transform: translateX(120%); transition: transform 1s var(--ease); }

.btn-ghost {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { background: var(--surface-3); transform: translateY(-3px); border-color: var(--accent); }

.btn-lg { padding: 18px 32px; font-size: 16px; border-radius: 16px; }
.btn-block { width: 100%; }

/* ── Glow orbs ─────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(155deg, var(--accent-2), var(--accent-lo));
  display: grid; place-items: center;
  box-shadow: 0 6px 18px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.25);
  flex-shrink: 0;
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.03em; }
.brand-name b { color: var(--accent); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  transition: color .2s; position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent); transition: width .25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--border); }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .25s; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero { padding: 160px 0 90px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 26px;
}
.hero-badge .pill {
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 1px; padding: 3px 8px; border-radius: 100px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.035em;
  font-weight: 800;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-2);
  margin: 26px 0 36px;
  max-width: 520px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 22px; margin-top: 38px; flex-wrap: wrap;
}
.hero-stars { display: flex; gap: 2px; color: var(--accent); }
.hero-stars svg { width: 17px; height: 17px; }
.hero-trust-txt { font-size: 13.5px; color: var(--ink-3); }
.hero-trust-txt b { color: var(--ink); }
.hero-trust .divider { width: 1px; height: 30px; background: var(--border); }

/* Phone showcase */
.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  perspective: 1600px;
}
.phone {
  position: relative;
  width: 300px;
  border-radius: 42px;
  background: #1c1c1c;
  padding: 9px;
  box-shadow:
    0 50px 110px rgba(0,0,0,.65),
    0 0 0 2px rgba(255,255,255,.04),
    inset 0 0 0 1px rgba(255,255,255,.03);
}
.phone-screen {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: #0E0E0E;
  aspect-ratio: 1080 / 1920;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px; background: #000; border-radius: 100px; z-index: 3;
}
.hero-phone {
  animation: floaty 6s ease-in-out infinite;
  transform: rotateY(-13deg) rotateX(4deg) rotateZ(1deg);
}
@keyframes floaty {
  0%, 100% { transform: rotateY(-13deg) rotateX(4deg) translateY(0); }
  50%      { transform: rotateY(-13deg) rotateX(4deg) translateY(-16px); }
}

/* Floating chips around hero phone */
.float-chip {
  position: absolute; z-index: 4;
  background: rgba(21,21,21,.82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-hi);
  border-radius: 15px;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,.5);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip .ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center;
}
.float-chip .ic svg { width: 19px; height: 19px; }
.float-chip .t1 { font-size: 14px; font-weight: 700; line-height: 1.2; }
.float-chip .t2 { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); letter-spacing: .5px; margin-top: 2px; }
.chip-a { top: 12%; left: -6%; animation-delay: .8s; }
.chip-b { bottom: 16%; right: -10%; animation-delay: 1.6s; }
.chip-c { bottom: 38%; left: -12%; animation-delay: 2.2s; }

/* ── Marquee / social proof ────────────────────────────── */
.proof { padding: 30px 0 10px; border-top: 1px solid var(--border); position: relative; z-index: 2; }
.proof-label { text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; color: var(--ink-3); text-transform: uppercase; margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink-3); white-space: nowrap; }
.marquee-item svg { width: 24px; height: 24px; color: var(--accent); opacity: .85; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 64px; }
.step {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.step:hover { transform: translateY(-6px); border-color: var(--border-hi); }
.step-n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: 1px; margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.step-n i { width: 28px; height: 28px; border-radius: 9px; background: var(--accent-soft); display: grid; place-items: center; font-style: normal; }
.step-ic { width: 52px; height: 52px; border-radius: 15px; background: var(--surface-2); border: 1px solid var(--border-hi); display: grid; place-items: center; margin-bottom: 22px; }
.step-ic svg { width: 26px; height: 26px; color: var(--accent); }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15.5px; }
.step-line {
  position: absolute; top: 50px; right: -11px; z-index: 2;
  color: var(--ink-4);
}
.steps .step:last-child .step-line { display: none; }

/* ═══════════════════════════════════════════════════════
   FEATURE SPLIT (alternating)
   ═══════════════════════════════════════════════════════ */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.feature-split + .feature-split { margin-top: 120px; }
.feature-split.reverse .fs-media { order: 2; }
.fs-copy h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 16px 0 0; text-wrap: balance; }
.fs-copy > p { color: var(--ink-2); font-size: 18px; margin-top: 18px; max-width: 460px; }
.fs-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.fs-list li { display: flex; gap: 14px; align-items: flex-start; }
.fs-list .ck {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0; margin-top: 1px;
  background: var(--accent-soft); display: grid; place-items: center;
}
.fs-list .ck svg { width: 14px; height: 14px; color: var(--accent); }
.fs-list .txt b { display: block; font-size: 16px; font-weight: 700; }
.fs-list .txt span { font-size: 14.5px; color: var(--ink-3); }

.fs-media { position: relative; display: flex; justify-content: center; }
.fs-media .phone { width: 280px; }
.fs-media-glow {
  position: absolute; inset: -10% 5%;
  background: radial-gradient(circle at center, var(--accent-soft), transparent 65%);
  filter: blur(40px); z-index: 0;
}

/* ═══════════════════════════════════════════════════════
   STATS BAND
   ═══════════════════════════════════════════════════════ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
}
.stat { padding: 40px 30px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 4.5vw, 52px); letter-spacing: -0.03em; color: var(--ink); }
.stat-num .u { color: var(--accent); }
.stat-lbl { font-size: 14px; color: var(--ink-3); margin-top: 6px; font-family: var(--font-mono); letter-spacing: .5px; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════
   BENTO FEATURES
   ═══════════════════════════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 20px; margin-top: 60px; }
.bento-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.bento-card:hover { transform: translateY(-5px); border-color: var(--border-hi); }
.bento-card .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--surface-2); border: 1px solid var(--border-hi); display: grid; place-items: center; margin-bottom: 20px; }
.bento-card .ic svg { width: 24px; height: 24px; color: var(--accent); }
.bento-card h3 { font-size: 20px; margin-bottom: 8px; }
.bento-card p { color: var(--ink-2); font-size: 15px; }
.bento-wide { grid-column: span 2; }
.bento-glow { position: absolute; top: -40%; right: -20%; width: 60%; height: 120%; background: radial-gradient(circle, var(--accent-soft), transparent 60%); pointer-events: none; }

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 860px; margin: 60px auto 0; }
.plan {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 36px; position: relative;
  transition: transform .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); }
.plan.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 30px 70px rgba(255,92,0,.13); }
.plan-tag {
  position: absolute; top: -13px; left: 36px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 100px; box-shadow: 0 8px 20px var(--accent-glow);
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.plan-desc { font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 26px 0 4px; }
.plan-price .cur { font-size: 22px; font-weight: 700; color: var(--ink-2); }
.plan-price .val { font-family: var(--font-display); font-weight: 800; font-size: 52px; letter-spacing: -0.03em; }
.plan-price .per { font-size: 15px; color: var(--ink-3); }
.plan-note { font-size: 13.5px; color: var(--accent); font-weight: 600; min-height: 20px; }
.plan-note.muted { color: var(--ink-3); font-weight: 500; }
.plan-features { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 13px; }
.plan-features li { display: flex; gap: 11px; align-items: center; font-size: 15px; color: var(--ink-2); }
.plan-features .ck { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.plan-features .ck svg { width: 12px; height: 12px; color: #fff; }
.pricing-foot { text-align: center; margin-top: 30px; font-size: 14px; color: var(--ink-3); }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink);
}
.faq-q .pm { width: 30px; height: 30px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--border-hi); display: grid; place-items: center; flex-shrink: 0; transition: .25s; }
.faq-q .pm svg { width: 16px; height: 16px; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item.open .pm { background: var(--accent); }
.faq-item.open .pm svg { color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--ink-2); font-size: 16px; max-width: 640px; }

/* ═══════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════ */
.cta-band { position: relative; overflow: hidden; }
.cta-card {
  background: linear-gradient(150deg, #1a0f06 0%, #0E0E0E 60%);
  border: 1px solid var(--border-hi);
  border-radius: 32px; padding: 70px 50px; text-align: center; position: relative; overflow: hidden;
}
.cta-card h2 { font-size: clamp(30px, 4.5vw, 50px); text-wrap: balance; }
.cta-card p { color: var(--ink-2); font-size: 19px; margin: 18px auto 36px; max-width: 520px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-soft), transparent 65%); top: -60%; left: 50%; transform: translateX(-50%); filter: blur(40px); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); padding: 70px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--ink-3); font-size: 14.5px; margin-top: 18px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--ink-2); font-size: 15px; padding: 7px 0; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-bottom span { font-size: 13.5px; color: var(--ink-4); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; transition: .2s; }
.footer-social a:hover { border-color: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: var(--ink-2); }

/* ── Store badges ──────────────────────────────────────── */
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--surface-2); border: 1px solid var(--border-hi);
  border-radius: 13px; padding: 10px 18px; transition: .25s var(--ease);
}
.store-badge:hover { border-color: var(--accent); transform: translateY(-3px); }
.store-badge svg { width: 26px; height: 26px; }
.store-badge .sb-t { text-align: left; line-height: 1.1; }
.store-badge .sb-t small { font-size: 10px; color: var(--ink-3); display: block; }
.store-badge .sb-t b { font-size: 16px; font-weight: 700; font-family: var(--font-display); }

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-phone, .float-chip, .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .section { padding: 90px 0; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-phone-wrap { order: -1; }
  .hero h1 { font-size: clamp(38px, 9vw, 56px); }
  .hero-trust { justify-content: flex-start; }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none !important; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse .fs-media { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding: 130px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { flex: none; width: 100%; }
  .float-chip { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-card { padding: 50px 26px; }
  .section-head h2 { font-size: clamp(28px, 8vw, 40px); }
}

@media (max-width: 400px) {
  .nav-cta .btn-primary { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,10,.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--ink); }
.mobile-menu a:active { color: var(--accent); }
.mobile-menu .btn { margin-top: 18px; }
