/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* Brand - derived from app screenshot */
  --bg:          #F0EFED;
  --bg-alt:      #E8E7E4;
  --ink:         #1A1A1A;
  --ink-mid:     #3D4B6B;
  --ink-light:   #6B7A99;
  --brand:       #3B5BDB;
  --brand-dark:  #2F4AC4;
  --brand-light: #EEF2FF;
  --accent:      #1A1A2E;
  --white:       #FFFFFF;
  --border:      rgba(0,0,0,0.08);
  --border-med:  rgba(0,0,0,0.12);
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.15);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --font-head:   'Barlow', sans-serif;
  --font-cond:   'Barlow Condensed', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --gutter:      clamp(1.25rem, 4vw, 3rem);
  --max-w:       1200px;
}

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

/* ─── LAYOUT ────────────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(59,91,219,0.3);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 20px rgba(59,91,219,0.4); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--ink-mid);
  border: 1.5px solid var(--border-med);
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.2); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-med);
}
.btn-outline:hover { background: rgba(0,0,0,0.04); border-color: var(--brand); color: var(--brand); }

.btn-nav {
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
}
.btn-nav:hover { background: var(--ink-mid); }

/* ─── EYEBROW / TAGS ────────────────────────────────────── */
.eyebrow-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-light);
  padding: 0.3rem 0.8rem; border-radius: 100px;
  margin-bottom: 1rem;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ─── SECTION BASE ──────────────────────────────────────── */
section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-alt { background: var(--white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em; line-height: 1.1;
  color: var(--ink); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--ink-light);
  max-width: 540px; margin: 0 auto; line-height: 1.7; font-weight: 300;
}

/* ─── NAVBAR ────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(240,239,237,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex; align-items: center; gap: 2rem;
}

.nav-logo img { display: block; }
.nav-logo { text-decoration: none; flex-shrink: 0; }

.nav-links {
  display: flex; list-style: none; gap: 0.25rem;
  margin: 0 auto;
}
.nav-links a {
  color: var(--ink-light); font-size: 0.88rem; font-weight: 400;
  text-decoration: none; padding: 0.4rem 0.75rem; border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--ink); background: rgba(0,0,0,0.05); }

.nav-actions { flex-shrink: 0; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 1rem var(--gutter) 1.25rem;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  color: var(--ink-mid); font-size: 0.9rem; text-decoration: none;
  padding: 0.6rem 0.75rem; border-radius: 8px;
}
.nav-mobile a:hover { background: rgba(0,0,0,0.05); }
.nav-mobile .btn { margin-top: 0.5rem; align-self: flex-start; }
.nav-mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
}

/* ─── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: 80px;
  position: relative; overflow: hidden;
  background: var(--bg);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,91,219,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,91,219,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
}
.blob-1 { width: 600px; height: 600px; background: rgba(59,91,219,0.18); top: -150px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: rgba(61,75,107,0.12); bottom: 100px; left: -100px; }
.blob-3 { width: 300px; height: 300px; background: rgba(59,91,219,0.10); top: 50%; left: 40%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
  min-height: calc(100vh - 80px - 100px);
  padding-top: 3rem; padding-bottom: 2rem;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 2rem; font-weight: 700;
  color: var(--brand); background: rgba(59,91,219,0.07);
  border: 2px solid rgba(59,91,219,0.2);
  padding: 0.7rem 1.75rem; border-radius: 100px;
  margin-bottom: 1.75rem; width: fit-content;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.hero-headline {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -0.03em; line-height: 1.0;
  color: var(--ink); margin-bottom: 1.5rem;
}

.headline-accent {
  font-style: normal;
  font-family: var(--font-cond);
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand) 0%, var(--ink-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem; color: var(--ink-light);
  max-width: 480px; line-height: 1.75;
  font-weight: 300; margin-bottom: 2rem;
}

.hero-cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-note { font-size: 0.78rem; color: var(--ink-light); }

/* ─── APP MOCKUP ────────────────────────────────────────── */
.hero-visual { position: relative; }

.app-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  overflow: hidden;
}

.mockup-bar {
  background: #F5F4F2;
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #FF5F57; }
.dot.y { background: #FEBC2E; }
.dot.g { background: #28C840; }
.mockup-title {
  font-size: 0.72rem; color: var(--ink-light);
  margin-left: 0.5rem;
}

.mockup-body { display: flex; height: 340px; overflow: hidden; }

.mockup-sidebar {
  width: 150px; background: #FAFAF9;
  border-right: 1px solid var(--border);
  padding: 0.75rem 0;
  flex-shrink: 0;
  overflow: hidden;
}

.sidebar-logo { padding: 0.25rem 0.9rem 0.75rem; border-bottom: 1px solid var(--border); margin-bottom: 0.5rem; }

.snav-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--ink-light);
  padding: 0.4rem 0.9rem; cursor: pointer;
  border-radius: 0 6px 6px 0; margin-right: 0.5rem;
}
.snav-item.active { background: #EEF2FF; color: var(--brand); font-weight: 600; }
.snav-group { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-light); padding: 0.6rem 0.9rem 0.2rem; }
.snav-sub { font-size: 0.68rem; color: var(--ink-light); padding: 0.25rem 0.9rem 0.25rem 2rem; }
.snav-sub.active { color: var(--brand); font-weight: 600; }

.mockup-main {
  flex: 1; display: flex; flex-direction: column;
  overflow: hidden; min-width: 0;
}

.mockup-breadcrumb {
  font-size: 0.68rem; color: var(--ink-light);
  padding: 0.5rem 1rem; border-bottom: 1px solid var(--border);
  background: #FAFAF9;
}

.mockup-panel {
  padding: 0.9rem 1rem; border-right: 1px solid var(--border);
  width: 55%; overflow: hidden;
}
.mockup-panel h3 { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.15rem; }
.panel-sub { font-size: 0.65rem; color: var(--ink-light); margin-bottom: 0.6rem; }

.smart-fill {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--brand-light); border: 1px solid rgba(59,91,219,0.2);
  border-radius: var(--radius-sm); padding: 0.4rem 0.6rem;
  margin-bottom: 0.6rem; cursor: pointer;
}
.sf-icon { font-size: 0.9rem; color: var(--brand); }
.sf-text { flex: 1; min-width: 0; }
.sf-text strong { display: block; font-size: 0.65rem; color: var(--brand); }
.sf-text span { font-size: 0.6rem; color: var(--ink-light); }

.mockup-field label { display: block; font-size: 0.62rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--ink); }
.fake-textarea {
  background: #F8F8F7; border: 1px solid var(--border-med);
  border-radius: 6px; padding: 0.5rem; font-size: 0.62rem;
  color: var(--ink-light); line-height: 1.4; margin-bottom: 0.6rem;
}
.mockup-btn {
  background: #D0D8E8; color: var(--ink-mid);
  border-radius: 6px; padding: 0.4rem 0.6rem;
  font-size: 0.68rem; font-weight: 600; text-align: center; cursor: pointer;
}

.mockup-preview {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.4rem; text-align: center; padding: 1rem;
  background: #F8F8F8;
}
.mockup-preview .preview-icon { font-size: 1.8rem; color: #D0D0D0; }
.mockup-preview strong { font-size: 0.72rem; color: var(--ink); display: block; }
.mockup-preview span { font-size: 0.62rem; color: var(--ink-light); }

/* Floating cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  min-width: 160px;
}

.card-score { bottom: -20px; left: -30px; }
.card-platforms { top: 30px; right: -30px; min-width: 175px; }

.fc-label { font-size: 0.68rem; font-weight: 600; color: var(--ink-light); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }
.fc-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--brand); line-height: 1; }
.fc-val span { font-size: 0.9rem; color: var(--ink-light); }
.fc-note { font-size: 0.7rem; color: #22c55e; font-weight: 500; margin-top: 0.2rem; }

.score-bar { height: 4px; background: var(--bg-alt); border-radius: 2px; margin: 0.4rem 0; }
.score-fill { height: 100%; width: 87%; background: linear-gradient(90deg, var(--brand), #6366f1); border-radius: 2px; }

.platform-icons-row { display: flex; align-items: center; gap: 0.6rem; margin: 0.4rem 0; }
.platform-icons-row span { display: flex; align-items: center; justify-content: center; }

/* ─── PLATFORM STRIP ────────────────────────────────────── */
.platform-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  position: relative; z-index: 1;
}
.strip-label {
  text-align: center; font-size: 0.78rem; font-weight: 500;
  color: var(--ink-light); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.platforms-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.platform-pill {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.1rem; border-radius: 100px;
  background: #F8F8F8; border: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 500; color: var(--ink-mid);
  transition: all 0.2s;
}
.platform-pill:hover { background: #fff; border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-sm); }

/* ─── HOW IT WORKS ──────────────────────────────────────── */
#how-it-works { background: var(--bg); }

.workflow-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr) repeat(5, auto);
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0; margin-top: 3rem;
}

.wf-step { text-align: center; padding: 0 0.5rem; }
.wf-arrow {
  font-size: 1.5rem; color: var(--brand); opacity: 0.4;
  padding-top: 1.1rem; align-self: start;
}

.wf-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.82rem;
  color: #fff; margin: 0 auto 0.75rem; flex-shrink: 0;
}
.n1 { background: var(--brand); }
.n2 { background: #4F67E0; }
.n3 { background: #6355D8; }
.n4 { background: #7C44CF; }
.n5 { background: #9535C0; }
.n6 { background: #AC28B0; }

.wf-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--brand-light); border-radius: 10px; margin: 0 auto 0.75rem; }
.wf-step h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.wf-step p { font-size: 0.78rem; color: var(--ink-light); line-height: 1.5; }

/* ─── FEATURES BENTO ────────────────────────────────────── */
.features-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.bento-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  position: relative;
}
.bento-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.bento-big    { grid-column: span 7; }
.bento-wide   { grid-column: span 12; }
.feat-enhance { grid-column: span 5; }
.feat-brand   { grid-column: span 5; }
.feat-score   { grid-column: span 7; }
.feat-copy    { grid-column: span 5; }
.feat-analytics { grid-column: span 7; }
.feat-campaigns { grid-column: span 12; }

.bento-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-light);
  padding: 0.25rem 0.65rem; border-radius: 100px;
  display: inline-block; margin-bottom: 0.75rem;
}

.bento-card h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.25rem; line-height: 1.2;
  margin-bottom: 0.6rem; color: var(--ink);
}
.bento-card p {
  font-size: 0.88rem; color: var(--ink-light);
  line-height: 1.65; font-weight: 300;
}

.feat-chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem;
}
.feat-chips span {
  font-size: 0.72rem; background: #fff;
  border: 1px solid var(--border-med);
  border-radius: 100px; padding: 0.25rem 0.7rem;
  color: var(--ink-mid); font-weight: 500;
}

/* Generate demo */
.gen-demo {
  margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border-radius: var(--radius); padding: 0.9rem 1rem;
  border: 1px solid var(--border);
}
.gen-prompt {
  flex: 1; font-size: 0.78rem; color: var(--ink-light);
  font-style: italic; line-height: 1.4;
}
.gen-arrow-anim { color: var(--brand); font-size: 1.1rem; flex-shrink: 0; }
.gen-result { flex-shrink: 0; }
.gen-shimmer-box {
  width: 80px; height: 60px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-light), #e0e7ff);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--brand); font-weight: 600;
}

/* Brand demo */
.brand-demo {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem;
}
.bd-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: var(--shadow-sm);
}
.bd-label { font-size: 0.75rem; color: var(--ink-light); margin-left: 0.25rem; }

/* Score visual */
.score-visual-mini {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem;
}
.svm-circle { position: relative; flex-shrink: 0; }
.svm-circle span {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--brand);
}
.svm-tips { font-size: 0.75rem; color: var(--ink-light); line-height: 1.8; }
.svm-tips b { color: #22c55e; }

/* Copy preview */
.copy-preview { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.copy-line {
  display: flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 0.5rem 0.75rem;
}
.cp-plat {
  font-size: 0.62rem; font-weight: 700; padding: 0.15rem 0.4rem;
  border-radius: 4px; flex-shrink: 0;
  background: #E7F0FF; color: #1877F2;
}
.cp-plat.li { background: #E7F3FB; color: #0A66C2; }
.cp-plat.tt { background: #F0F0F0; color: #000; }
.cp-text { flex: 1; font-size: 0.72rem; color: var(--ink-mid); }
.cp-score {
  font-size: 0.7rem; font-weight: 700; padding: 0.1rem 0.4rem;
  border-radius: 4px; flex-shrink: 0;
}
.cp-score.hi { background: #DCFCE7; color: #16a34a; }
.cp-score.med { background: #FEF9C3; color: #ca8a04; }

/* Analytics bars */
.analytics-bars {
  display: flex; align-items: flex-end; gap: 0.4rem;
  height: 70px; margin-top: 1.25rem;
}
.abar {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, var(--brand) 0%, #6366f1 100%);
  border-radius: 4px 4px 0 0;
  display: flex; align-items: flex-end; justify-content: center;
  transition: opacity 0.2s;
}
.abar:hover { opacity: 0.8; }
.abar span { font-size: 0.6rem; color: #fff; padding-bottom: 2px; }

/* Campaign flow */
.campaign-flow {
  display: flex; align-items: center; gap: 0.5rem;
  margin: 1.25rem 0; flex-wrap: wrap;
}
.cf-step {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 500;
  padding: 0.4rem 0.75rem; border-radius: 8px;
}
.cf-step em { font-style: normal; font-weight: 700; margin-left: 0.2rem; }
.cf-arr { color: var(--ink-light); font-size: 0.9rem; }
.cfd { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.draft { background: #F3F4F6; color: var(--ink-mid); } .draft .cfd { background: #9CA3AF; }
.sched { background: #EEF2FF; color: var(--brand); } .sched .cfd { background: var(--brand); }
.active { background: #DCFCE7; color: #15803D; } .active .cfd { background: #22c55e; animation: blink 1.5s infinite; }
.paused { background: #FEF9C3; color: #92400E; } .paused .cfd { background: #F59E0B; }
.done { background: #F3F4F6; color: var(--ink-mid); } .done .cfd { background: #6B7280; }

/* ─── STATS BAND ────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  padding: 3.5rem 0;
}
.stats-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
}
.stat-item { text-align: center; flex: 1; max-width: 280px; }
.stat-val {
  font-family: var(--font-cond); font-weight: 900;
  font-size: 6rem; color: #fff; line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 1.1rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-div { width: 1px; height: 70px; background: rgba(255,255,255,0.1); }

/* ─── PRICING ───────────────────────────────────────────── */
#pricing { background: var(--bg); }

/* Dimension explainer strip */
.pricing-dims {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 3rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
}
.pdim {
  text-align: center; padding: 0 1.5rem;
  flex: 1; min-width: 120px;
}
.pdim-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--brand-light); border-radius: 12px; margin: 0 auto 0.6rem; }
.pdim-label {
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.88rem; color: var(--ink); margin-bottom: 0.2rem;
}
.pdim-desc { font-size: 0.75rem; color: var(--ink-light); }
.pdim-plus {
  font-size: 1.5rem; color: var(--brand); font-weight: 300;
  flex-shrink: 0; padding: 0 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; align-items: stretch;
}

.price-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  position: relative; transition: all 0.2s;
  display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: var(--shadow-lg); }

.price-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(59,91,219,0.15), var(--shadow-md);
  transform: scale(1.02);
}
.price-featured:hover { transform: scale(1.03); }

.price-badge-pill {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.25rem 0.9rem; border-radius: 100px; white-space: nowrap;
}

.price-tier {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.1rem; color: var(--ink-mid); margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-head); font-weight: 900;
  font-size: 2.25rem; color: var(--ink); margin-bottom: 0.75rem; line-height: 1;
}
.price-amount span { font-size: 1rem; color: var(--ink-light); font-weight: 400; }

.price-desc { font-size: 0.85rem; color: var(--ink-light); margin-bottom: 1.25rem; line-height: 1.5; }

.price-section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand);
  background: var(--brand-light); padding: 0.2rem 0.6rem;
  border-radius: 4px; display: inline-block;
  margin-bottom: 0.6rem; margin-top: 1rem;
}
.price-card .price-section-label:first-of-type { margin-top: 0; }

.price-list { list-style: none; margin-bottom: 0.5rem; display: flex; flex-direction: column; gap: 0.45rem; }
.price-list li { font-size: 0.82rem; color: var(--ink-mid); display: flex; align-items: flex-start; gap: 0.5rem; }
.price-list li::before { flex-shrink: 0; margin-top: 1px; }
.price-list li.yes::before { content: '✓'; color: #22c55e; font-weight: 700; }
.price-list li.no { color: var(--ink-light); }
.price-list li.no::before { content: '✗'; color: #D1D5DB; }

.price-card .btn { margin-top: auto; }

.pricing-note {
  text-align: center; font-size: 0.82rem; color: var(--ink-light);
  margin-top: 2rem; padding: 1rem 1.5rem;
  background: var(--brand-light); border-radius: var(--radius);
  border: 1px solid rgba(59,91,219,0.15);
}

@media (max-width: 900px) {
  .pricing-dims { gap: 1rem; }
  .pdim-plus { display: none; }
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.about-p { font-size: 0.95rem; color: var(--ink-light); line-height: 1.75; font-weight: 300; }
.about-p + .about-p { margin-top: 0.75rem; }

.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.av-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.av-icon { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: var(--brand-light); border-radius: 8px; flex-shrink: 0; }
.av-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.av-item p { font-size: 0.82rem; color: var(--ink-light); line-height: 1.5; }

.about-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ac-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: #FAFAF9;
}
.ac-tag {
  font-size: 0.68rem; font-weight: 600; color: var(--ink-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.ac-rows { padding: 0.5rem 0; }
.ac-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 1.5rem; border-bottom: 1px solid var(--border);
}
.ac-row:last-child { border-bottom: none; }
.ac-row span { font-size: 0.8rem; color: var(--ink-light); }
.ac-row strong { font-size: 0.82rem; color: var(--ink); text-align: right; }
.ac-footer {
  padding: 1rem 1.5rem; background: var(--brand-light);
  font-size: 0.78rem; color: var(--brand); font-weight: 500; text-align: center;
}

/* ─── WAITLIST ──────────────────────────────────────────── */
.section-waitlist {
  background: var(--ink);
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative; overflow: hidden;
}

.wl-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.2; pointer-events: none;
}
.g1 { width: 500px; height: 500px; background: var(--brand); top: -150px; left: -100px; }
.g2 { width: 400px; height: 400px; background: #6366f1; bottom: -100px; right: -100px; }

.wl-inner { position: relative; z-index: 1; text-align: center; }

.wl-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.wl-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.03em; line-height: 1.05;
  color: #fff; margin-bottom: 1.25rem;
}

.wl-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto 3rem;
  line-height: 1.7; font-weight: 300;
}

.wl-form { max-width: 560px; margin: 0 auto; }

.wl-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wl-field { display: flex; flex-direction: column; gap: 0.35rem; text-align: left; }
.wl-field label {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em;
}
.wl-field input, .wl-field select, .wl-select-wrap select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  color: #fff; outline: none;
  transition: border-color 0.2s;
}
.wl-field input::placeholder { color: rgba(255,255,255,0.3); }
.wl-field input:focus, .wl-field select:focus, .wl-select-wrap select:focus {
  border-color: rgba(59,91,219,0.7);
  background: rgba(255,255,255,0.1);
}
.wl-field select option, .wl-select-wrap select option { background: #1a1a2e; color: #fff; }

.wl-select-wrap {
  display: flex; flex-direction: column; gap: 0.35rem;
  text-align: left; margin-bottom: 0.75rem;
}
.wl-select-wrap label {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em;
}
.wl-select-wrap select { width: 100%; }

.wl-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; border-radius: 12px; margin-top: 0.25rem; }
.wl-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }

.wl-success { color: #fff; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.wl-success h3 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.wl-success p { color: rgba(255,255,255,0.6); font-size: 1rem; }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: #0F1117;
  padding-top: 4rem;
}

.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  line-height: 1.6; margin-top: 0.9rem; max-width: 260px;
}

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.2s; text-decoration: none;
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: #fff; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fl-col { display: flex; flex-direction: column; gap: 0.6rem; }
.fl-col strong { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.fl-col a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.15s; }
.fl-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}

/* ─── FAQ ───────────────────────────────────────────────── */
#faq { background: var(--bg); }

.faq-grid {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; background: #fff;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--ink); text-align: left; transition: background 0.15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q[aria-expanded="true"] { color: var(--brand); }

.faq-icon {
  font-size: 1.3rem; font-weight: 300; color: var(--ink-light);
  flex-shrink: 0; transition: transform 0.25s ease;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-a {
  display: none; padding: 0 1.5rem 1.25rem;
}
.faq-a.open { display: block; animation: faqOpen 0.25s ease; }
.faq-a p { font-size: 0.88rem; color: var(--ink-light); line-height: 1.75; font-weight: 300; }

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1100px) {
  .bento-big    { grid-column: span 12; }
  .feat-enhance { grid-column: span 12; }
  .feat-brand   { grid-column: span 6; }
  .feat-score   { grid-column: span 6; }
  .feat-copy    { grid-column: span 6; }
  .feat-analytics { grid-column: span 6; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .price-featured { transform: none; }
  .workflow-track { grid-template-columns: 1fr; }
  .wf-arrow { display: none; }
  .wf-step { padding: 0; text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
  .wf-step .wf-icon { display: none; }
  .wf-num { margin: 0; flex-shrink: 0; }
  .stats-inner { gap: 2rem; flex-wrap: wrap; justify-content: center; }
  .stat-div { display: none; }
}

@media (max-width: 640px) {
  .wl-fields { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .feat-brand, .feat-score, .feat-copy, .feat-analytics { grid-column: span 12; }
  .campaign-flow { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .cf-arr { transform: rotate(90deg); }
}

/* ─── COOKIE CONSENT BANNER ─────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border-med);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  max-width: 860px;
  margin: 0 auto;
  animation: cookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cookie-banner.cookie-hidden {
  animation: cookieSlideDown 0.3s ease forwards;
  pointer-events: none;
}

@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cookieSlideDown {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(24px); }
}

.cookie-inner {
  padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}

.cookie-title {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; color: var(--ink);
  margin-bottom: 0.4rem;
}

.cookie-text p {
  font-size: 0.82rem; color: var(--ink-light);
  line-height: 1.6; font-weight: 300;
}
.cookie-text a { color: var(--brand); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }

.cookie-toggles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cookie-toggle-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 0.75rem;
}

.cookie-toggle-info { flex: 1; min-width: 0; }
.cookie-toggle-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.1rem;
}
.cookie-toggle-desc {
  display: block; font-size: 0.72rem;
  color: var(--ink-light); line-height: 1.4;
}

/* Toggle switch */
.cookie-switch {
  width: 40px; height: 22px; border-radius: 100px;
  background: #D1D5DB; flex-shrink: 0;
  position: relative; cursor: pointer;
  transition: background 0.2s ease;
}
.cookie-switch[aria-checked="true"] { background: var(--brand); }
.cookie-switch.cookie-switch-locked {
  background: #A5B4FC; cursor: not-allowed; opacity: 0.75;
}
.switch-knob {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cookie-switch[aria-checked="true"] .switch-knob { transform: translateX(18px); }

.cookie-actions {
  display: flex; gap: 0.6rem; justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-btn {
  font-size: 0.82rem; padding: 0.55rem 1.1rem;
}

@media (max-width: 600px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .cookie-toggles { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; justify-content: center; }
}
