/* TenantThrift — marketing site styles. Plain CSS, no build step. */

/* Display face for headings (characterful grotesque), mono for numbers/code. */
@import url("https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@500;700;800&family=IBM+Plex+Mono:wght@400;600&display=swap");

:root {
  --bg: #ffffff;
  --soft: #f4f6f9;
  --ink: #14142b;
  --muted: #5c6573;
  --line: #e2e6ec;
  --accent: #0b5394;
  --accent-h: #0a64ad;
  --navy: #0c1726;
  --navy-soft: #16263b;
  --teal: #1a7f6b;
  --green: #16a34a;
  --green-dark: #15803d;
  --amber: #b4690e;
  --radius: 12px;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Schibsted Grotesk", var(--sans);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
}
.brand-mark {
  width: 22px;
  height: 22px;
  background: url(/favicon.svg) center / contain no-repeat;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-sm { padding: 8px 15px; font-size: 13.5px; }
.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover { background: var(--soft); }
.btn-block { display: block; text-align: center; margin-top: 18px; }

/* ---- Eyebrow / headings ---- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow-light { color: #7db5e6; }

h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h2 {
  font-family: var(--display);
  font-size: clamp(25px, 3.4vw, 36px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h2 em { font-style: normal; color: var(--accent); }
.h2-light { color: #fff; }
h3 { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.005em; }

/* ---- Hero ---- */
.hero { padding: 72px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 30em;
}
.cta-row { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.micro { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ---- Hero report mockup ---- */
.report {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 48px -28px rgba(12, 23, 38, 0.4);
  overflow: hidden;
}
.report-head {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 11px 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.report-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
/* ---- Trust strip ---- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  padding: 18px 24px;
  justify-content: center;
}
.trust-inner span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}
.trust-inner span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 7px; height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---- Sections ---- */
.section { padding: 76px 0; scroll-margin-top: 70px; }
.section-soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--navy); }
.body {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
  max-width: 40em;
}
.body.wide { max-width: 46em; margin-bottom: 36px; }
.body-light { margin-top: 14px; font-size: 17px; color: #aebfd2; }
.section h2 { margin-top: 0; }

/* ---- Grids / cards ---- */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card .card-lead { color: var(--ink); font-weight: 600; font-size: 14.5px; margin-bottom: 10px; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 48px; margin-top: 26px; }
.coverage-list .ticks { margin-top: 0; }
.coverage-list .ticks li { font-size: 15px; color: var(--ink); padding-top: 8px; padding-bottom: 8px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--muted); }
.section-soft .card { background: #fff; }

/* ---- Steps (dark) ---- */
.steps { margin-top: 36px; }
.step {
  background: var(--navy-soft);
  border: 1px solid #24364c;
  border-radius: var(--radius);
  padding: 24px;
}
.step-no {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: #7db5e6;
}
.step h3 { color: #fff; margin: 10px 0 6px; }
.step p { font-size: 14.5px; color: #aebfd2; }

/* ---- Implementation steps ---- */
.steps-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.steps-list li {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: #fff;
}
.step-text h3 { margin-bottom: 4px; }
.step-text p { font-size: 14.5px; color: var(--muted); }
.code {
  background: var(--navy);
  color: #e8eef5;
  border-radius: 10px;
  padding: 16px 18px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.7;
}
.code code { white-space: pre; }

/* ---- Pricing ---- */
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card-feature { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.badge {
  position: absolute;
  top: -11px; left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 6px 0 4px;
}
.price .per { font-size: 15px; font-weight: 600; color: var(--muted); }
.ticks { list-style: none; margin-top: 8px; flex: 1; }
.ticks li {
  font-size: 14px;
  padding: 6px 0 6px 22px;
  position: relative;
}
.ticks li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--teal);
  font-weight: 800;
}

/* ---- FAQ ---- */
.faq { margin-top: 26px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 14px;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  padding: 0 28px 18px 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* ---- Final CTA ---- */
.cta-final { padding: 72px 0; }
.cta-final .btn { margin-top: 24px; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.footer-inner span:first-child { font-weight: 700; color: var(--ink); }
.footer-legal { flex-basis: 100%; margin-top: 6px; font-size: 11px; line-height: 1.5; }

/* ---- Modes (headless vs premium) ---- */
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
  align-items: start;
}
.mode {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.mode-premium {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 48px -32px rgba(11, 83, 148, 0.55);
}
.mode-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.mode-tag-prem { color: var(--accent); }
.mode h3 { font-size: 21px; margin-bottom: 6px; }
.mode-lead { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.mode .ticks { flex: 1; }
.mode .btn-block { margin-top: 22px; }
.mode-note { margin-top: 12px; font-size: 12.5px; color: var(--muted); }

/* ---- Dashboard screenshot mockup ---- */
.shot {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px -34px rgba(12, 23, 38, 0.5);
}
.shot-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}
.shot-dot { width: 10px; height: 10px; border-radius: 50%; background: #cdd4de; }
.shot-url {
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
/* ---- Responsive ---- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .coverage-list { grid-template-columns: 1fr; }
  .steps-list li { grid-template-columns: 1fr; gap: 16px; }
  .modes { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 32px; }
}

/* ---- Deploy note (one-click implementation section) ---- */
.deploy-note {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 640px;
  margin: 0 auto;
}
.deploy-cli {
  max-width: 640px;
  margin: 18px auto 0;
  text-align: left;
}
.deploy-cli > summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}
.deploy-cli > summary::-webkit-details-marker { display: none; }
.deploy-cli > summary::before { content: "▸ "; }
.deploy-cli[open] > summary::before { content: "▾ "; }
.code-inline {
  display: block;
  font-family: var(--mono);
  font-size: 0.82rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 10px 0;
  text-align: left;
  color: var(--ink);
  word-break: break-word;
}

/* ---- Docs / legal / thanks pages ---- */
.doc { max-width: 760px; }
.doc h1 { margin-bottom: 6px; }
.doc h2 { margin-top: 34px; }
.doc h3 { margin-top: 22px; font-size: 16px; }
.doc p { margin-top: 12px; font-size: 16px; line-height: 1.7; color: var(--ink); }
.doc ul { margin: 12px 0 0 22px; }
.doc li { margin-bottom: 7px; font-size: 16px; line-height: 1.65; }
.doc .btn { margin-top: 8px; }
.doc .code { margin-top: 14px; }
.doc p code, .doc li code {
  background: var(--soft); border: 1px solid var(--line); border-radius: 5px;
  padding: 1px 5px; font-family: var(--mono); font-size: 0.88em; color: var(--ink);
}
.legal p, .legal li { color: var(--muted); }
.legal h2 { font-size: 19px; }
.dpa-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 14px; }
.dpa-table th, .dpa-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.dpa-table th { color: var(--muted); font-weight: 600; }

/* ---- Docs: sticky TOC + slides + copy + cost table ---- */
.docs-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 48px; align-items: start; }
.docs-toc { position: sticky; top: 88px; font-size: 14px; }
.docs-toc .toc-title { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.docs-toc a { display: block; padding: 5px 0 5px 13px; border-left: 2px solid var(--line); color: var(--muted); text-decoration: none; line-height: 1.45; }
.docs-toc a:hover { color: var(--ink); text-decoration: none; }
.docs-toc a.active { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }
.docs-main { min-width: 0; }
.docs-main h2 { scroll-margin-top: 80px; }
@media (max-width: 920px) {
  .docs-layout { grid-template-columns: 1fr; gap: 0; }
  .docs-toc { position: static; top: auto; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
}

/* TOC group labels */
.docs-toc .toc-group { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); font-weight: 700; margin: 16px 0 5px; opacity: .75; }
.docs-toc .toc-group:first-of-type { margin-top: 0; }

/* Current-page section outline + search (injected by docs-nav.js) */
.docs-main h3 { scroll-margin-top: 80px; }
.docs-toc .toc-sub { list-style: none; margin: 3px 0 8px 13px; padding: 0; }
.docs-toc .toc-sub li { margin: 0; list-style: none; }
.docs-toc .toc-sub a { display: block; padding: 3px 0 3px 12px; font-size: 12.5px; border-left: 2px solid var(--line); color: var(--muted); line-height: 1.4; }
.docs-toc .toc-sub li.lvl3 a { padding-left: 24px; opacity: .9; }
.docs-toc .toc-sub a:hover { color: var(--ink); border-left-color: var(--muted); }
.docs-toc .toc-sub a.cur { color: var(--accent); border-left-color: var(--accent); font-weight: 600; }

.docs-search { position: relative; margin: 0 0 16px; }
.docs-search input { width: 100%; box-sizing: border-box; padding: 8px 10px 8px 32px; font: inherit; font-size: 13px; color: var(--ink); border: 1px solid var(--line); border-radius: 8px; -webkit-appearance: none; appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c6573' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") no-repeat 10px center; }
.docs-search input::placeholder { color: var(--muted); }
.docs-search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(11, 83, 148, .12); }
.docs-search-results { position: absolute; z-index: 40; left: 0; right: 0; margin-top: 6px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 12px 32px rgba(20, 20, 43, .12); max-height: 62vh; overflow-y: auto; }
.docs-search-results[hidden] { display: none; }
.docs-search .dsr-item { display: flex; flex-direction: column; gap: 1px; padding: 8px 12px; border-left: 0; color: var(--ink); text-decoration: none; line-height: 1.35; }
.docs-search .dsr-item + .dsr-item { border-top: 1px solid var(--line); }
.docs-search .dsr-item:hover, .docs-search .dsr-item.sel { background: var(--soft); }
.docs-search .dsr-title { font-size: 13.5px; font-weight: 600; }
.docs-search .dsr-page { font-size: 11.5px; color: var(--muted); }
.docs-search .dsr-empty { padding: 10px 12px; font-size: 13px; color: var(--muted); }
.docs-search-wide { max-width: 520px; margin: 4px auto 30px; }

/* Quickstart — the happy path at the top of the docs body */
.quickstart { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 4px 0 14px; padding: 0; list-style: none; counter-reset: none; }
.quickstart > li { margin: 0; }
.quickstart a { display: block; height: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; text-decoration: none; transition: border-color .12s, box-shadow .12s; }
.quickstart a:hover { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(11,83,148,.10); text-decoration: none; }
.quickstart .qs-n { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; }
.quickstart .qs-t { display: block; margin-top: 8px; font-weight: 700; font-size: 15px; color: var(--ink); }
.quickstart .qs-d { display: block; margin-top: 2px; font-size: 13px; color: var(--muted); line-height: 1.4; }
@media (max-width: 620px) { .quickstart { grid-template-columns: 1fr; } }

/* Section-group dividers in the docs body (mirror the grouped TOC) */
.doc-group { display: flex; align-items: baseline; flex-wrap: wrap; gap: 3px 12px; margin: 54px 0 0; padding-top: 22px; border-top: 2px solid var(--line); }
.doc-group span { font-size: 21px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.doc-group small { font-size: 13px; font-weight: 500; color: var(--muted); }
.doc-group + h2 { margin-top: 12px; }

/* Folded manual deploy routes — keep the recommended path primary */
.deploy-fold { margin-top: 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--soft); }
.deploy-fold > summary { cursor: pointer; list-style: none; padding: 11px 16px; font-weight: 600; font-size: 14px; color: var(--accent); }
.deploy-fold > summary::-webkit-details-marker { display: none; }
.deploy-fold > summary::before { content: "▸ "; }
.deploy-fold[open] > summary::before { content: "▾ "; }
.deploy-fold[open] > summary { border-bottom: 1px solid var(--line); }
.deploy-fold > :not(summary) { margin-left: 16px; margin-right: 16px; }
.deploy-fold > :last-child { margin-bottom: 14px; }
.deploy-fold ol, .deploy-fold ul { margin-top: 14px; padding-left: 24px; }
.deploy-fold li { margin-bottom: 13px; line-height: 1.6; }
.deploy-fold li:last-child { margin-bottom: 0; }
.deploy-fold .why { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.55; }

.tabs { margin-top: 14px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.tab-bar { display: flex; flex-wrap: wrap; background: var(--soft); border-bottom: 1px solid var(--line); }
.tab-bar button { appearance: none; border: 0; background: transparent; padding: 10px 16px; font: inherit; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; }
.tab-bar button.active { color: var(--accent); border-bottom-color: var(--accent); background: #fff; }
.tab-panel { display: none; padding: 16px 18px; }
.tab-panel.active { display: block; }
.tab-panel > :first-child { margin-top: 0; }
.tab-panel ol { margin: 4px 0 0 20px; } .tab-panel ol li { margin-bottom: 8px; line-height: 1.6; }

.verify-opt { margin-top: 12px; }
.verify-opt > summary {
  cursor: pointer;
  list-style: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.verify-opt > summary::-webkit-details-marker { display: none; }
.verify-opt > summary::before { content: "▸ "; }
.verify-opt[open] > summary::before { content: "▾ "; }
.rel-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  font-size: 0.62em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.rel-badge.infra {
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fcd34d;
}
.code-wrap { position: relative; }
.copy-btn { position: absolute; top: 8px; right: 8px; appearance: none; border: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 12px; padding: 3px 9px; border-radius: 6px; cursor: pointer; }
.copy-btn:hover { color: var(--ink); border-color: var(--accent); }

.cost-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 15px; }
.cost-table th, .cost-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cost-table th { color: var(--muted); font-weight: 600; font-size: 13px; }
.cost-table td strong { white-space: nowrap; }

.callout { border-left: 3px solid var(--accent); background: rgba(11,83,148,.06); padding: 12px 14px; border-radius: 0 8px 8px 0; margin-top: 16px; }

@media print {
  .nav, .footer, .docs-toc, .tab-bar, .copy-btn { display: none !important; }
  .tab-panel { display: block !important; }
  details { }
  details[open] > summary, details > div { display: block !important; }
  .docs-layout { display: block; }
  a[href^="http"]:after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }
}
.thanks-steps {
  text-align: left; max-width: 560px; margin: 18px auto 0; padding-left: 20px;
  color: var(--muted); font-size: 16px; line-height: 1.65;
}
.thanks-steps li { margin-bottom: 9px; }
.thanks-steps code {
  background: var(--soft); border: 1px solid var(--line); border-radius: 5px;
  padding: 1px 5px; font-family: var(--mono); font-size: 0.86em; color: var(--ink);
}


/* Release notes */
.release { margin: 28px 0; }
.release h2 { margin-bottom: 6px; }
.release ul { margin-top: 8px; }
hr.rule { border: 0; border-top: 1px solid var(--border, #e5e7eb); margin: 36px 0; }

/* Docs expanders */
.expander { border: 1px solid var(--border, #e5e7eb); border-radius: 10px; margin: 14px 0; background: rgba(0,0,0,0.015); }
.expander > summary { cursor: pointer; padding: 12px 16px; font-weight: 600; list-style: none; user-select: none; }
.expander > summary::-webkit-details-marker { display: none; }
.expander > summary::before { content: "▸ "; color: var(--accent, #6366f1); }
.expander[open] > summary::before { content: "▾ "; }
.expander[open] > summary { border-bottom: 1px solid var(--border, #e5e7eb); }
.expander-body { padding: 4px 16px 14px; }

/* Private-beta announcement banner (injected by beta-banner.js) */
.beta-banner {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--accent); color: #fff;
  font-size: 14px; line-height: 1.4; text-align: center;
  padding: 9px 44px 9px 16px;
}
.beta-banner a { color: #fff; text-decoration: underline; font-weight: 600; }
.beta-banner button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: transparent; border: 0; color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer; opacity: .85; padding: 0 4px;
}
.beta-banner button:hover { opacity: 1; }

/* ============================================================== */
/* 2026 refresh: dark hero, animated dashboard mock, calculator,  */
/* comparison table, scroll reveals.                              */
/* ============================================================== */

/* ---- Buttons: subtle lift ---- */
.btn { transition: background .15s ease, transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(11, 83, 148, .55); }
.btn:active { transform: translateY(0); }

/* ---- Cards: hover lift ---- */
.card { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.grid .card:hover { transform: translateY(-3px); border-color: #cdd8e4; box-shadow: 0 18px 36px -24px rgba(12, 23, 38, .35); }

/* ---- Dark hero ---- */
.hero-dark {
  background:
    radial-gradient(1100px 540px at 78% -10%, rgba(31, 111, 235, .22), transparent 64%),
    radial-gradient(700px 420px at 12% 110%, rgba(26, 127, 107, .14), transparent 60%),
    var(--navy);
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
}
.hero-dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 35%, transparent 80%);
  pointer-events: none;
}
.hero-dark .wrap { position: relative; }
.hero-dark h1 { color: #fff; }
.hero-dark h1 .hl { color: #5fd49b; }
.hero-dark .lead { color: #aebfd2; }
.hero-dark .lead strong { color: #e7eef6; }
.hero-dark .eyebrow { color: #7db5e6; }
.hero-dark .micro { color: #7f93a9; }
.hero-dark .micro a, .hero-dark p a { color: #9cc6ec; }
.hero-dark .btn-ghost { color: #cfe2f4; border-color: #33506e; }
.hero-dark .btn-ghost:hover { background: rgba(255, 255, 255, .07); }

/* ---- Animated dashboard mock ---- */
.heromock {
  border: 1px solid #28425e;
  border-radius: 14px;
  background: #0f1d30;
  box-shadow: 0 40px 80px -42px rgba(0, 0, 0, .85), 0 0 0 1px rgba(255, 255, 255, .02) inset;
  overflow: hidden;
  font-size: 13px;
}
.heromock-bar {
  display: flex; align-items: center; gap: 7px;
  background: #13243a; 
  border-bottom: 1px solid #1f344e;
  padding: 10px 14px;
  font-family: var(--mono); font-size: 11px; color: #6e87a3;
}
.heromock-dot { width: 9px; height: 9px; border-radius: 50%; background: #2a4565; }
.heromock-url { margin-left: 8px; }
.heromock-body { padding: 16px; }
.heromock-savings {
  border: 1px solid #1f3a55; border-left: 3px solid #34c277;
  border-radius: 10px; background: #122339; padding: 13px 16px 12px;
  opacity: 0; animation: hm-in .5s ease-out .25s forwards;
}
.heromock-savings .lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: #6e87a3;
}
.heromock-savings .val {
  font-family: var(--display); font-size: 30px; font-weight: 800; color: #5fd49b;
  letter-spacing: -0.01em; line-height: 1.15; font-variant-numeric: tabular-nums;
}
.heromock-savings .val small { font-size: 14px; font-weight: 600; color: #6e87a3; margin-left: 2px; }
.heromock-rows { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.heromock-row {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid #1d3550; border-radius: 9px; background: #101f33;
  padding: 9px 12px; opacity: 0; transform: translateY(8px);
  animation: hm-in .45s ease-out forwards;
}
.heromock-row:nth-child(1) { animation-delay: .9s; }
.heromock-row:nth-child(2) { animation-delay: 1.45s; }
.heromock-row:nth-child(3) { animation-delay: 2s; }
.heromock-row .sev {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.heromock-row .sev.hi { background: #ef6a5a; }
.heromock-row .sev.md { background: #e2a13c; }
.heromock-row .t { color: #d7e3f0; font-weight: 600; }
.heromock-row .r { color: #5e7892; font-size: 11.5px; font-family: var(--mono); }
.heromock-row .amt {
  margin-left: auto; font-family: var(--mono); font-weight: 600; font-size: 12.5px;
  color: #5fd49b; white-space: nowrap;
}
.heromock-row .fix {
  font-size: 10px; font-weight: 700; color: #8fb8e2; background: #16304e;
  border-radius: 999px; padding: 2px 8px; white-space: nowrap;
}
.heromock-foot {
  margin-top: 12px; font-family: var(--mono); font-size: 10.5px; color: #51677f;
  display: flex; justify-content: space-between; gap: 8px;
  opacity: 0; animation: hm-in .5s ease-out 2.5s forwards;
}
@keyframes hm-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Savings calculator ---- */
.calc {
  border: 1px solid var(--line); border-radius: 16px; background: #fff;
  padding: 28px; margin-top: 30px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center;
  box-shadow: 0 24px 48px -36px rgba(12, 23, 38, .35);
}
.calc-label { font-weight: 600; font-size: 15px; }
.calc-spend {
  font-family: var(--display); font-size: 34px; font-weight: 800; letter-spacing: -0.01em;
  margin-top: 4px; font-variant-numeric: tabular-nums;
}
.calc input[type="range"] {
  width: 100%; margin-top: 18px; appearance: none; -webkit-appearance: none;
  height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--accent) var(--fill, 30%), #e2e6ec var(--fill, 30%));
  outline: none;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(12, 23, 38, .3); cursor: pointer;
}
.calc input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(12, 23, 38, .3); cursor: pointer;
}
.calc-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.calc-out { display: flex; flex-direction: column; gap: 14px; }
.calc-stat {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px;
  background: var(--soft);
}
.calc-stat .k {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted);
}
.calc-stat .v {
  font-family: var(--display); font-size: 26px; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.calc-stat.waste .v { color: var(--amber); }
.calc-stat.save { background: #f0fdf4; border-color: #bbe7c9; }
.calc-stat.save .v { color: var(--green-dark); }
.calc-stat .s { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.calc-payoff { font-size: 14.5px; color: var(--ink); }
.calc-payoff b { color: var(--green-dark); }

/* ---- Comparison table ---- */
.compare-wrap { margin-top: 34px; overflow-x: auto; }
.compare {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: #fff; font-size: 14.5px; min-width: 640px;
}
.compare th, .compare td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: center; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare thead th {
  background: var(--soft); font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
}
.compare th[scope="row"], .compare td:first-child {
  text-align: left; font-weight: 600; color: var(--ink); font-family: var(--sans); font-size: 14.5px;
  text-transform: none; letter-spacing: 0; background: #fff;
}
.compare thead th.tt {
  color: #fff; background: var(--accent);
}
.compare td.tt { background: rgba(11, 83, 148, .055); font-weight: 700; }
.compare .yes { color: var(--green-dark); font-weight: 700; }
.compare .no { color: #b9c0c9; }
.compare .part { color: var(--amber); font-size: 13px; font-weight: 600; }
.compare tbody tr:hover td, .compare tbody tr:hover th { background: #fafbfd; }
.compare tbody tr:hover td.tt { background: rgba(11, 83, 148, .09); }

/* ---- Scroll reveals (JS adds .in; respects reduced motion) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .grid .reveal:nth-child(2) { transition-delay: .08s; }
  .grid .reveal:nth-child(3) { transition-delay: .16s; }
  .grid .reveal:nth-child(4) { transition-delay: .24s; }
}

@media (max-width: 860px) {
  .calc { grid-template-columns: 1fr; gap: 22px; }
  .heromock { display: none; }
}

/* ---- Standout deploy CTA panel (#start) ---- */
.start-panel {
  background:
    radial-gradient(640px 320px at 50% -20%, rgba(31, 111, 235, .28), transparent 65%),
    var(--navy);
  border: 1px solid #24364c;
  border-radius: 20px;
  padding: 48px 36px 38px;
  box-shadow: 0 36px 72px -40px rgba(12, 23, 38, .8);
}
.start-panel .deploy-cli { margin-top: 18px; }
.start-panel .deploy-cli summary { color: #9cc6ec; }
.btn-xl {
  font-size: 17px;
  padding: 15px 34px;
  border-radius: 11px;
  background: #16a34a;
  border-color: #16a34a;
  box-shadow: 0 14px 30px -14px rgba(22, 163, 74, .75);
}
.btn-xl:hover { background: #15803d; border-color: #15803d; box-shadow: 0 18px 36px -14px rgba(22, 163, 74, .8); }

/* ---- Featured pricing card: make the choice obvious ---- */
.price-card { position: relative; }
.price-card .price .amt { font-family: var(--display); }
.price-card-feature {
  border: 2px solid var(--accent);
  box-shadow: 0 24px 48px -28px rgba(11, 83, 148, .5);
  transform: translateY(-6px);
}
.grid .price-card-feature:hover { transform: translateY(-9px); }
@media (max-width: 860px) {
  .price-card-feature { transform: none; }
}

/* ---- The one action color: every "get my free report" CTA is green ---- */
.btn-go {
  background: #16a34a;
  border-color: #16a34a;
}
.btn-go:hover {
  background: #15803d;
  border-color: #15803d;
  box-shadow: 0 8px 20px -10px rgba(22, 163, 74, .65);
}

/* ============================================================== */
/* 2026-06 redesign: chip badges, icon tiles, step flow, deploy   */
/* timeline, terminal code frames. Same palette, new clothes.     */
/* ============================================================== */

/* ---- Centered section headers ---- */
.section-head { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section-head h2 { margin-top: 16px; }
.section-head .sub { margin: 12px auto 0; color: var(--muted); font-size: 16.5px; max-width: 40em; }
.section-head .sub-light { color: #aebfd2; }
h2 .grad {
  background: linear-gradient(92deg, var(--accent) 10%, var(--teal) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.h2-light .hl { color: #5fd49b; }

/* ---- Chip badges ---- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(11, 83, 148, .07); border: 1px solid rgba(11, 83, 148, .18);
  color: var(--accent); font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
}
.chip svg { width: 13px; height: 13px; flex-shrink: 0; }
.chip-green { background: rgba(22, 163, 74, .08); border-color: rgba(22, 163, 74, .25); color: var(--green-dark); }
.chip-light { background: rgba(125, 181, 230, .12); border-color: rgba(125, 181, 230, .3); color: #9cc6ec; }

/* ---- Icon tiles ---- */
.tile {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 10px 20px -10px rgba(12, 23, 38, .45);
}
.tile svg { width: 22px; height: 22px; }
.tile-sm { width: 38px; height: 38px; border-radius: 11px; }
.tile-sm svg { width: 18px; height: 18px; }
.tile-blue  { background: linear-gradient(135deg, #1372bd, #0b5394); }
.tile-teal  { background: linear-gradient(135deg, #25a98e, #1a7f6b); }
.tile-green { background: linear-gradient(135deg, #2fc168, #15803d); }
.tile-amber { background: linear-gradient(135deg, #d97f1d, #b4690e); }
.tile-navy  { background: linear-gradient(135deg, #2c4a6c, #0c1726); }
.card .tile, .icard .tile { margin-bottom: 14px; }

/* ---- Step flow (icon cards + arrows) ---- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 8px; }
.flow-step {
  position: relative; text-align: center; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px;
}
.flow-step .tile { margin: 0 auto 12px; }
.flow-no {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
}
.flow-step h3 { margin: 6px 0 6px; }
.flow-step p { font-size: 14.5px; color: var(--muted); }
.flow-step:not(:last-child)::after {
  content: "→"; position: absolute; right: -22px; top: 50%; margin-top: -14px;
  font-size: 20px; color: #b9c7d6;
}
@media (max-width: 920px) {
  .flow { grid-template-columns: 1fr; }
  .flow-step:not(:last-child)::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -24px; margin: 0 0 0 -6px; }
}

/* ---- Deploy timeline (dark section) ---- */
.timeline { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 36px; position: relative; text-align: left; }
.timeline::before {
  content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, #2b4a6e 0%, rgba(26, 127, 107, .5) 100%);
}
.tl-step { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 20px; position: relative; }
.tl-no {
  width: 44px; height: 44px; border-radius: 50%; z-index: 1;
  background: var(--navy); border: 2px solid #33506e; color: #9cc6ec;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 16px; font-weight: 700;
}
.tl-step[data-c="teal"] .tl-no { border-color: #1a7f6b; color: #5ecbb4; }
.tl-step[data-c="green"] .tl-no { border-color: #16a34a; color: #5fd49b; }
.tl-body { padding-top: 7px; }
.tl-body h3 { color: #fff; font-size: 18px; }
.tl-body > p { margin-top: 6px; font-size: 14.5px; color: #aebfd2; }
.tl-body .micro { color: #7f93a9; }
.tl-body .micro a { color: #9cc6ec; }
.tl-tag {
  display: inline-block; margin-left: 10px; vertical-align: 2px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: #7db5e6; background: #16304e;
  border-radius: 999px; padding: 2px 9px;
}
.tl-step[data-c="green"] .tl-tag { color: #5fd49b; background: #123726; }
@media (max-width: 620px) {
  .timeline::before { left: 16px; }
  .tl-step { grid-template-columns: 34px minmax(0, 1fr); gap: 14px; }
  .tl-no { width: 34px; height: 34px; font-size: 13px; }
}

/* ---- Green assurance banner ---- */
.assure {
  display: flex; align-items: center; gap: 16px;
  max-width: 880px; margin: 30px auto 0;
  background: #f0fdf4; border: 1px solid #bbe7c9; border-radius: 14px;
  padding: 16px 22px; text-align: left;
}
.assure p { font-size: 14.5px; color: #14532d; margin: 0; }
.assure p b { color: #0f3d20; }

/* ---- Terminal code frames (JS wraps pre.code in .term) ---- */
.term {
  margin-top: 14px; border-radius: 12px; overflow: hidden;
  background: var(--navy); border: 1px solid #24364c;
  box-shadow: 0 20px 44px -30px rgba(12, 23, 38, .65);
}
.term-head {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px 8px 14px; background: #13243a; border-bottom: 1px solid #1f344e;
}
.term-dots { display: inline-flex; gap: 6px; }
.term-dots i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.term-dots i:nth-child(1) { background: #ff5f57; }
.term-dots i:nth-child(2) { background: #febc2e; }
.term-dots i:nth-child(3) { background: #28c840; }
.term-lang {
  margin: 0 auto; font-family: var(--mono); font-size: 11px;
  letter-spacing: .04em; color: #6e87a3; user-select: none;
}
.term .copy-btn {
  position: static; appearance: none; cursor: pointer;
  background: rgba(255, 255, 255, .06); border: 1px solid #2b4565; color: #9fb6cf;
  font-size: 12px; padding: 3px 10px; border-radius: 6px;
  transition: color .12s, border-color .12s, background .12s;
}
.term .copy-btn:hover { color: #fff; border-color: #4a6f9b; background: rgba(255, 255, 255, .1); }
.term pre.code { border-radius: 0; margin: 0; border: 0; }
.doc .term { margin-top: 14px; }
.doc .term .code { margin-top: 0; }
.tab-panel .term:first-child { margin-top: 0; }

/* ---- Card headers with inline tile + title row ---- */
.card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-head .tile { margin-bottom: 0; }
.card-head h3 { margin: 0; }

/* ---- Soft section atmosphere ---- */
.section-soft {
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(11, 83, 148, .05), transparent 60%),
    radial-gradient(700px 380px at 4% 110%, rgba(26, 127, 107, .045), transparent 55%),
    var(--soft);
}

/* ---- Trust strip: checkmarks instead of dots ---- */
.trust-inner span::before { content: none; }
.trust-inner span { padding-left: 0; }
.trust-inner span::after { content: none; }
.trust-inner .tick-ico {
  display: inline-flex; width: 16px; height: 16px; margin-right: 7px;
  vertical-align: -3px; color: var(--green-dark);
}
.trust-inner .tick-ico svg { width: 16px; height: 16px; }

/* ---- Docs hub cards ---- */
.hub-card { display: block; text-decoration: none; color: inherit; }
.hub-card p { font-size: 14.5px; color: var(--muted); }
.hub-card .card-head h3 { color: var(--ink); }
.hub-card:hover { border-color: var(--accent); }

/* ---- Dashboard screenshot: demo CTA as hover overlay ---- */
.shot { position: relative; }
.shot-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12, 23, 38, .45); backdrop-filter: blur(1.5px);
  opacity: 0; transition: opacity .18s ease;
}
.shot:hover .shot-overlay, .shot:focus-within .shot-overlay { opacity: 1; }
.shot-overlay .btn { box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .6); }
.shot-fallback { display: none; }
@media (hover: none), (max-width: 920px) {
  .shot-overlay { display: none; }
  .shot-fallback { display: block; margin: 18px 0 0; text-align: center; }
}

/* ---- Start panel, light + minimal ---- */
.start-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 52px 40px 44px;
  box-shadow: 0 30px 70px -45px rgba(12, 23, 38, .45);
}
.start-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal), var(--green));
}
.start-card h2 { margin-top: 16px; }
.start-card .sub { margin: 12px auto 0; color: var(--muted); font-size: 16.5px; max-width: 34em; }
.start-ticks {
  display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center;
  margin-top: 22px; padding: 0; list-style: none;
}
.start-ticks li { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.start-ticks li::before { content: "✓ "; color: var(--green-dark); font-weight: 800; }
.start-card .micro a { color: var(--accent); }

/* ---- Dark fold for the timeline (CLI alternative, tucked away) ---- */
.tl-fold { margin-top: 12px; }
.tl-fold > summary {
  cursor: pointer; list-style: none; display: inline-block;
  font-size: 13px; font-weight: 600; color: #9cc6ec;
}
.tl-fold > summary::-webkit-details-marker { display: none; }
.tl-fold > summary::before { content: "▸ "; }
.tl-fold[open] > summary::before { content: "▾ "; }

/* ---- Hero stats strip ---- */
.stat-row {
  display: flex; flex-wrap: wrap; gap: 6px 22px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(125, 181, 230, .18);
}
.stat-row span { font-family: var(--mono); font-size: 12px; color: #7f93a9; }
.stat-row b { color: #9cc6ec; font-weight: 600; }

/* ---- Report proof shot (timeline step 2) ---- */
.report-shot {
  margin-top: 14px; max-width: 430px;
  border: 1px solid #2b4565; border-radius: 12px; overflow: hidden;
  background: #fff; box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .8);
}
.report-shot img { width: 100%; display: block; }

/* ---- Founder note ---- */
.founder {
  max-width: 720px; margin: 0 auto; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 38px;
  box-shadow: 0 24px 50px -38px rgba(12, 23, 38, .4);
}
.founder::before {
  content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  border-radius: 3px; background: linear-gradient(180deg, var(--accent), var(--teal));
}
.founder p { font-size: 16px; line-height: 1.7; color: var(--ink); }
.founder p + p { margin-top: 14px; }
.founder .sig { margin-top: 18px; font-size: 14px; color: var(--muted); }
.founder .sig b { color: var(--ink); }

/* ---- Dark sections: links must be readable on navy ---- */
.section-dark p a:not(.btn) {
  color: #aed4f5;
  text-decoration: underline;
  text-decoration-color: rgba(174, 212, 245, .45);
  text-underline-offset: 3px;
}
.section-dark p a:not(.btn):hover {
  color: #d9ebfc;
  text-decoration-color: currentColor;
}

/* ---- Pricing hover: the highlight follows the cursor, Business owns it at rest ---- */
.price-card { border-width: 2px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.grid .price-card:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 48px -28px rgba(11, 83, 148, .5);
  transform: translateY(-6px);
}
.grid-3:has(.price-card:hover) .price-card-feature:not(:hover) {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}
.grid .price-card-feature:hover { transform: translateY(-9px); }
@media (max-width: 860px) {
  .grid .price-card:hover, .grid .price-card-feature:hover { transform: none; }
}

/* ---- Start panel: Foundry-style method switcher + reveal steps ---- */
.sdk-panel {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(180deg, #f5f9fd, #edf4fb);
  border: 1px solid #d6e3f0; border-radius: 20px;
  padding: 38px 34px 28px;
  box-shadow: 0 30px 60px -45px rgba(12, 23, 38, .45);
}
.sdk-head { text-align: center; max-width: 640px; margin: 0 auto 22px; }
.sdk-head h2 { margin-top: 14px; }
.sdk-head .sub { margin-top: 10px; color: var(--muted); }
.sdk-tabs { display: flex; justify-content: center; gap: 6px; margin: 0 0 20px; }
.sdk-tabs button {
  font: inherit; font-size: 14px; font-weight: 600; padding: 8px 18px;
  border-radius: 10px; border: 0; background: transparent; color: var(--muted);
  cursor: pointer; transition: background .15s, color .15s;
}
.sdk-tabs button:hover { color: var(--ink); }
.sdk-tabs button.active {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 18px -10px rgba(11, 83, 148, .6);
}
.sdk-step { background: #fff; border: 1px solid #d9e4ef; border-radius: 14px; margin-top: 12px; }
.sdk-step:not(.open) { background: transparent; border-style: dashed; }
.sdk-step-head {
  display: flex; align-items: center; gap: 12px; width: 100%;
  text-align: left; font: inherit; background: none; border: 0;
  padding: 15px 18px; cursor: pointer;
}
.sdk-no {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.sdk-step:not(.open) .sdk-no { background: #e2eaf2; color: var(--muted); }
.sdk-ic { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
.sdk-step:not(.open) .sdk-ic { color: #8fa3b8; }
.sdk-title { font-weight: 700; font-size: 15.5px; color: var(--ink); }
.sdk-reveal { margin-left: auto; font-size: 12.5px; color: #8fa3b8; white-space: nowrap; }
.sdk-step.open .sdk-reveal { display: none; }
.sdk-step-body { padding: 0 18px 18px 56px; display: none; }
.sdk-step.open .sdk-step-body { display: block; }
.port-steps { margin: 0 0 12px; padding-left: 20px; }
.port-steps li { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 9px; }
.port-steps li strong { color: var(--ink); }
.port-steps code { font-size: 12px; word-break: break-word; }
.cmd-row {
  position: relative; background: var(--soft);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 54px 13px 16px;
}
.cmd-row pre {
  margin: 0; font-family: var(--mono); font-size: 13px; line-height: 1.55;
  color: var(--ink); overflow-x: auto; white-space: pre;
}
.cmd-copy {
  position: absolute; top: 9px; right: 9px; width: 32px; height: 32px;
  border-radius: 8px; border: 1px solid var(--line); background: #fff;
  color: var(--accent); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s, background .15s;
}
.cmd-copy:hover { border-color: var(--accent); }
.cmd-copy.ok { color: var(--green-dark); border-color: #bbe7c9; background: #f0fdf4; }
.cmd-copy svg { width: 15px; height: 15px; }
.sdk-links {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
  max-width: 880px; margin: 18px auto 0;
}
.sdk-link {
  flex: 0 1 280px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  font-weight: 600; font-size: 14.5px; color: var(--ink); text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.sdk-link:hover {
  border-color: var(--accent); text-decoration: none; transform: translateY(-2px);
  box-shadow: 0 14px 28px -20px rgba(11, 83, 148, .5);
}
.sdk-link svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 640px) {
  .sdk-panel { padding: 26px 16px 18px; }
  .sdk-step-body { padding-left: 18px; }
  .sdk-links { grid-template-columns: 1fr; }
  .sdk-tabs { flex-wrap: wrap; }
}

/* ---- Reveal staggers for the re-applied scroll effects ---- */
.grid .reveal:nth-child(3) { transition-delay: .16s; }
.grid .reveal:nth-child(4) { transition-delay: .24s; }
.modes .reveal:nth-child(2) { transition-delay: .1s; }
.sdk-links.reveal { transition-delay: .12s; }
