/* ── Design tokens ────────────────────────────────────────── */
:root {
  --cream-50:  #faf8f4;
  --cream-100: #f4f0e8;
  --cream-200: #ebe4d8;
  --cream-300: #d9cfbf;
  --navy-900:  #0d1b2e;
  --navy-800:  #132236;
  --navy-700:  #1c3050;
  --navy-600:  #2a4268;
  --teal-600:  #00897b;
  --teal-500:  #00a896;
  --teal-400:  #00c4b0;
  --teal-100:  #ccf0eb;
  --orange-500:#d97706;
  --orange-400:#f59e0b;
  --orange-100:#fef3c7;
  --red-500:   #dc2626;
  --red-100:   #fee2e2;
  --ink:       #0d1b2e;
  --ink-700:   #1e3050;
  --ink-500:   #3d5a7a;
  --ink-400:   #5a7a9a;
  --ink-300:   #8ba3b8;
  --ink-200:   #c0cfd9;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm:  0 1px 3px rgba(13,27,46,0.07), 0 1px 2px rgba(13,27,46,0.05);
  --shadow-md:  0 4px 16px rgba(13,27,46,0.09), 0 2px 6px rgba(13,27,46,0.06);
  --shadow-lg:  0 12px 40px rgba(13,27,46,0.12), 0 4px 12px rgba(13,27,46,0.08);
  --shadow-teal: 0 6px 24px rgba(0,168,150,0.22);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream-50);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Subtle grain texture */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.7rem); font-weight: 800; line-height: 1.1; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--ink); }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.35; color: var(--ink); }
p  { color: var(--ink-500); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-900);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.btn-teal {
  background: var(--teal-500);
  color: #fff;
}
.btn-teal:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--cream-300);
}
.btn-outline:hover {
  border-color: var(--ink-300);
  background: var(--cream-100);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}
.btn-loading { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  transition: background 0.25s, box-shadow 0.25s;
}
.nav.scrolled {
  background: rgba(250,248,244,0.93);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--cream-200);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal-500);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-400);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-signin {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-400);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-signin:hover { color: var(--teal-600); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: 144px;
  padding-bottom: 100px;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,27,46,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-100);
  border: 1px solid rgba(0,168,150,0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge span.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: var(--teal-600);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-500);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-outcomes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-500);
}
.hero-outcome-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 1px;
}
.hero-outcome-icon.go {
  background: var(--teal-100);
  color: var(--teal-600);
}
.hero-outcome-icon.stop {
  background: var(--orange-100);
  color: var(--orange-500);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-300);
  margin-top: 18px;
}
.hero-disclaimer strong { color: var(--ink-400); }

/* Score card widget */
.score-card {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(13,27,46,0.06);
  color: #fff;
}
.score-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.score-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.score-card-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.score-card-id {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Courier New', monospace;
}
.score-ring-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}
.score-ring {
  position: relative;
  width: 110px; height: 110px;
  flex-shrink: 0;
}
.score-ring svg { transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 8; }
.score-ring-fill {
  fill: none;
  stroke: var(--teal-400);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.25,0.8,0.25,1);
  filter: drop-shadow(0 0 5px rgba(0,196,176,0.6));
}
.score-ring-number {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-ring-number .num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.score-ring-number .denom {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
}
.score-verdict { flex: 1; }
.score-verdict-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.score-verdict-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-400);
  margin-bottom: 8px;
}
.score-verdict-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.score-dimensions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.score-dim {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.score-dim-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.score-dim-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}
.score-dim-bar {
  height: 100%;
  border-radius: 2px;
  background: var(--teal-400);
  width: 0;
  transition: width 1.4s ease 0.4s;
}
.score-dim-val {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.score-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.score-footer-meta { font-size: 0.68rem; color: rgba(255,255,255,0.3); }
.score-footer-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245,158,11,0.15);
  color: var(--orange-400);
  border: 1px solid rgba(245,158,11,0.25);
}

/* ── Metrics bar ──────────────────────────────────────────── */
.metrics-bar {
  padding: 36px 0;
  background: var(--navy-900);
}
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.metric-item:last-child { border-right: none; }
.metric-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-400);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── Section header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin: 10px 0 14px; }
.section-header p { font-size: 1.05rem; }

/* ── Outcome section ──────────────────────────────────────── */
.outcome-section {
  background: var(--cream-50);
}
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.outcome-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
  position: relative;
  overflow: hidden;
}
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.outcome-card.positive::before { background: linear-gradient(90deg, var(--teal-500), var(--teal-400)); }
.outcome-card.warning::before  { background: linear-gradient(90deg, var(--orange-400), var(--orange-500)); }
.outcome-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.outcome-icon.positive { background: var(--teal-100); }
.outcome-icon.warning  { background: var(--orange-100); }
.outcome-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.outcome-card p { font-size: 0.92rem; color: var(--ink-500); line-height: 1.7; margin-bottom: 20px; }
.outcome-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.outcome-detail {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--ink-500);
}
.outcome-detail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.outcome-card.positive .outcome-detail-dot { background: var(--teal-500); }
.outcome-card.warning .outcome-detail-dot  { background: var(--orange-400); }

/* ── Problem / Anti-ChatGPT section ──────────────────────── */
.problem-section {
  background: var(--cream-100);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.problem-col {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
}
.problem-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.problem-col-tag {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.tag-chatgpt {
  background: var(--cream-100);
  color: var(--ink-400);
  border: 1px solid var(--cream-200);
}
.tag-sv {
  background: var(--teal-100);
  color: var(--teal-600);
  border: 1px solid rgba(0,168,150,0.2);
}
.problem-message {
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-500);
  border-left: 3px solid transparent;
}
.problem-message.negative { border-left-color: var(--cream-300); }
.problem-message.positive { border-left-color: var(--teal-500); background: rgba(0,168,150,0.04); }
.problem-message .label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 7px;
}
.problem-message.negative .label { color: var(--ink-300); }
.problem-message.positive .label { color: var(--teal-600); }

/* ── How it works ─────────────────────────────────────────── */
.how-section {
  background: var(--cream-50);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-card::after {
  content: '→';
  position: absolute;
  top: 50%; right: -16px;
  transform: translateY(-50%);
  color: var(--ink-200);
  font-size: 1.2rem;
  z-index: 1;
}
.step-card:last-child::after { display: none; }
.step-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-600);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.step-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--ink-400); line-height: 1.65; }
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.76rem;
  color: var(--teal-600);
  font-weight: 600;
}

/* ── What's inside ────────────────────────────────────────── */
.inside-section {
  background: var(--cream-100);
}
.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.inside-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.inside-item:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md);
}
.inside-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.inside-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.inside-text p {
  font-size: 0.78rem;
  color: var(--ink-400);
  line-height: 1.5;
}

/* ── VS table ─────────────────────────────────────────────── */
.vs-section {
  background: var(--cream-50);
}
.vs-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-md);
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.vs-table th, .vs-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-100);
}
.vs-table thead th {
  background: var(--cream-100);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-400);
}
.vs-table thead th.highlight {
  background: var(--navy-900);
  color: var(--teal-400);
}
.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table td.feature { color: var(--ink); font-weight: 500; }
.vs-table td.highlight { background: rgba(0,168,150,0.04); }
.check { color: var(--teal-600); font-weight: 700; }
.cross { color: #b91c1c; font-weight: 700; }
.partial { color: var(--orange-500); font-weight: 700; }

/* ── Quotes ───────────────────────────────────────────────── */
.quotes-section {
  background: var(--cream-100);
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.quote-source {
  font-size: 0.7rem;
  color: var(--ink-300);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quote-source::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--ink-200);
}
blockquote {
  font-size: 0.95rem;
  color: var(--ink-500);
  line-height: 1.72;
  font-style: italic;
}
blockquote::before {
  content: '\201C';
  font-size: 1.8rem;
  color: var(--teal-500);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 3px;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-section {
  background: var(--cream-50);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  background: var(--navy-900);
  border-color: transparent;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,196,176,0.25);
  color: #fff;
}
.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,196,176,0.35), 0 0 60px rgba(0,196,176,0.1);
}
.pricing-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal-500);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-300);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.45); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 8px;
}
.pricing-price .amount {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.pricing-card.featured .pricing-price .amount { color: #fff; }
.pricing-price .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-300);
  align-self: flex-start;
  padding-top: 7px;
}
.pricing-card.featured .pricing-price .currency { color: rgba(255,255,255,0.45); }
.pricing-desc {
  font-size: 0.85rem;
  color: var(--ink-400);
  margin-bottom: 24px;
  line-height: 1.55;
  min-height: 48px;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.55); }
.pricing-divider {
  border: none;
  border-top: 1px solid var(--cream-100);
  margin-bottom: 22px;
}
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,0.08); }
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--ink-500);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }
.pricing-feature .check-icon { color: var(--teal-500); flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-feature .check-icon { color: var(--teal-400); }
.pricing-feature .minus-icon { color: var(--ink-200); flex-shrink: 0; }
.pricing-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
}
.pricing-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-300);
  margin-top: 32px;
  line-height: 1.65;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section {
  background: var(--cream-100);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--cream-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--teal-600); }
.faq-chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--teal-100);
  border-color: rgba(0,168,150,0.2);
  color: var(--teal-600);
}
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.75;
  max-width: 640px;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA banner ───────────────────────────────────────────── */
.cta-section {
  background: var(--cream-50);
  padding: 80px 0;
}
.cta-inner {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,0.12) 0%, transparent 70%);
}
.cta-inner .eyebrow { color: var(--teal-400); }
.cta-inner h2 { color: #fff; margin-bottom: 14px; margin-top: 10px; }
.cta-inner p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-inner .btn-outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
  background: transparent;
}
.cta-inner .btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--cream-200);
  background: var(--cream-50);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { font-size: 0.88rem; font-weight: 700; color: var(--ink-400); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--ink-300);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 0.76rem; color: var(--ink-200); }

/* ── Success / Cancel ─────────────────────────────────────── */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--cream-50);
}
.status-card {
  background: #fff;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.status-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}
.status-icon.success { background: var(--teal-100); color: var(--teal-600); border: 2px solid rgba(0,168,150,0.2); }
.status-icon.cancel  { background: var(--cream-100); color: var(--ink-300); border: 2px solid var(--cream-200); }
.status-card h1 { font-size: 1.8rem; margin-bottom: 12px; }
.status-card p  { font-size: 0.93rem; margin-bottom: 28px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .score-card { max-width: 480px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: none; }
  .inside-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .vs-table thead th:nth-child(2),
  .vs-table tbody td:nth-child(2) { display: none; }
  .nav-links { display: none; }
  .cta-inner { padding: 48px 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  h1 { font-size: 2rem; }
  .cta-inner { padding: 40px 24px; }
  .score-dimensions { grid-template-columns: 1fr; }
  .status-card { padding: 48px 32px; }
}

/* ── Idea capture modal ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,46,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 36px;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  animation: slideUp 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUp { from { transform:translateY(20px);opacity:0 } to { transform:translateY(0);opacity:1 } }

.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--ink-300);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  line-height: 1;
}
.modal-close:hover { background: var(--cream-100); color: var(--ink); }

.modal-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-600); margin-bottom: 4px; }
.modal-tier    { font-size: 17px; font-weight: 800; color: var(--navy-900); margin-bottom: 20px; }
.modal-heading { font-size: 22px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.modal-sub     { font-size: 14px; color: var(--ink-400); margin-bottom: 24px; line-height: 1.55; }

.modal-field   { margin-bottom: 18px; }
.modal-label   { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.modal-textarea, .modal-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--cream-300);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream-50);
  transition: border-color 0.15s, box-shadow 0.15s;
  resize: vertical;
}
.modal-textarea:focus, .modal-input:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(0,168,150,0.12);
  background: #fff;
}
.modal-char-count  { font-size: 11px; color: var(--ink-300); text-align: right; margin-top: 4px; }
.modal-hint        { font-size: 12px; color: var(--ink-300); margin-top: 5px; }
.modal-label-opt   { font-size: 11px; font-weight: 400; color: var(--ink-300); margin-left: 4px; }

.upload-zone {
  display: block;
  border: 2px dashed var(--cream-300);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--cream-50);
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--teal-500);
  background: rgba(0,168,150,0.04);
}
.upload-zone.has-file {
  border-style: solid;
  border-color: var(--teal-500);
  background: rgba(0,168,150,0.04);
}
.upload-icon { font-size: 22px; margin-bottom: 6px; }
.upload-text { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.upload-hint { font-size: 11.5px; color: var(--ink-300); }
.upload-remove {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--ink-300);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}
.upload-remove:hover { color: var(--red-500); }

.modal-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-300);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2px 0 4px;
}
.modal-divider::before, .modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-300);
}

@media (max-width: 560px) {
  .modal-card { padding: 32px 24px 28px; border-radius: 16px; }
  .modal-heading { font-size: 19px; }
}
