/* ============================================================
   SCENTED — marketing site
   Luxury-minimal: marble surfaces, one gold accent, serif display.
   Palette mirrors the app's design tokens (src/theme/tokens.ts).
   ============================================================ */

:root {
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --surface-alt: #F5F1E9;
  --text: #1C1B1F;
  --text-2: #8A857D;
  --accent: #C9A227;
  --accent-deep: #A9861A;
  --accent-soft: #F8F2DF;
  --accent-muted: #EFE3BC;
  --hairline: #ECE7DD;
  --success: #5E7D5A;
  --destructive: #A65B4B;
  --shadow-sm: 0 2px 10px rgba(28, 27, 31, 0.06);
  --shadow-md: 0 18px 50px -20px rgba(28, 27, 31, 0.22);
  --shadow-lg: 0 40px 90px -30px rgba(28, 27, 31, 0.32);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; }
em { font-style: italic; }
a { color: inherit; text-decoration: none; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  z-index: 1000; transition: width 0.1s linear;
}

/* ---------- Ambient orbs ---------- */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.note-orb {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.5;
  animation: drift 22s var(--ease) infinite alternate;
}
.note-orb.n1 { width: 340px; height: 340px; top: -60px; left: -80px; background: radial-gradient(circle, #F3E6B8, transparent 70%); }
.note-orb.n2 { width: 260px; height: 260px; top: 30%; right: -60px; background: radial-gradient(circle, #F1E4D0, transparent 70%); animation-delay: -6s; }
.note-orb.n3 { width: 200px; height: 200px; top: 62%; left: 8%; background: radial-gradient(circle, #EFE3BC, transparent 70%); animation-delay: -11s; }
.note-orb.n4 { width: 300px; height: 300px; bottom: 4%; right: 12%; background: radial-gradient(circle, #F6EDD6, transparent 70%); animation-delay: -3s; }
.note-orb.n5 { width: 180px; height: 180px; top: 12%; left: 46%; background: radial-gradient(circle, #F8F2DF, transparent 70%); animation-delay: -14s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.12); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  padding: 12px 22px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--text); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(28,27,31,0.4); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--hairline);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 9px; margin-right: auto; }
.brand-mark { color: var(--accent-deep); display: grid; place-items: center; }
.brand-word { font-family: var(--serif); font-weight: 600; letter-spacing: 0.22em; font-size: 18px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 6px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column; gap: 6px; padding: 0 24px;
  max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), padding 0.35s;
  background: rgba(250,247,242,0.96); backdrop-filter: blur(14px);
}
.nav-mobile.open { max-height: 360px; padding: 8px 24px 20px; }
.nav-mobile a { padding: 12px 4px; border-bottom: 1px solid var(--hairline); font-weight: 500; }
.nav-mobile a.btn { border-bottom: 0; margin-top: 10px; }

/* ---------- Layout helpers ---------- */
main { position: relative; z-index: 1; }
section { position: relative; }
section[id], #top { scroll-margin-top: 84px; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 12.5px; font-weight: 600;
  color: var(--accent-deep); margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--accent); }
.section-head h2 { font-size: clamp(30px, 4.6vw, 46px); }
.section-sub { margin-top: 16px; color: var(--text-2); font-size: 17px; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 150px 24px 70px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text-2);
  margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(94,125,90,0.16); }
.hero h1 { font-size: clamp(42px, 6.6vw, 74px); font-weight: 400; }
.hero h1 em { color: var(--accent-deep); }
.lede { margin: 24px 0 32px; font-size: 19px; color: var(--text-2); max-width: 500px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-proof { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-2); }
.hero-proof strong { color: var(--text); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 15px; }

/* ---------- Phone mockup ---------- */
.hero-phone { position: relative; display: flex; justify-content: center; perspective: 1400px; }
.phone-glow {
  position: absolute; inset: -10% 5%; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,162,39,0.28), transparent 72%);
  filter: blur(30px);
}
.phone {
  width: 300px; background: #17161A; border-radius: 44px; padding: 11px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.06);
  transform: rotateY(-11deg) rotateX(4deg) rotateZ(1deg);
  transition: transform 0.5s var(--ease);
  animation: floaty 6s ease-in-out infinite;
}
.hero-phone:hover .phone { transform: rotateY(-4deg) rotateX(2deg); }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.phone-notch { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #17161A; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen {
  background: var(--bg); border-radius: 34px; overflow: hidden; height: 600px;
  display: flex; flex-direction: column; position: relative;
}
.app-status { display: flex; justify-content: space-between; padding: 12px 20px 4px; font-size: 12px; font-weight: 700; }
.app-status-icons { letter-spacing: -1px; font-size: 10px; }

.app-today { padding: 8px 16px 0; flex: 1; overflow: hidden; }
.app-row-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.app-kicker { font-size: 11px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.app-h { font-size: 22px; font-weight: 500; margin-top: 2px; }
.weather-chip { background: var(--accent-soft); color: var(--accent-deep); font-size: 13px; font-weight: 600; padding: 6px 11px; border-radius: 999px; }

.pick-card {
  background: var(--surface); border-radius: 18px; padding: 16px; box-shadow: var(--shadow-sm);
  display: flex; gap: 14px; border: 1px solid var(--hairline);
}
.pick-bottle {
  width: 68px; height: 94px; border-radius: 12px; flex-shrink: 0; overflow: hidden;
  background: linear-gradient(160deg, #ffffff, var(--surface-alt));
  border: 1px solid var(--hairline); display: grid; place-items: center;
}
.pick-bottle img { width: 100%; height: 100%; object-fit: contain; padding: 6px; mix-blend-mode: multiply; }
.pick-meta { flex: 1; position: relative; padding-right: 50px; }
.pick-brand { font-size: 11px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; }
.pick-name { font-family: var(--serif); font-size: 17px; line-height: 1.15; margin: 1px 0 6px; }
.pick-why { font-size: 11.5px; color: var(--text-2); line-height: 1.4; margin-top: 8px; }

.match-ring { position: absolute; top: 0; right: 0; width: 44px; height: 44px; }
.match-ring svg { transform: rotate(-90deg); }
.match-ring .ring-bg { fill: none; stroke: var(--accent-muted); stroke-width: 4; opacity: 0.5; }
.match-ring .ring-fg {
  fill: none; stroke: var(--accent); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 113; stroke-dashoffset: 113; transition: stroke-dashoffset 1.4s var(--ease);
}
.match-ring.filled .ring-fg { stroke-dashoffset: var(--off, 7); }
.match-num { position: absolute; inset: 0; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--accent-deep); }

.worn-btn { width: 100%; margin: 14px 0 12px; background: var(--text); color: #fff; border: 0; border-radius: 12px; padding: 12px; font-family: var(--sans); font-weight: 600; font-size: 14px; }
.alt-row { display: flex; gap: 8px; margin-bottom: 14px; }
.alt-chip { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 500; background: var(--surface); border: 1px solid var(--hairline); padding: 6px 10px; border-radius: 999px; }
.alt-swatch { width: 12px; height: 12px; border-radius: 50%; }
.alt-thumb { width: 18px; height: 18px; border-radius: 4px; object-fit: contain; background: var(--surface-alt); mix-blend-mode: multiply; flex-shrink: 0; }
.a1 { background: #6b4a2b; } .a2 { background: #7fa0b8; } .a3 { background: #9a7b3f; }
.alert-strip { display: flex; align-items: center; gap: 8px; background: var(--accent-soft); border: 1px solid var(--accent-muted); border-radius: 12px; padding: 10px 12px; font-size: 11.5px; }
.alert-strip strong { color: var(--accent-deep); }

.app-tabbar {
  display: grid; grid-template-columns: repeat(5, 1fr); text-align: center;
  padding: 8px 4px 14px; border-top: 1px solid var(--hairline); background: rgba(255,255,255,0.6);
  font-size: 9px; color: var(--text-2); line-height: 1.7;
}
.app-tabbar .tab span { font-size: 15px; }
.tab-on { color: var(--accent-deep); font-weight: 700; }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; padding: 26px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--surface-alt); margin-top: 10px; }
.marquee { display: flex; gap: 26px; width: max-content; animation: scrollx 34s linear infinite; font-family: var(--serif); font-size: 22px; color: var(--text-2); font-style: italic; }
.marquee span { opacity: 0.7; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Promise ---------- */
.promise { max-width: var(--maxw); margin: 0 auto; padding: 90px 24px; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.promise-item {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 18px; padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.promise-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.promise-num { font-family: var(--serif); font-size: 15px; color: var(--accent); letter-spacing: 0.1em; }
.promise-item h3 { font-size: 22px; margin: 12px 0 10px; }
.promise-item p { color: var(--text-2); font-size: 15.5px; }

/* ---------- Features ---------- */
.features { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 40px; }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 54px 0;
}
.feature-rev .feature-text { order: 2; }
.feature-tag { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; color: var(--accent-deep); background: var(--accent-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.feature-text h3 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.feature-text > p { color: var(--text-2); font-size: 17px; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { position: relative; padding-left: 28px; font-weight: 500; font-size: 15.5px; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 19px; height: 19px;
  background: var(--accent-soft); color: var(--accent-deep); border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}

/* Feature visuals */
.feature-visual { display: flex; justify-content: center; }
.mini-card {
  width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 22px; padding: 22px; box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease);
}
.feature:hover .mini-card { transform: translateY(-6px) rotate(-0.5deg); }

.mt-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: 18px; }
.mt-weather { font-family: var(--sans); font-size: 13px; font-weight: 600; background: var(--accent-soft); color: var(--accent-deep); padding: 4px 10px; border-radius: 999px; }
.mt-pick { display: flex; gap: 14px; align-items: center; margin: 18px 0 12px; }
.mt-bottle { width: 58px; height: 80px; border-radius: 10px; flex-shrink: 0; overflow: hidden; background: linear-gradient(160deg, #ffffff, var(--surface-alt)); border: 1px solid var(--hairline); display: grid; place-items: center; }
.mt-bottle img { width: 100%; height: 100%; object-fit: contain; padding: 6px; mix-blend-mode: multiply; }
.mt-pick strong { font-family: var(--serif); font-size: 18px; }
.mt-pick p { font-size: 12px; color: var(--text-2); }
.mt-match { display: inline-block; margin-top: 5px; font-size: 11px; font-weight: 700; color: var(--accent-deep); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; }
.mt-why { font-size: 12.5px; color: var(--text-2); background: var(--surface-alt); border-radius: 10px; padding: 10px 12px; }

.mt-search { background: var(--surface-alt); border-radius: 10px; padding: 11px 14px; font-size: 13px; color: var(--text-2); margin-bottom: 14px; }
.mt-rowlabel { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); margin: 8px 0; }
.mt-scroll { display: flex; gap: 10px; margin-bottom: 6px; }
.mt-tile { flex: 1; text-align: center; min-width: 0; }
.mt-sw { display: grid; place-items: center; height: 64px; border-radius: 10px; margin-bottom: 6px; background: linear-gradient(160deg, #ffffff, var(--surface-alt)); border: 1px solid var(--hairline); overflow: hidden; }
.mt-sw img { width: 100%; height: 100%; object-fit: contain; padding: 7px; mix-blend-mode: multiply; }
.mt-tile small { display: block; font-size: 10.5px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mt-tile b { font-size: 12px; color: var(--accent-deep); }

.mt-dnatitle { font-family: var(--serif); font-size: 20px; display: block; margin-bottom: 18px; }
.dna-bar { display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 13px; font-weight: 500; }
.dna-bar i { display: block; height: 10px; border-radius: 999px; background: var(--accent-muted); position: relative; overflow: hidden; }
.dna-bar i::after { content: ""; position: absolute; inset: 0; width: var(--v); background: linear-gradient(90deg, var(--accent), var(--accent-deep)); border-radius: 999px; transform-origin: left; animation: growx 1.2s var(--ease) both; }
@keyframes growx { from { transform: scaleX(0); } }

.deal-row { display: flex; align-items: baseline; gap: 8px; font-size: 14px; font-weight: 500; margin-top: 6px; }
.deal-row span:first-child { flex: 1; }
.deal-old { color: var(--text-2); text-decoration: line-through; font-size: 12px; }
.deal-new { color: var(--success); font-weight: 700; }
.deal-bar { height: 8px; border-radius: 999px; background: var(--surface-alt); margin: 6px 0 14px; overflow: hidden; }
.deal-bar i { display: block; height: 100%; width: var(--v); background: linear-gradient(90deg, var(--success), #7b9a76); border-radius: 999px; }
.deal-total { font-size: 13px; background: var(--accent-soft); border-radius: 10px; padding: 10px 12px; margin-top: 6px; }
.deal-total strong { color: var(--accent-deep); }

/* ---------- AI band ---------- */
/* ---------- Demo ---------- */
.demo { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 70px; }
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.demo-card { text-align: center; }
.demo-frame {
  position: relative; aspect-ratio: 620 / 1280; max-width: 220px; margin: 0 auto 22px;
  border-radius: 22px; overflow: hidden; background: #17161A;
  box-shadow: var(--shadow-md); border: 1px solid var(--hairline);
}
.demo-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.demo-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; margin-bottom: 8px; }
.demo-card p { font-size: 14.5px; color: var(--text-2); max-width: 280px; margin: 0 auto; }

.ai-band { background: var(--text); color: #F2EFEA; margin: 70px 0; padding: 84px 24px; }
.ai-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.ai-inner h2 { font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: 46px; font-weight: 400; }
.ai-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
.ai-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 26px; transition: transform 0.35s var(--ease), background 0.35s; }
.ai-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }
.ai-ico { font-size: 28px; margin-bottom: 14px; }
.ai-card h4 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.ai-card p { font-size: 14.5px; color: #B8B3AC; }

/* ---------- How ---------- */
.how { max-width: var(--maxw); margin: 0 auto; padding: 80px 24px; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 8px; }
.step { text-align: center; padding: 0 14px; }
.step-num {
  width: 52px; height: 52px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; font-family: var(--serif); font-size: 22px; color: var(--accent-deep);
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--text-2); font-size: 15px; }
.step-line { height: 1px; background: repeating-linear-gradient(90deg, var(--accent-muted) 0 6px, transparent 6px 12px); margin-top: 26px; }

/* ---------- Pricing ---------- */
.pricing { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 90px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 22px; padding: 32px 28px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan h3 { font-size: 22px; margin-bottom: 14px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.plan-price .amt { font-family: var(--serif); font-size: 40px; font-weight: 500; }
.plan-price .per { color: var(--text-2); font-size: 15px; }
.plan-note { color: var(--text-2); font-size: 14px; margin-bottom: 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan ul li { position: relative; padding-left: 26px; font-size: 15px; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }
.plan-featured {
  background: linear-gradient(180deg, #fffdf6, var(--surface));
  border: 1.5px solid var(--accent); box-shadow: var(--shadow-md); position: relative;
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-sm);
}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; padding: 40px 24px 90px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 12px; transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); border-color: var(--accent-muted); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-size: 16.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 24px; font-weight: 300; color: var(--accent-deep); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 20px; color: var(--text-2); font-size: 15.5px; }

/* ---------- Final CTA ---------- */
.get { padding: 30px 24px 100px; }
.get-inner {
  max-width: 880px; margin: 0 auto; text-align: center;
  background: radial-gradient(120% 130% at 50% 0%, #fffdf6, var(--surface));
  border: 1px solid var(--accent-muted); border-radius: 30px; padding: 64px 40px;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.get-inner::before { content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 420px; height: 200px; background: radial-gradient(closest-side, rgba(201,162,39,0.22), transparent); }
.get-inner h2 { font-size: clamp(30px, 4.4vw, 46px); position: relative; }
.get-inner > p { color: var(--text-2); font-size: 18px; margin: 18px auto 32px; max-width: 520px; position: relative; }
.get-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; background: var(--text); color: #fff;
  padding: 12px 22px; border-radius: 14px; transition: transform 0.25s var(--ease);
}
.store-badge:hover { transform: translateY(-3px); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 600; font-size: 18px; }
.store-badge small { font-size: 10.5px; font-weight: 500; opacity: 0.8; letter-spacing: 0.02em; }
.get-fine { margin-top: 22px; font-size: 13.5px; color: var(--text-2); position: relative; }

/* ---------- Contact ---------- */
.contact { max-width: 640px; margin: 0 auto; padding: 20px 24px 100px; text-align: center; }
.contact-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 20px;
  padding: 36px 32px; box-shadow: var(--shadow-sm);
}
.contact-email {
  display: inline-block; font-family: var(--serif); font-size: clamp(22px, 3.4vw, 30px);
  color: var(--accent-deep); border-bottom: 1px solid var(--accent-muted); padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover { color: var(--text); border-color: var(--text); }
.contact-note { margin-top: 14px; font-size: 14px; color: var(--text-2); }

/* ---------- Footer ---------- */
.footer { background: var(--surface-alt); border-top: 1px solid var(--hairline); padding: 60px 24px 30px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer-brand .brand-word { font-size: 20px; }
.footer-brand p { color: var(--text-2); margin-top: 12px; font-size: 15px; max-width: 260px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h5 { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 14px; }
.footer-cols a { display: block; font-size: 14.5px; color: var(--text); padding: 5px 0; transition: color 0.2s; }
.footer-cols a:hover { color: var(--accent-deep); }
.footer-base {
  max-width: var(--maxw); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--text-2);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .demo-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; gap: 44px; }
  .hero { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero-copy { order: 1; }
  .hero-phone { order: 2; margin-top: 20px; }
  .eyebrow, .hero-cta { justify-content: center; }
  .hero-cta { display: inline-flex; }
  .hero-proof { justify-content: center; }
  .lede { margin-left: auto; margin-right: auto; }
  .promise-grid { grid-template-columns: 1fr; }
  .feature, .feature-rev { grid-template-columns: 1fr; gap: 32px; }
  .feature-rev .feature-text { order: 0; }
  .feature-text { text-align: center; }
  .feature-list { display: inline-flex; text-align: left; }
  .feature-tag { display: inline-block; }
  .ai-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step-line { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .get-inner { padding: 44px 22px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
