/* ============================================================
   SpotFeed landing — single file, no build step.
   Brand discipline (60/30/10):
     60  periwinkle / signal blue   (dominant)
     30  lavender-violet            (secondary)
     10  warm yellow                (CTAs + key highlights ONLY)
   ============================================================ */

:root {
  /* ---- Palette ---- */
  --periwinkle: #8FAEF2;
  --signal:     #27AAE1;
  --lavender:   #9098F4;
  --yellow:     #F8DE5D;
  --base:       #FAFBFF;
  --ink:        #15171E;

  /* ---- Derived ---- */
  --ink-60:     rgba(21, 23, 30, 0.62);
  --ink-40:     rgba(21, 23, 30, 0.40);
  --white-70:   rgba(255, 255, 255, 0.70);
  --glass-bg:   rgba(255, 255, 255, 0.55);
  --glass-brd:  rgba(255, 255, 255, 0.65);
  --grad-hero:  linear-gradient(135deg, var(--periwinkle) 0%, var(--lavender) 55%, var(--signal) 100%);

  /* ---- Type ---- */
  --display: 'Bebas Neue', 'Inter', sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Layout ---- */
  --maxw: 1180px;
  --nav-h: 76px;
  --radius: 22px;
  --radius-sm: 14px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--base);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--lavender); outline-offset: 3px; border-radius: 6px; }

/* ---- Headings: Bebas, oversized, condensed, all-caps ---- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.5px;
}

/* ---- Helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
}
.muted { color: var(--ink-60); }

/* GPU-friendly reveal — only transform + opacity */
.reveal { opacity: 0; transform: translateY(28px) scale(0.985); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ============================================================
   NAV — sticky glassmorphism, shrinks on scroll
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(250, 251, 255, 0.62);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(144, 152, 244, 0.14);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.shrink {
  height: 60px;
  background: rgba(250, 251, 255, 0.86);
  box-shadow: 0 6px 30px rgba(63, 78, 140, 0.08);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 26px; letter-spacing: 1px; }
/* Logo art is a small circle centred in a large white canvas — clip + zoom into the mark */
.logo-mark { border-radius: 50%; overflow: hidden; flex: 0 0 auto; background: #fff; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.9); }
.nav-logo .logo-mark { width: 38px; height: 38px; transition: width 0.3s ease, height 0.3s ease; }
.nav.shrink .nav-logo .logo-mark { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-60); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--yellow); color: var(--ink);
  font-weight: 700; font-size: 14.5px;
  padding: 11px 22px; border-radius: 100px;
  box-shadow: 0 6px 18px rgba(248, 222, 93, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { box-shadow: 0 10px 26px rgba(248, 222, 93, 0.6); }
.nav-burger { display: none; font-size: 24px; color: var(--ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; padding: 15px 30px; border-radius: 100px; transition: transform 0.18s ease, box-shadow 0.25s ease; will-change: transform; }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 30px rgba(248, 222, 93, 0.5); }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(248, 222, 93, 0.62); }
.btn-ghost { background: rgba(255,255,255,0.5); color: var(--ink); border: 1.5px solid rgba(144,152,244,0.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--lavender); background: rgba(255,255,255,0.8); }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--nav-h) + 70px); padding-bottom: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; z-index: 0; }
.glow-1 { width: 460px; height: 460px; background: var(--periwinkle); top: -120px; right: -80px; }
.glow-2 { width: 380px; height: 380px; background: var(--lavender); bottom: -140px; left: -100px; opacity: 0.4; }

.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(144,152,244,0.12); color: var(--lavender);
  font-weight: 600; font-size: 13.5px; padding: 7px 15px; border-radius: 100px;
  border: 1px solid rgba(144,152,244,0.25); margin-bottom: 24px;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 0 rgba(39,170,225,0.6); animation: livepulse 2s infinite; }
@keyframes livepulse { 0%{box-shadow:0 0 0 0 rgba(39,170,225,0.6);} 70%{box-shadow:0 0 0 9px rgba(39,170,225,0);} 100%{box-shadow:0 0 0 0 rgba(39,170,225,0);} }

.hero h1 { font-size: clamp(58px, 9vw, 116px); margin-bottom: 22px; }
.hero h1 .hl { color: var(--signal); }
.hero-sub { font-size: clamp(17px, 2.1vw, 20px); color: var(--ink-60); max-width: 480px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; color: var(--ink-60); }
.hero-meta b { color: var(--ink); font-weight: 700; }

/* ============================================================
   PHONE MOCKUP (CSS) — shared
   ============================================================ */
.phone {
  position: relative; width: 290px; aspect-ratio: 290 / 600;
  background: #fff; border-radius: 42px;
  border: 9px solid var(--ink);
  box-shadow: 0 40px 80px rgba(48, 58, 120, 0.28), inset 0 0 0 2px rgba(255,255,255,0.5);
  overflow: hidden;
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 24px; background: var(--ink); border-radius: 0 0 16px 16px; z-index: 5;
}
.hero-phone-wrap { display: flex; justify-content: center; perspective: 1400px; }
.hero-phone {
  transform: rotateY(-16deg) rotateX(6deg) rotateZ(1deg);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  animation: floaty 6s ease-in-out infinite;
}
.hero-phone:hover { transform: rotateY(-7deg) rotateX(3deg); }
@keyframes floaty { 0%,100%{ translate: 0 0; } 50%{ translate: 0 -14px; } }

/* ---- App screen chrome (matches real SpotFeed UI) ---- */
.scr { position: absolute; inset: 0; display: flex; flex-direction: column; background: #fff; font-size: 11px; }
.scr-status { height: 30px; flex: 0 0 30px; }
.scr-appbar { display: flex; align-items: center; gap: 8px; padding: 6px 14px 8px; font-weight: 700; font-size: 15px; }
.scr-appbar .sf { font-family: var(--body); }
.scr-appbar .icons { margin-left: auto; display: flex; gap: 12px; color: var(--ink-40); font-size: 13px; }
.scr-tabs { display: flex; border-bottom: 1px solid #eef0f6; }
.scr-tab { flex: 1; text-align: center; padding: 9px 0; font-size: 11.5px; font-weight: 600; color: var(--ink-40); }
.scr-tab.on { color: var(--signal); box-shadow: inset 0 -2.5px 0 var(--signal); }

/* nearby / active list tiles */
.tile { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid #f4f5fa; }
.tile-av { width: 38px; height: 38px; border-radius: 50%; flex: 0 0 38px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; }
.tile-main { min-width: 0; flex: 1; }
.tile-main .t { font-weight: 700; font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile-main .s { font-size: 10.5px; color: var(--ink-40); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile-end { display: flex; align-items: center; gap: 5px; flex: 0 0 auto; color: var(--ink-40); font-size: 10px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.g { background: #1A9D54; } .dot.o { background: #D98A00; } .dot.r { background: #D93535; }
.lock { font-size: 11px; }
.fab { position: absolute; right: 14px; bottom: 16px; background: var(--yellow); color: var(--ink); font-weight: 700; font-size: 11px; padding: 9px 14px; border-radius: 100px; display: flex; align-items: center; gap: 5px; box-shadow: 0 6px 16px rgba(248,222,93,0.5); z-index: 4; }

/* chat screen */
.chat-body { flex: 1; padding: 12px 12px 8px; display: flex; flex-direction: column; gap: 6px; background: #fff; overflow: hidden; }
.bub { max-width: 76%; padding: 7px 11px; border-radius: 15px; font-size: 11.5px; line-height: 1.4; }
.bub .nm { font-size: 9.5px; font-weight: 700; color: var(--lavender); margin-bottom: 2px; }
.bub.them { align-self: flex-start; background: #F1F3FA; border-bottom-left-radius: 5px; color: var(--ink); }
.bub.me { align-self: flex-end; background: var(--periwinkle); color: #fff; border-bottom-right-radius: 5px; }
.bub .tm { font-size: 8.5px; opacity: 0.6; margin-top: 3px; text-align: right; }
.composer { display: flex; align-items: center; gap: 7px; padding: 8px 12px 12px; }
.composer .field { flex: 1; background: #F1F3FA; border-radius: 100px; padding: 8px 13px; font-size: 11px; color: var(--ink-40); }
.composer .snd { width: 30px; height: 30px; border-radius: 50%; background: var(--signal); color: #fff; display: flex; align-items: center; justify-content: center; flex: 0 0 30px; }

/* create-joint screen */
.cj { flex: 1; padding: 16px 16px; display: flex; flex-direction: column; gap: 14px; }
.cj-label { font-size: 10px; font-weight: 700; color: var(--ink-40); text-transform: uppercase; letter-spacing: 1px; }
.cj-input { border: 1.5px solid #e3e6f0; border-radius: 12px; padding: 11px 13px; font-size: 12.5px; font-weight: 600; }
.cj-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border: 1.5px solid #e3e6f0; border-radius: 12px; font-size: 12px; }
.toggle { width: 38px; height: 22px; border-radius: 100px; background: var(--signal); position: relative; flex: 0 0 38px; }
.toggle::after { content:""; position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.slider { height: 4px; border-radius: 4px; background: #e3e6f0; position: relative; margin-top: 6px; }
.slider::before { content:""; position: absolute; left:0; top:0; height: 100%; width: 42%; border-radius: 4px; background: var(--signal); }
.slider::after { content:""; position: absolute; left: 42%; top: 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--signal); box-shadow: 0 2px 6px rgba(39,170,225,0.5); }

/* vicinity dialog mock */
.vdlg { margin: auto 14px; background: #fff; border-radius: 18px; padding: 18px 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.18); text-align: center; }
.vdlg .ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(144,152,244,0.14); color: var(--lavender); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 20px; }
.vdlg .vt { font-weight: 800; font-size: 13px; margin-bottom: 5px; }
.vdlg .vs { font-size: 10.5px; color: var(--ink-40); line-height: 1.5; margin-bottom: 14px; }
.vdlg .vbtns { display: flex; gap: 7px; }
.vdlg .vb { flex: 1; padding: 9px 0; border-radius: 10px; font-size: 10.5px; font-weight: 700; }
.vb.del { color: #D93535; border: 1.5px solid rgba(217,53,53,0.4); }
.vb.hand { background: var(--lavender); color: #fff; }
.scr.dim { background: linear-gradient(180deg, rgba(143,174,242,0.35), rgba(144,152,244,0.5)); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { text-align: center; }
.how h2 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 12px; }
.how-sub { color: var(--ink-60); max-width: 540px; margin: 0 auto 64px; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.steps::before { /* animated connecting line */
  content: ""; position: absolute; top: 46px; left: 16%; right: 16%; height: 2.5px;
  background: linear-gradient(90deg, var(--periwinkle), var(--lavender), var(--signal));
  background-size: 200% 100%; animation: flowline 3.5s linear infinite; border-radius: 2px; z-index: 0;
}
@keyframes flowline { to { background-position: -200% 0; } }
.step { position: relative; z-index: 1; }
.step-ic {
  width: 92px; height: 92px; margin: 0 auto 22px; border-radius: 26px;
  background: #fff; border: 1px solid rgba(144,152,244,0.18);
  box-shadow: 0 14px 34px rgba(63, 78, 140, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.step-ic svg { width: 42px; height: 42px; }
.step-n { font-family: var(--display); font-size: 15px; color: var(--lavender); letter-spacing: 1px; margin-bottom: 6px; }
.step h3 { font-size: 26px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-60); max-width: 290px; margin: 0 auto; }

/* ============================================================
   FEATURES — alternating rows
   ============================================================ */
.features-head { text-align: center; margin-bottom: 72px; }
.features-head h2 { font-size: clamp(40px, 6vw, 72px); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 110px; }
.frow:last-child { margin-bottom: 0; }
.frow.flip .fr-media { order: 2; }
.frow.flip .fr-text { order: 1; }
.fr-text .tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--signal); background: rgba(39,170,225,0.1); padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.fr-text h3 { font-size: clamp(34px, 4.5vw, 52px); margin-bottom: 16px; }
.fr-text p { font-size: 16.5px; color: var(--ink-60); margin-bottom: 18px; }
.fr-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.fr-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink); }
.fr-list .ck { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: rgba(144,152,244,0.16); color: var(--lavender); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.fr-media { display: flex; justify-content: center; }

/* glass card backing for mockups */
.glass-card {
  position: relative; padding: 46px; border-radius: 34px;
  background: var(--glass-bg); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 30px 70px rgba(63, 78, 140, 0.14);
  display: flex; justify-content: center;
  background-image: radial-gradient(circle at 30% 0%, rgba(143,174,242,0.25), transparent 60%);
}
.glass-card .phone { width: 250px; }

/* countdown chip near ephemeral feature */
.countdown {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: 14px; margin-top: 6px;
  box-shadow: 0 12px 30px rgba(21,23,30,0.25);
}
.countdown .clk { font-variant-numeric: tabular-nums; font-size: 22px; letter-spacing: 1px; color: var(--yellow); }
.countdown .lbl { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; }
.countdown .exp { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: livepulse 1.6s infinite; }

/* ============================================================
   PRIVACY — dark-mode break
   ============================================================ */
.privacy { background: var(--ink); color: #fff; overflow: hidden; }
.privacy .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.privacy .eyebrow { color: var(--periwinkle); }
.privacy h2 { font-size: clamp(40px, 6vw, 78px); margin-bottom: 22px; }
.privacy h2 .hl { color: var(--yellow); }
.privacy p { color: rgba(255,255,255,0.66); font-size: 17px; margin-bottom: 26px; max-width: 480px; }
.priv-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.priv-list li { display: flex; gap: 14px; align-items: flex-start; }
.priv-list .pi { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px; background: rgba(144,152,244,0.16); display: flex; align-items: center; justify-content: center; }
.priv-list .pi svg { width: 20px; height: 20px; }
.priv-list b { display: block; font-size: 16px; margin-bottom: 2px; }
.priv-list span { font-size: 14px; color: rgba(255,255,255,0.55); }

/* glowing lavender ring motif */
.rings { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(144,152,244,0.4); }
.ring.r1 { width: 130px; height: 130px; box-shadow: 0 0 60px rgba(144,152,244,0.5), inset 0 0 40px rgba(144,152,244,0.2); }
.ring.r2 { width: 240px; height: 240px; border-color: rgba(144,152,244,0.26); animation: spin 22s linear infinite; }
.ring.r3 { width: 350px; height: 350px; border-color: rgba(143,174,242,0.16); }
.ring.r4 { width: 460px; height: 460px; border-color: rgba(143,174,242,0.09); }
@keyframes spin { to { transform: rotate(360deg); } }
.ring-core { width: 88px; height: 88px; border-radius: 50%; background: radial-gradient(circle, var(--lavender), var(--periwinkle)); box-shadow: 0 0 70px rgba(144,152,244,0.8); display: flex; align-items: center; justify-content: center; z-index: 2; }
.ring-core svg { width: 38px; height: 38px; }
.ring-pin { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 16px var(--signal); }
.ring-pin.p1 { top: 22%; left: 30%; } .ring-pin.p2 { bottom: 26%; right: 28%; } .ring-pin.p3 { top: 40%; right: 16%; }

/* ============================================================
   WAITLIST — gradient mesh band
   ============================================================ */
.waitlist { position: relative; overflow: hidden; padding: 120px 0; text-align: center; }
.waitlist-mesh { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(circle at 18% 30%, rgba(143,174,242,0.85), transparent 45%),
  radial-gradient(circle at 82% 25%, rgba(144,152,244,0.8), transparent 48%),
  radial-gradient(circle at 50% 90%, rgba(39,170,225,0.6), transparent 50%),
  var(--base);
}
.waitlist .wrap { position: relative; z-index: 2; }
.waitlist h2 { font-size: clamp(46px, 8vw, 104px); margin-bottom: 18px; color: var(--ink); }
.waitlist h2 .hl { color: #fff; -webkit-text-stroke: 2px var(--ink); }
.waitlist p { font-size: 18px; color: var(--ink-60); max-width: 500px; margin: 0 auto 38px; }
.wl-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.wl-form input {
  flex: 1; font-family: var(--body); font-size: 16px;
  padding: 16px 22px; border-radius: 100px; border: none;
  background: rgba(255,255,255,0.85); color: var(--ink);
  box-shadow: 0 10px 30px rgba(63,78,140,0.12);
}
.wl-form input::placeholder { color: var(--ink-40); }
.wl-note { margin-top: 18px; font-size: 13.5px; color: var(--ink-60); }
.wl-success { display: none; }
.wl-success.show { display: block; animation: pop 0.5s cubic-bezier(0.16,1,0.3,1); }
@keyframes pop { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.wl-success .check { width: 70px; height: 70px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 14px 36px rgba(248,222,93,0.55); }
.wl-success .check svg { width: 34px; height: 34px; color: var(--ink); }
.wl-success h3 { font-size: 40px; color: var(--ink); margin-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 64px 0 40px; border-top: 1px solid rgba(144,152,244,0.14); }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 300px; }
.foot-logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 28px; letter-spacing: 1px; margin-bottom: 14px; }
.foot-logo .logo-mark { width: 40px; height: 40px; }
.foot-brand p { font-size: 14px; color: var(--ink-60); }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-40); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--ink-60); margin-bottom: 9px; transition: color 0.2s ease; }
.foot-col a:hover { color: var(--signal); }
.foot-bottom { border-top: 1px solid rgba(144,152,244,0.12); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--ink-40); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero .wrap, .privacy .wrap { grid-template-columns: 1fr; }
  .hero-phone-wrap { margin-top: 50px; }
  .hero-phone { transform: rotateY(-8deg); }
  .privacy .rings { order: -1; height: 360px; }
  .frow, .frow.flip .fr-media, .frow.flip .fr-text { grid-template-columns: 1fr; order: 0 !important; }
  .frow { gap: 40px; margin-bottom: 80px; }
  .frow .fr-media { order: 2 !important; }
  .frow .fr-text { order: 1 !important; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav.mobile-open + .mobile-menu { display: flex; }
}
@media (max-width: 480px) {
  .wrap { padding-inline: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .wl-form { flex-direction: column; }
  .wl-form .btn { justify-content: center; }
  .foot-cols { gap: 40px; }
}

/* Mobile slide-down menu */
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99; flex-direction: column; gap: 4px; padding: 16px 24px 22px; background: rgba(250,251,255,0.96); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(144,152,244,0.16); }
.mobile-menu a { padding: 12px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid rgba(144,152,244,0.1); }
.mobile-menu .nav-cta { display: inline-flex; margin-top: 12px; align-self: flex-start; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-phone { transform: rotateY(-12deg); }
}
