/* =====================================================================
   Life Now — Food Edition · Landing Page styles
   ===================================================================== */

:root {
  --bg: #070B07;
  --bg-2: #0A0F0A;
  --bg-3: #0E140E;
  --green: #22C55E;
  --green-dk: #16A34A;
  --green-lt: #4ADE80;
  --gold: #D4A847;
  --white: #F0FFF4;
  --text: #E7F3EA;
  --dim: rgba(231, 243, 234, 0.62);
  --dim-2: rgba(231, 243, 234, 0.40);
  --border: rgba(34, 197, 94, 0.16);
  --border-2: rgba(255, 255, 255, 0.08);
  --card: rgba(34, 197, 94, 0.05);
  --radius: 22px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Coming-soon gate ---------- */
body.gated { overflow: hidden; height: 100vh; }
.gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 28px;
  background: radial-gradient(125% 90% at 50% 0%, #0d150d 0%, #070b07 55%, #040704 100%);
  overflow: hidden; opacity: 1; visibility: visible;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.gate-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.gate-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
  opacity: 1; transition: opacity .55s var(--ease);
}
.gate-video.is-fading { opacity: 0; }
.gate-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(34,197,94,.20), transparent 55%),
    linear-gradient(180deg, rgba(5,9,5,.72) 0%, rgba(5,9,5,.80) 45%, rgba(4,7,4,.92) 100%);
}

.gate-inner { position: relative; z-index: 1; width: 100%; max-width: 720px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.gate-langs { display: flex; gap: 6px; margin-bottom: 30px; }
.gate-lang {
  background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--dim);
  font-weight: 800; font-size: 12.5px; padding: 7px 12px; border-radius: 10px; cursor: pointer;
  font-family: inherit; transition: color .2s, background .2s, border-color .2s;
}
.gate-lang:hover { color: var(--white); border-color: var(--green); }
.gate-lang.active { color: var(--green); background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.4); }
.gate-logo { width: 76px; height: 76px; border-radius: 20px; box-shadow: 0 16px 40px -12px rgba(34,197,94,.5); }
.gate-brand { margin-top: 18px; font-weight: 800; font-size: 22px; letter-spacing: -.4px; color: var(--white); }
.gate-brand span { color: var(--green); }
.gate-badge {
  display: inline-block; margin-top: 18px; font-size: 12px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green-lt); background: rgba(34,197,94,.1);
  border: 1px solid var(--border); padding: 7px 16px; border-radius: 999px;
}
.gate-title { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(30px, 5.5vw, 52px); line-height: 1.08; letter-spacing: -1.2px; color: var(--white); margin-top: 22px; }
.gate-sub { color: var(--dim); font-size: 17px; line-height: 1.6; max-width: 540px; margin-top: 18px; }

.countdown { display: flex; align-items: flex-start; justify-content: center; gap: 12px; margin: 38px 0 30px; }
.cd-box {
  min-width: 86px; background: rgba(34,197,94,.06); border: 1px solid var(--border);
  border-radius: 18px; padding: 18px 12px 13px; display: flex; flex-direction: column; align-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.cd-num { font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-weight: 800; font-size: clamp(34px, 7vw, 54px); line-height: 1; letter-spacing: -1px; color: var(--white); font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }
.cd-lbl { margin-top: 9px; font-size: 10.5px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--dim); }
.cd-sep { font-size: clamp(30px, 6vw, 46px); color: rgba(34,197,94,.5); font-weight: 300; padding-top: 16px; }
.gate-launch { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: 15px; font-weight: 700; background: rgba(255,255,255,.04); border: 1px solid var(--border-2); padding: 11px 20px; border-radius: 999px; }

/* ===== Secret early-access code field ===== */
.gate-code { margin-top: 6px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.gate-code[hidden] { display: none; }
.gate-code.show { animation: gateCodeIn .4s var(--ease, ease) both; }
.gate-code-title { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); }
.gate-code-form { display: flex; gap: 8px; }
.gate-code-input {
  width: 170px; padding: 12px 16px; border-radius: 12px; text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--border-2); color: var(--white);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 3px; outline: none; transition: border-color .2s ease;
}
.gate-code-input:focus { border-color: var(--green); }
.gate-code-btn {
  padding: 12px 20px; border-radius: 12px; border: none; cursor: pointer;
  background: var(--green); color: #06210F; font-weight: 800; font-size: 14px;
  transition: transform .15s ease, filter .2s ease;
}
.gate-code-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.gate-code-error { font-size: 13px; font-weight: 700; color: #F87171; }
.gate-code.shake { animation: gateCodeShake .4s ease; }
@keyframes gateCodeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gateCodeShake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-7px); }
  40%, 60% { transform: translateX(7px); }
}

@media (max-width: 560px) {
  .countdown { gap: 6px; }
  .cd-box { min-width: 0; flex: 1; padding: 14px 4px 10px; border-radius: 14px; }
  .cd-sep { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 14px 26px; border-radius: 14px;
  cursor: pointer; border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary { background: linear-gradient(135deg, var(--green-lt), var(--green-dk)); color: #052e16; box-shadow: 0 10px 30px -10px rgba(34,197,94,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(34,197,94,.7); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--white); border-color: var(--border); }
.btn-ghost:hover { background: rgba(34,197,94,.1); border-color: var(--green); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #E9C46A, var(--gold)); color: #1A1208; box-shadow: 0 10px 30px -10px rgba(212,168,71,.6); }
.btn-gold:hover { transform: translateY(-2px); }
.full { width: 100%; }

/* ---------- Nav ---------- */
.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(7, 11, 7, 0.82); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-logo { width: 34px; height: 34px; border-radius: 9px; }
.brand-name { font-size: 18px; letter-spacing: -.4px; color: var(--white); }
.brand-edition { color: var(--green); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--dim); font-size: 15px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Language switch */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.05);
  border: 1px solid var(--border); color: var(--text); font-weight: 700; font-size: 14px;
  padding: 8px 12px; border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s;
}
.lang-btn:hover { border-color: var(--green); background: rgba(34,197,94,.08); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 14px; padding: 6px;
  display: none; flex-direction: column; gap: 2px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.7); z-index: 200;
}
.lang-menu.open { display: flex; animation: pop .18s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lang-option {
  text-align: left; background: none; border: none; color: var(--dim); font-size: 14px; font-weight: 600;
  padding: 10px 12px; border-radius: 9px; cursor: pointer; transition: background .15s, color .15s;
  font-family: inherit;
}
.lang-option:hover { background: rgba(34,197,94,.1); color: var(--white); }
.lang-option.active { color: var(--green); background: rgba(34,197,94,.08); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 80px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(34,197,94,.22), transparent 70%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.badge {
  display: inline-block; font-size: 13.5px; font-weight: 700; color: var(--green-lt);
  background: rgba(34,197,94,.1); border: 1px solid var(--border); padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02; letter-spacing: -1.5px; color: var(--white); margin-bottom: 22px;
}
.hero-sub { font-size: 18px; color: var(--dim); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; }
.hero-stats li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--dim); }
.hero-stats .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; height: 610px; border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #1c241c, #0a0f0a); border: 1px solid rgba(34,197,94,.2);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.06);
}
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #05080580; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #0d150d, #060b06 60%);
  padding: 40px 16px 12px; display: flex; flex-direction: column;
}
.ph-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.ph-brand { display: flex; align-items: center; gap: 6px; }
.ph-brand-name { font-size: 24px; font-weight: 900; color: #fff; letter-spacing: -1px; text-shadow: 0 0 16px rgba(0,224,198,.5); }
.ph-pro { background: var(--gold); color: #1A1208; font-size: 8px; font-weight: 900; padding: 2px 5px; border-radius: 5px; letter-spacing: 1px; }
.ph-edition { display: block; color: var(--green); font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px; margin-top: 2px; }
.ph-pill { background: rgba(34,197,94,.12); border: 1px solid var(--border); color: var(--white); font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 999px; }
.ph-recipes { color: var(--dim); font-size: 11px; font-weight: 600; margin-bottom: 14px; }
.ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.ph-card {
  position: relative; border-radius: 16px; overflow: hidden; padding: 10px; min-height: 110px;
  display: flex; flex-direction: column; justify-content: space-between;
  background-image: var(--img); background-size: cover; background-position: center;
}
.ph-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,11,6,.92), rgba(6,11,6,.15)); }
.ph-ico { position: relative; z-index: 1; width: 30px; height: 30px; display: grid; place-items: center; font-size: 15px; background: rgba(6,11,6,.6); border: 1.5px solid color-mix(in srgb, var(--c) 70%, transparent); border-radius: 9px; }
.ph-card-t { position: relative; z-index: 1; font-size: 11px; font-weight: 800; color: #fff; line-height: 1.2; }
.ph-tabbar { display: flex; justify-content: space-around; align-items: center; padding: 12px 0 6px; margin-top: 10px; border-top: 1px solid var(--border); font-size: 18px; filter: grayscale(.4) opacity(.6); }
.ph-tabbar .on { filter: none; opacity: 1; }
.ph-tabbar .scan { background: var(--green-dk); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; filter: none; opacity: 1; margin-top: -16px; border: 3px solid #0A0F0A; box-shadow: 0 6px 16px -4px var(--green); }

/* Phone screen playing a live video */
.phone-screen-video { padding: 0; position: relative; }
.phone-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.phone-topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 44px 16px 22px;
  background: linear-gradient(180deg, rgba(6,11,6,.78), rgba(6,11,6,0));
}
.phone-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 16px 20px; display: flex; justify-content: center;
  background: linear-gradient(0deg, rgba(6,11,6,.82), rgba(6,11,6,0));
}
.phone-caption-pill {
  font-size: 12px; font-weight: 800; letter-spacing: .2px; color: var(--white);
  background: rgba(34,197,94,.18); border: 1px solid rgba(34,197,94,.4);
  padding: 8px 16px; border-radius: 999px; backdrop-filter: blur(6px);
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(4deg); } }

/* ---------- Trust ---------- */
.trust { padding: 30px 0 10px; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.trust-title { text-align: center; color: var(--dim-2); font-size: 13.5px; font-weight: 600; letter-spacing: .3px; margin-bottom: 18px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; }
.trust-row span { display: flex; align-items: center; gap: 8px; font-size: 16px; }
.trust-row em { font-style: normal; color: var(--text); font-weight: 700; font-size: 15px; }

/* ---------- Section shared ---------- */
.eyebrow { display: inline-block; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -1px; color: var(--white); }
.section-sub { color: var(--dim); font-size: 17px; margin-top: 16px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }

/* ---------- Intro ---------- */
.intro { padding: 90px 0; }
.intro-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.intro-text { color: var(--dim); font-size: 19px; line-height: 1.75; margin-top: 22px; }

/* ---------- Features ---------- */
.features { padding: 50px 0 90px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card {
  position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; overflow: hidden; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.feat-card:hover { transform: translateY(-5px); border-color: rgba(34,197,94,.4); background: rgba(34,197,94,.08); }
.feat-card h3 { font-size: 19px; font-weight: 800; color: var(--white); margin: 16px 0 8px; letter-spacing: -.3px; }
.feat-card p { color: var(--dim); font-size: 14.5px; }
.feat-ico { width: 50px; height: 50px; display: grid; place-items: center; font-size: 24px; border-radius: 14px; background: color-mix(in srgb, var(--c) 14%, transparent); border: 1px solid color-mix(in srgb, var(--c) 35%, transparent); }
/* big feature cards with image */
.feat-card.big { grid-column: span 1; padding: 0; display: flex; flex-direction: column; min-height: 340px; }
.feat-card.big .feat-media { height: 170px; background-image: var(--img); background-size: cover; background-position: var(--pos, center 28%); }
.feat-card.big .feat-body { padding: 22px 26px 26px; position: relative; }
.feat-card.big .feat-ico { position: absolute; top: -32px; left: 26px; background: var(--bg-3); }
.feat-card.big h3 { margin-top: 22px; }

/* Coming-soon badge on feature cards */
.feat-card .feat-soon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(148,163,184,.22); border: 1px solid rgba(148,163,184,.5);
  color: #CBD5E1; font-size: 10px; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px);
}
.feat-card.is-soon .feat-media { filter: grayscale(.45) brightness(.78); }
/* Small inline "coming soon" tag for section eyebrows */
.soon-tag {
  display: inline-block; margin-left: 10px; vertical-align: middle;
  background: rgba(148,163,184,.18); border: 1px solid rgba(148,163,184,.42);
  color: #CBD5E1; font-size: 10px; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
}
/* Business feature card accent */
.feat-card.biz .feat-ico { background: rgba(212,168,71,.14); border-color: rgba(212,168,71,.4); }

/* ---------- Showcase (video reels) ---------- */
.showcase { position: relative; padding: 40px 0 96px; overflow: hidden; }
.showcase-glow {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 520px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(34,197,94,.14), transparent 70%);
}
.reels {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: 940px; margin: 0 auto;
}
.reel { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.reel-phone {
  position: relative; width: 100%; max-width: 280px; aspect-ratio: 9 / 16;
  border-radius: 30px; overflow: hidden; padding: 8px;
  background: linear-gradient(160deg, #1c241c, #0a0f0a);
  border: 1px solid rgba(34,197,94,.22);
  box-shadow: 0 34px 80px -34px rgba(0,0,0,.92), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.reel-phone::after {
  content: ""; position: absolute; inset: 8px; border-radius: 24px; z-index: 2;
  pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  background: linear-gradient(180deg, rgba(6,11,6,.28) 0%, transparent 22%, transparent 78%, rgba(6,11,6,.42) 100%);
}
.reel-phone video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 24px; background: #060b06;
}
.reel:hover .reel-phone {
  transform: translateY(-8px); border-color: rgba(34,197,94,.45);
  box-shadow: 0 44px 90px -34px rgba(0,0,0,.95), 0 0 44px -18px rgba(34,197,94,.5);
}
.reel-cap {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--text);
}
.reel-ico {
  width: 34px; height: 34px; display: grid; place-items: center; font-size: 16px; border-radius: 11px;
  background: color-mix(in srgb, var(--c) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 38%, transparent);
}

/* ---------- Spotlight (Ingredients / Authenticator) ---------- */
.spotlight { padding: 80px 0; }
.spotlight + .spotlight { padding-top: 0; }
.spotlight-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.spotlight-visual { position: relative; display: flex; justify-content: center; }
.spot-cta { margin-top: 30px; }

/* Ingredient finder card */
.finder-card { width: 100%; max-width: 360px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 26px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.85); }
.finder-photo { position: relative; height: 175px; background-size: cover; background-position: center; }
.finder-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,20,14,.95), rgba(14,20,14,.1) 60%); }
.finder-conf { position: absolute; top: 14px; left: 14px; z-index: 1; background: rgba(6,11,6,.72); border: 1px solid var(--border); color: var(--green); font-weight: 900; font-size: 20px; padding: 6px 12px; border-radius: 14px; backdrop-filter: blur(6px); }
.finder-body { padding: 18px 20px 22px; }
.finder-prod { font-size: 23px; font-weight: 900; color: var(--white); letter-spacing: -.4px; }
.finder-line { color: var(--dim); font-size: 13px; margin-top: 2px; }
.finder-store { color: var(--text); font-size: 14px; font-weight: 700; margin-top: 14px; }
.finder-proof { display: flex; align-items: center; gap: 8px; color: var(--green); font-size: 13px; font-weight: 600; margin-top: 9px; }
.finder-actions { display: flex; gap: 10px; margin-top: 18px; }
.finder-btn { flex: 1; text-align: center; padding: 12px; border-radius: 13px; font-weight: 800; font-size: 14px; border: 1px solid var(--border); color: var(--text); background: var(--card); }
.finder-btn.primary { background: var(--green); color: #052e16; border-color: var(--green); }

/* Authenticator verdict card */
.verdict-card { width: 100%; max-width: 360px; background: var(--bg-3); border: 1px solid rgba(251,191,36,.35); border-radius: 26px; padding: 24px; text-align: center; box-shadow: 0 30px 70px -30px rgba(0,0,0,.85); }
.verdict-tabs { display: flex; gap: 5px; background: rgba(255,255,255,.04); border: 1px solid var(--border-2); border-radius: 13px; padding: 4px; margin-bottom: 22px; }
.verdict-tabs .vt { flex: 1; font-size: 12.5px; font-weight: 700; color: var(--dim); padding: 9px 4px; border-radius: 9px; }
.verdict-tabs .vt.active { background: rgba(34,197,94,.16); color: var(--green); }
.verdict-emoji { font-size: 46px; line-height: 1; }
.verdict-pill { display: inline-block; margin-top: 12px; background: rgba(251,191,36,.15); border: 1px solid rgba(251,191,36,.4); color: #FBBF24; font-weight: 900; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.verdict-prod { font-size: 21px; font-weight: 800; color: var(--white); margin-top: 14px; letter-spacing: -.3px; }
.verdict-score-label { color: var(--dim); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 20px; }
.verdict-bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; margin-top: 8px; }
.verdict-bar span { display: block; height: 100%; background: #FBBF24; border-radius: 4px; }
.verdict-num { color: #FBBF24; font-weight: 900; font-size: 20px; text-align: right; margin-top: 6px; }
.verdict-diff { display: flex; gap: 8px; text-align: left; color: var(--dim); font-size: 13px; line-height: 1.5; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-2); }

/* ---------- Authenticator video (in spotlight) ---------- */
.auth-video {
  width: 100%; max-width: 460px; aspect-ratio: 16 / 9; border-radius: 24px; overflow: hidden;
  background: #060b06; border: 1px solid var(--border);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.85);
}
.auth-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- How ---------- */
.how { padding: 90px 0; background: linear-gradient(180deg, transparent, rgba(34,197,94,.03), transparent); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .3s var(--ease); }
.step:hover { transform: translateY(-5px); }
.step-n { font-family: "Fraunces", serif; font-size: 40px; font-weight: 700; color: rgba(34,197,94,.35); }
.step h3 { font-size: 18px; font-weight: 800; color: var(--white); margin: 10px 0 8px; }
.step p { color: var(--dim); font-size: 14.5px; }

/* ---------- Heritage ---------- */
.heritage { padding: 90px 0; }
.heritage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.check-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text); }
.check { flex-shrink: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(34,197,94,.15); color: var(--green); font-weight: 900; font-size: 13px; border: 1px solid var(--border); }
.check.gold { background: rgba(212,168,71,.16); color: var(--gold); border-color: rgba(212,168,71,.3); }
.check.green { background: rgba(34,197,94,.16); color: var(--green); border-color: rgba(34,197,94,.35); }
.heritage-visual { display: flex; justify-content: center; }
.map-card {
  position: relative; width: 100%; max-width: 420px; aspect-ratio: 4/5; border-radius: 28px; overflow: hidden;
  background: var(--bg-3); border: 1px solid var(--border); padding: 24px;
  display: grid; place-items: center; box-shadow: 0 30px 70px -30px rgba(0,0,0,.8);
}
.map-img { width: 78%; opacity: .9; filter: drop-shadow(0 10px 30px rgba(34,197,94,.25)); }
.map-score { position: absolute; top: 20px; left: 20px; background: rgba(6,11,6,.7); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 16px; padding: 12px 16px; }
.map-score-label { display: block; font-size: 11px; color: var(--dim); font-weight: 600; }
.map-score-val { font-size: 28px; font-weight: 900; color: var(--green); letter-spacing: -1px; }
.map-pin { position: absolute; font-size: 24px; animation: float 4s ease-in-out infinite; }
.map-pin.p1 { top: 30%; right: 22%; }
.map-pin.p2 { bottom: 26%; right: 30%; animation-delay: 1s; }
.map-pin.p3 { bottom: 36%; left: 26%; animation-delay: 2s; }

/* ---------- Alessandra ---------- */
.ale { padding: 70px 0; }
.ale-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.chat-card { max-width: 380px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 24px; padding: 20px; box-shadow: 0 30px 70px -30px rgba(0,0,0,.8); }
.chat-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.chat-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: "Fraunces", serif; font-weight: 700; font-size: 22px; color: #052e16; background: linear-gradient(135deg, var(--green-lt), var(--green-dk)); border: 2px solid var(--green); }
.chat-name { font-size: 17px; font-weight: 900; color: var(--white); }
.chat-handle { font-size: 13px; color: var(--green); font-weight: 600; }
.chat-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--dim); margin-top: 2px; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-lt); box-shadow: 0 0 8px var(--green-lt); }
.chat-bubble { margin: 18px 0; background: rgba(34,197,94,.1); border: 1px solid var(--border); border-radius: 18px 18px 18px 4px; padding: 14px 16px; font-size: 15px; color: var(--text); max-width: 85%; }
.chat-input { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.04); border: 1px solid var(--border-2); border-radius: 14px; padding: 12px 14px; color: var(--dim-2); font-size: 14px; }
.chat-send { width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #052e16; display: grid; place-items: center; font-weight: 900; }

/* ---------- Premium ---------- */
.premium { padding: 90px 0; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; align-items: start; }
.plan { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: 26px; padding: 34px 28px; transition: transform .3s var(--ease); }
.plan:hover { transform: translateY(-5px); }
.plan.featured { background: linear-gradient(160deg, rgba(34,197,94,.12), rgba(34,197,94,.04)); border-color: rgba(34,197,94,.45); }
.plan.business { background: linear-gradient(160deg, rgba(212,168,71,.12), rgba(34,197,94,.04)); border-color: rgba(212,168,71,.42); }
.plan-badge { position: absolute; top: -13px; left: 28px; background: linear-gradient(135deg, #4ADE80, var(--green-dk)); color: #052e16; font-size: 12px; font-weight: 900; padding: 6px 14px; border-radius: 999px; }
.plan.business .plan-badge { background: linear-gradient(135deg, #E9C46A, var(--gold)); color: #1A1208; }
.btn-green { background: var(--green); color: #052e16; border: 1px solid var(--green); }
.btn-green:hover { filter: brightness(1.08); }
.plan-name { font-size: 16px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 24px; }
.plan-amt { font-family: "Fraunces", serif; font-size: 46px; font-weight: 700; color: var(--white); letter-spacing: -1px; }
.plan-per { color: var(--dim); font-size: 15px; font-weight: 600; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.plan-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }

/* ---------- FAQ ---------- */
.faq { padding: 70px 0 90px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; color: var(--white); font-size: 16.5px; font-weight: 700; font-family: inherit; }
.faq-q i { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q i::before, .faq-q i::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-q i::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq-q i::after { left: 10px; top: 3px; bottom: 3px; width: 2px; }
.faq-item.open .faq-q i::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 22px 22px; color: var(--dim); font-size: 15px; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.cta-glow { position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(closest-side, rgba(34,197,94,.25), transparent 70%); pointer-events: none; }
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-title { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(30px, 5vw, 50px); line-height: 1.08; letter-spacing: -1px; color: var(--white); }
.cta-text { color: var(--dim); font-size: 18px; margin: 18px 0 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 12px; background: var(--white); color: #0A0F0A; padding: 12px 22px; border-radius: 16px; transition: transform .25s var(--ease); }
.store-btn:hover { transform: translateY(-3px); }
.store-ico { width: 26px; height: 26px; display: grid; place-items: center; font-size: 18px; }
.store-ico::before { content: "\f8ff"; font-family: -apple-system, sans-serif; }
.store-btn:last-child .store-ico::before { content: ""; }
.store-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-txt small { font-size: 11px; opacity: .7; }
.store-txt b { font-size: 16px; }
button.store-btn { border: 0; cursor: pointer; font: inherit; }
.android-toast {
  position: fixed; left: 50%; bottom: 32px; transform: translate(-50%, 20px);
  z-index: 2000; max-width: 90vw;
  background: rgba(10,15,10,.94); color: var(--white);
  border: 1px solid var(--border-2); border-radius: 14px;
  padding: 14px 22px; font-size: 15px; font-weight: 700;
  box-shadow: 0 18px 46px -14px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.android-toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-2); padding: 60px 0 30px; background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; margin-bottom: 40px; }
.footer-tagline { color: var(--dim); font-size: 15px; margin-top: 16px; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: var(--dim); font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; border-top: 1px solid var(--border-2); color: var(--dim-2); font-size: 13.5px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-stats { justify-content: center; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .heritage-inner, .ale-inner { grid-template-columns: 1fr; gap: 40px; }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
  .ale-visual { order: 2; display: flex; justify-content: center; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight.alt .spotlight-copy { order: 1; }
  .spotlight.alt .spotlight-visual { order: 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .reels { grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 560px; }
  .reels .reel:last-child { grid-column: 1 / -1; max-width: 280px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(7,11,7,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    padding: 10px 24px; transform: translateY(-130%); transition: transform .35s var(--ease); pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border-2); }
  .burger { display: flex; }
  .nav-right .btn-primary { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card.big { min-height: auto; }
  .plans { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .reels { grid-template-columns: 1fr; max-width: 300px; }
  .reels .reel:last-child { grid-column: auto; }
}

@media (max-width: 420px) {
  .phone { width: 270px; height: 560px; }
  .trust-row { gap: 18px 26px; }
}
