/* ============================================================================
   FocusDrop — Marketing site design system
   Mirrors the iOS app's tokens (FDColors / FDTypography): warm cream surfaces,
   muted ADHD-friendly purple, SF Pro Rounded type, calm editorial motion.
   ========================================================================== */

/* ----- Fonts: real SF Pro Rounded on Apple via ui-rounded, Nunito elsewhere - */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  /* Brand */
  --purple: #7B6FD4;
  --purple-dark: #6B5FC4;
  --purple-soft: #B5AFF0;
  --pink: #E88CAE;
  --gold: #F5C963;
  --green: #2EBD8E;
  --coral: #D4896E;
  --cyan: #6DC9D4;
  --red: #C95A5A;

  /* Surfaces — warm, never pure white */
  --cream: #FAF8F5;
  --cream-2: #F3EFEA;
  --warm-gray: #E5E0DA;
  --elevated: #FFFFFD;
  --ink: #0E0B08;            /* warm near-black */

  /* Text */
  --text: #1C1714;
  --text-2: #6B635C;
  --text-3: #A89F97;
  --on-dark: #F6F2EE;
  --on-dark-2: #B8AEA6;

  /* Effort */
  --effort-s: #6DD4B8;
  --effort-m: #F5C963;
  --effort-l: #D4896E;
  --effort-xl: #C95A5A;

  /* Categories */
  --cat-work: #7B6FD4;
  --cat-personal: #E88CAE;
  --cat-health: #2EBD8E;
  --cat-creative: #F5C963;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #B5AFF0 0%, #E88CAE 100%);
  --grad-purple: linear-gradient(135deg, #8B7FE0 0%, #6B5FC4 100%);
  --grad-warm: linear-gradient(135deg, #F5C963 0%, #E88CAE 100%);

  /* Shape */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --pill: 999px;

  /* Shadow — soft, low opacity */
  --shadow-sm: 0 2px 10px rgba(28,23,20,.06);
  --shadow-md: 0 12px 30px rgba(28,23,20,.10);
  --shadow-lg: 0 30px 70px rgba(28,23,20,.14);
  --shadow-purple: 0 20px 50px rgba(123,111,212,.30);

  --font: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* ----- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: rgba(123,111,212,.25); }

/* ----- Layout ------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 140px); }

/* ----- Typography -------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; opacity: .6; }
.eyebrow.center::after { content: ""; width: 18px; height: 2px; border-radius: 2px; background: currentColor; opacity: .6; }

h1, h2, h3 { font-weight: 900; letter-spacing: -0.03em; line-height: 1.04; color: var(--text); }
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); letter-spacing: -0.02em; line-height: 1.15; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-2); font-weight: 600; line-height: 1.55; }
.muted { color: var(--text-2); }
.grad-text { background: var(--grad-purple); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text-warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 18px; }
.section-head h2 { margin-top: 16px; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 1rem; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: var(--pill);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, color .2s;
  will-change: transform;
}
.btn:active { transform: scale(.96); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-purple); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 26px 60px rgba(123,111,212,.42); }
.btn-ghost { background: rgba(28,23,20,.05); color: var(--text); }
.btn-ghost:hover { background: rgba(28,23,20,.09); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* App Store badge */
.appstore {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; padding: 12px 22px 12px 18px; border-radius: 16px;
  transition: transform .25s, box-shadow .25s;
}
.appstore:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.appstore .apple { width: 26px; height: 26px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M17.05 12.04c-.03-2.6 2.13-3.85 2.22-3.91-1.21-1.77-3.09-2.01-3.76-2.04-1.6-.16-3.12.94-3.93.94-.81 0-2.06-.92-3.39-.89-1.74.03-3.35 1.01-4.25 2.57-1.81 3.14-.46 7.79 1.3 10.34.86 1.25 1.89 2.65 3.23 2.6 1.3-.05 1.79-.84 3.36-.84 1.57 0 2.01.84 3.38.81 1.4-.02 2.28-1.27 3.13-2.53.99-1.45 1.4-2.85 1.42-2.92-.03-.01-2.72-1.04-2.75-4.13M14.53 4.42c.71-.86 1.19-2.06 1.06-3.25-1.02.04-2.26.68-2.99 1.54-.66.76-1.23 1.98-1.08 3.15 1.14.09 2.3-.58 3.01-1.44'/%3E%3C/svg%3E") center/contain no-repeat; }
.appstore .as-text { display: flex; flex-direction: column; line-height: 1.15; }
.appstore .as-text small { font-size: 11px; font-weight: 600; opacity: .85; letter-spacing: .02em; }
.appstore .as-text strong { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }

/* Official Apple "Download on the App Store" badge */
.badge-appstore { display: inline-block; line-height: 0; transition: transform .25s cubic-bezier(.2,.8,.2,1), filter .25s; }
.badge-appstore img { height: 56px; width: auto; display: block; }
.badge-appstore:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 22px rgba(0,0,0,.22)); }
.badge-appstore:active { transform: scale(.97); }
.nav .badge-appstore img { height: 42px; }
@media (max-width: 560px) { .badge-appstore img { height: 50px; } }

/* ----- Nav --------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s, backdrop-filter .3s;
  padding-block: 18px;
}
.nav.scrolled {
  background: rgba(250,248,245,.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(28,23,20,.06);
  padding-block: 11px;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.25rem; letter-spacing: -0.03em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 14px; border-radius: var(--pill); font-weight: 700; font-size: .96rem; color: var(--text-2); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: rgba(28,23,20,.05); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; font-size: 22px; color: var(--text); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: var(--gutter); right: var(--gutter);
    background: var(--elevated); border-radius: var(--r-lg); padding: 12px; gap: 4px;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(28,23,20,.06);
  }
  .nav-links a { padding: 13px 16px; }
  .nav-cta .btn-text { display: none; }
}

/* ----- Decorative blobs / mesh ------------------------------------------ */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; z-index: 0; }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: clamp(130px, 17vw, 200px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .blob.b1 { width: 520px; height: 520px; background: var(--purple-soft); top: -160px; right: -120px; opacity: .55; }
.hero-bg .blob.b2 { width: 460px; height: 460px; background: var(--pink); bottom: -200px; left: -140px; opacity: .42; }
.hero-bg .blob.b3 { width: 320px; height: 320px; background: var(--gold); top: 40%; left: 44%; opacity: .25; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(123,111,212,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(123,111,212,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { margin: 20px 0 0; }
.hero .lead { margin-top: 22px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
/* Match the official App Store badge height to the button beside it,
   scaling proportionally (width:auto keeps Apple's badge aspect ratio). */
.hero-cta .btn { height: 58px; padding-top: 0; padding-bottom: 0; }
.hero-cta .badge-appstore img { height: 58px; }
@media (max-width: 560px) { .hero-cta .btn, .hero-cta .badge-appstore img { height: 52px; } }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.proof-text { font-size: .95rem; color: var(--text-2); font-weight: 600; }
.proof-text strong { color: var(--text); }
.proof-divider { width: 1px; height: 30px; background: rgba(28,23,20,.12); }

.pill-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--elevated); border: 1px solid rgba(123,111,212,.2);
  padding: 8px 16px 8px 10px; border-radius: var(--pill); font-weight: 700; font-size: .9rem;
  color: var(--text-2); box-shadow: var(--shadow-sm);
}
.pill-tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(46,189,142,.18); }

/* Hero visual — phone */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

/* ----- Phone mockup ------------------------------------------------------ */
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: var(--ink); border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.04) inset;
}
.phone::after { /* side buttons hint */
  content: ""; position: absolute; right: -2px; top: 150px; width: 3px; height: 60px; border-radius: 3px; background: rgba(28,23,20,.5);
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--cream);
  display: flex; flex-direction: column;
}
.notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: var(--ink); border-radius: 14px; z-index: 6; }
.float-card {
  position: absolute; background: var(--elevated); border-radius: var(--r-md); padding: 13px 16px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(28,23,20,.05); z-index: 5; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.float-card .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; }
.float-card small { display: block; font-size: .72rem; color: var(--text-3); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.float-card .big { font-size: 1.15rem; font-weight: 900; letter-spacing: -0.02em; }
.float-1 { top: 8%; left: -8%; }
.float-2 { bottom: 12%; right: -10%; }

/* In-phone app chrome */
.app-status { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px 6px; color: var(--text); }
.app-status .ss-time { font-size: .82rem; font-weight: 800; letter-spacing: -0.01em; }
.app-status .ss-icons { display: inline-flex; align-items: center; gap: 6px; color: var(--text); }
.app-status .ss-icons svg { display: block; }
.app-status .ss-batt { display: inline-flex; }
.app-top { padding: 8px 20px 4px; }
.app-greet { font-size: .78rem; font-weight: 800; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.app-title { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em; }
.app-body { flex: 1; position: relative; padding: 10px 18px; }

/* mini task card inside phone (deck) */
.mini-deck { position: relative; height: 270px; margin-top: 10px; }
.mini-card {
  position: absolute; inset: 0; background: var(--elevated); border-radius: 22px; padding: 18px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(28,23,20,.05); display: flex; flex-direction: column;
}
.mini-card.back2 { transform: scale(.9) translateY(26px); opacity: .55; z-index: 1; }
.mini-card.back1 { transform: scale(.95) translateY(13px); opacity: .8; z-index: 2; }
.mini-card.front { z-index: 3; }
.mc-top { display: flex; align-items: center; gap: 8px; }
.mc-bar { width: 4px; height: 20px; border-radius: 2px; }
.mc-cat { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mc-badge { margin-left: auto; font-size: .64rem; font-weight: 800; padding: 4px 9px; border-radius: var(--pill); }
.mc-title { font-size: 1.18rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.18; margin-top: 14px; }
.mc-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; color: var(--text-3); font-size: .72rem; font-weight: 700; }
.mc-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 15px; }
.swipe-row { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.swipe-row .sb { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; font-weight: 900; box-shadow: var(--shadow-sm); }

/* Focus timer screen */
.timer-screen { align-items: center; justify-content: center; gap: 0; }
.timer-ring { position: relative; width: 200px; height: 200px; margin: 8px auto; }
.timer-ring svg { transform: rotate(-90deg); }
.timer-ring .t-time { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.timer-ring .t-time .num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.timer-ring .t-time .lbl { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }

/* ============================================================================
   MARQUEE / trust
   ========================================================================== */
.marquee { overflow: hidden; padding-block: 26px; border-block: 1px solid rgba(28,23,20,.07); background: var(--cream-2); -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: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.05rem; color: var(--text-2); white-space: nowrap; letter-spacing: -0.01em; }
.marquee-item .mi-ic { font-size: 1.25rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ============================================================================
   Generic card / bento
   ========================================================================== */
.card {
  background: var(--elevated); border-radius: var(--r-lg); padding: 30px;
  border: 1px solid rgba(28,23,20,.06); box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-ic {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-2); font-weight: 500; font-size: 1rem; }

/* Problem / empathy 3-up — its own responsive grid (no inline override) */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 54px; }
.bento .card { padding: 28px; }
.b-3 { grid-column: span 3; }
.b-2 { grid-column: span 2; }
.b-4 { grid-column: span 4; }
.b-6 { grid-column: span 6; }
.bento .tall { grid-row: span 2; }
.bento-feature { position: relative; overflow: hidden; }
.bento-feature .demo { margin-top: 20px; }

/* the "swipe deck" explainer section */
.deck-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.deck-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; margin-top: 40px; }
.swipe-legend { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.swipe-legend .sl {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--r-md);
  background: var(--elevated); border: 1px solid rgba(28,23,20,.06); box-shadow: var(--shadow-sm);
  transition: transform .25s;
}
.swipe-legend .sl:hover { transform: translateX(6px); }
.swipe-legend .sl .glyph { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; font-weight: 900; flex: none; color: #fff; }
.swipe-legend .sl strong { font-size: 1.08rem; font-weight: 800; letter-spacing: -0.01em; }
.swipe-legend .sl span { display: block; color: var(--text-2); font-size: .95rem; font-weight: 500; }

#deck-demo { min-height: 420px; display: flex; align-items: center; justify-content: center; }

/* ============================================================================
   Steps / how it works
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .num {
  font-size: 3.2rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  background: var(--grad-purple); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9;
}
.step h3 { margin: 12px 0 8px; }
.step p { color: var(--text-2); font-weight: 500; }

/* ============================================================================
   Gamification + themes
   ========================================================================== */
.gami { background: var(--ink); color: var(--on-dark); border-radius: clamp(28px, 4vw, 44px); overflow: hidden; position: relative; }
.gami .eyebrow { color: var(--purple-soft); }
.gami h2 { color: #fff; }
.gami .lead { color: var(--on-dark-2); }
.gami .blob { opacity: .4; }
.gami-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; position: relative; z-index: 2; }
.gami-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg);
  padding: 26px; backdrop-filter: blur(6px);
}
.gami-stat .gs-num { font-size: 2.6rem; font-weight: 900; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.gami-stat .gs-lbl { color: var(--on-dark-2); font-weight: 600; margin-top: 4px; font-size: .98rem; }
.gami-stat .gs-ic { font-size: 1.5rem; margin-bottom: 8px; }
.gs-streak .gs-num { color: var(--gold); }
.gs-xp .gs-num { color: var(--cyan); }
.gs-level .gs-num { color: var(--purple-soft); }
.gs-drops .gs-num { color: var(--pink); }

.themes { margin-top: 26px; position: relative; z-index: 2; }
.theme-swatches { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.theme-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 9px; border-radius: var(--pill);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--on-dark);
  font-weight: 700; font-size: .92rem; transition: transform .25s, background .25s, border-color .25s;
}
.theme-chip:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }
.theme-chip .dot { width: 22px; height: 22px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255,255,255,.1); }

/* ============================================================================
   Privacy band
   ========================================================================== */
.privacy { text-align: center; }
.privacy-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.privacy-badge {
  display: inline-flex; align-items: center; gap: 11px; padding: 14px 22px; border-radius: var(--pill);
  background: var(--elevated); border: 1px solid rgba(46,189,142,.25); box-shadow: var(--shadow-sm); font-weight: 800;
}
.privacy-badge .pb-ic { color: var(--green); font-size: 1.2rem; }

/* ============================================================================
   Comparison table
   ========================================================================== */
.cmp-wrap { margin-top: 50px; overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(28,23,20,.06); }
table.cmp { width: 100%; border-collapse: collapse; background: var(--elevated); min-width: 640px; }
table.cmp th, table.cmp td { padding: 18px 20px; text-align: center; border-bottom: 1px solid rgba(28,23,20,.06); }
table.cmp thead th { font-weight: 800; font-size: .98rem; color: var(--text-2); position: sticky; top: 0; }
table.cmp tbody th { text-align: left; font-weight: 700; color: var(--text); font-size: .98rem; }
table.cmp .us { background: linear-gradient(180deg, rgba(123,111,212,.08), rgba(123,111,212,.03)); position: relative; }
table.cmp thead .us { color: var(--purple); font-weight: 900; }
table.cmp .us-head { display: inline-flex; align-items: center; gap: 8px; }
table.cmp .yes { color: var(--green); font-weight: 900; font-size: 1.15rem; }
table.cmp .no { color: var(--text-3); font-size: 1.15rem; }
table.cmp tr:last-child td, table.cmp tr:last-child th { border-bottom: none; }

/* ============================================================================
   Pricing
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; align-items: stretch; }
.price-card {
  background: var(--elevated); border-radius: var(--r-lg); padding: 32px; border: 1px solid rgba(28,23,20,.07);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--purple); box-shadow: var(--shadow-purple); position: relative; transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.price-tag-best { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; font-weight: 800; font-size: .78rem; line-height: 1; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--pill); letter-spacing: .01em; box-shadow: var(--shadow-purple); }
.price-card.featured { margin-top: 14px; }
.price-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.price-amt { font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; margin-top: 10px; line-height: 1; }
.price-amt small { font-size: 1rem; font-weight: 700; color: var(--text-3); letter-spacing: 0; }
.price-sub { color: var(--text-2); font-weight: 600; margin-top: 8px; font-size: .95rem; min-height: 24px; }
.price-list { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; color: var(--text); font-size: .98rem; }
.price-list li::before { content: "✓"; color: var(--green); font-weight: 900; flex: none; }
.price-list li.off { color: var(--text-3); }
.price-list li.off::before { content: "—"; color: var(--text-3); }
.price-card .btn { margin-top: auto; width: 100%; }
.price-note { text-align: center; color: var(--text-3); font-weight: 600; font-size: .9rem; margin-top: 24px; }

/* ============================================================================
   Founder
   ========================================================================== */
.founder { background: var(--cream-2); border-radius: clamp(28px, 4vw, 44px); }
.founder-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 50px); align-items: center; }
.founder-photo {
  width: 130px; height: 130px; border-radius: 30px; background: var(--grad-purple); display: grid; place-items: center;
  font-size: 64px; box-shadow: var(--shadow-md); flex: none;
}
.founder blockquote { font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.35; }
.founder .sig { margin-top: 18px; font-weight: 700; color: var(--text-2); }
.founder .sig strong { color: var(--text); }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--elevated); border: 1px solid rgba(28,23,20,.07); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 800; font-size: 1.08rem; letter-spacing: -0.01em; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { font-size: 1.3rem; color: var(--purple); transition: transform .3s; flex: none; }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--text-2); font-weight: 500; line-height: 1.65; }

/* ============================================================================
   Final CTA
   ========================================================================== */
.cta-final { position: relative; overflow: hidden; text-align: center; color: #fff; border-radius: clamp(28px, 4vw, 50px); background: var(--grad-purple); padding: clamp(56px, 9vw, 100px) var(--gutter); }
.cta-final .blob { opacity: .35; }
.cta-final h2 { color: #fff; position: relative; z-index: 2; }
.cta-final p { color: rgba(255,255,255,.9); font-weight: 600; font-size: 1.2rem; margin-top: 16px; position: relative; z-index: 2; }
.cta-final .hero-cta { justify-content: center; position: relative; z-index: 2; margin-top: 32px; }
.cta-final .btn-ghost { background: rgba(255,255,255,.16); color: #fff; }
.cta-final .btn-ghost:hover { background: rgba(255,255,255,.26); }
.cta-drop { font-size: 64px; margin-bottom: 8px; position: relative; z-index: 2; animation: float 4s ease-in-out infinite; }

/* ============================================================================
   Footer
   ========================================================================== */
.footer { padding-block: 60px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer .brand { margin-bottom: 14px; }
.footer .f-tag { color: var(--text-2); font-weight: 600; max-width: 280px; }
.footer h4 { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-2); font-weight: 600; transition: color .2s; }
.footer ul a:hover { color: var(--purple); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(28,23,20,.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--text-3); font-weight: 600; font-size: .9rem; }

/* ============================================================================
   Animations / reveal
   ========================================================================== */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floaty { animation: float 5s ease-in-out infinite; }
.floaty.delay { animation-delay: 1.4s; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floaty, .cta-drop { animation: none; }
}

/* ============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 640px; margin-inline: auto; }
  .hero .lead { margin-inline: auto; }
  .hero-cta, .hero-proof { justify-content: center; }
  .hero-visual { margin-top: 30px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-3, .b-2, .b-4, .b-6 { grid-column: span 2; }
  .bento .tall { grid-row: auto; }
  .deck-layout { grid-template-columns: 1fr; }
  .gami-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: 1fr; }
  .b-3, .b-2, .b-4, .b-6 { grid-column: span 1; }
  .gami-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-1, .float-2 { display: none; }
  .hero-proof .proof-divider { display: none; }
}
