/* =====================================================================
 * Ankos Marketing — Shared Stylesheet
 *
 * Design language (from prototype.html):
 *   - Warm cream background, deep olive text (matches logo)
 *   - Orange for emphasis + primary CTAs
 *   - Lime/olive accents for "positive" signals
 *   - Fraunces display serif with italic emphasis in orange
 *   - IBM Plex Sans body, JetBrains Mono for code/eyebrows
 * ==================================================================== */

/* Self-hosted variable fonts (latin subset) — see /fonts/ */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/fraunces.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/fraunces-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/ibm-plex-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/jetbrains-mono.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Palette from logo */
  --olive-dark: #424430;
  --olive-mid: #658e02;
  --lime: #bdd959;
  --orange: #f27405;
  /* Accessible orange (≥4.5:1 on cream) — use for small text, links, labels. */
  --orange-text: #A84A00;
  --red: #d90404;

  /* Supporting colors */
  --cream: #FAF6EC;
  --cream-soft: #F3EEDD;
  --cream-tinted-orange: #FDF0E0;
  --cream-tinted-lime: #F2F5E0;
  --cream-tinted-red: #F8ECE8;
  --black: #1A1B13;
  --olive-text: #5A5D44;
  --olive-muted: #8B8D76;
  --border: #E5DFCB;
  --border-strong: #C8C2A8;

  /* Fonts */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'IBM Plex Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Skip-to-content link — visually hidden until focused, keyboard users
   land on this first to jump past the top nav. */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 200;
  padding: 8px 12px;
  background: var(--orange);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.skip-link:focus { top: 8px; outline: none; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--olive-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-tight { padding: 72px 0; }

/* ==================== NAV ==================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-logo-mark {
  width: 26px; height: 26px;
  position: relative;
  display: inline-block;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--olive-text); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--olive-dark); }
.nav-cta {
  background: var(--orange); color: var(--black) !important;
  padding: 9px 20px; border-radius: 4px; font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--olive-dark); color: var(--cream) !important;
}

/* ==================== HERO ==================== */
.hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 100px; left: -100px;
  width: 400px; height: 400px;
  background: var(--cream-tinted-lime);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  top: 200px; right: -100px;
  width: 400px; height: 400px;
  background: var(--cream-tinted-orange);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: -1;
}
.hero-sm { padding: 160px 0 60px; }
.hero-badge {
  display: inline-block;
  background: var(--cream-soft);
  border: 1px solid var(--border-strong);
  color: var(--olive-dark);
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--olive-dark);
  margin-bottom: 28px;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange-text);
}
.hero-sub {
  font-size: 19px;
  color: var(--olive-text);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-install {
  background: var(--black);
  color: var(--cream);
  border-radius: 6px;
  padding: 18px 24px;
  display: inline-flex; align-items: center; gap: 20px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 10px 40px rgba(66, 68, 48, 0.15);
}
.hero-install .prefix { color: var(--orange); font-weight: 600; }
.hero-install .copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background 0.2s;
  font-family: var(--font-mono);
  font-size: 11px;
}
.hero-install .copy-btn:hover { background: rgba(255, 255, 255, 0.2); }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 80px; }

.btn-primary {
  background: var(--orange); color: var(--black);
  padding: 14px 28px; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 15px; transition: all 0.2s;
  display: inline-block;
  border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--olive-dark); color: var(--cream); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--olive-dark);
  border: 1px solid var(--border-strong);
  padding: 13px 28px; border-radius: 4px; text-decoration: none;
  font-weight: 500; font-size: 15px; transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-secondary:hover { border-color: var(--olive-dark); background: var(--cream-soft); }

/* Stats row with donut charts */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.stat-item:last-child { border-right: none; }
.stat-donut {
  width: 52px; height: 52px;
  margin-bottom: 4px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--olive-dark);
}
.stat-value em { font-style: italic; font-weight: 400; color: var(--orange-text); }
.stat-label {
  font-size: 12px;
  color: var(--olive-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ==================== SECTION HEADER ==================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--olive-dark);
  max-width: 760px;
  margin: 0 auto 20px;
}
.section-header h2 em { font-style: italic; font-weight: 400; color: var(--orange-text); }
.section-header p {
  color: var(--olive-text);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section background variants */
.section-cream-soft { background: var(--cream-soft); }
.section-tinted-lime { background: var(--cream-tinted-lime); }

/* ==================== COMPARISON ==================== */
.comparison {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.comparison-card {
  border-radius: 8px; padding: 40px;
  text-align: left;
}
.comparison-card.negative {
  background: var(--cream-tinted-red);
  border: 1px solid rgba(217, 4, 4, 0.15);
}
.comparison-card.positive {
  background: var(--cream-tinted-lime);
  border: 1px solid rgba(101, 142, 2, 0.2);
}
.comparison-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.comparison-card.negative h3 { color: var(--red); }
.comparison-card.positive h3 { color: var(--olive-mid); }
.comparison-card ul { list-style: none; }
.comparison-card li {
  padding: 10px 0;
  color: var(--olive-text);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}
.comparison-card.negative li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #B04A2E;
  font-weight: 600;
  font-size: 14px;
  top: 12px;
}
.comparison-card.positive li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive-mid);
  font-weight: 700;
  top: 10px;
}

/* ==================== FEATURES ==================== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card {
  background: var(--cream);
  padding: 40px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--cream-soft); }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  background: var(--cream-tinted-orange);
  border: 1px solid rgba(242, 116, 5, 0.15);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--olive-dark);
}
.feature-card.alt .feature-icon {
  background: var(--cream-tinted-lime);
  border-color: rgba(101, 142, 2, 0.2);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--olive-dark);
  letter-spacing: -0.3px;
}
.feature-card p {
  color: var(--olive-text);
  font-size: 14px;
  line-height: 1.65;
}

/* Two-column feature grid */
.features-grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ==================== HOW IT WORKS (DARK BREAK) ==================== */
.how-it-works {
  background: var(--black);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%; left: 10%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242, 116, 5, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.how-it-works::after {
  content: '';
  position: absolute;
  top: 20%; right: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(189, 217, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.how-it-works .section-header h2 { color: var(--cream); }
.how-it-works .section-header p { color: rgba(250, 246, 236, 0.7); }
.how-it-works .section-eyebrow { color: var(--lime); }

.steps { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.step {
  display: flex; gap: 40px; margin-bottom: 56px;
  align-items: flex-start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.1);
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-weight: 400;
  color: var(--orange);
  min-width: 80px;
  font-style: italic;
}
.step-content { flex: 1; }
.step-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--cream);
  letter-spacing: -0.5px;
}
.step-content p {
  color: rgba(250, 246, 236, 0.75);
  font-size: 16px;
  line-height: 1.7;
}
.step-code {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 16px 20px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--lime);
}
.step-code .dim { color: rgba(250, 246, 236, 0.4); }
.step-code .prompt { color: var(--orange); }

/* ==================== PRICING ==================== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
}
.pricing-card.featured {
  background: var(--cream-tinted-orange);
  border-color: var(--orange);
  position: relative;
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(242, 116, 5, 0.1);
}
.pricing-card.featured::before {
  content: '★ Most Popular';
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-size: 11px; font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--olive-dark);
}
.pricing-desc {
  font-size: 13px;
  color: var(--olive-text);
  margin-bottom: 28px;
  min-height: 20px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--olive-dark);
  margin-bottom: 6px;
}
.pricing-amount small {
  font-size: 18px;
  font-weight: 400;
  color: var(--olive-text);
}
.pricing-period {
  font-size: 12px;
  color: var(--olive-text);
  margin-bottom: 32px;
  min-height: 16px;
}
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--olive-text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--olive-mid);
  font-weight: 700;
}
.pricing-btn {
  display: block; text-align: center;
  padding: 13px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.pricing-btn-primary {
  background: var(--orange);
  color: var(--black);
}
.pricing-btn-primary:hover { background: var(--olive-dark); color: var(--cream); }
.pricing-btn-secondary {
  background: transparent;
  color: var(--olive-dark);
  border: 1px solid var(--border-strong);
}
.pricing-btn-secondary:hover { border-color: var(--olive-dark); background: var(--cream); }

/* ==================== PRICING COMPARISON TABLE ==================== */
.compare-table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--olive-text);
}
.compare-table thead th {
  background: var(--cream-soft);
  color: var(--olive-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.compare-table .center { text-align: center; }
.compare-table .check { color: var(--olive-mid); font-weight: 700; }
.compare-table .dash { color: var(--olive-muted); }
.compare-table .section-row td {
  background: var(--cream-soft);
  color: var(--olive-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }

.subprocessor-table td:first-child { font-weight: 600; color: var(--olive-dark); }

/* ==================== FAQ ==================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--olive-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.3px;
}
.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--orange);
  transition: transform 0.3s;
  min-width: 26px;
  text-align: center;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  color: var(--olive-text);
  font-size: 15px;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 600px; padding-top: 16px; }
.faq-a a { color: var(--orange-text); text-decoration: underline; text-underline-offset: 2px; }
.faq-a a:hover { text-decoration-thickness: 2px; }

/* ==================== FINAL CTA ==================== */
.final-cta {
  background: var(--cream-tinted-lime);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid rgba(101, 142, 2, 0.15);
  border-bottom: 1px solid rgba(101, 142, 2, 0.15);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--olive-dark);
  margin-bottom: 20px;
  line-height: 1.1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { font-style: italic; color: var(--orange-text); font-weight: 400; }
.final-cta p {
  color: var(--olive-text);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
  line-height: 0;
}
.footer-brand .footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-brand p {
  color: rgba(250, 246, 236, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.footer-col a {
  display: block;
  color: rgba(250, 246, 236, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(250, 246, 236, 0.5);
  font-size: 13px;
}
.footer-bottom .mono {
  color: rgba(250, 246, 236, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ==================== LEGAL / PROSE PAGES ==================== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  color: var(--olive-text);
  font-size: 16px;
  line-height: 1.75;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--olive-dark);
  margin-bottom: 12px;
  line-height: 1.1;
}
.legal-page .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 24px;
}
.legal-page .note {
  background: var(--cream-tinted-orange);
  border: 1px solid rgba(242, 116, 5, 0.2);
  color: var(--olive-dark);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 48px;
}
.legal-page .toc {
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 56px;
}
.legal-page .toc p {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 14px;
}
.legal-page .toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 32px;
  color: var(--olive-text);
  font-size: 14px;
}
.legal-page .toc a {
  color: var(--olive-text);
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
}
.legal-page .toc a:hover { color: var(--orange); }
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--olive-dark);
  margin: 56px 0 16px;
  line-height: 1.2;
}
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--olive-dark);
  margin: 28px 0 10px;
}
.legal-page p { margin-bottom: 16px; }
.legal-page ul, .legal-page ol { margin: 0 0 20px 22px; }
.legal-page ul li, .legal-page ol li { margin-bottom: 8px; }
.legal-page a { color: var(--orange-text); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { text-decoration-thickness: 2px; }
.legal-page code {
  font-family: var(--font-mono);
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 13px;
  color: var(--olive-dark);
}
.legal-page strong { color: var(--olive-dark); font-weight: 600; }

/* ==================== FORM (Contact) ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--olive-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--olive-dark);
  background: var(--cream);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 116, 5, 0.1);
}
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-status {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 16px;
  display: none;
}
.form-status.success {
  background: var(--cream-tinted-lime);
  color: var(--olive-mid);
  border: 1px solid rgba(101, 142, 2, 0.25);
  display: block;
}
.form-status.error {
  background: var(--cream-tinted-red);
  color: var(--red);
  border: 1px solid rgba(217, 4, 4, 0.25);
  display: block;
}

.contact-side h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--olive-dark);
  margin-bottom: 16px;
}
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: 0; }
.contact-item-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 6px;
}
.contact-item a {
  font-size: 16px;
  font-weight: 500;
  color: var(--olive-dark);
  text-decoration: none;
}
.contact-item a:hover { color: var(--orange); }
.contact-item p {
  font-size: 13px;
  color: var(--olive-text);
  margin-top: 4px;
}
.social-links { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.social-btn {
  padding: 8px 14px;
  background: var(--cream);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  color: var(--olive-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.social-btn:hover { color: var(--orange); border-color: var(--orange); }

/* ==================== PRINCIPLES (About) ==================== */
.principles { max-width: 780px; margin: 0 auto; }
.principle {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.principle:last-child { border-bottom: 0; }
.principle-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--cream-tinted-orange);
  border: 1px solid rgba(242, 116, 5, 0.25);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
}
.principle-body {
  color: var(--olive-text);
  line-height: 1.7;
  font-size: 16px;
  padding-top: 10px;
}
.principle-body strong {
  color: var(--olive-dark);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

/* ==================== PROSE ==================== */
.prose-section { max-width: 680px; margin: 0 auto; }
.prose-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--olive-text);
}
.prose-section p strong { color: var(--olive-dark); font-weight: 600; }
.prose-section a { color: var(--orange-text); text-decoration: underline; text-underline-offset: 2px; }
.prose-section a:hover { text-decoration-thickness: 2px; }

/* ==================== FOUNDER CARD ==================== */
.founder-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.founder-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--cream-tinted-orange);
  border: 2px solid rgba(242, 116, 5, 0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 auto 20px;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--olive-dark);
  margin-bottom: 4px;
}
.founder-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.founder-bio {
  color: var(--olive-text);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

/* ==================== COLUMN GRIDS ==================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.info-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--olive-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block ul { list-style: none; }
.info-block li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--olive-text);
  font-size: 14px;
  line-height: 1.65;
}
.info-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--olive-mid);
  font-weight: 700;
}
.info-block.highlighted {
  background: var(--cream-tinted-lime);
  border-color: rgba(101, 142, 2, 0.2);
}

/* Stat card (pricing "do the math") */
.stat-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.stat-card.highlighted {
  background: var(--cream-tinted-lime);
  border-color: rgba(101, 142, 2, 0.25);
}
.stat-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-text);
  margin-bottom: 12px;
}
.stat-card.highlighted .stat-card-label { color: var(--olive-mid); }
.stat-card-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--olive-dark);
  margin-bottom: 10px;
  line-height: 1;
}
.stat-card p {
  color: var(--olive-text);
  font-size: 14px;
  line-height: 1.6;
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-muted { color: var(--olive-text); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ==================== FIRST TIME THROUGH PCI? ==================== */
.first-time-section { background: var(--cream-tinted-lime); }
.first-time-section .section-eyebrow { color: var(--olive-mid); }
.first-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto 40px;
}
.first-time-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: border-color 0.2s, background 0.2s;
}
.first-time-card:hover { border-color: var(--border-strong); background: var(--cream-soft); }
.first-time-card .feature-icon {
  background: rgba(101, 142, 2, 0.12);
}
.first-time-card .feature-icon svg { color: var(--olive-mid); }
.first-time-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--olive-dark);
  letter-spacing: -0.3px;
}
.first-time-card p {
  color: var(--olive-text);
  font-size: 14px;
  line-height: 1.65;
}
.first-time-cta {
  text-align: center;
  font-size: 15px;
  color: var(--olive-text);
}
.first-time-cta a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.first-time-cta a:hover { text-decoration: underline; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-show { display: flex; }
  .section { padding: 80px 0; }
  .hero { padding: 140px 0 60px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 32px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .comparison { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-2 { grid-template-columns: 1fr; }
  .first-time-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step { flex-direction: column; gap: 16px; padding-bottom: 40px; margin-bottom: 40px; }
  .step-number { font-size: 48px; min-width: auto; }
  .section-header h2 { font-size: 32px; }
  .hero-install { font-size: 12px; padding: 14px 18px; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .legal-page { padding-top: 110px; }
  .legal-page h1 { font-size: 40px; }
  .legal-page .toc ol { columns: 1; }
}
