:root {
  --ink: #14161a;
  --ink-2: #252a31;
  --copy: #454b55;
  --muted: #59616e;
  --paper: #f4f1e9;
  --paper-2: #ebe6db;
  --surface: #fffdf8;
  --yellow: #ffc531;
  --yellow-soft: #fff2bd;
  --red: #c8341f;
  --green: #1e7048;
  --line: #d5d0c4;
  --line-dark: #3c424b;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --step--1: 0.875rem;
  --step-0: 1rem;
  --step-1: 1.25rem;
  --step-2: clamp(1.75rem, 3vw, 2.5rem);
  --step-3: clamp(2.5rem, 5.5vw, 4.75rem);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --shadow-1: 0 18px 48px rgba(20, 22, 26, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --motion-fast: 140ms;
  --motion-medium: 280ms;
  --motion-slow: 680ms;
  --scroll-progress: 0;
  --header-height: 4.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  font-size: var(--step-3);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2 {
  max-width: 18ch;
  font-size: var(--step-3);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--step-2);
  font-weight: 600;
}

p {
  color: var(--copy);
}

.shell {
  width: min(100% - 2rem, 76rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8.5rem);
}

.section-heading {
  display: grid;
  max-width: 48rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.section-heading::after {
  width: min(7rem, 28vw);
  height: 0.2rem;
  margin-top: var(--space-5);
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.section-heading.is-visible::after {
  animation: line-draw 640ms var(--ease-out) 260ms forwards;
}

.section-heading--light::after {
  background: var(--yellow);
}

@keyframes line-draw {
  to { opacity: 1; transform: scaleX(1); }
}

.section-heading > p:last-child {
  max-width: 64ch;
  margin-bottom: 0;
  font-size: 1.0625rem;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--surface);
}

.eyebrow,
.data-kicker {
  margin-bottom: var(--space-3);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--red {
  color: var(--red);
}

.eyebrow--yellow {
  color: var(--yellow);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--ink);
  background: var(--yellow);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-height);
  color: var(--surface);
  background: var(--ink);
  border-bottom: 0.25rem solid var(--yellow);
  transition: background-color var(--motion-medium) linear, box-shadow var(--motion-medium) var(--ease-out);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  height: 0.25rem;
  background: var(--red);
  content: "";
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  transition: transform 80ms linear;
}

.site-header.is-scrolled {
  background: #191c21;
  box-shadow: 0 0.75rem 2rem rgba(20, 22, 26, 0.18);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--motion-medium) var(--ease-out);
}

.site-header.is-scrolled .brand {
  transform: scale(0.95);
}

.brand strong {
  color: var(--yellow);
}

.menu-button {
  display: inline-flex;
  min-width: 4.5rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  color: var(--surface);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-button__label {
  font-size: 0.875rem;
  font-weight: 600;
}

.menu-button__icon {
  display: grid;
  width: 1.25rem;
  gap: 0.35rem;
}

.menu-button__icon i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 200ms var(--ease-out);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
  transform: translateY(0.27rem) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
  transform: translateY(-0.27rem) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  z-index: 49;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  padding: var(--space-5) max(1rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.nav-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-panel > a:not(.button) {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  color: #d8d9dc;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-panel__cta {
  margin-top: var(--space-5);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 120ms linear, background-color 120ms linear, border-color 120ms linear, transform 120ms var(--ease-out);
}

.button::before {
  position: absolute;
  z-index: 0;
  inset: -30% auto -30% -45%;
  width: 32%;
  background: rgba(255, 253, 248, 0.38);
  content: "";
  opacity: 0;
  transform: translateX(-180%) skewX(-18deg);
  transition: transform 460ms var(--ease-out), opacity 140ms linear;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
}

.button:hover::before {
  opacity: 1;
  transform: translateX(620%) skewX(-18deg);
}

.button:active {
  transform: translateY(0) scale(0.975);
}

.button--yellow {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button--yellow:hover {
  background: #f5b900;
  border-color: #f5b900;
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button--outline:hover {
  color: var(--surface);
  background: var(--ink);
}

.button--small {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.75rem;
}

.button--wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  background: var(--surface);
  --grid-pointer-x: 0px;
  --grid-pointer-y: 0px;
  --grid-scroll-y: 0px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ded9ce 1px, transparent 1px), linear-gradient(90deg, #ded9ce 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  opacity: 0.2;
  pointer-events: none;
  transform: translate3d(var(--grid-pointer-x), calc(var(--grid-pointer-y) + var(--grid-scroll-y)), 0) scale(1.06);
  transition: transform 180ms linear;
}

.hero-motion-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-task {
  position: absolute;
  display: none;
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  background: var(--yellow-soft);
  border: 1px solid #e0c86f;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.34;
  transform: translate3d(0, 0, 0);
}

.floating-task::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 5rem;
  height: 1px;
  background: #d8c67f;
  content: "";
}

.floating-task--permit {
  top: 15%;
  right: -1rem;
  animation: task-drift-one 8s var(--ease-in-out) infinite alternate;
}

.floating-task--inspection {
  bottom: 18%;
  left: -1.5rem;
  animation: task-drift-two 10s var(--ease-in-out) infinite alternate;
}

.floating-task--order {
  right: 4%;
  bottom: 8%;
  animation: task-drift-one 11s var(--ease-in-out) -4s infinite alternate-reverse;
}

@keyframes task-drift-one {
  to { transform: translate3d(-1.25rem, 1rem, 0); }
}

@keyframes task-drift-two {
  to { transform: translate3d(1.5rem, -0.75rem, 0); }
}

.hero__grid {
  position: relative;
  display: grid;
  gap: var(--space-7);
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.motion-ready .hero__copy > * {
  opacity: 0;
  animation: hero-copy-in var(--motion-slow) var(--ease-out) forwards;
}

.motion-ready .hero__copy > :nth-child(1) { animation-delay: 80ms; }
.motion-ready .hero__copy > :nth-child(2) { animation-delay: 150ms; }
.motion-ready .hero__copy > :nth-child(3) { animation-delay: 230ms; }
.motion-ready .hero__copy > :nth-child(4) { animation-delay: 310ms; }
.motion-ready .hero__copy > :nth-child(5) { animation-delay: 390ms; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translate3d(0, 1.5rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero__copy {
  align-self: center;
}

.hero__lead {
  max-width: 39rem;
  margin-bottom: var(--space-6);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.commitment {
  display: flex;
  max-width: 41rem;
  align-items: flex-start;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.commitment span {
  color: var(--red);
  font-weight: 700;
}

.hazard-line {
  position: relative;
  overflow: hidden;
  height: 0.75rem;
  background: var(--yellow);
}

.hazard-line::before {
  position: absolute;
  inset: 0 -7.1rem;
  background: repeating-linear-gradient(45deg, var(--yellow) 0 1.25rem, var(--ink) 1.25rem 2.5rem);
  content: "";
  transform: translate3d(-3.55rem, 0, 0);
  animation: hazard-shift 7s linear infinite;
}

@keyframes hazard-shift {
  to { transform: translate3d(3.55rem, 0, 0); }
}

.schedule-proof {
  align-self: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--surface);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-1);
  container-type: inline-size;
  transform-style: preserve-3d;
}

.schedule-proof__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line-dark);
}

.schedule-proof__topline h2 {
  margin: 0;
  color: var(--surface);
  font-size: clamp(1.45rem, 4vw, 2rem);
  letter-spacing: 0;
}

.data-kicker {
  margin-bottom: var(--space-1);
  color: var(--yellow);
}

.status-chip {
  display: none;
  align-items: center;
  gap: var(--space-2);
  color: #d7d9de;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-chip i {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--yellow);
  border-radius: 50%;
}

.scenario-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-block: var(--space-4);
  padding: 2px;
  background: var(--ink-2);
}

.scenario-switch__button {
  min-height: 2.75rem;
  padding: 0.55rem 0.6rem;
  color: #c7cad0;
  background: transparent;
  border: 0;
  border-radius: 2px;
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
}

.scenario-switch__button.is-active {
  color: var(--ink);
  background: var(--yellow);
}

.finish-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0 var(--space-3);
  margin-bottom: var(--space-4);
  padding: var(--space-3) var(--space-4);
  color: var(--ink);
  background: var(--surface);
  transform-origin: center;
}

.finish-callout.is-changing {
  animation: callout-pulse 380ms var(--ease-out);
}

@keyframes callout-pulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.025); }
  100% { transform: scale(1); }
}

.finish-callout span,
.finish-callout em {
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finish-callout strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.finish-callout em {
  color: var(--green);
}

.timeline {
  display: grid;
  gap: var(--space-3);
}

.timeline__scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 7.5rem;
  color: #a8adb6;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-row {
  display: grid;
  grid-template-columns: 6.75rem 1fr;
  align-items: center;
  gap: var(--space-3);
}

.timeline-row__meta {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: var(--space-2);
  color: #cfd2d8;
  font-size: 0.6875rem;
  line-height: 1.2;
}

.timeline-row__meta span {
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.timeline-row__meta strong {
  font-weight: 500;
}

.timeline-track {
  display: grid;
  min-height: 1.75rem;
  grid-template-columns: repeat(10, 1fr);
  align-items: center;
  background-image: linear-gradient(90deg, transparent calc(100% - 1px), var(--line-dark) 1px);
  background-size: 10% 100%;
}

.timeline-bar {
  grid-column: var(--start) / span var(--span);
  display: flex;
  min-width: 0;
  height: 1.3rem;
  align-items: center;
  padding-inline: 0.35rem;
  color: var(--ink);
  background: #d7d9de;
  border-left: 3px solid var(--surface);
  font-size: 0.5625rem;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
  --bar-shift: 0%;
  transform: translateX(var(--bar-shift)) scaleX(1);
  transform-origin: left center;
  transition: transform 420ms var(--ease-out), background-color 180ms linear;
}

.timeline-bar b {
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeline-bar--permit {
  background: var(--yellow);
}

.timeline-bar--gate {
  color: var(--surface);
  background: var(--red);
}

.timeline-bar--cabinet {
  background: #f0a872;
}

.schedule-proof.is-visible .timeline-row:nth-of-type(2) .timeline-bar { animation: timeline-build 620ms var(--ease-out) 260ms both; }
.schedule-proof.is-visible .timeline-row:nth-of-type(3) .timeline-bar { animation: timeline-build 620ms var(--ease-out) 340ms both; }
.schedule-proof.is-visible .timeline-row:nth-of-type(4) .timeline-bar { animation: timeline-build 620ms var(--ease-out) 420ms both; }
.schedule-proof.is-visible .timeline-row:nth-of-type(5) .timeline-bar { animation: timeline-build 620ms var(--ease-out) 500ms both; }
.schedule-proof.is-visible .timeline-row:nth-of-type(6) .timeline-bar { animation: timeline-build 620ms var(--ease-out) 580ms both; }

@keyframes timeline-build {
  from { opacity: 0; transform: translateX(var(--bar-shift)) scaleX(0); }
  to { opacity: 1; transform: translateX(var(--bar-shift)) scaleX(1); }
}

.schedule-proof.is-delayed .timeline-bar--cabinet {
  background: var(--red);
  --bar-shift: 45%;
}

.impact-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark);
}

.impact-note.is-changing {
  animation: impact-nudge 420ms var(--ease-out);
}

@keyframes impact-nudge {
  0% { opacity: 0.5; transform: translate3d(-0.75rem, 0, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

.impact-note__mark {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.impact-note p {
  margin: 0;
  color: #cfd2d8;
  font-size: 0.75rem;
  line-height: 1.5;
}

.impact-note strong {
  color: var(--surface);
}

.schedule-proof.is-delayed .impact-note__mark {
  color: var(--surface);
  background: var(--red);
}

.coverage {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.coverage__inner {
  display: grid;
  gap: var(--space-3);
  padding-block: var(--space-5);
}

.coverage p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage li {
  position: relative;
  padding-left: 0.8rem;
  color: var(--copy);
  font-size: 0.8125rem;
  font-weight: 600;
}

.coverage li::before {
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--yellow);
  content: "";
}

.how {
  background: var(--surface);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 var(--space-4);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  grid-row: 1 / 3;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: var(--space-2);
  font-size: 1.75rem;
}

.steps p {
  max-width: 42ch;
  margin: 0;
}

.builder-section {
  color: var(--surface);
  background: var(--ink);
}

.builder-layout {
  display: grid;
  gap: var(--space-7);
}

.builder-copy h2,
.builder-copy p {
  color: var(--surface);
}

.builder-copy p {
  max-width: 54ch;
  color: #d4d7dc;
}

.check-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  color: var(--yellow);
  content: "[+]";
  font-size: 0.75rem;
  font-weight: 700;
}

.builder-form {
  padding: clamp(1.25rem, 4vw, 2rem);
  color: var(--ink);
  background: var(--surface);
  border-top: 0.5rem solid var(--yellow);
  transition: transform var(--motion-medium) var(--ease-out), box-shadow var(--motion-medium) var(--ease-out);
}

.builder-form:focus-within {
  box-shadow: 0 1.5rem 4rem rgba(20, 22, 26, 0.28);
  transform: translateY(-0.25rem);
}

.builder-form.has-error {
  animation: form-shake 340ms var(--ease-out);
}

@keyframes form-shake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  30% { transform: translate3d(-0.45rem, 0, 0); }
  65% { transform: translate3d(0.3rem, 0, 0); }
}

.form-grid {
  display: grid;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.field {
  display: grid;
  align-content: start;
  gap: var(--space-2);
}

.field label {
  font-size: 0.8125rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.875rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #8a8f98;
  border-radius: var(--radius-sm);
  transition: border-color var(--motion-fast) linear, box-shadow var(--motion-fast) linear, transform var(--motion-fast) var(--ease-out);
}

.field input:hover,
.field select:hover {
  border-color: var(--ink);
}

.field input:focus,
.field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--yellow-soft);
  transform: translateY(-1px);
}

.field input[aria-invalid="true"] {
  border: 2px solid var(--red);
}

.field small {
  color: var(--muted);
  font-size: 0.75rem;
}

.field-error {
  min-height: 1.2em;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
}

.input-suffix {
  position: relative;
}

.input-suffix input {
  padding-right: 4.25rem;
}

.input-suffix > span {
  position: absolute;
  top: 50%;
  right: var(--space-4);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  transform: translateY(-50%);
}

.builder-result {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: var(--paper);
  border: 1px solid var(--line);
  transform-origin: top center;
}

.builder-result > div {
  display: grid;
  gap: var(--space-1);
}

.builder-result span {
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-result strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}

.builder-result p {
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.builder-result.is-updated {
  animation: result-flash 520ms var(--ease-out);
}

@keyframes result-flash {
  0% { transform: translate3d(0, 0.75rem, 0) scale(0.985); opacity: 0.55; }
  100% { transform: translateY(0); opacity: 1; }
}

[data-builder-submit].is-loading {
  cursor: wait;
  opacity: 0.9;
  pointer-events: none;
}

[data-builder-submit].is-loading::after {
  width: 1rem;
  height: 1rem;
  margin-left: 0.65rem;
  border: 2px solid var(--ink);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: loading-spin 620ms linear infinite;
}

@keyframes loading-spin {
  to { transform: rotate(360deg); }
}

.mechanics {
  overflow: hidden;
  color: var(--surface);
  background: var(--ink-2);
}

.mechanics-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.mechanics-line::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
  content: "";
}

.mechanics-line::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--yellow);
  content: "";
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: left center;
}

.mechanics.section-active .mechanics-line::after {
  animation: mechanics-draw 880ms var(--ease-out) forwards;
}

@keyframes mechanics-draw {
  to { transform: scaleX(1); }
}

.mechanics-line i {
  position: relative;
  z-index: 2;
  width: 1rem;
  height: 1rem;
  background: var(--yellow);
  border: 0.25rem solid var(--ink-2);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
}

.mechanics.section-active .mechanics-line i {
  animation: node-arrive 320ms var(--ease-out) forwards;
}

.mechanics.section-active .mechanics-line i:nth-child(1) { animation-delay: 120ms; }
.mechanics.section-active .mechanics-line i:nth-child(2) { animation-delay: 430ms; }
.mechanics.section-active .mechanics-line i:nth-child(3) { animation-delay: 760ms; }

@keyframes node-arrive {
  to { opacity: 1; transform: scale(1); }
}

.mechanics-grid {
  display: grid;
  gap: var(--space-6);
}

.mechanics-grid article {
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-dark);
}

.mechanics-grid__number {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mechanics-grid h3 {
  max-width: 14ch;
  margin-bottom: var(--space-4);
  color: var(--surface);
}

.mechanics-grid p {
  margin: 0;
  color: #cfd2d8;
}

.outcomes {
  background: var(--surface);
}

.outcome-row {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.outcome-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.outcome-copy h3 {
  max-width: 16ch;
  margin-bottom: var(--space-4);
}

.outcome-copy p {
  max-width: 48ch;
  margin: 0;
  font-size: 1.0625rem;
}

.outcome-visual {
  min-height: 20rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: var(--surface);
  background: var(--ink);
  border: 1px solid var(--line-dark);
  transform-style: preserve-3d;
}

.outcome-visual--impact {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-content: center;
  gap: var(--space-4);
}

.outcome-visual--impact > p,
.outcome-visual--impact > b {
  grid-column: 1 / -1;
}

.outcome-visual--impact > p {
  margin-bottom: var(--space-3);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-date {
  display: grid;
  gap: var(--space-2);
}

.impact-date span {
  color: #aeb3bc;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-date strong {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.impact-arrow {
  align-self: end;
  color: var(--yellow);
  font-size: 1.5rem;
}

.outcome-visual--impact > b {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark);
  font-size: 0.8125rem;
}

.outcome-visual--impact > b i {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--green);
  border-radius: 50%;
}

.outcome-visual--orders {
  display: grid;
  align-content: center;
}

.order-list__head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--surface);
}

.order-list__head span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-list__head b {
  color: #aeb3bc;
  font-size: 0.6875rem;
}

.outcome-visual--orders ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-visual--orders li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-2) var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line-dark);
}

.outcome-visual--orders time {
  grid-row: 1 / 3;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.outcome-visual--orders span {
  font-weight: 600;
}

.outcome-visual--orders em {
  color: #aeb3bc;
  font-size: 0.75rem;
  font-style: normal;
}

.deliverables {
  display: grid;
  margin-top: var(--space-7);
  border-top: 2px solid var(--ink);
}

.deliverables > div {
  display: grid;
  gap: var(--space-2);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--line);
}

.deliverables strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.deliverables span {
  color: var(--copy);
  font-size: 0.875rem;
}

.comparison {
  background: var(--paper-2);
}

.comparison__intro {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.comparison__intro h2 {
  margin: 0;
}

.comparison__intro > p:last-child {
  max-width: 60ch;
  margin: 0;
  font-size: 1.0625rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

th,
td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

thead th {
  color: var(--surface);
  background: var(--ink);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

thead th:nth-child(2) {
  color: var(--ink);
  background: var(--yellow);
}

tbody th {
  width: 25%;
  font-weight: 600;
}

tbody td:nth-child(2) {
  background: var(--yellow-soft);
}

tbody td strong {
  color: var(--green);
}

.table-note,
.pricing__terms {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.pricing {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  gap: var(--space-5);
}

.pricing-grid--single {
  width: min(100%, 48rem);
  margin-inline: auto;
}

.price-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--surface);
  border: 2px solid var(--line);
  transform-style: preserve-3d;
  transition: border-color var(--motion-medium) linear, box-shadow var(--motion-medium) var(--ease-out), transform var(--motion-medium) var(--ease-out);
}

.price-plan:hover {
  border-color: var(--ink);
  box-shadow: 0 1.25rem 3rem rgba(20, 22, 26, 0.11);
}

.price-plan--single {
  border-color: var(--ink);
}

.price-plan__head {
  display: grid;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}

.price-plan__head > div > span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.price-plan__head > div p {
  margin: var(--space-1) 0 0;
  font-size: 0.875rem;
}

.price {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: var(--ink);
}

.price strong {
  font-family: var(--font-display);
  font-size: 4.25rem;
  line-height: 0.8;
  font-variant-numeric: tabular-nums;
}

.price-plan.is-visible .price strong {
  animation: price-rise 580ms var(--ease-out) 220ms both;
}

@keyframes price-rise {
  from { opacity: 0; transform: translate3d(0, 1rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.price span {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.price-plan ul {
  display: grid;
  gap: var(--space-3);
  flex: 1;
  margin: var(--space-6) 0;
  padding: 0;
  list-style: none;
}

.price-plan li {
  position: relative;
  padding-left: 1.5rem;
}

.price-plan li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "+";
  font-weight: 700;
}

.price-plan small {
  display: block;
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.trust {
  color: var(--surface);
  background: var(--ink);
}

.trust__grid {
  display: grid;
  gap: var(--space-7);
}

.trust h2,
.trust__copy > p:last-child {
  color: var(--surface);
}

.trust__copy > p:last-child {
  max-width: 55ch;
  color: #cfd2d8;
}

.trust__facts {
  display: grid;
  border-top: 2px solid var(--yellow);
}

.trust__facts > div {
  display: grid;
  gap: var(--space-2);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--line-dark);
}

.trust__facts strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.trust__facts span {
  color: #d0d3d8;
}

.trust__facts > p {
  margin: var(--space-5) 0 0;
  color: #aeb3bc;
  font-size: 0.75rem;
}

.faq {
  background: var(--surface);
}

.faq__grid {
  display: grid;
  gap: var(--space-7);
}

.faq__intro > p:last-child {
  max-width: 40ch;
}

.faq__intro a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.faq__list {
  border-top: 2px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  min-height: 4rem;
  padding: 1.15rem 3rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  color: var(--red);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  max-width: 62ch;
  padding: 0 3rem var(--space-5) 0;
}

.faq details[open] p {
  animation: faq-answer-in 320ms var(--ease-out) both;
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translate3d(0, -0.5rem, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.closing-cta {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  color: var(--surface);
  background: var(--ink-2);
}

.closing-cta__inner {
  display: grid;
  justify-items: start;
}

.closing-cta h2 {
  max-width: 14ch;
  color: var(--surface);
}

.closing-cta p:not(.eyebrow) {
  max-width: 52ch;
  margin-bottom: var(--space-6);
  color: #cfd2d8;
  font-size: 1.0625rem;
}

.closing-cta small {
  margin-top: var(--space-3);
  color: #b7bbc3;
}

.site-footer {
  padding-block: var(--space-7) max(var(--space-5), env(safe-area-inset-bottom));
  color: var(--surface);
  background: var(--ink);
  border-top: 0.5rem solid var(--yellow);
}

.site-footer__grid {
  display: grid;
  gap: var(--space-6);
}

.brand--footer {
  margin-bottom: var(--space-3);
}

.site-footer p {
  max-width: 28ch;
  color: #b7bbc3;
  font-size: 0.8125rem;
}

.site-footer__grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: var(--space-2);
}

.site-footer__grid > div:not(:first-child) strong {
  margin-bottom: var(--space-1);
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(:first-child) a,
.site-footer__grid > div:not(:first-child) .footer-placeholder {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  color: #d5d7dc;
  font-size: 0.8125rem;
  text-decoration: none;
}

.footer-placeholder {
  cursor: default;
}

.site-footer__grid a:hover {
  color: var(--yellow);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  color: #aeb3bc;
  border-top: 1px solid var(--line-dark);
  font-size: 0.6875rem;
}

.reveal {
  opacity: 0;
  --reveal-x: 0;
  --reveal-y: 1.75rem;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
}

.reveal.is-visible {
  animation: reveal-in 680ms var(--ease-out) var(--reveal-delay) both;
}

.reveal.is-visible.reveal-complete {
  animation: none;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes reveal-in {
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

.hero .schedule-proof { --reveal-x: 2rem; --reveal-y: 0; --reveal-scale: 0.975; --reveal-delay: 120ms; }
.steps li:nth-child(1),
.mechanics-grid article:nth-child(1),
.deliverables > div:nth-child(1) { --reveal-delay: 0ms; }
.steps li:nth-child(2),
.mechanics-grid article:nth-child(2),
.deliverables > div:nth-child(2) { --reveal-delay: 90ms; }
.steps li:nth-child(3),
.mechanics-grid article:nth-child(3),
.deliverables > div:nth-child(3) { --reveal-delay: 180ms; }
.deliverables > div:nth-child(4) { --reveal-delay: 270ms; }
.outcome-row:not(.outcome-row--reverse) .outcome-visual { --reveal-x: -2.5rem; --reveal-y: 0; }
.outcome-row:not(.outcome-row--reverse) .outcome-copy { --reveal-x: 2.5rem; --reveal-y: 0; }
.outcome-row--reverse .outcome-visual { --reveal-x: 2.5rem; --reveal-y: 0; }
.outcome-row--reverse .outcome-copy { --reveal-x: -2.5rem; --reveal-y: 0; }
.price-plan { --reveal-y: 2rem; --reveal-scale: 0.975; }

[data-tilt].reveal-complete {
  transition: transform 180ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

[data-tilt].is-tilting {
  box-shadow: 0 1.75rem 4rem rgba(20, 22, 26, 0.2);
  will-change: transform;
}

@container (min-width: 34rem) {
  .status-chip {
    display: inline-flex;
  }
}

@media (min-width: 40rem) {
  .shell {
    width: min(100% - 3rem, 76rem);
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .button {
    min-width: 12.5rem;
  }

  .coverage__inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: var(--space-6);
  }

  .coverage ul {
    justify-content: flex-end;
  }

  .form-grid,
  .builder-result {
    grid-template-columns: 1fr 1fr;
  }

  .builder-result p {
    grid-column: 1 / -1;
  }

  .deliverables {
    grid-template-columns: 1fr 1fr;
  }

  .deliverables > div:nth-child(odd) {
    padding-right: var(--space-5);
  }

  .deliverables > div:nth-child(even) {
    padding-left: var(--space-5);
    border-left: 1px solid var(--line);
  }

  .price-plan__head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 48rem) {
  .menu-button {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-panel > a:not(.button) {
    min-height: 2.75rem;
    color: #bfc3ca;
    border: 0;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
  }

  .nav-panel > a:not(.button):hover {
    color: var(--surface);
  }

  .nav-panel__cta {
    margin-top: 0;
  }

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

  .steps li {
    grid-template-columns: 1fr;
    gap: 0;
    padding: var(--space-6);
    border-right: 1px solid var(--line);
  }

  .steps li:first-child {
    padding-left: 0;
  }

  .steps li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .steps li > span {
    grid-row: auto;
    margin-bottom: var(--space-7);
  }

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

  .outcome-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .outcome-row--reverse .outcome-visual {
    grid-column: 2;
  }

  .outcome-row--reverse .outcome-copy {
    grid-row: 1;
    grid-column: 1;
  }

  .comparison__intro {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }

  .comparison__intro .eyebrow {
    grid-column: 1 / -1;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .pricing-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust__grid,
  .faq__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 8vw, 7rem);
  }
}

@media (min-width: 64rem) {
  .floating-task {
    display: block;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(34rem, 1.08fr);
    gap: clamp(3rem, 6vw, 6rem);
  }

  .builder-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(34rem, 1.15fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
  }
}

@media (max-width: 35rem) {
  .timeline__scale {
    margin-left: 0;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .timeline-row__meta {
    grid-template-columns: 1.5rem 1fr;
  }

  .finish-callout {
    grid-template-columns: 1fr;
  }

  .finish-callout strong {
    grid-row: auto;
    grid-column: 1;
    margin-block: var(--space-1);
  }

  .outcome-visual--impact {
    grid-template-columns: 1fr;
  }

  .outcome-visual--impact > * {
    grid-column: 1 !important;
  }

  .impact-arrow {
    transform: rotate(90deg);
    transform-origin: left center;
  }
}

@media (max-width: 47.99rem) {
  .reveal {
    --reveal-x: 0 !important;
  }

  .table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  tbody tr {
    margin-bottom: var(--space-4);
    background: var(--surface);
    border: 1px solid var(--line);
  }

  tbody th {
    padding: var(--space-4);
    color: var(--surface);
    background: var(--ink);
    border: 0;
  }

  tbody td {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    border-bottom: 1px solid var(--line);
  }

  tbody td::before {
    color: var(--muted);
    content: attr(data-label);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  tbody td:last-child {
    border-bottom: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .scenario-switch__button:hover:not(.is-active) {
    color: var(--surface);
    background: var(--line-dark);
  }

  .faq summary:hover {
    color: var(--red);
  }
}

@media (pointer: coarse) {
  .button,
  .menu-button,
  .scenario-switch__button,
  .faq summary {
    min-height: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .floating-task {
    opacity: 0.2;
    transform: none;
  }

  .timeline-bar {
    opacity: 1;
    transform: translateX(var(--bar-shift)) scaleX(1);
  }

  .hazard-line::before {
    transform: translate3d(0, 0, 0);
  }
}

@media print {
  @page {
    size: Letter;
    margin: 0.55in;
  }

  body {
    color: #14161a;
    background: #fffdf8;
    font-size: 10pt;
  }

  .site-header,
  .hero__actions,
  .hazard-line,
  .coverage,
  .builder-section,
  .closing-cta,
  .button,
  .scenario-switch {
    display: none !important;
  }

  .section,
  .hero__grid {
    padding-block: 0.35in;
  }

  .hero,
  .how,
  .outcomes,
  .comparison,
  .pricing,
  .faq,
  .site-footer {
    color: #14161a;
    background: #fffdf8;
  }

  .hero__grid,
  .mechanics-grid,
  .pricing-grid,
  .trust__grid,
  .faq__grid {
    display: block;
  }

  .schedule-proof,
  .price-plan,
  .faq details,
  tbody tr,
  .outcome-row {
    break-inside: avoid;
  }

  .faq details {
    display: block;
  }

  .faq details > *:not(summary) {
    display: block !important;
  }

  .table-wrap {
    overflow: visible;
  }

  table {
    min-width: 0;
    font-size: 8pt;
  }

  thead {
    display: table-header-group;
  }

  .site-footer {
    border-top: 1px solid #14161a;
  }
}
