/* =========================================================
   Guzzler — shared site styles
   Warm cream palette inspired by Bloodtestdiagnosticsapp,
   structured navy/teal/amber accents from the business plan.
   Modern, claude.com-style typography and spacing.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Surfaces */
  --bg:               #fbf7f0;
  --bg-elev:          #ffffff;
  --bg-warm:          #f5ebe0;
  --bg-soft:          #fdfaf4;

  /* Text */
  --fg:               #1a1410;
  --fg-strong:        #0c0805;
  --fg-muted:         #6b605a;
  --fg-subtle:        #948880;

  /* Brand accents */
  --amber:            #c87a3a;   /* primary CTA */
  --amber-deep:       #a45e26;
  --amber-soft:       #f4d5b3;
  --amber-tint:       #faecd6;

  --navy:             #0e1936;   /* deep navy — from biz plan */
  --navy-soft:        #1b2a55;
  --navy-tint:        #e7eaf2;

  --teal:             #14a085;   /* teal stripe — from biz plan */
  --teal-deep:        #0e7a64;
  --teal-tint:        #d6f0e8;

  --coral:            #e76f51;

  /* Strokes */
  --border:           rgba(48, 33, 24, 0.10);
  --border-strong:    rgba(48, 33, 24, 0.18);
  --shadow-sm:        0 1px 2px rgba(20, 14, 8, 0.04), 0 1px 1px rgba(20, 14, 8, 0.03);
  --shadow-md:        0 8px 24px -8px rgba(20, 14, 8, 0.10), 0 2px 6px rgba(20, 14, 8, 0.04);
  --shadow-lg:        0 24px 60px -20px rgba(20, 14, 8, 0.18), 0 6px 18px rgba(20, 14, 8, 0.06);

  /* Radii */
  --r-sm: 6px;
  --r:    10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;

  /* Type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* -------- Typography -------- */
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg-strong);
}
h1, h2, h3, h4 {
  margin: 0;
  color: var(--fg-strong);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.04; letter-spacing: -0.035em; }
h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.1;  letter-spacing: -0.03em; }
h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.35rem, 2vw, 1.6rem); }
h4 { font-family: var(--sans);  font-weight: 600; font-size: 1.02rem; }
p  { margin: 0 0 1rem; color: var(--fg-muted); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--fg-muted); line-height: 1.6; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-deep);
}
.eyebrow::before {
  content: ""; width: 18px; height: 1.5px; background: var(--teal); border-radius: 2px;
}
.eyebrow.amber { color: var(--amber-deep); }
.eyebrow.amber::before { background: var(--amber); }
.eyebrow.navy { color: var(--navy); }
.eyebrow.navy::before { background: var(--navy); }

.italic-accent { font-family: var(--serif); font-style: italic; color: var(--amber-deep); font-weight: 500; }

/* -------- Layout -------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--container-narrow); }

section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 12px 0 14px; }
.section-head .lede { margin: 0; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--fg-strong); color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, var(--shadow-sm);
}
.btn-primary:hover { background: #2a2520; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-amber {
  background: var(--amber); color: #fff;
  box-shadow: 0 8px 22px -10px rgba(200, 122, 58, 0.6);
}
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--fg-strong);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: var(--fg-strong); }
.btn-link {
  padding: 0; border-radius: 0; color: var(--fg-strong);
  border-bottom: 1.5px solid var(--amber);
}
.btn-link:hover { color: var(--amber-deep); }
.btn-sm { padding: 9px 16px; font-size: 0.86rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* -------- Top Nav -------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(251, 247, 240, 0.78);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.nav.scrolled { background: rgba(251, 247, 240, 0.94); border-bottom-color: var(--border); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--fg-strong); letter-spacing: -0.02em;
  line-height: 1;
}
.brand-mark {
  width: 30px; height: 30px;
  align-self: center; flex-shrink: 0;
}
.brand-suffix {
  display: inline-block; margin-left: -2px;
  font-family: var(--sans);
  font-weight: 500; font-size: 0.7em;
  color: var(--fg-muted); letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative; top: -0.18em;
  padding: 2px 6px 2px 7px; border-radius: 4px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
}
.foot-brand .brand-suffix { background: rgba(255,255,255,0.65); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.93rem; color: var(--fg); font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--bg-warm); color: var(--fg-strong); }
.nav-links a.active { background: var(--bg-warm); color: var(--fg-strong); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px; border: 1px solid var(--border-strong);
  align-items: center; justify-content: center;
  background: var(--bg-elev);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.6px; background: var(--fg-strong);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--fg-strong);
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; }
  .nav-cta .btn:not(.btn-primary):not(.btn-amber) { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-elev); border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { padding: 10px 12px; width: 100%; }
}

/* -------- Hero -------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(72px, 10vw, 140px) 0 clamp(60px, 8vw, 96px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 .accent { color: var(--amber-deep); font-style: italic; }
.hero h1 .strike { position: relative; white-space: nowrap; }
.hero h1 .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 60%;
  height: 8px; background: var(--amber-soft); z-index: -1; border-radius: 4px;
}
.hero-meta {
  display: flex; gap: 24px; align-items: center; margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta .sep { width: 1px; height: 20px; background: var(--border-strong); }
.hero-meta .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--fg-muted);
}
.hero-meta .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-tint); }

/* Hero glow / decoration */
.hero::before {
  content: ""; position: absolute; pointer-events: none;
  top: -200px; right: -240px; width: 720px; height: 720px;
  background: radial-gradient(closest-side, rgba(244, 213, 179, 0.55), transparent 70%);
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  bottom: -180px; left: -200px; width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(214, 240, 232, 0.55), transparent 70%);
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

/* -------- Product mockup card -------- */
.mock {
  position: relative;
  background: var(--bg-elev);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mock-head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, #fcfaf6, #fbf6ee);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #e9dccb; }
.mock-dot.r { background: #f0a591; } .mock-dot.y { background: #f1cd87; } .mock-dot.g { background: #9bcfae; }
.mock-title { margin-left: 8px; font-size: 0.78rem; color: var(--fg-subtle); font-family: var(--sans); }
.mock-body { padding: 22px; display: grid; gap: 14px; }
.mock-line {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r);
}
.mock-line .step {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--amber-tint); color: var(--amber-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; font-family: var(--sans); flex-shrink: 0;
}
.mock-line .step.t { background: var(--teal-tint); color: var(--teal-deep); }
.mock-line .step.n { background: var(--navy-tint); color: var(--navy); }
.mock-line .txt { flex: 1; }
.mock-line .txt b { display: block; color: var(--fg-strong); font-weight: 600; font-size: 0.92rem; }
.mock-line .txt span { font-size: 0.82rem; color: var(--fg-muted); }
.mock-line .tag {
  font-size: 0.72rem; padding: 4px 8px; border-radius: 999px;
  background: var(--bg-warm); color: var(--fg-muted); font-weight: 500;
}
.mock-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--fg-subtle);
  background: var(--bg-soft);
}

/* -------- Stats strip -------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-elev);
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 28px 24px; background: var(--bg-elev); }
.stat + .stat { border-left: 1px solid var(--border); }
@media (max-width: 760px) {
  .stat:nth-child(odd) + .stat { border-left: 1px solid var(--border); }
  .stat:nth-child(2n+1) { border-left: 0 !important; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
}
.stat .num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 3.2vw, 2.6rem); color: var(--navy);
  letter-spacing: -0.03em; line-height: 1;
}
.stat .num.amber { color: var(--amber-deep); }
.stat .num.teal { color: var(--teal-deep); }
.stat .label {
  margin-top: 10px; font-size: 0.85rem; color: var(--fg-muted); line-height: 1.45;
}

/* -------- Cards / Grid -------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card h3 { margin: 14px 0 8px; }
.card p { margin: 0; color: var(--fg-muted); font-size: 0.96rem; }

.card-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--amber-tint); color: var(--amber-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.card-ico.t { background: var(--teal-tint); color: var(--teal-deep); }
.card-ico.n { background: var(--navy-tint); color: var(--navy); }
.card-ico svg { width: 22px; height: 22px; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 0.92rem; font-weight: 600;
  color: var(--fg-strong); border-bottom: 1.5px solid var(--amber);
  padding-bottom: 1px;
}
.card-link:hover { color: var(--amber-deep); }

/* Feature row (alternating image + text) */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feat-row + .feat-row { margin-top: clamp(80px, 10vw, 120px); }
.feat-row.reverse > :first-child { order: 2; }
@media (max-width: 960px) {
  .feat-row { grid-template-columns: 1fr; gap: 40px; }
  .feat-row.reverse > :first-child { order: 0; }
}
.feat-row h2 { margin: 14px 0 18px; }
.feat-row ul { padding: 0; margin: 24px 0 0; list-style: none; display: grid; gap: 14px; }
.feat-row ul li {
  display: grid; grid-template-columns: 26px 1fr; gap: 12px;
  font-size: 0.98rem; color: var(--fg);
}
.feat-row ul li::before {
  content: ""; width: 18px; height: 18px; margin-top: 4px;
  border-radius: 50%; background: var(--teal-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7a64' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px; background-position: center; background-repeat: no-repeat;
}

/* -------- Pricing -------- */
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch;
}
@media (max-width: 1080px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--navy); color: #fdf3e4;
  border-color: var(--navy);
  position: relative; overflow: hidden;
}
.price-card.featured h3, .price-card.featured .price-amt { color: #fdf3e4; }
.price-card.featured .price-sub, .price-card.featured ul li { color: rgba(253, 243, 228, 0.78); }
.price-card.featured ul li::before {
  background: rgba(255,255,255,0.10);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4d5b3' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.price-card.featured::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244,213,179,0.18), transparent 70%);
}
.price-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 6px;
}
.price-card.featured .price-tag { color: var(--amber-soft); }
.price-amt {
  display: flex; align-items: baseline; gap: 4px;
  margin: 18px 0 4px;
  font-family: var(--serif); font-weight: 500; font-size: 2.4rem; letter-spacing: -0.03em;
}
.price-amt .unit { font-family: var(--sans); font-size: 0.92rem; color: var(--fg-muted); font-weight: 500; }
.price-card.featured .price-amt .unit { color: rgba(253, 243, 228, 0.7); }
.price-sub { font-size: 0.92rem; color: var(--fg-muted); margin: 0 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.price-card ul li {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  font-size: 0.92rem; color: var(--fg);
}
.price-card ul li::before {
  content: ""; width: 16px; height: 16px; margin-top: 4px;
  border-radius: 50%; background: var(--teal-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e7a64' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.price-card .btn { margin-top: auto; width: 100%; }

/* -------- Quote / testimonial -------- */
.quote {
  background: var(--navy); color: #f4ead9;
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 64px);
  position: relative; overflow: hidden;
}
.quote::before {
  content: "\201C"; position: absolute; top: 8px; left: 28px;
  font-family: var(--serif); font-size: 12rem; color: rgba(244, 213, 179, 0.16);
  line-height: 1;
}
.quote::after {
  content: ""; position: absolute; right: -120px; bottom: -120px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(20,160,133,0.18), transparent 70%);
}
.quote-body {
  position: relative; z-index: 1; max-width: 760px;
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400; line-height: 1.35; letter-spacing: -0.02em;
}
.quote-body em { font-style: italic; color: var(--amber-soft); }
.quote-meta { position: relative; z-index: 1; margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
  color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0.04em;
}
.quote-meta .who { font-weight: 600; color: #fdf3e4; font-size: 0.98rem; }
.quote-meta .role { font-size: 0.85rem; color: rgba(253, 243, 228, 0.65); }

/* -------- CTA band -------- */
.cta-band {
  text-align: center;
  padding: clamp(64px, 8vw, 96px) clamp(28px, 5vw, 56px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(80% 60% at 20% 0%, rgba(244, 213, 179, 0.55), transparent 70%),
    radial-gradient(70% 50% at 100% 100%, rgba(214, 240, 232, 0.55), transparent 70%),
    var(--bg-elev);
  border: 1px solid var(--border);
}
.cta-band h2 { max-width: 760px; margin: 0 auto 14px; }
.cta-band p { max-width: 620px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-band .btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* -------- Logo strip -------- */
.logos {
  display: flex; gap: clamp(16px, 3vw, 32px); align-items: center; flex-wrap: wrap; justify-content: center;
  opacity: 0.72;
}
.logos span {
  font-family: var(--serif); font-weight: 500; font-size: 1.05rem; color: var(--fg-muted);
  letter-spacing: -0.01em;
}
.logos-lbl { text-align: center; font-size: 0.82rem; color: var(--fg-subtle); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }

/* -------- Comparison table -------- */
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 16px 18px; text-align: left;
  font-size: 0.94rem; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare th {
  background: var(--bg-warm); color: var(--fg-strong); font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.compare tr:last-child td { border-bottom: 0; }
.compare td.check { color: var(--teal-deep); font-weight: 600; }
.compare td.dash { color: var(--fg-subtle); }
.compare tr.rule td { font-weight: 600; color: var(--fg-strong); background: var(--bg-soft); }

/* -------- Timeline -------- */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; padding-top: 60px;
}
.timeline::before {
  content: ""; position: absolute; left: 0; right: 0; top: 78px;
  height: 2px; background: var(--border-strong);
  background-image: linear-gradient(to right, var(--teal) 0 50%, transparent 50% 100%);
  background-size: 14px 2px;
}
@media (max-width: 880px) { .timeline { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; } .timeline::before { display: none; } }
.tl-step { padding: 0 16px; position: relative; }
.tl-step .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--amber); border: 4px solid var(--bg); margin-bottom: 14px;
  box-shadow: 0 0 0 2px var(--amber);
}
.tl-step h4 { color: var(--amber-deep); font-family: var(--sans); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.tl-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.tl-step ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 0.9rem; color: var(--fg-muted); }
.tl-step ul li { padding-left: 14px; position: relative; }
.tl-step ul li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--teal);
}

/* -------- Footer -------- */
footer.site {
  padding: 80px 0 40px;
  background: linear-gradient(to bottom, transparent, var(--bg-warm) 30%);
  border-top: 1px solid var(--border);
}
.foot {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
}
@media (max-width: 880px) { .foot { grid-template-columns: 1fr 1fr; } }
.foot h5 {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-subtle); margin: 0 0 16px; font-weight: 600;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot ul a { color: var(--fg); font-size: 0.94rem; }
.foot ul a:hover { color: var(--amber-deep); }
.foot-brand p { font-size: 0.92rem; color: var(--fg-muted); margin-top: 12px; max-width: 320px; }
.foot-bottom {
  border-top: 1px solid var(--border); margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: var(--fg-subtle);
}

/* -------- Page header / sub-page hero -------- */
.page-head {
  padding: clamp(80px, 10vw, 132px) 0 clamp(48px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; top: -160px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(closest-side, rgba(244, 213, 179, 0.5), transparent 70%);
  pointer-events: none;
}
.page-head .container { position: relative; }
.page-head h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); max-width: 18ch; }
.page-head .lede { max-width: 64ch; margin-top: 18px; }

/* -------- Forms -------- */
.field { display: grid; gap: 6px; }
.field label { font-size: 0.85rem; color: var(--fg-strong); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--bg-elev); border: 1px solid var(--border-strong); color: var(--fg-strong);
  padding: 12px 14px; border-radius: var(--r); width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-tint);
}
.field textarea { min-height: 130px; resize: vertical; }

/* -------- Misc -------- */
.kbd-row { display: inline-flex; gap: 6px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--fg-strong); font-weight: 500;
  background: var(--bg-elev); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 999px;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.chip.amber .dot { background: var(--amber); }
.chip.navy .dot { background: var(--navy); }

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

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Decorative gradient line */
.bar-line {
  height: 4px; width: 64px; border-radius: 2px;
  background: linear-gradient(to right, var(--teal) 0 40%, var(--amber) 40% 100%);
}

/* -------- Pricing toggle -------- */
.price-toggle {
  display: inline-flex; padding: 4px;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 999px; box-shadow: var(--shadow-sm);
  margin: 0 auto;
}
.price-toggle button {
  padding: 8px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.88rem; color: var(--fg-muted);
  transition: background .2s ease, color .2s ease;
}
.price-toggle button.on { background: var(--fg-strong); color: var(--bg); }
.price-toggle .badge {
  margin-left: 6px; font-size: 0.7rem; padding: 2px 7px;
  background: var(--teal-tint); color: var(--teal-deep);
  border-radius: 999px; font-weight: 700;
}
.price-toggle button.on .badge { background: rgba(255,255,255,0.18); color: var(--amber-soft); }

/* -------- FAQ -------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 0; color: var(--fg-strong);
  font-family: var(--serif); font-weight: 500; font-size: 1.08rem; letter-spacing: -0.01em;
}
.faq-q .ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-warm); color: var(--fg-strong);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .25s ease, background .2s ease;
  font-size: 1.2rem; font-weight: 400;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--amber); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--fg-muted); font-size: 0.96rem;
}
.faq-item.open .faq-a { max-height: 400px; padding: 4px 0 20px; }

/* -------- Tag pills -------- */
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 500; padding: 5px 11px;
  border-radius: 999px;
  background: var(--bg-warm); color: var(--fg-strong);
  border: 1px solid var(--border);
}
.tag.t { background: var(--teal-tint); color: var(--teal-deep); border-color: transparent; }
.tag.a { background: var(--amber-tint); color: var(--amber-deep); border-color: transparent; }
.tag.n { background: var(--navy-tint); color: var(--navy); border-color: transparent; }

/* -------- Persona card -------- */
.persona {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
}
@media (max-width: 600px) { .persona { grid-template-columns: 1fr; } }
.persona-ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-tint), var(--amber-soft));
  color: var(--amber-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.persona-ico.t { background: linear-gradient(135deg, var(--teal-tint), #b6e3d4); color: var(--teal-deep); }
.persona-ico.n { background: linear-gradient(135deg, var(--navy-tint), #cdd3e3); color: var(--navy); }
.persona-ico svg { width: 28px; height: 28px; }
.persona h3 { margin-bottom: 8px; }
.persona p  { font-size: 0.96rem; }
.persona .tag-row { margin-top: 14px; }

/* -------- Article card (resources) -------- */
.article {
  display: flex; flex-direction: column;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.article:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--amber-tint), #f7e0c4);
  position: relative; overflow: hidden;
}
.article-cover.t { background: linear-gradient(135deg, var(--teal-tint), #c4e7da); }
.article-cover.n { background: linear-gradient(135deg, var(--navy-tint), #d4d9ea); }
.article-cover svg { width: 64px; height: 64px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.55; }
.article-meta { padding: 22px 24px 0; display: flex; gap: 10px; align-items: center; font-size: 0.78rem; color: var(--fg-subtle); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fg-subtle); }
.article h3 { padding: 12px 24px 8px; font-size: 1.18rem; line-height: 1.25; }
.article p { padding: 0 24px 24px; margin: 0; flex: 1; font-size: 0.94rem; }
.article-foot { padding: 0 24px 22px; font-size: 0.88rem; color: var(--amber-deep); font-weight: 600; }

/* -------- Two-column simple split -------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* -------- Glass / spotlight value cards -------- */
.value-card {
  position: relative; padding: 28px;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
}
.value-card .num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--serif); color: var(--amber-soft);
  font-size: 3.4rem; font-weight: 500; line-height: 1; letter-spacing: -0.04em;
  pointer-events: none;
}
.value-card h3 { margin-bottom: 8px; padding-right: 60px; }
.value-card p { margin: 0; font-size: 0.96rem; }

/* Print friendliness */
@media print {
  .nav, footer.site, .cta-band { display: none; }
}
