:root {
  --ink: oklch(17% 0.044 256);
  --ink-2: oklch(25% 0.052 252);
  --paper: oklch(96% 0.014 94);
  --paper-soft: oklch(98% 0.009 96);
  --paper-line: oklch(73% 0.035 225 / 0.46);
  --field: oklch(100% 0 0 / 0.72);
  --night: oklch(17% 0.044 256);
  --night-2: oklch(22% 0.058 248);
  --muted: oklch(38% 0.035 250);
  --muted-dark: oklch(80% 0.028 232);
  --signal: #00d4aa;
  --ciso: #38bdf8;
  --blue: oklch(46% 0.14 252);
  --red: oklch(55% 0.18 25);
  --amber: oklch(69% 0.14 78);
  --violet: oklch(54% 0.17 295);
  --shadow: 0 24px 60px oklch(18% 0.06 250 / 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  background:
    repeating-linear-gradient(90deg, oklch(35% 0.035 250 / 0.07) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, oklch(35% 0.035 250 / 0.05) 0 1px, transparent 1px 72px),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 12px;
  color: oklch(95% 0.018 95);
  background: var(--night);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.draft-ribbon {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: 300px;
  padding: 10px 12px;
  color: oklch(93% 0.018 95);
  background: oklch(18% 0.04 256 / 0.94);
  border: 1px solid oklch(78% 0.04 220 / 0.25);
  border-radius: 8px;
  font-size: 0.84rem;
  box-shadow: 0 18px 40px oklch(15% 0.04 250 / 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(96% 0.014 94 / 0.9);
  border-bottom: 1px solid oklch(30% 0.04 252 / 0.15);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.brand-ciso {
  color: #38bdf8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: oklch(31% 0.043 250);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: oklch(95% 0.018 95) !important;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 26px oklch(18% 0.06 250 / 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: oklch(23% 0.055 252);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px oklch(18% 0.06 250 / 0.25);
}

.button.secondary {
  color: var(--ink) !important;
  background: transparent;
  border-color: oklch(49% 0.07 235 / 0.5);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: oklch(91% 0.018 96);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  font-weight: 800;
}

.page {
  min-height: calc(100vh - 70px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(108deg, var(--paper) 0%, var(--paper) 44%, oklch(93% 0.016 205 / 0.86) 68%, var(--night-2) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(124deg, transparent 0 58%, oklch(21% 0.052 252 / 0.12) 58% 58.4%, transparent 58.4%),
    linear-gradient(165deg, transparent 0 74%, oklch(63% 0.135 190 / 0.16) 74% 74.3%, transparent 74.3%);
  pointer-events: none;
}

.hero-inner,
.section-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(520px, 0.74fr) minmax(560px, 1fr);
  gap: 46px;
  align-items: center;
  min-height: 720px;
  padding: 58px 0 74px;
}

.hero-copy {
  max-width: 760px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: oklch(29% 0.056 248);
  font-weight: 800;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--signal);
  clip-path: polygon(54% 0, 10% 58%, 45% 58%, 38% 100%, 90% 42%, 55% 42%);
}

h1,
h2,
h3,
.stat-number {
  margin: 0;
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 10.5ch;
  color: var(--ink);
  font-size: 5.15rem;
  font-weight: 800;
}

.hero-lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: oklch(24% 0.044 250);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-support {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  color: oklch(25% 0.045 248);
  background: oklch(100% 0 0 / 0.64);
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.shot-frame,
.mini-shot,
.inventory-card figure {
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(76% 0.04 225 / 0.42);
  border-radius: 8px;
  background: oklch(12% 0.035 256);
  box-shadow: var(--shadow);
}

.shot-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: left top;
}

.hero-media .shot-frame img {
  object-position: 34% top;
}

.media-note {
  display: grid;
  grid-template-columns: minmax(140px, 0.4fr) 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 12px 14px;
  color: oklch(24% 0.044 250);
  background: oklch(100% 0 0 / 0.62);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px oklch(18% 0.06 250 / 0.12);
}

.media-note strong {
  display: inline-flex;
  color: var(--signal);
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-size: 0.92rem;
}

.media-note span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.section {
  background: var(--paper-soft);
  border-top: 1px solid oklch(31% 0.04 255 / 0.12);
}

.section[id] {
  scroll-margin-top: 70px;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  color: oklch(94% 0.018 95);
  background: linear-gradient(90deg, var(--night), var(--night-2));
}

.section-inner {
  padding: 64px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.48fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  color: var(--ink);
  font-size: 2.45rem;
  font-weight: 800;
  max-width: 820px;
}

.dark .section-head h2 {
  color: oklch(94% 0.018 95);
}

.section-head p,
.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.56;
}

.dark .section-head p,
.dark .section-lede,
.dark .card p,
.dark .list-item {
  color: var(--muted-dark);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.route-card,
.contact-panel,
.inventory-card {
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: oklch(100% 0 0 / 0.64);
}

.dark .card,
.dark .route-card {
  background: oklch(20% 0.05 254 / 0.76);
  border-color: oklch(78% 0.04 225 / 0.18);
}

.card {
  padding: 22px;
}

.card h3,
.route-card h3 {
  color: oklch(20% 0.05 252);
  font-size: 1.2rem;
  font-weight: 800;
}

.dark .card h3,
.dark .route-card h3 {
  color: oklch(94% 0.018 95);
}

.card p,
.route-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.dark .card-link {
  color: var(--signal);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  overflow: hidden;
}

.question {
  min-height: 220px;
  padding: 22px;
  border-right: 1px solid var(--paper-line);
  background: linear-gradient(180deg, oklch(100% 0 0 / 0.62), oklch(94% 0.015 92 / 0.88));
}

.question:last-child {
  border-right: 0;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border: 1px solid oklch(55% 0.08 245 / 0.55);
  border-radius: 999px;
  color: var(--blue);
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
}

.question:nth-child(2) .number { color: oklch(47% 0.12 185); border-color: oklch(55% 0.1 185 / 0.52); }
.question:nth-child(3) .number { color: var(--red); border-color: oklch(55% 0.16 25 / 0.45); }
.question:nth-child(4) .number { color: oklch(50% 0.12 78); border-color: oklch(60% 0.14 78 / 0.5); }

.question h3 {
  font-size: 1.18rem;
}

.question p {
  margin: 10px 0 0;
  color: var(--muted);
}

.module-card {
  padding: 0;
  overflow: hidden;
}

.mini-shot {
  height: 190px;
  border: 0;
  border-bottom: 1px solid var(--paper-line);
  border-radius: 0;
  box-shadow: none;
}

.mini-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.module-body {
  padding: 20px;
}

.screenshot-card .module-body {
  display: grid;
  gap: 10px;
  align-content: start;
}

.workflow-showcase {
  display: grid;
  gap: 18px;
}

.workflow-feature .screenshot-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.workflow-feature .mini-shot {
  height: 360px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 0;
}

.workflow-feature .mini-shot img {
  object-position: 34% top;
}

.workflow-feature .module-body {
  align-content: center;
}

.shot-title-button {
  padding: 0;
  color: oklch(20% 0.05 252);
  background: transparent;
  border: 0;
  cursor: zoom-in;
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.dark .shot-title-button {
  color: oklch(94% 0.018 95);
}

.shot-title-button:hover,
.shot-title-button:focus-visible {
  color: var(--blue);
  outline: none;
}

.dark .shot-title-button:hover,
.dark .shot-title-button:focus-visible {
  color: var(--signal);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.tag {
  padding: 4px 8px;
  border-radius: 999px;
  color: oklch(26% 0.05 250);
  background: oklch(91% 0.02 210 / 0.72);
  border: 1px solid var(--paper-line);
  font-size: 0.78rem;
  font-weight: 800;
}

.dark .tag {
  color: oklch(88% 0.018 95);
  background: oklch(31% 0.05 254 / 0.72);
  border-color: oklch(78% 0.04 225 / 0.18);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 0.62fr);
  gap: 42px;
  align-items: center;
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.list-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  color: oklch(31% 0.04 250);
  font-weight: 700;
}

.list-item::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 0 6px oklch(78% 0.16 180 / 0.11);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: oklch(100% 0 0 / 0.62);
}

.dark .stat {
  background: oklch(20% 0.05 254 / 0.76);
  border-color: oklch(78% 0.04 225 / 0.18);
}

.stat-number {
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: 800;
}

.dark .stat-number {
  color: var(--signal);
}

.stat-label {
  color: var(--muted);
  font-weight: 800;
}

.dark .stat-label {
  color: var(--muted-dark);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn,
.copy-btn {
  min-height: 36px;
  padding: 0 12px;
  color: var(--ink);
  background: oklch(100% 0 0 / 0.72);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover,
.copy-btn:hover {
  color: oklch(95% 0.018 95);
  background: var(--ink);
}

.search {
  width: min(420px, 100%);
  min-height: 44px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: var(--field);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.inventory-card {
  overflow: hidden;
  background: oklch(100% 0 0 / 0.72);
}

.inventory-card figure {
  height: 190px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--paper-line);
  border-radius: 0;
  box-shadow: none;
}

.inventory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.inventory-body {
  padding: 14px;
}

.inventory-id {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 2px 8px;
  color: oklch(95% 0.018 95);
  background: var(--ink);
  border-radius: 6px;
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
}

.file-name {
  color: var(--blue);
  font-family: Consolas, "SF Mono", monospace;
  font-size: 0.84rem;
  word-break: break-all;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.45fr);
  gap: 26px;
  padding: 28px;
}

.contact-panel h2 {
  font-size: 2.25rem;
}

.contact-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-list div {
  padding: 12px 14px;
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  background: oklch(99% 0.006 95 / 0.8);
  font-weight: 800;
}

.shot-tooltip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 30px 12px 12px;
  color: oklch(92% 0.018 95);
  background: linear-gradient(180deg, oklch(15% 0.04 256 / 0) 0%, oklch(15% 0.04 256 / 0.86) 45%, oklch(15% 0.04 256 / 0.95) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.shot-wrap {
  cursor: zoom-in;
}

.shot-wrap:focus-visible {
  outline: 3px solid oklch(58% 0.12 190);
  outline-offset: 3px;
}

.shot-wrap:hover .shot-tooltip,
.shot-wrap:focus-within .shot-tooltip {
  opacity: 1;
}

.shot-tooltip strong {
  display: block;
  color: var(--signal);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.shot-tooltip span {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
}

.shot-number {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: oklch(82% 0.1 295);
  font-family: Consolas, "SF Mono", monospace;
  font-weight: 800;
}

.shot-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 20px;
  background: oklch(12% 0.04 256 / 0.76);
  backdrop-filter: blur(10px);
}

.shot-modal[hidden] {
  display: none;
}

.shot-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(360px, 0.85fr);
  width: min(1880px, calc(100vw - 40px));
  height: min(920px, calc(100vh - 40px));
  max-height: calc(100vh - 40px);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid oklch(82% 0.04 220 / 0.42);
  border-radius: 8px;
  box-shadow: 0 30px 90px oklch(10% 0.04 256 / 0.55);
}

.shot-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 38px;
  padding: 0 12px;
  color: oklch(95% 0.018 95);
  background: var(--ink);
  border: 1px solid oklch(78% 0.04 225 / 0.28);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.shot-modal-media {
  min-width: 0;
  height: 100%;
  min-height: 0;
  overflow: auto;
  display: block;
  background: oklch(10% 0.034 256);
}

.shot-modal-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: left top;
}

.shot-modal-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  max-height: 100%;
  overflow: auto;
  padding: 44px 34px 34px;
  background:
    linear-gradient(180deg, oklch(98% 0.009 96), oklch(94% 0.015 92));
}

.shot-modal-kicker,
.shot-modal-ref {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: oklch(95% 0.018 95);
  background: var(--ink);
  border-radius: 6px;
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shot-modal-copy h2 {
  color: var(--ink);
  max-width: 12ch;
  font-size: 2.55rem;
  font-weight: 800;
}

.shot-modal-description {
  margin: 0;
  color: oklch(24% 0.044 250);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.42;
}

.shot-modal-section-title {
  margin-top: 4px;
  color: oklch(28% 0.05 250);
  font-family: "Archivo", "Segoe UI", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shot-modal-points {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.shot-modal-point {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  color: oklch(29% 0.04 250);
  font-size: 1.02rem;
  font-weight: 700;
}

.shot-modal-point::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 0 5px oklch(78% 0.16 180 / 0.12);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 130;
  transform: translate(-50%, 120%);
  padding: 10px 14px;
  color: oklch(93% 0.018 95);
  background: var(--night);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

@media (max-width: 1120px) {
  .hero-inner,
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-media {
    max-width: 840px;
  }

  .shot-frame img {
    height: 430px;
  }

  .shot-modal-panel {
    grid-template-columns: 1fr;
    height: auto;
    overflow: auto;
  }

  .shot-modal-copy {
    max-height: none;
  }

  .shot-modal-media {
    height: min(58vh, 560px);
  }

  .section-head,
  .grid.three,
  .grid.four,
  .stat-grid,
  .question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-feature .screenshot-card {
    grid-template-columns: 1fr;
  }

  .workflow-feature .mini-shot {
    height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .question:nth-child(2) {
    border-right: 0;
  }

  .question:nth-child(1),
  .question:nth-child(2) {
    border-bottom: 1px solid var(--paper-line);
  }
}

@media (max-width: 780px) {
  .draft-ribbon {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    display: none;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 0;
    padding: 18px;
    background: var(--paper);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .nav-cta {
    margin-top: 14px;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.2rem;
  }

  .hero-lede {
    font-size: 1.18rem;
  }

  .hero-support,
  .section-head p,
  .section-lede {
    font-size: 1rem;
  }

  .actions {
    display: grid;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .proof-pill {
    width: 100%;
    border-radius: 8px;
  }

  .section-head,
  .grid.two,
  .grid.three,
  .grid.four,
  .stat-grid,
  .question-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .contact-panel h2 {
    font-size: 1.9rem;
  }

  .question {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--paper-line);
  }

  .question:last-child {
    border-bottom: 0;
  }

  .shot-frame img {
    height: 300px;
  }

  .media-note {
    grid-template-columns: 1fr;
  }

  .shot-modal {
    padding: 12px;
  }

  .shot-modal-panel {
    width: calc(100vw - 24px);
    height: auto;
    max-height: calc(100vh - 24px);
  }

  .shot-modal-copy {
    padding: 22px;
  }

  .shot-modal-copy h2 {
    font-size: 1.6rem;
  }

  .shot-modal-media {
    height: 42vh;
  }
}
