/* ============================================================
   NetPageTwo — shared site styles
   One font: Bricolage Grotesque
   Two color modes: light (default) + dark (auto via prefers-color-scheme, manually toggleable)
   ============================================================ */

@font-face { font-display: swap; }

:root {
  /* Color tokens — light */
  --bg:           #fafaf7;
  --bg-2:         #f3f1e7;
  --paper:        #ffffff;
  --paper-soft:   #fefcef;
  --ink:          #0a1310;
  --ink-soft:     #4a544e;
  --ink-soft2:    #7a847d;
  --rule:         #e6e4dc;
  --rule-soft:    #efece2;
  --bone:         #f3f1e7;

  /* Brand */
  --yellow:       #ffd60a;
  --yellow-w:     #ffe566;
  --yellow-h:     #ffc400;
  --lime:         #b4e23a;
  --green:        #0aa85b;
  --green-d:      #088a49;
  --green-x:      #064a28;

  /* Gradients */
  --grad-rise:    linear-gradient(95deg, var(--green-d) 0%, var(--green) 35%, var(--yellow-h) 100%);
  --grad-rise-v:  linear-gradient(180deg, var(--yellow) 0%, var(--lime) 50%, var(--green) 100%);
  --grad-button:  linear-gradient(95deg, var(--green-x) 0%, var(--green-d) 50%, var(--green) 100%);

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --gutter: 32px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;

  /* Type scale (used inline where helpful) */
  --fs-display: clamp(48px, 9vw, 120px);
  --fs-h1:      clamp(40px, 6vw, 84px);
  --fs-h2:      clamp(32px, 4.5vw, 56px);
  --fs-h3:      22px;
  --fs-body:    16px;
  --fs-lead:    19px;
}

[data-theme="dark"] {
  --bg:           #0a0e0c;
  --bg-2:         #11161a;
  --paper:        #121815;
  --paper-soft:   #161d19;
  --ink:          #f4f2ea;
  --ink-soft:     #b0b8b2;
  --ink-soft2:    #6e7872;
  --rule:         #1f2a23;
  --rule-soft:    #182019;
  --bone:         #11161a;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg:           #0a0e0c;
    --bg-2:         #11161a;
    --paper:        #121815;
    --paper-soft:   #161d19;
    --ink:          #f4f2ea;
    --ink-soft:     #b0b8b2;
    --ink-soft2:    #6e7872;
    --rule:         #1f2a23;
    --rule-soft:    #182019;
    --bone:         #11161a;
  }
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Bricolage Grotesque', -apple-system, system-ui, sans-serif;
  font-variation-settings: 'opsz' 14, 'wdth' 100;
  background: var(--bg);
  color: var(--ink);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .2s, color .2s;
}

::selection { background: var(--yellow); color: #0a1310; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Display sizing — variable axis tuned per role */
h1, .h1 { font-variation-settings: 'opsz' 96, 'wdth' 100; }
h2, .h2 { font-variation-settings: 'opsz' 72, 'wdth' 100; }
h3, .h3 { font-variation-settings: 'opsz' 32, 'wdth' 100; }
h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 700;
  color: var(--ink);
}
p { margin: 0; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container.narrow { max-width: var(--maxw-narrow); }

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-lg { padding: 80px 0; }
  :root { --gutter: 22px; }
}

/* ============================================================
   Reusable atoms
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-d);
}
[data-theme="dark"] .eyebrow,
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .eyebrow { color: var(--lime); } }
[data-theme="dark"] .eyebrow { color: var(--lime); }

.grad-text {
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

.rule {
  height: 1px; background: var(--rule); border: 0; margin: 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-button);
  color: #ffffff;
  box-shadow:
    0 8px 22px -6px rgba(8,138,73,.45),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  box-shadow:
    0 12px 28px -6px rgba(8,138,73,.55),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); }
[data-theme="dark"] .btn-ghost { border-color: var(--rule); }

.btn-ink {
  background: var(--ink);
  color: var(--bg);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 14px;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled {
  border-bottom-color: var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 19px; letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: 'opsz' 24;
  line-height: 1;
}
.brand .mark { width: 32px; height: 32px; flex: 0 0 32px; }
.brand .dot { color: var(--green); }
.brand .name-stack { display: inline-flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand .parent-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-soft2);
  text-transform: uppercase;
  font-variation-settings: 'opsz' 12;
}
@media (max-width: 520px) {
  .brand .parent-label { display: none; }
}

.nav-links {
  display: flex; gap: 28px;
  font-size: 14.5px; font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  padding: 8px 0;
  transition: color .12s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--grad-rise); border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 14px; }

.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color .12s, border-color .12s, transform .12s;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink-soft); }
.theme-toggle:active { transform: scale(0.96); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-burger { display: none; }

/* Hidden by default at all sizes — only shown when both inside the mobile
   breakpoint AND .open is set. */
.mobile-menu { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: transparent; border: 1px solid var(--rule);
    color: var(--ink-soft); cursor: pointer;
  }
  .nav-cta-desktop { display: none; }
  .mobile-menu {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 49;
    padding: 32px;
    flex-direction: column; gap: 18px;
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 22px; font-weight: 600;
    color: var(--ink);
    padding: 12px 0; border-bottom: 1px solid var(--rule);
  }
  .mobile-menu .btn { margin-top: 16px; align-self: flex-start; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
}
.hero-bg::before {
  width: 540px; height: 540px;
  background: var(--yellow);
  top: -160px; left: -180px;
  animation: float-a 18s ease-in-out infinite;
}
.hero-bg::after {
  width: 540px; height: 540px;
  background: var(--lime);
  bottom: -200px; right: -200px;
  animation: float-b 22s ease-in-out infinite;
}
[data-theme="dark"] .hero-bg::before { opacity: .18; }
[data-theme="dark"] .hero-bg::after  { opacity: .18; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .hero-bg::before,
  :root:not([data-theme]) .hero-bg::after { opacity: .18; }
}

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, -30px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}
.hero-decor {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.hero-decor .big-n {
  font-size: 480px;
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.08em;
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  opacity: 0.42;
  user-select: none;
  pointer-events: none;
  font-variation-settings: 'opsz' 96;
}
[data-theme="dark"] .hero-decor .big-n { opacity: 0.5; }

/* Real-client screenshot stack — sits in the hero's right column */
.result-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 0.92;
  margin: 0 auto;
}
.result-card {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 50px -16px rgba(10,19,16,0.22),
    0 4px 10px rgba(10,19,16,0.08);
  transition: transform .3s ease;
}
.result-card img { display: block; width: 100%; height: auto; }
.result-card.traffic {
  left: 0; top: 8%;
  width: 78%;
  transform: rotate(-3deg);
  z-index: 1;
}
.result-card.sources {
  right: -2%; bottom: 0;
  width: 46%;
  transform: rotate(4deg);
  z-index: 2;
}
.result-stack:hover .result-card.traffic { transform: rotate(-2deg) translateY(-4px); }
.result-stack:hover .result-card.sources { transform: rotate(3deg) translateY(-4px); }

.result-caption {
  position: absolute;
  bottom: -42px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-d);
  z-index: 3;
  box-shadow: 0 8px 24px -8px rgba(10,19,16,.15);
  white-space: nowrap;
}
.result-caption .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(10,168,91,0.22);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(10,168,91,0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(10,168,91,0.10); }
}
[data-theme="dark"] .result-caption { color: var(--lime); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-decor { min-height: 220px; }
  .hero-decor .big-n { font-size: 280px; opacity: 0.34; }
  .result-stack { max-width: 420px; aspect-ratio: 1 / 1; }
  .result-caption { bottom: -38px; }
}
@media (max-width: 560px) {
  .result-stack { max-width: 360px; }
  .result-card.sources { width: 50%; right: -4%; }
}

.hero h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 18px 0 22px;
}
.hero p.lede {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Compact hero used on subpages */
.hero-compact { padding: 64px 0 56px; }
.hero-compact h1 {
  font-size: var(--fs-h2);
  margin: 14px 0 18px;
}
.hero-compact p.lede {
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 24px;
}

/* ============================================================
   Section heads
   ============================================================ */
.sect-head {
  text-align: center;
  margin-bottom: 56px;
}
.sect-head .eyebrow { margin-bottom: 16px; }
.sect-head h2 {
  font-size: var(--fs-h2);
  margin: 0 auto 14px;
  max-width: 720px;
  letter-spacing: -0.045em;
}
.sect-head p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

.sect-head.left {
  text-align: left;
  margin-bottom: 40px;
}
.sect-head.left h2 { margin-left: 0; }
.sect-head.left p { margin-left: 0; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(10,19,16,.12);
  border-color: var(--rule);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  color: var(--green-d);
  margin-bottom: 18px;
}
[data-theme="dark"] .card-icon { color: var(--lime); }

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================================
   Stat grid
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
}
.stat-card .num {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-variation-settings: 'opsz' 96;
}
.stat-card .ctx {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.stat-card .src {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-soft2);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Three-column row (services, steps, etc.)
   ============================================================ */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .three-col, .four-col { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .three-col, .four-col { grid-template-columns: 1fr; }
}

/* ============================================================
   Steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
}
.step .num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  font-variation-settings: 'opsz' 96;
}
.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Pricing cards
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tier.popular {
  border-color: transparent;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    var(--grad-rise) border-box;
  border: 2px solid transparent;
  box-shadow: 0 24px 60px -20px rgba(10,168,91,.3);
}
.tier.popular::before {
  content: "Most chosen";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-button);
  color: #ffffff;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tier .tname {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-d);
}
[data-theme="dark"] .tier .tname { color: var(--lime); }
.tier .tprice {
  margin-top: 12px;
  display: flex; align-items: baseline; gap: 8px;
}
.tier .tprice .price {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
  font-variation-settings: 'opsz' 96;
}
.tier .tprice .per {
  font-size: 16px;
  color: var(--ink-soft);
}
.tier .desc {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.5;
}
.tier .feats {
  list-style: none;
  padding: 0; margin: 24px 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.tier .feats li {
  font-size: 15px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.tier .feats li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 4px;
  background: var(--grad-button);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='black'/><path d='M7 12.5l3.5 3.5L17 9.5' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='black'/><path d='M7 12.5l3.5 3.5L17 9.5' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
}
.tier .addon {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.tier .btn { align-self: stretch; justify-content: center; }
.tier .foot {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft2);
  text-align: center;
}

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Comparison table
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.compare-table th {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table tbody tr:hover {
  background: var(--bg-2);
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.compare-table .col-popular {
  background: linear-gradient(180deg, rgba(255,214,10,0.04), transparent);
}
@media (max-width: 720px) {
  .compare-table-wrap { display: none; }
  .compare-mobile { display: block; }
}
@media (min-width: 721px) {
  .compare-mobile { display: none; }
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq {
  max-width: 760px; margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq details:first-child {
  border-top: 1px solid var(--rule);
}
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--green-d);
  font-weight: 400;
  transition: transform .2s;
  line-height: 1;
}
[data-theme="dark"] .faq summary::after { color: var(--lime); }
.faq details[open] summary::after {
  content: "−";
}
.faq .ans {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background:
    radial-gradient(50% 80% at 30% 10%, rgba(255,214,10,0.25), transparent 70%),
    radial-gradient(60% 80% at 100% 100%, rgba(10,168,91,0.32), transparent 70%),
    var(--ink);
  color: var(--bg);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  color: var(--bg);
}
.cta-band p {
  font-size: 18px;
  color: rgba(244,242,234,0.7);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.cta-band .btn-primary { color: #ffffff; }
.cta-band .btn-ghost {
  border-color: rgba(244,242,234,0.25);
  color: var(--bg);
}
.cta-band .btn-ghost:hover {
  background: rgba(244,242,234,0.08);
  border-color: rgba(244,242,234,0.5);
}
.cta-band .small {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(244,242,234,0.55);
}
.cta-band .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 560px) {
  .cta-band { padding: 56px 22px; }
}

/* ============================================================
   Forms
   ============================================================ */
.form-field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-size: 15.5px;
  transition: border-color .12s, box-shadow .12s;
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(10,168,91,0.15);
}

/* ============================================================
   Photo placeholders — gradient frames that say what they are
   ============================================================ */
.photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(155deg, var(--yellow), var(--green));
  display: flex; align-items: end; justify-content: start;
  aspect-ratio: 4/5;
  color: #0a1310;
}
.photo.square { aspect-ratio: 1; }
.photo.wide { aspect-ratio: 16/10; }
.photo .label {
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 16px;
  font-weight: 600;
  opacity: 0.9;
}
.photo svg.silhouette {
  position: absolute;
  width: 70%; height: 80%;
  bottom: -4%; left: 15%;
  opacity: 0.25;
}

/* ============================================================
   Founder block (homepage + about)
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 48px;
  align-items: center;
}
.founder .photo { max-width: 360px; }
.founder h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; }
.founder p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 600px;
}
.founder p b { color: var(--ink); font-weight: 600; }
@media (max-width: 800px) {
  .founder { grid-template-columns: 1fr; gap: 24px; }
  .founder .photo { max-width: 280px; }
}

/* ============================================================
   Dog cards (CDOGOs)
   ============================================================ */
.dogs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.dog-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.dog-card .photo { aspect-ratio: 4/3; }
.dog-card h3 { font-size: 22px; }
.dog-card .role {
  font-size: 13px;
  color: var(--ink-soft2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -8px;
}
.dog-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .dogs { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-foot {
  background: var(--ink);
  color: rgba(244,242,234,0.7);
  padding: 80px 0 32px;
  margin-top: 64px;
  border-top: 1px solid var(--rule);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.foot-brand .brand { color: var(--bg); font-size: 22px; }
.foot-brand .tagline {
  margin-top: 14px;
  font-size: 14.5px;
  color: rgba(244,242,234,0.55);
  max-width: 240px;
}
.foot-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(244,242,234,0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  padding: 6px 0;
  color: rgba(244,242,234,0.75);
  font-size: 14.5px;
  transition: color .12s;
}
.foot-col a:hover { color: var(--bg); }
.foot-bottom {
  border-top: 1px solid rgba(244,242,234,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(244,242,234,0.4);
  gap: 20px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Misc page-specific
   ============================================================ */

/* Featured blog post */
.feature-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-post .img {
  aspect-ratio: 4/3;
  background: linear-gradient(155deg, var(--yellow), var(--green));
}
.feature-post .body {
  padding: 40px;
}
.feature-post .body h3 {
  font-size: 32px;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
}
.feature-post .meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
}
@media (max-width: 800px) {
  .feature-post { grid-template-columns: 1fr; }
  .feature-post .body { padding: 28px; }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -16px rgba(10,19,16,.12); }
.post-card .img {
  aspect-ratio: 16/10;
  background: linear-gradient(155deg, var(--yellow), var(--lime));
}
.post-card .body { padding: 20px 22px 22px; }
.post-card .body h4 {
  font-size: 19px;
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}
.post-card p { font-size: 14px; color: var(--ink-soft); }
.post-card .meta { margin-top: 14px; font-size: 12px; color: var(--ink-soft2); }
@media (max-width: 800px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .post-grid { grid-template-columns: 1fr; } }

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Topic pills */
.topic-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.topic-pills a {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .12s, background .12s;
}
.topic-pills a:hover { border-color: var(--ink); background: var(--bg-2); }

/* Newsletter band */
.newsletter {
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(255,214,10,.35), transparent 70%),
    radial-gradient(60% 80% at 100% 0%, rgba(10,168,91,.35), transparent 70%),
    var(--paper);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}
.newsletter h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 14px; }
.newsletter p { font-size: 17px; color: var(--ink-soft); max-width: 520px; margin: 0 auto 28px; }
.newsletter-form {
  display: flex; gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink);
  font-size: 15.5px;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(10,168,91,0.15);
}
@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
}

/* GEO 101 long form */
.longform {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.longform .toc {
  position: sticky;
  top: 100px;
  font-size: 14px;
}
.longform .toc h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.longform .toc a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  border-left: 2px solid var(--rule);
  padding-left: 14px;
  transition: color .12s, border-color .12s;
}
.longform .toc a:hover { color: var(--ink); border-left-color: var(--ink); }
.longform .toc a.active { color: var(--ink); border-left-color: var(--green); }
.longform .content { max-width: 720px; }
.longform .content h2 { font-size: 38px; margin-top: 64px; margin-bottom: 16px; }
.longform .content h2:first-child { margin-top: 0; }
.longform .content p {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 18px;
}
.longform .content p b { font-weight: 600; }
.longform .answer-box {
  background:
    linear-gradient(var(--paper-soft), var(--paper-soft)) padding-box,
    var(--grad-rise) border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
}
.longform .answer-box h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-d);
  margin-bottom: 14px;
  font-weight: 700;
}
.longform .answer-box p { font-size: 17px; margin-bottom: 0; }

@media (max-width: 880px) {
  .longform { grid-template-columns: 1fr; }
  .longform .toc { position: static; }
}

/* Numbered list block for GEO steps etc. */
.numbered-list {
  display: flex; flex-direction: column; gap: 28px;
}
.numbered-list .item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.numbered-list .item:last-child { border-bottom: 0; }
.numbered-list .item .num {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-variation-settings: 'opsz' 96;
}
.numbered-list .item h3 { font-size: 22px; margin-bottom: 8px; }
.numbered-list .item p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 560px) {
  .numbered-list .item { grid-template-columns: 1fr; gap: 8px; }
  .numbered-list .item .num { font-size: 40px; }
}

/* Two-column lists (who this is for) */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.fit-grid .col {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
}
.fit-grid .col h3 {
  font-size: 22px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.fit-grid .col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.fit-grid .col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.fit-grid .col.fit li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 3px;
  background: var(--grad-button);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='black'/><path d='M7 12.5l3.5 3.5L17 9.5' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='black'/><path d='M7 12.5l3.5 3.5L17 9.5' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
}
.fit-grid .col.not-fit li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 3px;
  background: var(--ink-soft2);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='black'/><path d='M8 8l8 8M16 8l-8 8' stroke='white' stroke-width='2.4' stroke-linecap='round' fill='none'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='black'/><path d='M8 8l8 8M16 8l-8 8' stroke='white' stroke-width='2.4' stroke-linecap='round' fill='none'/></svg>") center/contain no-repeat;
}
@media (max-width: 720px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* "What we get" scoped sections (visibility / v+r pages) */
.scope-section {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}
.scope-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.scope-section > p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.55;
}
.scope-section ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.scope-section li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.scope-section li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 9px;
  margin-left: 6px;
}

/* Calendar/week strip on tier pages */
.week-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.week-strip::before {
  content: "";
  position: absolute;
  left: 6%; right: 6%; top: 36px;
  height: 2px;
  background: var(--grad-rise);
  opacity: 0.4;
  border-radius: 2px;
  z-index: 0;
}
.week-cell {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  z-index: 1;
}
.week-cell .label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-d);
  font-weight: 700;
  margin-bottom: 12px;
}
[data-theme="dark"] .week-cell .label { color: var(--lime); }
.week-cell p { font-size: 14.5px; color: var(--ink); line-height: 1.5; }
@media (max-width: 880px) {
  .week-strip { grid-template-columns: 1fr 1fr; }
  .week-strip::before { display: none; }
}
@media (max-width: 560px) {
  .week-strip { grid-template-columns: 1fr; }
}

/* "What's not included" callout */
.disclosure-band {
  background: var(--paper-soft);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px dashed var(--yellow-h);
}
[data-theme="dark"] .disclosure-band {
  background: var(--bg-2);
  border-color: var(--ink-soft2);
}
.disclosure-band h2 { font-size: 32px; margin-bottom: 12px; }
.disclosure-band > p {
  color: var(--ink-soft);
  font-size: 16.5px;
  margin-bottom: 22px;
  max-width: 620px;
  line-height: 1.6;
}
.disclosure-band ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.disclosure-band li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
}
.disclosure-band li::before {
  content: "—";
  color: var(--yellow-h);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}

/* 404 */
.notfound {
  min-height: 80vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 80px var(--gutter);
  position: relative;
  overflow: hidden;
}
.notfound .big {
  font-size: clamp(140px, 26vw, 280px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.85;
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-variation-settings: 'opsz' 96;
}
.notfound .body {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-top: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.notfound .sub {
  margin: 14px auto 32px;
  max-width: 460px;
  color: var(--ink-soft);
  font-size: 16px;
}
.notfound .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.notfound .leon-corner {
  position: absolute;
  right: 24px; bottom: 24px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--yellow), var(--green));
  display: grid; place-items: center;
  font-size: 11px; font-weight: 600;
  color: #0a1310;
  padding: 12px;
  text-align: center;
  transform: rotate(-6deg);
}

/* Founder/values strip */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value { padding: 0; }
.value h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.value p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }

/* Section background variations */
.sec-bone { background: var(--bone); }
.sec-paper { background: var(--paper); }
.sec-ink { background: var(--ink); color: var(--bg); }
.sec-ink h2 { color: var(--bg); }
.sec-ink .sect-head p { color: rgba(244,242,234,0.6); }

/* Background colored stat band */
.stat-band {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0;
}
.stat-band .stat-card {
  background: transparent;
  border: 0;
  text-align: center;
  padding: 0;
}
.stat-band .stat-card .ctx { color: rgba(244,242,234,0.78); }
.stat-band .stat-card .src { color: rgba(244,242,234,0.35); }

/* AI / Human caption pills used inside scope sections + step cards */
.work-caption {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10,168,91,0.08);
  border: 1px solid rgba(10,168,91,0.18);
}
.work-caption.ai { color: var(--yellow-h); background: rgba(255,196,0,0.08); border-color: rgba(255,196,0,0.22); }
.work-caption.human { color: var(--green-d); background: rgba(10,168,91,0.08); border-color: rgba(10,168,91,0.18); }
.work-caption.mixed { color: var(--ink); background: linear-gradient(95deg, rgba(255,214,10,0.12), rgba(10,168,91,0.12)); border-color: rgba(10,168,91,0.22); }
[data-theme="dark"] .work-caption.ai { color: var(--yellow-w); }
[data-theme="dark"] .work-caption.human { color: var(--lime); }
[data-theme="dark"] .work-caption.mixed { color: var(--bg); }

/* Pull-quote thesis line under hero */
.pull-thesis {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--yellow), var(--green)) 1;
  padding: 4px 0 4px 18px;
  margin: 0 0 28px;
  max-width: 540px;
}

/* Big featured pull quote (Why Human section) */
.featured-quote {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 820px;
  margin: 32px auto;
  text-align: center;
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-variation-settings: 'opsz' 96;
  padding: 0 24px;
}

/* Pricing comparison strip */
.price-compare {
  display: flex; flex-direction: column; gap: 12px;
}
.price-compare .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font-size: 16px;
}
.price-compare .row.theirs { color: var(--ink-soft); }
.price-compare .row.ours { color: var(--ink); font-weight: 600; }
.price-compare .row.ours.featured {
  background: linear-gradient(95deg, rgba(255,214,10,0.08), rgba(10,168,91,0.1));
  border-color: var(--green);
}
.price-compare .row .label { font-size: 14.5px; }
.price-compare .row .price {
  font-size: 22px; font-weight: 700; letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 32;
}
.price-compare .row.ours .price {
  background: var(--grad-rise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.price-compare .caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
}
.callout {
  background:
    radial-gradient(60% 80% at 0% 100%, rgba(255,214,10,0.16), transparent 70%),
    radial-gradient(60% 80% at 100% 0%, rgba(10,168,91,0.16), transparent 70%),
    var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.callout h2 { font-size: 32px; margin-bottom: 14px; letter-spacing: -0.03em; }
.callout p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; margin-bottom: 24px; max-width: 620px; }

/* Long-form legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
}
.legal h2 {
  font-size: 26px;
  margin: 40px 0 12px;
  letter-spacing: -0.025em;
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 14px;
}
