/* =============================================================
   AGENTLEADS SALES PAGE — STYLESHEET
   Design: Dark editorial / financial precision
   Fonts: Playfair Display (serif headlines) + IBM Plex Mono (data)
          + DM Sans (body)
   Palette: Ink navy #0A0E1A · Gold #D4A843 · Warm off-white #F5F0E8
   ============================================================= */

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

:root {
  --ink:        #0A0E1A;
  --ink-mid:    #151B2E;
  --ink-card:   #1C2438;
  --ink-border: #2A3350;
  --gold:       #D4A843;
  --gold-muted: #9B7A2F;
  --gold-dim:   rgba(212,168,67,0.12);
  --cream:      #F5F0E8;
  --cream-dim:  #C8C2B4;
  --white:      #FFFFFF;
  --green-data: #4ADE80;
  --red-dot:    #FF5F56;
  --yellow-dot: #FFBD2E;
  --green-dot:  #27C840;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-mono:   'IBM Plex Mono', 'Courier New', monospace;
  --font-body:   'DM Sans', system-ui, sans-serif;

  --max-prose:  760px;
  --max-wide:   1120px;
  --radius:     6px;
  --radius-lg:  12px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SELECTION ── */
::selection {
  background: var(--gold);
  color: var(--ink);
}

/* ── TYPOGRAPHY UTILITIES ── */
.mono { font-family: var(--font-mono); }
.accent-gold { color: var(--gold); }
.large-mono {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container-prose {
  max-width: var(--max-prose);
}

.section {
  padding-block: 6rem;
}

@media (max-width: 640px) {
  .section { padding-block: 4rem; }
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: var(--gold);
}

/* ── SECTION HEADLINE ── */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

/* ── LINKS ── */
.link-accent {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-muted);
  transition: border-color 0.2s, color 0.2s;
}
.link-accent:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease-out-expo),
              box-shadow 0.15s var(--ease-out-expo),
              background-color 0.15s;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(212,168,67,0.3), 0 1px 4px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  background: #E0B94E;
  box-shadow: 0 6px 32px rgba(212,168,67,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-dim);
  border: 1px solid var(--ink-border);
  font-size: 0.875rem;
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--gold-muted);
  background: var(--gold-dim);
}

.btn-pricing {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: 0.875rem 1.5rem;
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-brand-by {
  font-weight: 400;
  color: var(--cream-dim);
  margin-left: 0.25rem;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--gold-dim);
  color: var(--gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

/* Subtle grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, transparent 0%, var(--ink) 75%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 63px,
      rgba(255,255,255,0.025) 63px,
      rgba(255,255,255,0.025) 64px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 63px,
      rgba(255,255,255,0.025) 63px,
      rgba(255,255,255,0.025) 64px
    );
  pointer-events: none;
}

/* Radial glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.pre-head {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s var(--ease-out-expo) both;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5.5vw, 3.875rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.05s both;
  max-width: 900px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

/* Global mobile-overflow safety nets — keep the page within the viewport */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
* { min-width: 0; }

.hero-price-inline {
  color: var(--gold);
}

.hero-proof-inline {
  font-weight: 700;
  color: var(--cream);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--cream-dim);
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.1s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.15s both;
}

/* Trust pills */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.2s both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-radius: 100px;
  padding: 0.3125rem 0.75rem;
}

.pill-icon {
  color: var(--gold);
  font-size: 0.75rem;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  animation: fadeIn 1s ease 1s both;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.5;
}

/* ── PROOF SECTION ── */
.proof-section {
  background: var(--ink-mid);
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

/* Terminal cards — the data credibility cards */
.terminal-card {
  background: #0D1117;
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.terminal-card:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 0 0 1px var(--gold-muted), 0 8px 32px rgba(0,0,0,0.4);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  background: #161B27;
  border-bottom: 1px solid var(--ink-border);
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-red    { background: var(--red-dot); }
.t-yellow { background: var(--yellow-dot); }
.t-green  { background: var(--green-dot); }

.t-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  margin-left: 0.375rem;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.t-line {
  display: grid;
  grid-template-columns: auto 1.5rem 1fr;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
}

.t-key  { color: rgba(212,168,67,0.6); }
.t-sep  { color: rgba(255,255,255,0.2); text-align: center; }
.t-val  { color: var(--cream-dim); padding-left: 0.25rem; }

.t-result {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ink-border);
}

.t-result .t-key  { color: var(--cream-dim); font-size: 0.75rem; }
.t-result .t-val  { color: var(--gold); }

.proof-footnote {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(200,194,180,0.45);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ── PROBLEM SECTION ── */
.problem-section {
  border-bottom: 1px solid var(--ink-border);
}

.prose-block p {
  color: var(--cream-dim);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 68ch;
}
.prose-block p:last-child { margin-bottom: 0; }
.prose-block strong { color: var(--cream); font-weight: 600; }
.prose-block em { color: var(--cream); font-style: italic; }

/* ── SOLUTION SECTION ── */
.solution-section {
  background: var(--ink-mid);
  border-bottom: 1px solid var(--ink-border);
}

.solution-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.solution-col p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* Flow diagram */
.flow-diagram {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  gap: 0.75rem;
  border-right: 1px solid var(--ink-border);
}

.flow-step:last-child { border-right: none; }

.flow-step-you {
  background: rgba(212,168,67,0.04);
}

.flow-icon {
  flex-shrink: 0;
}

.flow-step-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.flow-step-sub {
  font-size: 0.75rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.flow-arrow {
  display: none; /* hidden on mobile, visible via grid in flow-diagram */
  align-self: center;
  color: var(--gold-muted);
  font-size: 1.25rem;
  padding: 0 0.25rem;
}

@media (max-width: 700px) {
  .flow-diagram {
    flex-direction: column;
  }
  .flow-step {
    border-right: none;
    border-bottom: 1px solid var(--ink-border);
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 1rem;
  }
  .flow-step:last-child { border-bottom: none; }
  .flow-step-label { margin-bottom: 0; }
}

/* ── DELIVERABLES SECTION ── */
.deliverables-section {
  border-bottom: 1px solid var(--ink-border);
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.6;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid var(--ink-border);
}
.deliverables-list li:last-child { border-bottom: none; padding-bottom: 0; }

.deliverables-list strong { color: var(--cream); }

.check {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

/* ── GUARANTEE SECTION ── */
.guarantee-section {
  background: var(--ink-mid);
  border-bottom: 1px solid var(--ink-border);
}

.guarantee-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.guarantee-badge {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.guarantee-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.875rem;
}

.guarantee-intro {
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.guarantee-list {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.guarantee-list li {
  color: var(--cream-dim);
  font-size: 0.9375rem;
}

.guarantee-list strong { color: var(--cream); }

.guarantee-policy {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.6;
  background: var(--gold-dim);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.guarantee-not-covered {
  font-size: 0.875rem;
  color: rgba(200,194,180,0.5);
  line-height: 1.6;
}

.guarantee-not-covered strong { color: rgba(200,194,180,0.7); }

@media (max-width: 640px) {
  .guarantee-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem;
  }
}

/* ── URGENCY SECTION ── */
.urgency-section {
  border-bottom: 1px solid var(--ink-border);
}

.urgency-block {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

.urgency-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.urgency-body {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 62ch;
  line-height: 1.7;
}

/* ── PRICING SECTION ── */
.pricing-section {
  background: var(--ink-mid);
  border-bottom: 1px solid var(--ink-border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--gold-muted);
}

.pricing-card-featured {
  border-color: var(--gold-muted);
  background: linear-gradient(145deg, var(--ink-card) 0%, #1A2235 100%);
  box-shadow: 0 0 0 1px rgba(212,168,67,0.1), 0 16px 48px rgba(0,0,0,0.3);
}

.pricing-badge-featured {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-inner {
  padding: 2rem;
  padding-top: 1.75rem;
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.125rem;
  margin-bottom: 0.25rem;
}

.pricing-dollar {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-muted);
  margin-top: 0.375rem;
}

.pricing-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-per {
  font-size: 0.875rem;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}

.pricing-unit-cost {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(200,194,180,0.5);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink-border);
  line-height: 1.6;
}

.savings-badge {
  background: rgba(74,222,128,0.1);
  color: var(--green-data);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.6875rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--cream-dim);
  padding-left: 1.125rem;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--cream-dim);
  text-align: center;
}

/* ── FAQ SECTION ── */
.faq-section {
  border-bottom: 1px solid var(--ink-border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--ink-border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: color 0.15s;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out-expo);
  line-height: 1;
}

details[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-q:hover { color: var(--gold); }

.faq-a {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 62ch;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--ink-mid);
  border-bottom: 1px solid var(--ink-border);
}

.about-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.about-photo-wrap {
  flex-shrink: 0;
}

.about-photo-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ink-card);
  border: 1px solid var(--ink-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-copy p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 62ch;
}

.about-copy p:last-child { margin-bottom: 0; }

.about-sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--cream) !important;
}

@media (max-width: 600px) {
  .about-card {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ── FINAL CTA SECTION ── */
.final-cta-section {
  border-bottom: 1px solid var(--ink-border);
  background: var(--ink-mid);
  text-align: center;
}

.final-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.final-cta-section .pricing-grid {
  max-width: 700px;
  margin-inline: auto;
}

.final-cta-dm {
  font-size: 0.875rem;
  color: var(--cream-dim);
  margin-top: 1.5rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding-block: 2.5rem;
  border-top: 1px solid var(--ink-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: rgba(200,194,180,0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--cream-dim); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(200,194,180,0.25);
  letter-spacing: 0.05em;
}

/* ── SCROLL REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out-expo), transform 0.55s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero-headline { font-size: 1.125rem; line-height: 1.25; max-width: 100%; }
  .hero-inner { padding-left: 0.875rem; padding-right: 0.875rem; max-width: 100vw; box-sizing: border-box; overflow: hidden; }
  .nav-inner { padding-left: 0.875rem; padding-right: 0.875rem; max-width: 100vw; box-sizing: border-box; }
  .btn-primary, .btn-ghost { font-size: 0.875rem; padding: 0.875rem 1rem; }
  .nav .btn-primary { display: none; }
  .pre-head { font-size: 0.5625rem; letter-spacing: 0.04em; }
  /* allow long words/spans in the inline hero spans to break */
  .hero-headline, .hero-headline * { overflow-wrap: anywhere; word-break: normal; max-width: 100%; }
  .hero-headline .mono { font-size: 0.95em; }
  /* show mobile-only breaks; hide desktop ones */
  .br-desktop { display: none !important; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }

  .trust-pills { gap: 0.5rem; }
  .pill { font-size: 0.625rem; }

  .br-desktop { display: none; }

  .section-headline { font-size: clamp(1.5rem, 6vw, 2rem); }

  .proof-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .faq-q { font-size: 0.9375rem; }

  .nav-brand-by { display: none; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .hero-headline { font-size: clamp(2rem, 5vw, 3rem); }
  .proof-grid { grid-template-columns: 1fr; }
}

/* ── FINE DETAILS ── */
/* Subtle scanline on terminal cards */
.terminal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.005) 3px,
    rgba(255,255,255,0.005) 4px
  );
  pointer-events: none;
  border-radius: inherit;
}

.terminal-card { position: relative; }

/* Hover glow on pricing CTA */
.pricing-card-featured .btn-primary {
  box-shadow: 0 4px 24px rgba(212,168,67,0.4), 0 1px 4px rgba(0,0,0,0.4);
}

/* Print: hide nav, show plain text */
@media print {
  .nav, .hero-scroll-hint, .hero-bg-grid { display: none; }
  body { background: white; color: #111; }
  .hero { min-height: auto; }
}

/* ── FOCUS STYLES (accessibility) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
