/* ============ TOKENS ============ */
:root {
  --ink: #0d0807;
  --paper: #fbf6ec;
  --paper-2: #ffffff;        /* was tan #f0e6d3 — now clean white */
  --line: #e6dcc6;           /* softer than the old tan border */
  --accent: #9333ea;
  --accent-dark: #6b21a8;
  --moss: #2d4a26;
  --gold: #8a5a14;
  --muted: #3d342b;
  --muted-2: #574a3c;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }

/* ============ NAV (identical across home / demo / dashboard) ============ */
.nav {
  display:flex; justify-content:space-between; align-items:center;
  padding: 22px 64px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position:sticky; top:0; z-index:100;
}
.brand {
  text-decoration:none;
  color: var(--ink);
  display: flex; flex-direction: column; line-height: 1;
}
.brand .word {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.02em;
  font-style: italic;
}
.brand .word .the { font-style: normal; color: var(--accent); margin-right: 1px; }
/* Sister-site brand: highlight the second word in accent */
.brand .word em { color: var(--accent); font-style: italic; }

.brand .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-links { display:flex; gap:32px; align-items:center; font-size:15px; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  position:relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:not(.btn):not(.bundle-tab):hover::after {
  content:""; position:absolute; bottom:-6px; left:0; right:0;
  height: 2px; background: var(--accent);
}
.nav-links a.is-active { color: var(--accent); }
.nav-links a.is-active::after {
  content:""; position:absolute; bottom:-6px; left:0; right:0;
  height: 2px; background: var(--accent);
}
.nav-links a.bundle-tab {
  color: var(--accent);
  font-weight: 700;
  padding: 6px 12px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
  font-size: 13px;
}
.nav-links a.bundle-tab:hover { background: var(--accent); color: var(--paper); }

.btn {
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  display:inline-block;
  transition: transform .2s, background .2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); background: var(--accent); }
.btn-light {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-light:hover { background: var(--ink); color: var(--paper); }
.btn.lg { padding: 18px 32px; font-size:15px; font-weight:700; }

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  padding: 80px 64px 120px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: "01 / 06";
  position: absolute;
  top: 60px;
  right: 64px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
}
.hero-text { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent-dark);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--accent); }

h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--ink);
}
h1 em { font-style: italic; color: var(--accent); font-weight: 600; }

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 500;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.trust-row {
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.trust-stat { display: flex; flex-direction: column; }
.trust-stat .num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.trust-stat .lbl { font-size: 13px; color: var(--muted-2); margin-top: 4px; font-weight: 500; }

.hero-img-wrap { position: relative; }
.hero-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #f3ece0;
  box-shadow: 0 24px 60px rgba(13, 8, 7, 0.12);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
  position: absolute;
  bottom: -32px; left: -40px;
  width: 320px;
  background: var(--ink);
  color: var(--paper);
  padding: 20px 22px;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(13, 8, 7, 0.25);
  font-size: 14px;
  z-index: 2;
}
.hero-overlay .stars { color: #fbbf24; font-size: 12px; letter-spacing: 2px; margin-bottom: 4px; }
.hero-overlay .reviewer { font-weight: 700; margin-bottom: 8px; font-size: 13px; opacity: 0.9; }
.hero-overlay .review-text { font-size: 14px; line-height: 1.5; opacity: 0.9; margin-bottom: 14px; font-style: italic; font-family: var(--serif); }
.hero-overlay .reply-label { font-size: 10px; color: var(--accent); font-weight: 800; letter-spacing: 0.1em; margin-bottom: 6px; }
.hero-overlay .reply-text { font-size: 13px; line-height: 1.5; color: var(--paper); }

.hero-pill {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(13,8,7,0.15);
  z-index: 2;
  border: 1px solid var(--line);
}
.hero-pill .dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% {opacity:1} 50% {opacity:.5} }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex; gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--paper);
  opacity: 0.95;
}
.marquee-inner span { display:flex; align-items:center; gap: 64px; }
.marquee-inner span::after { content: "✦"; color: var(--accent); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ COMMON SECTION ============ */
section { padding: 120px 64px; max-width: 1440px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-dark);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}
.section-pill {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: none;            /* Joshua: stretch across the page, don't wrap short */
  color: var(--ink);
}
h2 em { font-style: italic; color: var(--accent); font-weight: 600; }
.section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: none;            /* same — let the intro use the full container */
  margin-bottom: 64px;
  line-height: 1.55;
  font-weight: 500;
}

/* ============ THE PROBLEM ============ */
.problem-section {
  background: var(--paper-2);
  padding: 120px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-section-inner { max-width: 1440px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  margin-top: 24px;
}
.problem-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(13, 8, 7, 0.12);
}
.problem-img img { width:100%; height:100%; object-fit:cover; }
.problem-list { list-style: none; padding: 0; }
.problem-list li {
  padding: 18px 0 18px 44px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--muted);
  position: relative;
  font-weight: 500;
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: '✕';
  position: absolute; left: 0; top: 16px;
  width: 26px; height: 26px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
}
.problem-list strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 3px; font-size: 17px; }

/* ============ HOW IT WORKS ============ */
.how {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.how-image {
  border-radius: 4px;
  overflow: hidden;
  position: sticky;
  top: 120px;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(13, 8, 7, 0.12);
}
.how-image img { width:100%; height:100%; object-fit:cover; }
.how-steps { display: flex; flex-direction: column; gap: 56px; }
.how-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.how-step:last-child { border-bottom: none; padding-bottom: 0; }
.how-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-style: italic;
}
.how-num .step-label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--ink);
}
.how-step h3 em { font-style: italic; color: var(--accent); }
.how-step p { color: var(--muted); font-size: 16px; line-height: 1.6; font-weight: 500; }

/* ============ FEATURES ============ */
.features-section {
  padding: 120px 64px;
  max-width: 1440px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.features-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(13, 8, 7, 0.12);
}
.features-img img { width:100%; height:100%; object-fit:cover; }
.feature-list { list-style: none; padding: 0; margin-top: 24px; }
.feature-list li {
  padding: 16px 0 16px 36px;
  font-size: 16px;
  color: var(--muted);
  position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 16px;
  color: var(--accent); font-weight: 800; font-size: 18px;
}
.feature-list strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 3px; font-size: 17px; }

/* ============ COMPARE ============ */
.compare-section {
  background: var(--ink);
  color: var(--paper);
  margin: 80px 0;
  padding: 100px 64px;
}
.compare-section h2 { color: var(--paper); }
.compare-section h2 em { color: var(--accent); }
.compare-section .section-intro { color: rgba(251,246,236,0.85); }
.compare-section .section-pill { background: var(--paper); color: var(--ink); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.compare-col { padding: 40px 32px; border-radius: 4px; }
.compare-col.bad { border: 2px solid rgba(212, 57, 29, 0.5); }
.compare-col.good { background: var(--paper); color: var(--ink); }
.compare-col h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.compare-col h3 em { font-style: italic; color: var(--accent); }
.compare-col .sub { font-size: 14px; opacity: 0.85; margin-bottom: 32px; font-family: var(--serif); font-style: italic; font-weight: 500; }
.compare-col ul { list-style:none; padding:0; }
.compare-col ul li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(251,246,236,0.12);
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
}
.compare-col.good ul li { border-bottom-color: var(--line); color: var(--ink); }
.compare-col.bad ul li::before { content: "—"; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.compare-col.good ul li::before { content: "✓"; color: var(--moss); font-weight: 800; flex-shrink: 0; }

/* ============ COST CARDS ============ */
.cost-section {
  background: var(--paper-2);
  padding: 120px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cost-section-inner { max-width: 1440px; margin: 0 auto; }
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.cost-card {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.cost-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,8,7,0.1); }
.cost-card .pct {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-style: italic;
}
.cost-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.cost-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; font-weight: 500; }
.cost-card .source {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 120px 64px; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.test-card {
  background: var(--paper-2);
  padding: 40px 32px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.test-card::before {
  content: "“";
  position: absolute;
  top: 0; left: 24px;
  font-family: var(--serif);
  font-size: 120px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
}
.test-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 32px;
  margin-top: 32px;
  font-weight: 500;
  flex: 1;
  color: var(--ink);
}
.test-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.test-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.test-role { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ============ BUNDLE HOOK ============ */
.bundle-section { padding: 80px 64px; max-width: 1440px; margin: 0 auto; }
.bundle-hook {
  background: linear-gradient(135deg, var(--ink) 0%, #1c1310 100%);
  color: var(--paper);
  border-radius: 6px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Rectangle variant — used inside the pricing white box (Joshua wants no rounded corners) */
.bundle-hook-rect {
  border-radius: 0;
  max-width: 1100px;
  margin: 64px auto 0;
}
.bundle-hook::after {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(212,57,29,0.32) 0%, transparent 70%);
  pointer-events: none;
}
.bundle-content { position: relative; z-index: 2; }
.bundle-tag {
  display: inline-block;
  padding: 7px 16px;
  background: var(--accent);
  color: white;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bundle-hook h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 14px;
}
.bundle-hook h3 em { color: var(--accent); font-style: italic; }
.bundle-hook p {
  color: rgba(251,246,236,0.78);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
  max-width: 720px;
}
.bundle-cta {
  background: var(--accent);
  color: white;
  padding: 18px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(212,57,29,0.35);
  transition: all .18s;
  position: relative; z-index: 2;
}
.bundle-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ============ PRICING ============ */
.pricing-section {
  background: var(--paper-2);
  padding: 120px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing-card {
  max-width: 720px;
  margin: 64px auto 0;
  background: var(--paper);
  padding: 56px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  text-align: center;
  box-shadow: 0 24px 60px rgba(13, 8, 7, 0.10);
}
.pricing-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  color: var(--ink);
}
.price-amount .currency { font-size: 36px; vertical-align: top; color: var(--muted-2); margin-right: 4px; font-weight: 600; }
.price-amount .period { font-size: 24px; color: var(--muted-2); font-weight: 600; }
.price-desc {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 500;
}
.price-features { list-style: none; text-align: left; margin-bottom: 32px; padding: 0 32px; }
.price-features li { padding: 12px 0; font-size: 16px; display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.price-features li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }

.stripe-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
  justify-content: center;
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
}
.stripe-trust svg { width: 16px; height: 16px; }

/* ============ FAQ ============ */
/* Full-width white band, matching pricing-section / problem-section / cost-section */
.faq-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 64px;
  max-width: none;          /* span full width like the other white bands */
  margin: 0;
}
.faq-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.faq-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 48px;
  box-shadow: 0 16px 44px rgba(13, 8, 7, 0.08);
  margin-top: 40px;
}
.faq-list { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 16px;
  font-weight: 500;
}

/* ============ FINAL ============ */
.final {
  text-align: center;
  padding: 140px 64px;
  background: var(--ink);
  color: var(--paper);
}
.final h2 { color: var(--paper); max-width: none; margin: 0 0 32px; }
.final h2 em { color: var(--accent); }
.final .lede { color: rgba(251,246,236,0.85); margin: 0 0 40px; max-width: none; font-size: 19px; font-weight: 500; }

/* Light variant — used on the home page so we don't end on two black panels */
.final.light {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.final.light h2 { color: var(--ink); }
.final.light h2 em { color: var(--accent); }
.final.light .lede { color: var(--muted); }

/* Stronger divider — keeps "Reviews are sales" from bleeding into the FAQ above */
.final.final-divider {
  margin-top: 0;
  border-top: 2px solid var(--ink);
  position: relative;
  padding-top: 120px;
}
.final.final-divider::before {
  content: "✦";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  color: var(--accent);
  padding: 0 14px;
  font-size: 20px;
  line-height: 1;
}

footer {
  background: var(--ink);
  color: rgba(251,246,236,0.7);
  padding: 48px 64px;
  border-top: 1px solid rgba(251,246,236,0.15);
  text-align: center;
  font-size: 13px;
}
footer a { color: var(--paper); text-decoration:none; margin: 0 12px; font-weight: 500; }
footer a:hover { color: var(--accent); }
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
  margin-bottom: 16px;
  font-weight: 700;
}

/* ============ SISTER-SITE FOOTER ============ */
.footer-sisters {
  max-width: 1100px;
  margin: 24px auto 8px;
  padding: 28px 24px 24px;
  border-top: 1px solid rgba(251,246,236,0.18);
  border-bottom: 1px solid rgba(251,246,236,0.18);
}
.footer-sisters-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(251,246,236,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-sisters-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
}
.footer-sisters-row a {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  padding: 6px 14px;
  margin: 0 2px;
  border-radius: 100px;
  border: 1px solid rgba(251,246,236,0.2);
  transition: all .18s;
  letter-spacing: 0.01em;
}
.footer-sisters-row a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.footer-sisters-row a.is-current {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212,57,29,0.08);
}
.footer-bundle-line {
  margin-top: 14px;
  text-align: center;
}
.footer-bundle-line a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.footer-bundle-line a:hover { color: var(--paper); }

/* ============ SUBHEAD (used on demo & dashboard pages) ============ */
.subhead {
  padding: 96px 64px 72px;
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.subhead .crumb {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.subhead .crumb a { color: var(--muted-2); text-decoration: none; }
.subhead .crumb a:hover { color: var(--accent); }
.subhead .crumb .sep { margin: 0 10px; color: var(--line); }
.subhead h1 {
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 24px;
}
.subhead .lede { margin-bottom: 0; }

/* ============ DEMO PAGE: split sections ============ */
.demo-stack { padding: 96px 64px; max-width: 1440px; margin: 0 auto; }
.demo-block { padding: 80px 0; border-bottom: 1px solid var(--line); }
.demo-block:last-of-type { border-bottom: none; }
.demo-block .block-pill {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.demo-block h2 { margin-bottom: 14px; }
.demo-block .block-intro { font-size: 17px; color: var(--muted); margin-bottom: 40px; max-width: 680px; font-weight: 500; line-height: 1.55; }

/* Browser chrome */
.browser-chrome {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(13,8,7,0.18);
  border: 1px solid var(--line);
  background: var(--ink);
}
.browser-chrome-bar {
  background:#1a2842;
  padding:14px 20px;
  display:flex;
  align-items:center;
  gap:12px;
  border-bottom:1px solid rgba(96,165,250,0.18);
}
.browser-chrome-bar .traffic { width:12px;height:12px;border-radius:50%; }
.browser-chrome-bar .traffic.r { background:#ef5957; }
.browser-chrome-bar .traffic.y { background:#f5bf3f; }
.browser-chrome-bar .traffic.g { background:#4cb050; }
.browser-chrome-bar .url {
  margin-left:14px;
  font-size:13px;
  color:#8da2c4;
  background:rgba(0,0,0,.3);
  padding:5px 14px;
  border-radius:6px;
  flex:1;
  font-family:Menlo,monospace;
}

/* ============ LIGHT BROWSER BODY (used for both customer + owner views) ============ */
/* Browser chrome stays dark — the BODY inside is light cream paper */
.browser-chrome.light { background: var(--paper); }
.demo-body {
  background: var(--paper);
  padding: 30px 32px;
  color: var(--ink);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

/* Channel tag at top of each light body */
.channel-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.channel-tag .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* The customer review card on a light body */
.review-light {
  background: #f5efe2;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.review-light .stars { color: #f5a623; font-size: 13px; letter-spacing: 2px; margin-bottom: 6px; }
.review-light .meta { font-size: 13px; color: var(--muted-2); font-weight: 600; margin-bottom: 8px; }
.review-light .body { font-family: var(--serif); font-style: italic; font-size: 14.5px; line-height: 1.55; color: var(--ink); }

/* Drafting label that pulses between review and reply */
.drafting-label {
  text-align: center;
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: 0.18em;
  font-weight: 700;
  margin: 14px 0 12px;
  text-transform: uppercase;
}
.drafting-label::before, .drafting-label::after {
  content: '— '; opacity: 0.5;
}
.drafting-label::after { content: ' —'; }

/* The AI-drafted reply card on a light body */
.reply-light {
  background: var(--paper);
  border: 1.5px solid var(--accent);
  border-left-width: 4px;
  border-radius: 6px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(212, 57, 29, 0.08);
}
.reply-light .tag {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 10px;
}
.reply-light .text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  min-height: 60px; /* prevents layout jump while typing */
}

/* Approval action row */
.approval-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.approval-row a {
  padding: 9px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12.5px;
  text-decoration: none;
  font-family: var(--sans);
}
.approval-row .primary { background: var(--accent); color: white; }
.approval-row .outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.approval-row .ghost { background: transparent; color: var(--muted-2); padding: 9px 8px; }

/* Owner view: 3 light browser chromes side by side */
.owner-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

/* Email-specific bits */
.email-from {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.email-from .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: 14px;
}
.email-from .who { font-size: 12.5px; color: var(--muted-2); }
.email-from .who strong { display:block; color: var(--ink); font-weight: 700; font-size: 13px; }
.email-from .when { margin-left: auto; font-size: 11px; color: var(--muted-2); font-weight: 600; }
.email-subject { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }

/* Phone frame for SMS / Push views (sits inside the light browser body) */
.phone-frame {
  background: linear-gradient(180deg, #1c1c2a 0%, #2a1f1a 100%);
  border-radius: 24px;
  padding: 18px 12px 14px;
  position: relative;
  margin: 6px auto 0;
  max-width: 280px;
  border: 4px solid #14101a;
  box-shadow: 0 18px 40px rgba(13,8,7,0.18);
  min-height: 360px;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 14px;
  background: #14101a;
  border-radius: 0 0 12px 12px;
}
.phone-time {
  text-align: center;
  color: rgba(255,255,255,0.92);
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 16px 0 4px;
  letter-spacing: 0.04em;
}
.phone-date {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  margin-bottom: 14px;
  font-weight: 500;
}

/* SMS bubbles */
.sms-bubble {
  background: #2a2a35;
  color: white;
  border-radius: 14px 14px 14px 4px;
  padding: 9px 12px;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 86%;
  font-family: -apple-system, sans-serif;
}
.sms-bubble.from-them { background: #2a2a35; }
.sms-bubble.from-app  { background: var(--accent); border-radius: 14px 14px 14px 4px; }
.sms-bubble .stars { color: #fbbf24; font-size: 10.5px; letter-spacing: 1.5px; margin-bottom: 3px; }
.sms-bubble strong { display:block; color: white; font-weight: 700; font-size: 11px; margin-bottom: 3px; }
.sms-bubble .min { font-size: 10.5px; line-height: 1.4; }
.sms-time {
  text-align: center;
  font-size: 9.5px;
  color: rgba(255,255,255,0.5);
  margin: 8px 0 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sms-actions {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.sms-actions a {
  flex: 1;
  text-align: center;
  padding: 7px 4px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 10px;
  border-radius: 12px;
}
.sms-actions a.solid { background: var(--accent); color: white; }

/* Push card on lockscreen */
.push-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-family: -apple-system, sans-serif;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 10px;
  align-items: start;
}
.push-card .icon {
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 6px;
  color: white;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: 13px;
}
.push-card .body .app { font-size: 9px; color: var(--muted-2); letter-spacing: 0.08em; font-weight: 700; text-transform: uppercase; margin-bottom: 1px; }
.push-card .body .title { font-weight: 700; color: var(--ink); font-size: 11.5px; line-height: 1.25; margin-bottom: 2px; }
.push-card .body .sub { color: var(--muted); font-size: 10.5px; line-height: 1.35; }
.push-card .when { font-size: 9px; color: var(--muted-2); font-weight: 600; white-space: nowrap; }

/* ============ TYPEWRITER ============ */
.tw {
  display: inline;
  white-space: pre-wrap;
}
.tw::after {
  content: '▋';
  display: inline-block;
  margin-left: 1px;
  margin-bottom: -2px;
  color: var(--accent);
  font-weight: 400;
  animation: blink 1.05s steps(1, end) infinite;
}
.tw.done::after { content: ''; }
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* (legacy email/SMS/push blocks removed — replaced by light-theme variants above) */

/* DASHBOARD PAGE — interactive preview */
.dashboard-stack { padding: 96px 64px; max-width: 1440px; margin: 0 auto; }
.dash-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(13,8,7,0.18);
  border: 1px solid var(--line);
  background: #0a1628;
}
.tab-grid {
  margin-top: 48px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.tab-card {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.tab-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(212,57,29,0.10);
  transform: translateY(-2px);
}
.tab-card .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.tab-card h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  margin: 14px 0 8px;
  color: var(--ink);
}
.tab-card p { font-size: 13.5px; color: var(--muted); font-weight: 500; line-height: 1.55; }

.dash-cta-row {
  margin-top: 56px;
  text-align: center;
  padding: 40px 24px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: var(--paper-2);
}
.dash-cta-row p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted-2);
  font-weight: 500;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav { padding: 16px 24px; }
  .nav-links a:not(.btn):not(.bundle-tab) { display:none; }
  section { padding: 80px 24px; }
  .hero { padding: 60px 24px; grid-template-columns: 1fr; gap: 40px; }
  .hero::before { display: none; }
  .hero-overlay { left: 0; right: 0; bottom: -16px; width: auto; max-width: 360px; margin: 0 auto; }
  .hero-pill { right: 12px; }
  .problem-section, .features-section, .cost-section, .pricing-section, .faq-section { padding: 80px 24px; }
  .problem-grid, .features-grid, .how { grid-template-columns: 1fr; gap: 40px; }
  .how-image { position: static; aspect-ratio: 16/9; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-section { padding: 80px 24px; }
  .test-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 40px 28px; }
  .price-features { padding: 0; }
  .cost-grid { grid-template-columns: 1fr 1fr; }
  .bundle-section { padding: 60px 24px; }
  .bundle-hook { grid-template-columns: 1fr; padding: 36px 28px; }
  .final { padding: 100px 24px; }
  .subhead { padding: 64px 24px 48px; }
  .demo-stack, .dashboard-stack { padding: 64px 24px; }
  .owner-grid { grid-template-columns: 1fr; }
  .tab-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cost-grid { grid-template-columns: 1fr; }
  .tab-grid { grid-template-columns: 1fr; }
}


/* Nav CTA — Get the Bundle button (matching FDG header style) */
.nav-cta-bundle {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--ink);
  transition: all .18s;
}
.nav-cta-bundle:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white !important;
  transform: translateY(-1px);
}
.nav-cta-bundle::after { display: none !important; }


/* ===== SMS scaling section (add-on packs + overage) ===== */
.sms-scaling {
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 56px 32px 48px;
  background: var(--paper-2, #fff);
  border: 1px solid rgba(13,8,7,0.08);
  border-radius: 8px;
  position: relative;
}
.sms-scaling::before {
  content: '02 / pricing';
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: .02em;
}
.sms-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 24px;
}
.sms-pack {
  background: var(--paper);
  border: 1px solid rgba(13,8,7,0.1);
  border-radius: 6px;
  padding: 24px 22px;
  position: relative;
  transition: transform .18s ease, border-color .18s ease;
}
.sms-pack:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.sms-pack.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(13,8,7,0.03) 0%, var(--paper) 60%);
}
.sms-pack-tag {
  position: absolute;
  top: -10px; left: 22px;
  background: var(--accent);
  color: var(--paper);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 3px;
}
.sms-pack-size {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.sms-pack-price {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.sms-pack-price span {
  font-size: 18px;
  color: var(--muted-2);
  font-weight: 600;
}
.sms-pack p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.55;
  margin: 0;
}
.sms-overage {
  background: var(--paper);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
}
.sms-overage p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.65;
  margin: 0;
}
.sms-overage strong { color: var(--ink); }
@media (max-width: 720px) {
  .sms-pack-grid { grid-template-columns: 1fr; }
  .sms-scaling { padding: 40px 22px 32px; }
  .sms-scaling::before { right: 14px; top: 12px; font-size: 11px; }
}
