  :root {
    /* Deepki brand palette (sampled from deepki.com) */
    --bg: #f0f3f5;
    --panel: #ffffff;
    --panel-2: #f4f6f8;
    --border: #e9edf0;
    --border-strong: #d8dee3;
    --text: #1e2124;
    --text-2: #383b3e;
    --muted: #5d676e;
    --brand: #00A19A;
    --brand-dark: #16908a;
    --brand-deep: #00615C;
    --accent: #1FDFD5;
    --navy: #00504B;
    --blue-mid: #1c8f87;
    --warn: #d97706;
    --danger: #9c1a1a;
    --good: #1b870b;
  }
  * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: var(--bg); color: var(--text); font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; min-height: 100dvh; }
  h1, h2, h3, .display { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; letter-spacing: -0.02em; margin: 0; }
  a { color: var(--brand-dark); }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 18px 16px 80px; }
  @media (min-width: 720px) { .wrap { padding: 28px 28px 100px; } }

  header.top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
  .brand { display: flex; align-items: center; gap: 14px; }
  .brand-logo { display: inline-flex; color: var(--navy); }
  .brand-logo .dk-logo { height: 30px; width: auto; display: block; }
  .brand-sep { width: 1px; height: 28px; background: var(--border-strong); }
  .brand-product { display: flex; flex-direction: column; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-weight: 700; font-size: 14.5px; color: var(--text); line-height: 1.15; letter-spacing: -0.01em; }
  .brand-product small { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-weight: 500; font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
  @media (max-width: 520px) { .brand-sep, .brand-product small { display: none; } .brand-product { font-size: 13px; } }
  .top-meta { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; display: inline-flex; align-items: center; }
  .top-meta .td-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); margin-right: 8px; box-shadow: 0 0 0 3px rgba(31,223,213,0.22); }
  @media (max-width: 520px) { .top-meta { display: none; } }

  .sat-nav { display: inline-flex; gap: 2px; background: #edf0f2; padding: 4px; border-radius: 999px; }
  .sat-nav a { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 12.5px; padding: 6px 15px; border-radius: 999px; border: 0; color: var(--text-2); text-decoration: none; font-weight: 600; letter-spacing: 0.01em; transition: all 0.15s ease; white-space: nowrap; }
  .sat-nav a:hover { color: var(--brand); }
  .sat-nav a.active, .sat-nav a.active:hover { background: var(--brand); color: #fff; box-shadow: 0 1px 3px rgba(0,75,71,0.18); }
  @media (max-width: 560px) { .sat-nav { order: 99; margin-top: 4px; } }

  .hero { max-width: 720px; margin: 0 0 24px; }
  .hero .kicker { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 13px; color: var(--muted); letter-spacing: 0; font-weight: 600; margin-bottom: 10px; }
  .hero h1 { font-size: clamp(28px, 5.8vw, 46px); line-height: 1.05; font-weight: 700; margin-bottom: 12px; overflow-wrap: break-word; }
  .hero h1 .accent { color: inherit; }
  .hero p { font-size: 15px; line-height: 1.6; color: var(--text-2); margin: 0; }
  @media (min-width: 720px) { .hero p { font-size: 16.5px; } }
  .hero-trust { display: flex; flex-wrap: wrap; gap: 8px 9px; margin-top: 18px; }
  .hero-trust span { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 12.5px; font-weight: 600; color: var(--brand-deep); background: rgba(0,161,154,0.08); border: 1px solid rgba(0,161,154,0.18); padding: 6px 13px; border-radius: 999px; }
  .rp-gate-trust { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--brand-deep); line-height: 1.5; }

  .card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 18px; margin-bottom: 18px; }
  @media (min-width: 720px) { .card { padding: 24px; } }

  .form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  @media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 20px 24px; } }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 13.5px; font-weight: 600; color: var(--text); letter-spacing: 0; }
  .field .help { font-size: 12px; color: var(--muted); margin-top: 2px; }

  .pill-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  @media (min-width: 480px) { .pill-row { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); } }
  .pill { cursor: pointer; padding: 12px 10px; border: 1px solid var(--border-strong); border-radius: 10px; background: var(--panel-2); text-align: center; font-size: 13px; font-weight: 500; color: var(--text-2); transition: all 0.12s; min-height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; line-height: 1.25; }
  .pill:hover { border-color: var(--brand); color: var(--text); background: white; }
  .pill input { display: none; }
  .pill:has(input:checked) { border-color: var(--brand); color: var(--brand-deep); background: rgba(0,161,154,0.07); box-shadow: inset 0 0 0 1px var(--brand); font-weight: 700; }
  .pill small { font-size: 11px; color: var(--muted); font-weight: 400; }
  .pill:has(input:checked) small { color: var(--brand-dark); }

  select, input[type="text"], input[type="email"] {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 10px;
    background: #ffffff; font-size: 15px; color: var(--text); font-family: inherit;
    min-height: 48px; box-shadow: inset 0 1px 2px rgba(0,75,71,0.06); transition: all 0.15s ease;
  }
  select:focus, input[type="text"]:focus, input[type="email"]:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: inset 0 1px 2px rgba(0,75,71,0.04), 0 0 0 4px rgba(0,161,154,0.12); }

  .slider-wrap { display: flex; flex-direction: column; gap: 10px; }
  .slider-readout { display: flex; align-items: baseline; justify-content: space-between; }
  .slider-val { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 22px; font-weight: 700; color: var(--brand-deep); letter-spacing: -0.01em; }
  .slider-unit { font-size: 12px; color: var(--muted); }
  input[type="range"] {
    -webkit-appearance: none; appearance: none; width: 100%; height: 8px;
    background: linear-gradient(to right, var(--brand) 0%, var(--brand) var(--p, 50%), #dde4e8 var(--p, 50%), #dde4e8 100%);
    border-radius: 999px; outline: none; padding: 0; margin: 8px 0;
    box-shadow: inset 0 1px 2px rgba(0,75,71,0.10);
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
    background: white; border: 3px solid var(--brand); border-radius: 50%;
    cursor: pointer; box-shadow: 0 1px 4px rgba(0,75,71,0.20), 0 0 0 4px rgba(0,161,154,0.12);
    transition: box-shadow 0.15s ease;
  }
  input[type="range"]:active::-webkit-slider-thumb { box-shadow: 0 1px 4px rgba(0,75,71,0.22), 0 0 0 6px rgba(0,161,154,0.16); }
  input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px; background: white; border: 3px solid var(--brand); border-radius: 50%; cursor: pointer; box-shadow: 0 1px 4px rgba(0,75,71,0.20), 0 0 0 4px rgba(0,161,154,0.12);
  }
  .slider-bands { display: flex; justify-content: space-between; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 10px; color: var(--muted); }

  .hook { padding: 26px 0 4px; border: none; border-top: 1px solid var(--border-strong); background: transparent; color: var(--text); margin-top: 10px; box-shadow: none; }
  .hook-pill { display: inline-block; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 11.5px; padding: 5px 11px; border-radius: 999px; background: rgba(0,161,154,0.12); color: var(--brand-dark); letter-spacing: 0; font-weight: 600; margin-bottom: 14px; }
  .hook-headline { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: clamp(32px, 7vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; color: var(--brand-deep); }
  .hook-sub { font-size: 15px; line-height: 1.5; color: var(--text-2); margin-bottom: 18px; max-width: 540px; }
  .hook-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding-top: 16px; border-top: 1px solid var(--border); }
  .hook-stat { text-align: center; padding: 4px 10px 0; border-right: 1px solid var(--border); }
  .hook-stat:last-child { border-right: 0; }
  .hook-stat-v { display: block; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: clamp(18px, 4.5vw, 26px); font-weight: 700; line-height: 1.05; color: var(--brand-deep); }
  .hook-stat-k { display: block; font-family: "Hanken Grotesk", sans-serif; font-size: 11.5px; color: var(--muted); letter-spacing: 0; margin-top: 6px; line-height: 1.3; }
  @media (max-width: 380px) { .hook-stat-v { font-size: 16px; } .hook-stat-k { font-size: 9px; } }

  .gate { margin-top: 18px; padding: 22px 20px; border-radius: 14px; background: white; border: 1px solid var(--border-strong); box-shadow: 0 1px 3px rgba(0,75,71,0.05); }
  @media (min-width: 720px) { .gate { padding: 26px 28px; } }
  .gate-kicker { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 12.5px; color: var(--brand-dark); letter-spacing: 0; font-weight: 600; margin-bottom: 6px; }
  .gate-h { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.2; }
  .gate-sub { font-size: 14px; color: var(--text-2); line-height: 1.5; margin-bottom: 16px; }
  .gate-form { display: grid; grid-template-columns: 1fr; gap: 10px; }
  @media (min-width: 580px) { .gate-form { grid-template-columns: 1fr 1fr auto; align-items: end; } }
  .gate-form input { min-height: 48px; }
  .gate-btn { padding: 14px 22px; min-height: 48px; background: var(--brand); color: white; border: none; border-radius: 10px; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.15s; letter-spacing: 0.01em; }
  .gate-btn:hover:not(:disabled) { background: var(--brand-dark); }
  .gate-btn:disabled { opacity: 0.55; cursor: not-allowed; }
  .gate-msg { margin-top: 12px; font-size: 13px; color: var(--text-2); min-height: 18px; }
  .gate-msg.err { color: var(--danger); }
  .gate-msg.ok { color: var(--good); }
  .gate-disclaimer { margin-top: 14px; font-size: 11.5px; color: var(--muted); line-height: 1.5; }

  .rp { margin-top: 26px; }
  .rp-reveal { margin: 0 0 22px; padding: 26px 24px; border-radius: 16px; background: linear-gradient(135deg, rgba(0,161,154,0.10) 0%, rgba(0,161,154,0.03) 100%); border: 1px solid rgba(0,161,154,0.24); color: var(--text); box-shadow: 0 1px 3px rgba(0,75,71,0.05); }
  .rp-reveal-unlocked { animation: revealPop 0.5s cubic-bezier(0.2,0.8,0.2,1); }
  @media (min-width: 720px) { .rp-reveal { padding: 32px 30px; } }
  .rp-reveal-kick { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 12.5px; letter-spacing: 0; color: var(--brand-dark); font-weight: 600; margin-bottom: 8px; }
  .rp-reveal-fig { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: clamp(38px, 8.5vw, 62px); font-weight: 700; letter-spacing: -0.035em; line-height: 1; color: var(--brand-deep); }
  .rp-reveal-fig .rp-reveal-gbp { font-size: 0.4em; font-weight: 600; color: var(--muted); letter-spacing: 0; }
  .rp-reveal-sub { font-size: 14.5px; line-height: 1.55; color: var(--text-2); margin-top: 12px; max-width: 560px; }
  @keyframes revealPop { from { opacity: 0; transform: translateY(10px) scale(0.99); } to { opacity: 1; transform: none; } }
  /* Locked "final piece" — blurred placeholder + inline email capture */
  .rp-fig-mask { filter: blur(11px); opacity: 0.5; user-select: none; -webkit-user-select: none; pointer-events: none; }
  .rp-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .rp-reveal-locked .rp-gate { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  @media (min-width: 580px) { .rp-reveal-locked .rp-gate { grid-template-columns: 1fr 1fr auto; align-items: end; } }
  .rp-reveal-locked .rp-gate input { min-height: 48px; padding: 13px 15px; border: 1px solid var(--border-strong); border-radius: 10px; background: #fff; font-family: inherit; font-size: 15px; color: var(--text); }
  .rp-reveal-locked .rp-gate input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,161,154,0.12); }
  .rp-gate-fine { margin-top: 14px; font-size: 11.5px; color: var(--muted); line-height: 1.5; max-width: 620px; }
  .rp-cell-lock { display: inline-flex; align-items: center; gap: 5px; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 12.5px; font-weight: 700; color: var(--brand-dark); text-decoration: none; white-space: nowrap; }
  .rp-cell-lock:hover { color: var(--brand-deep); text-decoration: underline; }
  .rp-block { margin: 0 0 22px; padding: 22px 20px; background: white; border: 1px solid var(--border); border-radius: 14px; }
  @media (min-width: 720px) { .rp-block { padding: 26px 28px; } }
  .rp-h { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 16px; }
  .rp-summary-table, .rp-fin-table, .rp-capex-table { width: 100%; border-collapse: collapse; font-size: 14px; }
  .rp-summary-table th, .rp-summary-table td { padding: 8px 0; border-bottom: 1px solid var(--border); text-align: left; font-weight: 500; }
  .rp-summary-table th { color: var(--muted); font-weight: 500; width: 50%; }
  .rp-summary-table td { font-weight: 600; color: var(--text); }
  .rp-summary-table tr:last-child th, .rp-summary-table tr:last-child td { border-bottom: none; }
  .rp-fin-table, .rp-capex-table { margin-top: 8px; }
  .rp-fin-table thead th, .rp-capex-table thead th { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: 0; padding: 10px 12px; background: var(--panel-2); border-bottom: 1px solid var(--border-strong); text-align: left; }
  .rp-fin-table thead th:nth-child(2), .rp-capex-table thead th.num, .rp-capex-table thead th:nth-child(n+2) { text-align: right; }
  .rp-fin-table tbody th, .rp-capex-table tbody th { text-align: left; padding: 12px; font-weight: 600; color: var(--text); vertical-align: top; border-bottom: 1px solid var(--border); font-size: 14px; }
  .rp-fin-table tbody td, .rp-capex-table tbody td { padding: 12px; vertical-align: top; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text-2); }
  .rp-fin-table tbody td.num, .rp-capex-table tbody td.num { text-align: right; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-weight: 700; color: var(--text); font-size: 14px; }
  .rp-fin-table tbody th small, .rp-capex-table tbody th small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; margin-top: 3px; }
  .rp-fin-table tbody td small, .rp-capex-table tbody td small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; margin-top: 2px; }
  .rp-cap, .rp-note { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 10px 0 0; }
  .rp-chart-wrap { margin: 4px 0 14px; padding: 16px 8px; background: var(--panel-2); border-radius: 10px; }

  .rp-tl { display: flex; flex-direction: column; gap: 12px; }
  .rp-tl-row { display: grid; grid-template-columns: 64px 1fr; gap: 14px; padding: 14px 16px; background: var(--panel-2); border-radius: 10px; align-items: flex-start; }
  .rp-tl-row.stranded { background: #fff3f0; }
  .rp-tl-year { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
  .rp-tl-row.stranded .rp-tl-year { color: var(--danger); }
  .rp-tl-body { font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
  .rp-tl-status { margin-bottom: 4px; }
  .rp-tl-milestone { color: var(--muted); font-size: 12.5px; }
  .rp-tl-pill { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
  .rp-tl-pill.compliant { background: rgba(21,128,61,0.12); color: var(--good); }
  .rp-tl-pill.stranded  { background: rgba(220,38,38,0.12); color: var(--danger); }

  .rp-cta { background: linear-gradient(135deg, rgba(0,161,154,0.08) 0%, rgba(0,161,154,0.03) 100%); border-color: rgba(0,161,154,0.30); }
  .rp-cta-kicker { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 12.5px; color: var(--brand-dark); letter-spacing: 0; font-weight: 600; margin-bottom: 6px; }
  .rp-cta-h { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.25; }
  .rp-cta p { font-size: 14.5px; line-height: 1.55; color: var(--text-2); margin: 0 0 16px; }
  .rp-cta-btn { display: inline-block; padding: 13px 24px; background: var(--brand); color: white; text-decoration: none; border-radius: 999px; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.01em; transition: background 0.15s; }
  .rp-cta-btn:hover { background: var(--brand-dark); }

  .rp-toolbar { display: flex; gap: 8px; justify-content: flex-end; margin-bottom: 14px; flex-wrap: wrap; }
  .rp-toolbar button { padding: 10px 16px; min-height: 40px; background: white; color: var(--text); border: 1px solid var(--border-strong); border-radius: 8px; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all 0.15s; }
  .rp-toolbar button:hover { border-color: var(--brand); color: var(--brand-dark); }
  .rp-toolbar button svg { width: 14px; height: 14px; }

  .disclaim { margin-top: 32px; padding: 16px 18px; border-radius: 12px; background: var(--panel-2); border: 1px solid var(--border); font-size: 12px; color: var(--muted); line-height: 1.6; }
  .disclaim b { color: var(--text-2); }

  /* Progressive disclosure — simple result first, button reveals the full report */
  .unlock-wrap { text-align: center; margin: 4px 0 6px; padding: 14px 0 2px; }
  .unlock-btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px; min-height: 52px; background: var(--brand); color: #fff; border: none; border-radius: 999px; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; cursor: pointer; transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease; box-shadow: 0 3px 14px rgba(0,97,92,0.22); }
  .unlock-btn:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(0,97,92,0.28); }
  .unlock-btn:active { transform: translateY(0); }
  .unlock-note { font-size: 13px; color: var(--muted); margin: 13px 0 0; line-height: 1.5; }

  .hidden { display: none !important; }

  @media print {
    body { background: white; }
    header.top, .hero, .card.form-card, .gate, .rp-toolbar, .disclaim.no-print { display: none !important; }
    .wrap { max-width: none; padding: 0; }
    .rp-block { page-break-inside: avoid; break-inside: avoid; border: 1px solid #d8dee3; box-shadow: none; }
    .hook { page-break-after: avoid; }
    .rp-h { color: #00504b; }
    .rp-cta-btn { background: white !important; color: #00615C !important; border: 2px solid #00615C; }
  }

  /* Light footer — frames every page in the soft teal of the CTA panel */
  .site-foot { margin-top: 44px; background: linear-gradient(135deg, rgba(0,161,154,0.08) 0%, rgba(0,161,154,0.03) 100%); border: 1px solid rgba(0,161,154,0.22); border-radius: 16px; padding: 26px 24px; }
  .site-foot .foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
  .site-foot .foot-brand { display: inline-flex; align-items: center; gap: 13px; color: var(--navy); }
  .site-foot .foot-brand .dk-logo { height: 26px; width: auto; display: block; }
  .site-foot .foot-brand .fb-txt { font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.2; }
  .site-foot .foot-brand .fb-txt small { display: block; font-weight: 500; font-size: 10px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }
  .site-foot .foot-nav { display: inline-flex; gap: 8px; }
  .site-foot .foot-nav a { color: var(--text-2); text-decoration: none; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-weight: 600; font-size: 12.5px; padding: 7px 14px; border: 1px solid var(--border-strong); border-radius: 999px; transition: all 0.15s ease; background: rgba(255,255,255,0.6); }
  .site-foot .foot-nav a:hover { background: #fff; border-color: var(--brand); color: var(--brand); }
  .site-foot .foot-rule { height: 1px; background: var(--border); margin: 20px 0 15px; }
  .site-foot .foot-fine { font-size: 11.5px; color: var(--muted); line-height: 1.65; }
  .site-foot .foot-fine a { color: var(--brand); text-decoration: none; }
  @media (max-width: 520px) { .site-foot .foot-brand .fb-txt small { display: none; } }

.hero-roi{margin-top:10px;color:var(--brand-deep,#00615C);font-weight:600;font-size:1.02rem;}

  /* ============ HubSpot embedded gate (calculator + map) ============
     Styles the injected .hs-form to sit flush with our native inputs. */
  .hs-gate { margin-top: 18px; max-width: 620px; text-align: left; }
  .hs-gate .hs-form-field { margin: 0 0 10px; }
  .hs-gate label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-2); margin: 0 0 5px; }
  .hs-gate legend.hs-field-desc { font-size: 11.5px; color: var(--muted); margin: 0 0 5px; }
  .hs-gate input.hs-input { width: 100% !important; box-sizing: border-box; min-height: 48px; padding: 13px 15px; border: 1px solid var(--border-strong); border-radius: 10px; background: #fff; font-family: inherit; font-size: 15px; color: var(--text); }
  .hs-gate input.hs-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(0,161,154,0.12); }
  .hs-gate .hs-button { padding: 14px 22px; min-height: 48px; background: var(--brand); color: #fff; border: none; border-radius: 10px; font-family: "Century Gothic", "Jost", "Hanken Grotesk", sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.15s; letter-spacing: 0.01em; -webkit-appearance: none; }
  .hs-gate .hs-button:hover:not(:disabled) { background: var(--brand-dark); }
  .hs-gate .hs-error-msgs { list-style: none; margin: 6px 0 0; padding: 0; font-size: 12.5px; color: var(--danger); }
  .hs-gate .hs-error-msg { color: var(--danger); }
  .hs-gate .submitted-message { font-size: 14.5px; color: var(--brand-deep); font-weight: 600; line-height: 1.5; }
  .hs-gate .hs_report_url, .hs-gate .hs_pack_url, .hs-gate .hs_markets { display: none; }
  .hs-gate .legal-consent-container, .hs-gate .legal-consent-container p { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

  /* Ultra-narrow phones (<=374px): tighten the report timeline grid */
  @media (max-width: 374px) {
    .rp-tl-row { grid-template-columns: 48px 1fr; gap: 10px; padding: 12px 12px; }
    .rp-tl-year { font-size: 19px; }
  }
