/* Holt public site — editorial / industrial system. Keep this file dependency-free. */
:root {
  color-scheme: light;
  --paper: #f2efe7;
  --paper-bright: #faf8f2;
  --paper-deep: #e8e2d5;
  --ink: #17241f;
  --ink-soft: #526057;
  --ink-faint: #5c685f;
  --line: #d3cdc0;
  --line-strong: #b7b0a2;
  --night: #121c18;
  --night-raised: #1a2922;
  --night-line: #385247;
  --white: #f8f6ef;
  --signal: #a94d29;
  --signal-bright: #d4774d;
  --signal-soft: #f2dcd0;
  --leaf: #b9c77a;
  --leaf-dark: #5c7247;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;
  --max: 1180px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 18px 48px rgba(23, 36, 31, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(23, 36, 31, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 31, .035) 1px, transparent 1px);
  background-size: 32px 32px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
main:focus { outline: none; }
.button-primary:focus-visible { outline-color: var(--white); box-shadow: 0 0 0 6px var(--signal); }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
code, pre { font-family: var(--mono); }
code { overflow-wrap: anywhere; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--night);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.eyebrow.inverse { color: var(--leaf); }
.eyebrow.inverse::before { box-shadow: 0 0 0 4px rgba(185, 199, 122, .13); }
.section {
  padding: 112px 0;
  border-top: 1px solid var(--line);
}
.section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}
.section-heading h2 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.03;
}
.section-heading p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}
.mono-label {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(183, 176, 162, .75);
  background: rgba(242, 239, 231, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 2px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand img { width: 20px; height: 32px; object-fit: contain; }
.brand-rest { color: var(--ink); transform: translateY(1px); }
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}
.nav a:hover { color: var(--ink); }
.nav .header-cta {
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}
.nav .header-cta:hover { background: #294439; color: var(--white); }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button-primary { background: var(--signal); color: var(--white); }
.button-primary:hover { background: #8f3f21; color: var(--white); }
.button-secondary { border-color: var(--line-strong); background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); background: var(--paper-bright); }
.button-dark { border-color: var(--night-line); background: var(--night); color: var(--white); }
.button-dark:hover { border-color: var(--leaf); background: var(--night-raised); color: var(--white); }
.button-arrow { font-size: 18px; font-weight: 400; line-height: 0; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}
.hero::before {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 55vw;
  height: 80%;
  border: 1px solid rgba(185, 199, 122, .14);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(248, 246, 239, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 246, 239, .035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
  padding: 104px 0 112px;
}
.hero-copy { max-width: 590px; }
.hero-wordmark {
  width: min(280px, 68vw);
  height: auto;
  margin-bottom: 24px;
  opacity: .97;
  filter: brightness(0) invert(1) drop-shadow(0 10px 26px rgba(185, 199, 122, .18));
}
.hero-copy h1 {
  max-width: 700px;
  margin-top: 22px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.5vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .95;
}
.hero-copy h1 em { color: var(--leaf); font-style: normal; }
.hero-copy > p {
  max-width: 570px;
  margin-top: 28px;
  color: #c8d1c8;
  font-size: 18px;
  line-height: 1.68;
}
.hero-copy .button-row { margin-top: 34px; }
.hero-copy .button-secondary { border-color: var(--night-line); color: var(--white); }
.hero-copy .button-secondary:hover { border-color: var(--leaf); background: var(--night-raised); }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
  color: #8fa095;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .02em;
}
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { width: 5px; height: 5px; border-radius: 50%; background: var(--leaf); content: ""; }

/* Real product evidence */
.hero-visual-wrap { min-width: 0; }
.hero-product-link {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--night-line);
  border-radius: var(--radius);
  background: #0e1714;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .24);
  transition: border-color 160ms ease, transform 160ms ease;
}
.hero-product-link:hover { border-color: rgba(185, 199, 122, .72); transform: translateY(-2px); }
.hero-product-link:focus-visible { outline: 3px solid var(--leaf); outline-offset: 4px; }
.hero-product-shot { display: block; width: 100%; height: auto; }
.product-shot-label {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(185, 199, 122, .42);
  border-radius: 999px;
  background: rgba(8, 14, 12, .9);
  color: var(--leaf);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.visual-caption { margin-top: 13px; color: #8fa095; font-family: var(--mono); font-size: 11px; line-height: 1.5; }
.visual-caption code { color: var(--white); }
.visual-caption a { color: var(--leaf); text-decoration: underline; text-decoration-color: rgba(185, 199, 122, .45); text-underline-offset: 3px; }

/* Gap / model */
.gap-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.gap-copy h2 { max-width: 560px; color: var(--ink); font-family: var(--display); font-size: clamp(2.2rem, 4.7vw, 4rem); font-weight: 400; letter-spacing: -.06em; line-height: 1.02; }
.gap-copy > p { max-width: 490px; margin-top: 24px; color: var(--ink-soft); font-size: 17px; line-height: 1.68; }
.transaction-steps { border-top: 1px solid var(--line-strong); }
.transaction-step { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.transaction-step .step-no { color: var(--signal); font-family: var(--mono); font-size: 12px; font-weight: 700; }
.transaction-step h3 { color: var(--ink); font-family: var(--mono); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.transaction-step p { max-width: 560px; margin-top: 7px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1.2fr) 80px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper-bright);
}
.bridge-node { padding: 16px 10px; border: 1px solid var(--line); border-radius: var(--radius-sm); text-align: center; }
.bridge-node strong { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.bridge-node small { display: block; margin-top: 6px; color: var(--ink-faint); font-size: 11px; }
.bridge-node.focus { border-color: var(--signal); background: var(--signal-soft); }
.bridge-node.focus strong { color: var(--signal); }
.bridge-arrow { position: relative; color: var(--ink-faint); font-family: var(--mono); font-size: 10px; text-align: center; }
.bridge-arrow::after { display: block; color: var(--signal); content: "→"; font-size: 20px; line-height: 1; }

/* Available now */
.now-section { background: var(--paper-deep); }
.now-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.now-card {
  min-height: 265px;
  padding: 26px 24px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(250, 248, 242, .65);
}
.now-card .card-index { color: var(--signal); font-family: var(--mono); font-size: 11px; font-weight: 700; }
.now-card h3 { margin-top: 30px; color: var(--ink); font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: -.04em; line-height: 1.05; }
.now-card p { margin-top: 14px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.now-card code { color: var(--ink); font-size: 12px; font-weight: 700; }
.now-card a { color: var(--signal); text-decoration: underline; text-decoration-color: rgba(169, 77, 41, .38); text-underline-offset: 3px; }
.now-card .offer-cta { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--mono); font-size: 12px; font-weight: 700; }
.boundary {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  gap: 44px;
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid var(--line-strong);
}
.boundary h3 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.boundary p { max-width: 690px; color: var(--ink-soft); font-size: 14px; }
.boundary-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 24px; }
.boundary-list li { position: relative; padding-left: 17px; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.boundary-list li::before { position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border: 1px solid var(--signal); border-radius: 50%; content: ""; }

/* Roadmap */
.roadmap-section { position: relative; overflow: hidden; background: var(--night); color: var(--white); }
.roadmap-section::after { position: absolute; right: -10%; bottom: -45%; width: 70vw; height: 80%; border: 1px solid rgba(185, 199, 122, .14); border-radius: 50%; content: ""; transform: rotate(18deg); }
.roadmap-section .container { position: relative; z-index: 1; }
.roadmap-section .section-heading h2 { color: var(--white); }
.roadmap-section .section-heading p { color: #adbbb0; }
.roadmap-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.roadmap-card { min-height: 190px; padding: 24px; border: 1px solid var(--night-line); border-radius: var(--radius); background: rgba(255, 255, 255, .025); }
.roadmap-card .mono-label { color: var(--leaf); }
.roadmap-card h3 { margin-top: 30px; color: var(--white); font-family: var(--display); font-size: 25px; font-weight: 400; letter-spacing: -.04em; line-height: 1.05; }
.roadmap-card p { margin-top: 12px; color: #99aaa0; font-size: 14px; line-height: 1.55; }
.roadmap-foot { max-width: 780px; margin-top: 28px; color: #99aaa0; font-family: var(--mono); font-size: 12px; }
.roadmap-foot strong { color: var(--white); font-weight: 500; }

/* Design partner / install */
.partner-section { padding-bottom: 70px; }
.partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr);
  gap: 48px;
  align-items: end;
  padding: clamp(32px, 6vw, 68px);
  border-radius: var(--radius-lg);
  background: var(--signal-soft);
}
.partner-card h2 { max-width: 720px; margin-top: 18px; color: var(--ink); font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4.75rem); font-weight: 400; letter-spacing: -.065em; line-height: .98; }
.partner-card p { max-width: 670px; margin-top: 20px; color: #634c41; font-size: 17px; line-height: 1.65; }
.partner-side { display: grid; gap: 12px; }
.partner-side .button { width: 100%; }
.partner-side small { color: #76574b; font-size: 12px; line-height: 1.45; text-align: center; }
.partner-side small[data-state="copied"] { color: var(--leaf-dark); font-weight: 700; }
.partner-side small a { color: #583c30; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.partner-side small a:hover { color: var(--ink); }
.partner-prep { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 8px; color: #704e41; font-family: var(--mono); font-size: 11px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.partner-prep:hover { color: var(--ink); }
.install-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr); gap: 58px; align-items: start; padding-top: 70px; }
.install-copy, .install-aside, .partner-card > *, .gap-layout > * { min-width: 0; }
.install-copy h2 { max-width: 590px; margin-top: 18px; color: var(--ink); font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3.35rem); font-weight: 400; letter-spacing: -.055em; line-height: 1.02; }
.install-copy > p { max-width: 620px; margin-top: 18px; color: var(--ink-soft); font-size: 16px; }
.code-card { position: relative; overflow: hidden; margin-top: 28px; border: 1px solid var(--night-line); border-radius: var(--radius); background: var(--night); box-shadow: var(--shadow); }
.code-head { display: flex; min-height: 47px; align-items: center; justify-content: space-between; gap: 16px; padding: 0 16px; border-bottom: 1px solid var(--night-line); color: #9dae9f; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.copy-button { min-height: 44px; padding: 0 11px; border: 1px solid var(--night-line); border-radius: 999px; background: transparent; color: var(--leaf); cursor: pointer; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.copy-button:hover { border-color: var(--leaf); background: rgba(185, 199, 122, .08); }
.code-card pre { overflow-x: auto; margin: 0; padding: 20px; color: #d6ddd4; font-size: 12px; line-height: 1.9; white-space: pre; }
.code-card .prompt { color: var(--leaf); }
.code-card .comment { color: #789080; }
.install-aside { padding-top: 54px; }
.install-aside h3 { color: var(--ink); font-family: var(--mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.install-aside p { margin-top: 16px; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.install-aside .button-github { width: 100%; margin-top: 20px; color: var(--white); text-decoration: none; }
.install-aside .install-results-heading { margin-top: 38px; }
.install-aside ul { display: grid; gap: 10px; margin-top: 22px; }
.install-aside li { position: relative; padding-left: 17px; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.install-aside li::before { position: absolute; top: .65em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--leaf-dark); content: ""; }
.install-aside a { color: var(--signal); text-decoration: underline; text-decoration-color: rgba(169, 77, 41, .4); text-underline-offset: 3px; }

/* First use and practical guides */
.first-install { padding-top: 0; }
.first-look-section { background: var(--paper-bright); }
.install-copy > .runtime-note { font-size: 13px; }
.install-details { margin-top: 24px; font-size: 14px; color: var(--ink-soft); }
.install-details summary { min-height: 44px; cursor: pointer; color: var(--signal); font-weight: 600; }
.install-details p { margin-top: 16px; }
.install-details .code-card { margin-top: 0; }
.guide { max-width: 820px; padding-block: 72px 100px; }
.guide h1 { margin-top: 24px; font-family: var(--display); font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 400; line-height: 1.03; letter-spacing: -.05em; }
.guide h2 { margin-top: 48px; font-size: 27px; line-height: 1.25; letter-spacing: -.02em; }
.guide p { margin-top: 20px; color: var(--ink-soft); font-size: 17px; }
.guide a { color: var(--signal); text-decoration: underline; text-underline-offset: 3px; }
.guide .guide-byline { font-size: 13px; font-family: var(--mono); }
.guide ul { display: grid; gap: 12px; margin-top: 24px; }
.guide li { padding-left: 18px; border-left: 2px solid var(--line-strong); color: var(--ink-soft); }
.guide .button-row { margin-top: 30px; }
.guide .button-primary { color: var(--white); text-decoration: none; }
.guide .code-card pre { white-space: pre-wrap; overflow-wrap: anywhere; }

/* Footer */
.site-footer { padding: 32px 0 44px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; }
.footer-inner .brand { min-height: 36px; font-size: 14px; }
.footer-inner .brand img { width: 17px; height: 26px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--ink-soft); font-family: var(--mono); font-size: 11px; }
.footer-links a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-links a:hover { color: var(--signal); }
.footer-note { margin-top: 26px; color: var(--ink-faint); font-size: 12px; }
.footer-note a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.measurement-disclosure { margin-top: 6px; font-family: var(--mono); font-size: 10px; }

.film-section { border-bottom: 1px solid var(--line); }
.film-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 42px; }
.film-layout > div { max-width: 900px; }
.film-layout h2 { margin-top: 20px; font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 400; letter-spacing: -.05em; line-height: 1.05; }
.film-layout p { margin-top: 23px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.film-layout > div > a { display: inline-block; margin-top: 24px; color: var(--signal); text-decoration: underline; text-underline-offset: 4px; }
.launch-film { min-width: 0; }
.launch-film video { display: block; width: 100%; height: auto; border-radius: 16px; background: var(--night); box-shadow: var(--shadow); }
.launch-film figcaption { margin-top: 16px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.launch-film figcaption a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) {
  .film-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .launch-film { max-width: 100%; }
}

/* Thanks page */
.thanks-main { min-height: calc(100dvh - 72px); display: grid; align-items: center; padding: 80px 0; }
.thanks-card { max-width: 760px; padding: clamp(30px, 7vw, 70px); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: var(--paper-bright); box-shadow: var(--shadow); }
.thanks-card h1 { max-width: 650px; margin-top: 18px; color: var(--ink); font-family: var(--display); font-size: clamp(2.8rem, 6vw, 5.25rem); font-weight: 400; letter-spacing: -.07em; line-height: .98; }
.thanks-card > p { max-width: 600px; margin-top: 22px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.thanks-next { display: grid; gap: 13px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.thanks-next li { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 12px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.thanks-next b { color: var(--signal); font-family: var(--mono); font-size: 11px; }
.thanks-card .button-row { margin-top: 34px; }
.thanks-foot { margin-top: 26px; color: var(--ink-faint); font-family: var(--mono); font-size: 11px; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 760px; }
  .hero-visual-wrap { max-width: 780px; }
  .gap-layout { grid-template-columns: minmax(0, 1fr); gap: 50px; }
  .now-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .now-card:last-child { grid-column: 1 / -1; min-height: 220px; }
  .boundary, .install-block { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .install-aside { padding-top: 0; }
  .partner-card { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .partner-side { max-width: 360px; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading p { font-size: 16px; }
  .header-inner { min-height: 64px; }
  .nav { gap: 8px; }
  .nav a:not(.header-cta) { display: none; }
  .nav .header-cta { padding: 0 13px; font-size: 12px; }
  .hero-inner { padding: 78px 0 80px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-copy > p { font-size: 16px; }
  .hero-product-link { border-radius: var(--radius-sm); }
  .product-shot-label { top: 10px; left: 10px; padding: 6px 8px; font-size: 8px; }
  .bridge { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .bridge-arrow { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 10px; }
  .bridge-arrow::before, .bridge-arrow::after { display: block; width: auto; height: 1px; background: var(--line); content: ""; }
  .bridge-arrow::after { width: auto; height: auto; background: transparent; content: "↓"; font-size: 18px; }
  .now-grid, .roadmap-grid { grid-template-columns: minmax(0, 1fr); }
  .now-card:last-child { grid-column: auto; min-height: 265px; }
  .boundary-list { grid-template-columns: minmax(0, 1fr); }
  .partner-card { padding: 30px 24px; }
  .install-block { padding-top: 54px; }
  .code-card pre { font-size: 11px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
@media print {
  .site-header { position: static; }
  .hero, .roadmap-section { color: #000; background: #fff; }
  .hero::before, .hero::after, .roadmap-section::after, body::before { display: none; }
  .hero-copy h1, .roadmap-section .section-heading h2, .roadmap-card h3 { color: #000; }
  .hero-copy > p, .roadmap-section .section-heading p, .roadmap-card p { color: #333; }
  .hero-product-link { box-shadow: none; }
}
