:root {
  --dark: #1F2A33;
  --dark-2: #18222A;
  --dark-3: #111920;
  --surface: #26343E;
  --surface-2: #2A4759;
  --coral: #E26D5C;
  --cream: #FBF5EE;
  --muted: #B6C2CC;
  --subtle: rgba(251, 245, 238, 0.62);
  --line: rgba(251, 245, 238, 0.12);
  --line-strong: rgba(251, 245, 238, 0.22);
  --success: #147A59;
  --warning: #EF9F27;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --display: Georgia, "Times New Roman", serif;
  --body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  color: var(--cream);
  background:
    linear-gradient(rgba(251, 245, 238, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 245, 238, 0.028) 1px, transparent 1px),
    var(--dark);
  background-size: 48px 48px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 10%, rgba(226, 109, 92, 0.14), transparent 28%),
    radial-gradient(circle at 84% 2%, rgba(42, 71, 89, 0.8), transparent 32%),
    linear-gradient(180deg, rgba(17, 25, 32, 0), rgba(17, 25, 32, 0.46));
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, dl, dd { margin: 0; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--coral); color: white; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 500;
  padding: .75rem 1rem;
  background: var(--coral);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 42, 51, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(140%);
}

.nav-shell {
  max-width: var(--container);
  width: 100%;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  min-height: 44px;
  min-width: max-content;
}

.brand-mark {
  width: 36px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 34px;
  height: auto;
}

.brand-text {
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: .01em;
}

.brand-product {
  padding-left: .8rem;
  border-left: 1px solid var(--line-strong);
  color: var(--coral);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-left: auto;
}

.desktop-nav a {
  min-height: 44px;
  padding: .75rem .8rem;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
}

.desktop-nav a:hover { color: var(--cream); }

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid rgba(226, 109, 92, .48);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(226, 109, 92, .12);
  font-weight: 750;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.mobile-menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: .25rem var(--gutter) 1rem;
  border-top: 1px solid var(--line);
  background: rgba(24, 34, 42, .98);
}

.mobile-menu a {
  display: block;
  min-height: 44px;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.mobile-menu a:last-child { border-bottom: 0; color: var(--coral); }

.hero {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) clamp(2rem, 5vw, 4rem);
}

.hero-grid {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(420px, 1.16fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-width: 0;
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
  min-width: 0;
}

.eyebrow,
.kicker {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--coral);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  line-height: 1.35;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(226, 109, 92, .16);
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 5.7vw, 4.85rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

h3 {
  color: var(--cream);
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 760;
}

.hero-lead,
.section-head p,
.pilot-grid > div > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: var(--coral);
}

.button.secondary {
  color: var(--cream);
  border-color: var(--line-strong);
  background: rgba(251, 245, 238, .04);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-metrics div {
  padding: .9rem;
  background: rgba(24, 34, 42, .84);
}

.hero-metrics dt {
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin-top: .2rem;
  color: var(--cream);
  font-weight: 800;
}

.hero-panel,
.wide-shot,
.shot {
  margin: 0;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark-2);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-height: 42px;
  padding: 0 .9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 25, 32, .84);
}

.window-bar span {
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: rgba(251, 245, 238, .2);
}

.window-bar span:first-child { background: var(--coral); }
.window-bar span:nth-child(2) { background: var(--warning); }
.window-bar span:nth-child(3) { background: var(--success); }
.window-bar strong {
  margin-left: .45rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-panel img,
.wide-shot img,
.shot img {
  display: block;
  width: 100%;
  min-width: 0;
}

.hero-panel img,
.wide-shot img,
.shot img {
  aspect-ratio: 8 / 5;
  height: auto;
  object-fit: cover;
}

.proof-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.proof-strip div {
  min-height: 118px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip strong {
  display: block;
  color: var(--coral);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.proof-strip span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.35;
}

.section {
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
}

.section.alt {
  background: rgba(24, 34, 42, .72);
  border-block: 1px solid var(--line);
}

.section-head,
.proof-grid,
.routing-grid,
.shot-grid,
.timeline,
.route-journey,
.capability-grid,
.architecture-flow,
.security-grid,
.answer-grid,
.faq-list,
.pilot-grid,
.footer-grid,
.footer-meta,
.wide-shot {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(0, .72fr);
  gap: .75rem 3rem;
}

.section-head .kicker {
  grid-row: 1 / span 2;
  margin-top: .35rem;
}

.section-head h2,
.section-head p {
  grid-column: 2;
}

.section-head p { max-width: 780px; }

.proof-grid,
.routing-grid,
.capability-grid,
.security-grid,
.answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-grid article,
.routing-grid article,
.capability-grid article,
.security-grid article,
.answer-grid article {
  min-height: 190px;
  padding: 1.45rem;
  background: rgba(38, 52, 62, .8);
}

.proof-grid p,
.routing-grid p,
.capability-grid p,
.security-grid p,
.answer-grid p,
.timeline p,
.faq-list p,
.pilot-list {
  margin-top: .55rem;
  color: var(--muted);
  line-height: 1.55;
}

.routing-section .section-head h2 {
  max-width: 15ch;
}

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

.routing-grid span {
  display: inline-block;
  margin-bottom: .85rem;
  color: var(--coral);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.route-journey {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.route-journey div {
  position: relative;
  min-height: 126px;
  padding: 1.2rem;
  background: rgba(17, 25, 32, .7);
}

.route-journey div:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -.55rem;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--coral);
  font-family: var(--mono);
  font-weight: 900;
}

.route-journey strong,
.route-journey span {
  display: block;
}

.route-journey strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
}

.route-journey span {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.35;
}

.inline-link {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(226, 109, 92, .72);
  text-underline-offset: .18em;
}

.alternative-page .alternative-hero h1 {
  max-width: 12.8ch;
}

.disclaimer {
  max-width: 62ch;
  padding: .78rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--subtle);
  background: rgba(17, 25, 32, .58);
  font-size: .94rem;
}

.shot-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
}

.proof-grid + .wide-shot,
.routing-grid + .wide-shot,
.capability-grid + .wide-shot {
  margin-top: 2rem;
}

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

.shot figcaption,
.wide-shot figcaption {
  padding: .75rem .95rem;
  color: var(--subtle);
  background: var(--dark-3);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.timeline {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.timeline article {
  padding: 1.35rem;
  background: var(--dark);
}

.timeline span {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--coral);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.architecture-flow div {
  position: relative;
  padding: 1.35rem;
  background: var(--surface);
}

.architecture-flow div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -.6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 1.2rem;
}

.architecture-flow strong,
.architecture-flow span {
  display: block;
}

.architecture-flow strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.architecture-flow span {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .92rem;
}

.security-grid { grid-template-columns: repeat(4, 1fr); }
.answer-grid { grid-template-columns: repeat(2, 1fr); }

.pricing-shell {
  max-width: var(--container);
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.pricing-card {
  min-height: 260px;
  padding: 1.45rem;
  background: rgba(38, 52, 62, .86);
}

.pricing-card.featured {
  background:
    linear-gradient(135deg, rgba(226, 109, 92, .12), transparent 44%),
    rgba(38, 52, 62, .94);
}

.pricing-label {
  color: var(--coral);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pricing-price {
  margin-top: 1rem;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .95;
}

.pricing-price span {
  display: block;
  margin-top: .55rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-card > p:last-child,
.pricing-example,
.pricing-note {
  margin-top: 1rem;
  color: var(--muted);
}

.tier-list {
  margin-top: 1rem;
  display: grid;
  gap: .65rem;
}

.tier-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 25, 32, .62);
}

.tier-list span {
  color: var(--muted);
}

.tier-list strong {
  color: var(--cream);
  white-space: nowrap;
}

.pricing-example strong,
.pricing-note strong {
  color: var(--cream);
}

.term-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.term-grid article {
  padding: 1.15rem;
  background: var(--dark-2);
}

.term-grid span,
.term-grid p {
  color: var(--muted);
}

.term-grid span {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.term-grid strong {
  display: block;
  margin-top: .35rem;
  color: var(--coral);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 500;
}

.term-grid p {
  margin-top: .35rem;
}

.cost-compare {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(17, 25, 32, .66);
}

.cost-compare-title {
  padding: .85rem 1rem;
  margin: 0;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cost-compare-row {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.cost-compare-row h3,
.cost-compare-row div {
  min-width: 0;
  padding: 1rem;
  background: rgba(17, 25, 32, .84);
}

.cost-compare-row h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.cost-compare-row span {
  display: block;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cost-compare-row p {
  margin-top: .42rem;
  color: var(--muted);
  line-height: 1.42;
}

.cost-compare-row div:last-child p {
  color: var(--cream);
}

.pricing-note {
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 122, 89, .12);
}

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(38, 52, 62, .72);
}

.faq-list summary {
  min-height: 56px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  color: var(--cream);
  font-weight: 800;
}

.faq-list p {
  padding: 0 1.2rem 1.2rem;
  max-width: 78ch;
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(226, 109, 92, .12), rgba(42, 71, 89, .38)),
    var(--dark-2);
  border-top: 1px solid var(--line);
}

.pilot-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, .74fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pilot-grid h2 {
  margin-top: 1rem;
  max-width: 13ch;
}

.pilot-grid > div > p {
  margin-top: 1rem;
  max-width: 58ch;
}

.pilot-list {
  padding-left: 1.1rem;
  max-width: 58ch;
}

.pilot-list li + li { margin-top: .45rem; }

.lead-magnet,
.founder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 25, 32, .74);
  box-shadow: var(--shadow);
}

.lead-magnet {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding: 1.25rem;
}

.resource-strip {
  gap: .85rem;
  padding: 1rem 1.1rem;
  box-shadow: none;
}

.lead-magnet h3,
.quick-entry h3 {
  margin: .35rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.16;
}

.lead-magnet p:not(.kicker) {
  margin-top: .55rem;
  color: var(--muted);
}

.resource-strip h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.resource-strip p:not(.kicker) {
  max-width: 48ch;
  font-size: .98rem;
  line-height: 1.45;
}

.resource-link {
  justify-self: start;
  min-height: 40px;
  padding-inline: 1rem;
}

.checklist-form label {
  display: block;
  margin-bottom: .35rem;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.checklist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: stretch;
}

.checklist-row .button {
  min-height: 44px;
  white-space: nowrap;
}

.checklist-iframe {
  width: 100%;
  border: 0;
  border-radius: 6px;
}

.checklist-button {
  justify-self: start;
}

.checklist-native-form {
  display: grid;
  gap: 1rem;
}

.checklist-submit {
  width: 100%;
  justify-content: center;
}

.checklist-error {
  display: none;
  padding: .75rem;
  color: #ffd6d0;
  border: 1px solid rgba(226, 109, 92, .42);
  border-radius: var(--radius);
  background: rgba(226, 109, 92, .12);
  font-size: .92rem;
}

.checklist-error.show {
  display: block;
}

.checklist-success {
  padding: 1rem;
  color: var(--cream);
  border: 1px solid rgba(111, 198, 122, .42);
  border-radius: var(--radius);
  background: rgba(111, 198, 122, .12);
}

.quick-entry {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.quick-entry-head {
  margin-bottom: -.2rem;
}

.form-timing {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-section-label {
  margin: .1rem 0 1rem;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.founder-section {
  background: linear-gradient(135deg, rgba(32, 50, 61, .58), rgba(20, 30, 38, .92));
}

.founder-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.founder-card h2 {
  max-width: 15ch;
  margin-top: .8rem;
}

.founder-copy {
  display: grid;
  gap: 1rem;
  max-width: 76ch;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.72;
}

.founder-contact {
  color: var(--cream);
  font-weight: 800;
}

.founder-contact a {
  color: inherit;
  text-decoration-color: rgba(226, 109, 92, .7);
  text-underline-offset: .2em;
}

.pilot-form {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 25, 32, .72);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label:not(.checkbox-item) {
  display: block;
  margin-bottom: .35rem;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.req { color: var(--coral); }
.label-hint {
  color: var(--subtle);
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: .68rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--cream);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder { color: rgba(182, 194, 204, .55); }
select option { background: var(--dark); }

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .85rem;
  padding: .8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--dark);
}

.checkbox-item {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  min-height: 32px;
  color: var(--muted);
  font-size: .92rem;
}

.checkbox-item input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin-top: .25rem;
  accent-color: var(--coral);
}

.pilot-submit,
.cookie-btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.pilot-submit {
  width: 100%;
  margin-top: .35rem;
  color: white;
  background: var(--coral);
}

.pilot-submit:disabled { opacity: .58; cursor: not-allowed; }

.form-privacy {
  margin-top: .8rem;
  color: var(--subtle);
  text-align: center;
  font-size: .88rem;
}

.form-error {
  display: none;
  margin-bottom: 1rem;
  padding: .8rem;
  color: #ffd6d0;
  border: 1px solid rgba(226, 109, 92, .42);
  border-radius: var(--radius);
  background: rgba(226, 109, 92, .12);
}

.form-error.show { display: block; }

.form-success {
  display: none;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 25, 32, .72);
}

.form-success.show { display: block; }

.form-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--success);
}

.footer {
  padding: 3rem var(--gutter) 2rem;
  background: var(--dark-3);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 1fr 1fr;
  gap: 2rem;
}

.footer-brand { margin-bottom: .9rem; }

.footer p {
  max-width: 42ch;
  color: var(--muted);
}

.footer nav {
  display: grid;
  gap: .45rem;
}

.footer h2 {
  margin-bottom: .3rem;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer a {
  min-height: 30px;
  color: var(--muted);
}

.footer a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 30px;
}

.social-link {
  width: 34px;
  height: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(31, 42, 51, .58);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: .7rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem var(--gutter);
  border-top: 1px solid var(--line-strong);
  background: rgba(17, 25, 32, .98);
  transform: translateY(100%);
  transition: transform 180ms ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-text {
  flex: 1;
  min-width: 220px;
  color: var(--muted);
  font-size: .9rem;
}

.cookie-banner-actions {
  display: flex;
  gap: .6rem;
}

.cookie-btn {
  padding: 0 1rem;
}

.cookie-btn-decline {
  color: var(--cream);
  border-color: var(--line-strong);
  background: transparent;
}

.cookie-btn-accept {
  color: white;
  background: var(--coral);
}

.modal-open {
  overflow: hidden;
}

.zoomable-shot {
  position: relative;
}

.zoomable-shot img {
  cursor: zoom-in;
}

.zoomable-shot::after {
  content: "View larger";
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  z-index: 2;
  padding: .38rem .55rem;
  border: 1px solid rgba(251, 245, 238, .18);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(17, 25, 32, .82);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.zoomable-shot:hover::after,
.zoomable-shot:focus-within::after {
  opacity: 1;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  background: rgba(17, 25, 32, .92);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-panel {
  width: min(96vw, 1440px);
  max-height: 92vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: .8rem;
}

.image-lightbox-close {
  justify-self: end;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--dark-2);
  font-weight: 800;
  cursor: pointer;
}

.image-lightbox img {
  width: 100%;
  max-height: calc(92vh - 112px);
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark-3);
  box-shadow: var(--shadow);
}

.image-lightbox p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 860px;
  }

  .shot-grid.three,
  .proof-grid,
  .routing-grid,
  .capability-grid,
  .security-grid,
  .beaker-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline,
  .architecture-flow,
  .route-journey,
  .beaker-callout {
    grid-template-columns: repeat(2, 1fr);
  }

  .architecture-flow div:nth-child(2)::after { display: none; }
  .route-journey div:nth-child(2)::after { display: none; }

  .pricing-cards,
  .term-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 172px; }
  [id] { scroll-margin-top: 172px; }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 14px;
    right: 1rem;
    z-index: 220;
    background: rgba(17, 25, 32, .5);
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .brand-product {
    display: none;
  }

  .nav-shell {
    position: relative;
    padding-right: calc(var(--gutter) + 58px);
    max-width: 100%;
  }

  .hero-metrics,
  .proof-strip,
  .section-head,
  .shot-grid.two,
  .shot-grid.three,
  .proof-grid,
  .routing-grid,
  .capability-grid,
  .security-grid,
  .answer-grid,
  .beaker-checklist,
  .beaker-callout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head .kicker,
  .section-head h2,
  .section-head p {
    grid-column: 1;
    grid-row: auto;
  }

  .proof-strip {
    padding-bottom: 0;
  }

  .proof-strip div {
    min-height: auto;
  }

  .tier-list div {
    display: grid;
  }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 188px; }
  [id] { scroll-margin-top: 188px; }

  body { font-size: 16px; }

  .hero {
    padding-top: 2.75rem;
  }

  h1 {
    max-width: 8.7ch;
    font-size: clamp(2.5rem, 10vw, 3rem);
    line-height: 1.08;
  }

  h2 {
    max-width: 13ch;
  }

  .hero-actions,
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .checklist-row {
    grid-template-columns: 1fr;
  }

  .lead-magnet,
  .pilot-form,
  .founder-card {
    padding: 1.15rem;
  }

  .founder-card h2 {
    max-width: 12ch;
  }

  .timeline,
  .architecture-flow,
  .route-journey,
  .form-row,
  .checkbox-group,
  .term-grid {
    grid-template-columns: 1fr;
  }

  .architecture-flow div::after {
    display: none;
  }

  .route-journey div::after {
    display: none;
  }

  .hero-copy,
  .hero-lead,
  .pilot-grid > div > p,
  .section-head p {
    max-width: calc(100vw - (2 * var(--gutter)));
    overflow-wrap: anywhere;
  }

  .cookie-banner-text {
    max-width: calc(100vw - (2 * var(--gutter)));
    overflow-wrap: anywhere;
  }

  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: calc(.75rem + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    padding: .8rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .cookie-btn {
    min-height: 42px;
    width: auto;
    padding: 0 .75rem;
    font-size: .9rem;
  }

  .eyebrow,
  .kicker {
    width: auto;
    align-items: flex-start;
    gap: .5rem;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: .62rem;
    letter-spacing: .12em;
  }

  .eyebrow::before,
  .kicker::before {
    margin-top: .25rem;
    flex: 0 0 auto;
  }

  .nav-shell {
    min-width: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    white-space: nowrap;
  }

  .hero-panel {
    max-width: calc(100vw - (2 * var(--gutter)));
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .shot figcaption,
  .wide-shot figcaption {
    font-size: .62rem;
  }

  .wide-shot,
  .shot {
    max-width: calc(100vw - (2 * var(--gutter)));
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .cost-compare-row {
    display: block;
    background: transparent;
  }

  .cost-compare-title {
    padding: .95rem 1rem;
    font-size: .7rem;
    letter-spacing: .09em;
    line-height: 1.45;
  }

  .cost-compare-row h3,
  .cost-compare-row div {
    padding: 0;
    background: transparent;
  }

  .cost-compare-row {
    padding: 1rem;
  }

  .cost-compare-row h3 {
    font-size: 1.08rem;
  }

  .cost-compare-row div {
    margin-top: .82rem;
  }

  .cost-compare-row p {
    margin-top: .28rem;
    font-size: .98rem;
  }

  .zoomable-shot::after {
    display: none;
  }
}

/* Beaker validation landing page */
.beaker-page .beaker-hero h1 {
  max-width: 12.4ch;
}

.beaker-page .beaker-hero .hero-lead {
  max-width: 680px;
}

.beaker-checklist {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.beaker-checklist article {
  min-height: 210px;
  padding: 1.35rem;
  background: rgba(38, 52, 62, .82);
}

.beaker-checklist span {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--coral);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.beaker-checklist p,
.beaker-callout p,
.page-cta p,
.legal-note p {
  margin-top: .55rem;
  color: var(--muted);
  line-height: 1.55;
}

.beaker-evidence-shot {
  margin-top: 1.2rem;
}

.beaker-callout,
.page-cta,
.legal-note {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(38, 52, 62, .82);
}

.beaker-callout {
  margin-top: 1.2rem;
  padding: 1.45rem;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(220px, .22fr);
  gap: 1.2rem;
  align-items: end;
}

.beaker-callout > p {
  grid-column: 1;
  max-width: 780px;
}

.beaker-callout .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  white-space: nowrap;
}

.beaker-callout h2,
.page-cta h2 {
  max-width: 15ch;
}

.page-cta {
  padding: clamp(1.45rem, 4vw, 2rem);
  display: grid;
  gap: .95rem;
  justify-items: start;
}

.page-cta p {
  max-width: 820px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.legal-note {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  background: rgba(17, 25, 32, .72);
}

.legal-note p {
  margin-top: 0;
  font-size: .9rem;
}

@media (max-width: 1060px) {
  .beaker-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .beaker-callout > p,
  .beaker-callout .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .beaker-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .beaker-page .beaker-hero h1,
  .beaker-callout h2,
  .page-cta h2 {
    max-width: calc(100vw - (2 * var(--gutter)));
  }

  .beaker-checklist article {
    min-height: auto;
  }

  .page-cta,
  .legal-note {
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .legal-note {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 620px) {
  .beaker-page .hero-grid,
  .beaker-page .hero-copy,
  .beaker-page .hero-actions,
  .beaker-page .hero-metrics {
    width: 100%;
    max-width: calc(100vw - (2 * var(--gutter)));
    min-width: 0;
  }

  .beaker-page .beaker-hero h1 {
    font-size: 2.3rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .beaker-page .hero-lead,
  .beaker-page .button,
  .beaker-page .proof-strip span,
  .beaker-page .proof-strip strong {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .beaker-page .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .beaker-page .beaker-hero h1 {
    max-width: 13.2ch;
  }

  .beaker-page .hero-lead {
    max-width: 31ch;
  }
}

@media (max-width: 820px) {
  .beaker-page .beaker-hero h1 {
    max-width: 13.2ch;
  }

  .beaker-page .hero-lead {
    max-width: 31ch;
  }
}

@media (max-width: 620px) {
  .alternative-page .hero-grid,
  .alternative-page .hero-copy,
  .alternative-page .hero-actions {
    width: 100%;
    max-width: calc(100vw - (2 * var(--gutter)));
    min-width: 0;
  }

  .alternative-page .hero-panel {
    max-width: calc(100vw - (2 * var(--gutter)));
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .alternative-page .hero-panel img {
    width: 100%;
  }

  .beaker-page .hero-panel,
  .beaker-page .wide-shot,
  .beaker-page .shot {
    max-width: calc(100vw - (2 * var(--gutter)));
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .beaker-page .hero-panel img,
  .beaker-page .wide-shot img,
  .beaker-page .shot img {
    width: 100%;
  }
}
