@font-face {
  font-family: "Geist";
  src: url("/assets/generace-geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("/assets/generace-geist-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color: #071a2d;
  background: #f5f8fa;
  font-family: "Geist", Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --navy: #071a2d;
  --navy-soft: #0a1c31;
  --navy-line: #1b3b55;
  --paper: #f5f8fa;
  --white: #ffffff;
  --red: #ce202f;
  --red-bright: #e21f32;
  --cyan: #21b7dd;
  --ink-muted: #637483;
  --line: #dce5ea;
  --shell: 1387px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-canvas {
  overflow: hidden;
}

.intro-sequence {
  display: none;
}

.motion-ready .intro-sequence {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 130;
  overflow: hidden;
  pointer-events: none;
  animation: intro-sequence-hide 10ms 2.05s both;
}

.intro-panel {
  width: 51%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: #03111f;
}

.intro-panel-left {
  left: 0;
  animation: intro-panel-left 0.82s 1.32s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.intro-panel-right {
  right: 0;
  animation: intro-panel-right 0.82s 1.32s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.intro-brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 0 16px;
  position: relative;
  z-index: 3;
  color: var(--white);
  animation: intro-brand 1.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.intro-brand b {
  font-size: clamp(64px, 12vw, 170px);
  font-weight: 820;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.intro-brand i {
  color: var(--cyan);
  font-size: clamp(19px, 3vw, 42px);
  font-style: normal;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.intro-brand small {
  grid-column: 1 / -1;
  margin-top: 24px;
  color: #819bae;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.24em;
}

.intro-line {
  width: min(720px, 72vw);
  height: 1px;
  position: absolute;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--red), var(--cyan), transparent);
  animation: intro-line 1.25s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes intro-brand {
  0% {
    opacity: 0;
    filter: blur(22px);
    transform: scale(1.38);
  }
  48%,
  78% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.88);
  }
}

@keyframes intro-line {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  52% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes intro-panel-left {
  to {
    transform: translateX(-101%);
  }
}

@keyframes intro-panel-right {
  to {
    transform: translateX(101%);
  }
}

@keyframes intro-sequence-hide {
  to {
    visibility: hidden;
  }
}

.hero-shell,
.common-section,
.contact-section {
  color: var(--white);
  background-color: var(--navy);
  background-image: url("/assets/generace-hero-technical-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.site-header {
  width: min(var(--shell), calc(100% - 88px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(219, 232, 241, 0.17);
  position: relative;
  z-index: 20;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  box-shadow: 5px 5px 0 rgba(74, 90, 104, 0.72);
  font-size: 25px;
  line-height: 1;
  font-weight: 850;
}

.brand-name {
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-name sup {
  margin-left: 2px;
  position: relative;
  top: -0.28em;
  font-size: 9px;
  vertical-align: baseline;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.3);
}

.brand-tagline {
  color: #8da1b2;
  font-size: 13px;
  font-weight: 670;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 50px);
}

.main-nav a,
.main-nav button {
  appearance: none;
  padding: 10px 0;
  color: #edf4f7;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 610;
  transition: color 170ms ease;
}

.main-nav a:hover,
.main-nav button:hover,
.main-nav a:focus-visible,
.main-nav button:focus-visible {
  color: var(--cyan);
}

.main-nav .nav-contact {
  min-width: 124px;
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.main-nav .nav-contact:hover,
.main-nav .nav-contact:focus-visible {
  color: var(--white);
  border-color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

@media (min-width: 981px) {
  .site-header .brand,
  .site-header .main-nav {
    transform: translateY(7px);
  }
}

.hero {
  position: relative;
}

.hero-inner {
  width: min(var(--shell), calc(100% - 88px));
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(610px, 1.05fr);
  align-items: center;
  gap: 28px;
  position: relative;
}

.hero-copy {
  max-width: 660px;
  padding: 54px 0 48px;
  position: relative;
  top: 17px;
  z-index: 5;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 790;
  letter-spacing: 0.145em;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  margin-right: 17px;
  display: inline-block;
  vertical-align: 0.27em;
  background: currentColor;
}

.eyebrow-dark {
  color: #f13a49;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(57px, 5.2vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 450px;
  margin: 30px 0 0;
  color: #a8bac8;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
  position: relative;
  top: 5px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 720;
  transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.generation-band:focus-visible,
.generation-row:focus-visible,
.option:has(input:focus-visible),
.faq-item button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--red-bright);
  box-shadow: 7px 7px 0 rgba(111, 14, 27, 0.34);
}

.button-primary:hover {
  background: #f0273c;
}

.button-link {
  min-height: 48px;
  padding: 0 0 2px;
  color: var(--white);
  background: transparent;
  border-bottom: 2px solid var(--cyan);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-product {
  min-width: 0;
  height: 590px;
  position: relative;
}

.app-screenshot {
  overflow: hidden;
  position: relative;
  background: #dfe8ee;
}

.app-screenshot img {
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  object-position: center;
  user-select: none;
}

.hero-screenshot {
  width: 660px;
  height: auto;
  aspect-ratio: 64 / 35;
  position: absolute;
  top: 61px;
  right: -132px;
  border: 1px solid rgba(216, 230, 239, 0.46);
  box-shadow: 0 10px 24px rgba(0, 7, 13, 0.38), 0 38px 64px rgba(0, 7, 13, 0.62);
}

.generation-path {
  width: 236px;
  display: grid;
  gap: 27px;
  position: absolute;
  left: 0;
  top: 225px;
  z-index: 4;
}

.generation-path::before {
  content: "";
  width: 1px;
  height: 214px;
  position: absolute;
  left: -43px;
  top: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.generation-band {
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  color: var(--white);
  background: var(--generation-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 5, 12, 0.22);
  cursor: pointer;
  text-align: left;
  opacity: 0.84;
  transition: opacity 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.generation-band::before {
  content: "";
  width: 44px;
  height: 1px;
  position: absolute;
  left: -44px;
  top: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.generation-band::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: -49px;
  top: calc(50% - 5px);
  background: var(--generation-color);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.generation-band.is-active {
  opacity: 1;
  box-shadow: 0 13px 30px rgba(0, 5, 12, 0.35);
}

.generation-band:hover {
  opacity: 1;
  transform: translateX(4px);
}

.generation-band span {
  font-size: 18px;
  font-weight: 780;
  white-space: nowrap;
}

.generation-band small {
  font-size: 14px;
  font-weight: 560;
  white-space: nowrap;
}

.decision-strip {
  min-height: 282px;
  padding: 44px max(44px, calc((100% - var(--shell)) / 2)) 39px;
  background: var(--paper);
}

.decision-strip h2,
.section-heading h2,
.system-heading h2,
.common-section h2,
.faq-intro h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(38px, 3.35vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 740;
}

.decision-strip .eyebrow {
  margin-bottom: 18px;
}

.criteria-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
}

.criterion {
  min-height: 78px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 19px;
  border-right: 1px solid #aebfca;
}

.criterion:first-child {
  padding-left: 0;
}

.criterion-number {
  color: var(--red);
  font-size: 35px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.criterion:nth-child(2) .criterion-number {
  color: var(--cyan);
}

.criterion:nth-child(3) .criterion-number {
  color: #1783c7;
}

.criterion h3 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 740;
}

.criterion p {
  max-width: 230px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.42;
}

.criteria-action {
  margin-left: 35px;
  position: relative;
  top: 15px;
  box-shadow: none;
}

.trust-strip {
  min-height: 107px;
  padding: 18px max(44px, calc((100% - var(--shell)) / 2));
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid var(--navy-line);
  font-size: 18px;
}

.trust-line {
  width: 58px;
  height: 2px;
  margin-right: 22px;
  background: var(--red);
}

.trust-strip strong {
  font-size: 19px;
}

.trust-strip span:last-child {
  color: #afc0cc;
}

.section-shell {
  width: min(var(--shell), calc(100% - 88px));
  margin: 0 auto;
}

.finder-section {
  padding: 108px 0 120px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading > p,
.finder-heading > p,
.system-heading > p {
  margin: 0 0 3px;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
}

.finder-questions {
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.finder-question {
  margin: 0;
  padding: 30px 0;
  display: grid;
  grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1.26fr);
  gap: 50px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.finder-question legend {
  padding: 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
}

.finder-question legend > span {
  color: var(--cyan);
  font-size: 28px;
  font-weight: 760;
}

.finder-question:first-child legend > span {
  color: var(--red);
}

.finder-question legend strong {
  font-size: 18px;
}

.finder-question legend small {
  grid-column: 2;
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.45;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.option {
  min-height: 46px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #425463;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 14px;
  font-weight: 630;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.option:hover,
.option.is-selected {
  color: var(--navy);
  background: var(--white);
  border-color: var(--cyan);
}

.option input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.option-check {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--white);
  border: 1px solid #9eafba;
}

.option.is-selected .option-check {
  background: var(--cyan);
  border-color: var(--cyan);
}

.recommendation {
  min-height: 112px;
  margin-top: 38px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  background: var(--paper);
  border: 1px solid var(--line);
}

.recommendation.is-ready {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: initial;
  gap: 30px;
  color: var(--navy);
  border-color: #9dc9d7;
}

.recommendation-code {
  width: 96px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--generation-color);
  font-size: 22px;
  font-weight: 800;
}

.recommendation-copy .eyebrow {
  margin-bottom: 7px;
  font-size: 10px;
}

.recommendation-copy .eyebrow::before {
  display: none;
}

.recommendation-copy h3 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.recommendation-copy p:last-child {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.generations-section {
  padding: 118px 0 130px;
  background: var(--paper);
}

.generation-browser {
  margin-top: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
  gap: 68px;
}

.generation-list {
  border-top: 1px solid #9fb1be;
}

.generation-row {
  width: 100%;
  min-height: 89px;
  padding: 0 14px 0 0;
  display: grid;
  grid-template-columns: 56px 105px 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9fb1be;
  cursor: pointer;
  text-align: left;
  transition: padding 170ms ease, background-color 170ms ease;
}

.generation-row:hover,
.generation-row.is-active {
  padding-left: 18px;
  background: var(--white);
}

.generation-index {
  color: #7d909f;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.generation-label {
  font-size: 26px;
  font-weight: 800;
}

.generation-audience {
  color: #485b6a;
  font-size: 16px;
  font-weight: 620;
}

.generation-detail {
  padding: 46px 48px;
  align-self: stretch;
  background: var(--white);
  border-top: 4px solid var(--generation-color);
  box-shadow: 0 22px 55px rgba(10, 28, 49, 0.08);
}

.generation-detail .eyebrow {
  margin-bottom: 20px;
  color: var(--generation-color);
}

.generation-detail h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.generation-detail > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
}

.generation-detail ul {
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.generation-detail li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 620;
}

.generation-detail li svg {
  color: var(--generation-color);
}

.system-section {
  padding: 116px 0 0;
  color: var(--white);
  background: #0a1c31;
}

.system-heading {
  margin-bottom: 60px;
}

.system-heading > p {
  color: #a8bac8;
}

.system-screenshot {
  width: 1000px;
  height: auto;
  aspect-ratio: 64 / 35;
  margin: 0 auto;
  border: 1px solid #6e8a9e;
  box-shadow: 0 12px 26px rgba(0, 5, 12, 0.42), 0 44px 82px rgba(0, 5, 12, 0.68);
}

.system-captions {
  margin: 0 auto;
  width: 1000px;
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-left: 1px solid var(--navy-line);
  border-right: 1px solid var(--navy-line);
}

.system-captions span {
  padding: 0 22px;
  color: #b7c6d0;
  border-right: 1px solid var(--navy-line);
  text-align: center;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.system-captions span:last-child {
  border-right: 0;
}

.common-section {
  padding: 116px 0 126px;
  background-position: center center;
}

.common-section h2 {
  max-width: 720px;
}

.common-list {
  margin-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.common-list article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.common-list article > span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.common-list article:first-child > span {
  color: var(--red-bright);
}

.common-list h3 {
  margin: 0;
  font-size: 22px;
}

.common-list p {
  max-width: 760px;
  margin: 0;
  color: #aebfcb;
  font-size: 16px;
  line-height: 1.55;
}

.faq-section {
  padding: 124px 0 132px;
  background: var(--paper);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.63fr) minmax(520px, 1.37fr);
  gap: 100px;
}

.faq-intro h2 {
  max-width: 400px;
}

.faq-intro > p:last-child {
  max-width: 390px;
  margin: 26px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid #9fb1be;
}

.faq-item {
  border-bottom: 1px solid #9fb1be;
}

.faq-item button {
  width: 100%;
  min-height: 80px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 710;
}

.faq-item button svg {
  flex: 0 0 auto;
  color: var(--cyan);
  transition: transform 190ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 42px 28px 8px;
}

.contact-section {
  padding: 120px 0 110px;
  background-position: center bottom;
}

.contact-inner {
  width: min(940px, calc(100% - 88px));
  margin: 0 auto;
  text-align: center;
}

.contact-section .eyebrow::before {
  display: none;
}

.contact-section h2 {
  font-size: clamp(48px, 4.5vw, 72px);
}

.contact-section .reveal > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px auto 0;
  color: #b5c5d0;
  font-size: 18px;
  line-height: 1.65;
}

.contact-actions {
  justify-content: center;
}

.contact-details {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dce7ed;
  font-weight: 620;
}

.contact-details svg {
  color: var(--cyan);
}

.site-footer {
  min-height: 148px;
  padding: 34px max(44px, calc((100% - var(--shell)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
  color: #9fb1be;
  background: #041321;
  border-top: 1px solid var(--navy-line);
}

.site-footer .brand img {
  width: 42px;
  height: 42px;
}

.site-footer .brand-divider,
.site-footer .brand-tagline {
  display: none;
}

.site-footer p,
.site-footer small {
  margin: 0;
  font-size: 13px;
}

.site-footer > div {
  display: flex;
  gap: 24px;
}

.site-footer > div a {
  color: #d5e0e6;
  font-size: 13px;
  font-weight: 620;
}

.site-footer > div a:hover {
  color: var(--cyan);
}

.motion-ready [data-reveal]:where(:not([data-reveal="hero"]):not([data-reveal="stagger"]):not([data-reveal="preview"])) {
  opacity: 0;
  filter: blur(12px);
  will-change: opacity, filter, transform;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(82px) scale(0.94);
}

.motion-ready [data-reveal="left"] {
  transform: translateX(-120px) scale(0.94);
}

.motion-ready [data-reveal="right"] {
  transform: translateX(120px) scale(0.94);
}

.motion-ready [data-reveal="down"] {
  transform: translateY(-68px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}

.motion-ready [data-reveal="hero"],
.motion-ready [data-reveal="stagger"] {
  opacity: 1;
}

.motion-ready [data-reveal="hero"] > *,
.motion-ready [data-reveal="stagger"] > * {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(86px) scale(0.94);
}

.motion-ready [data-reveal="hero"].is-visible > *,
.motion-ready [data-reveal="stagger"].is-visible > * {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(2),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(2) {
  transition-delay: 0.15s;
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(3),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(3) {
  transition-delay: 0.3s;
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(4),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(4) {
  transition-delay: 0.45s;
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(5),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(5) {
  transition-delay: 0.6s;
}

.motion-ready .hero-copy.is-visible {
  opacity: var(--hero-copy-opacity, 1);
  transform: translate3d(0, var(--hero-copy-shift, 0), 0);
  will-change: opacity, transform;
  transition: opacity 80ms linear, transform 80ms linear;
}

@media (max-width: 1220px) {
  .site-header,
  .hero-inner,
  .section-shell {
    width: min(100% - 54px, 1160px);
  }

  .site-header {
    height: 82px;
  }

  .brand-tagline {
    display: none;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-inner {
    min-height: 580px;
    grid-template-columns: minmax(470px, 0.92fr) minmax(500px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(54px, 5vw, 67px);
  }

  .hero-screenshot {
    width: 600px;
    right: -155px;
  }

  .generation-path {
    left: -110px;
  }

  .decision-strip {
    padding-inline: 27px;
  }

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

  .criteria-action {
    margin: 28px 0 0;
    grid-column: 3;
    justify-self: end;
  }

  .system-screenshot,
  .system-captions {
    width: min(100%, 1000px);
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }

  .site-footer small {
    grid-column: 3;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    height: 76px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    width: min(430px, calc(100vw - 54px));
    padding: 22px;
    display: none;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 68px;
    right: 0;
    z-index: 30;
    background: #0b2238;
    border: 1px solid #38536a;
    box-shadow: 0 24px 45px rgba(0, 7, 13, 0.45);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a,
  .main-nav button {
    min-height: 50px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2b4559;
  }

  .main-nav .nav-contact {
    margin-top: 16px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
  }

  .hero-inner {
    padding: 40px 0 0;
    display: block;
  }

  .hero-copy {
    max-width: 720px;
    padding: 24px 0 52px;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 76px);
  }

  .hero-product {
    height: 530px;
  }

  .hero-screenshot {
    width: 650px;
    top: 20px;
    right: -65px;
  }

  .generation-path {
    left: 15px;
    top: 142px;
  }

  .decision-strip {
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .criterion {
    min-height: 92px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #aebfca;
  }

  .criteria-action {
    width: 100%;
    margin-top: 28px;
    top: 0;
    grid-column: auto;
    justify-self: stretch;
  }

  .trust-strip {
    padding-inline: 27px;
    flex-wrap: wrap;
  }

  .trust-line {
    width: 38px;
    margin-right: 10px;
  }

  .section-heading,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .finder-question {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .option-row {
    justify-content: flex-start;
  }

  .recommendation.is-ready {
    grid-template-columns: auto 1fr;
  }

  .recommendation.is-ready .button {
    grid-column: 2;
    justify-self: start;
  }

  .generation-browser {
    grid-template-columns: 1fr;
  }

  .generation-detail {
    min-height: 420px;
  }

  .system-captions {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-captions span:nth-child(2) {
    border-right: 0;
  }

  .system-captions span:nth-child(-n + 2) {
    padding-block: 18px;
    border-bottom: 1px solid var(--navy-line);
  }

  .common-list article {
    grid-template-columns: 70px 220px 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer small {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-inner,
  .section-shell {
    width: calc(100% - 36px);
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-divider,
  .brand-tagline {
    display: none;
  }

  .hero-inner {
    padding-top: 26px;
  }

  .hero-copy {
    padding-bottom: 38px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
  }

  .eyebrow::before {
    width: 24px;
    margin-right: 10px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .button-link {
    width: fit-content;
  }

  .hero-product {
    height: 590px;
  }

  .hero-screenshot {
    width: 430px;
    top: 28px;
    right: -86px;
  }

  .generation-path {
    width: calc(100% - 14px);
    left: 7px;
    top: 380px;
    gap: 7px;
  }

  .generation-path::before,
  .generation-band::before,
  .generation-band::after {
    display: none;
  }

  .generation-band {
    width: 100%;
  }

  .generation-band:hover,
  .generation-band.is-active {
    transform: translateX(5px);
  }

  .decision-strip {
    padding: 64px 18px;
  }

  .decision-strip h2,
  .section-heading h2,
  .system-heading h2,
  .common-section h2,
  .faq-intro h2,
  .contact-section h2 {
    font-size: 38px;
  }

  .trust-strip {
    padding: 22px 18px;
    gap: 5px;
    font-size: 15px;
  }

  .trust-line {
    display: none;
  }

  .trust-strip strong,
  .trust-strip span:last-child {
    width: 100%;
  }

  .finder-section,
  .generations-section,
  .faq-section {
    padding: 82px 0 90px;
  }

  .finder-questions {
    margin-top: 42px;
  }

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

  .recommendation,
  .recommendation.is-ready {
    padding: 24px;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  .recommendation.is-ready .button {
    grid-column: auto;
  }

  .generation-browser {
    margin-top: 46px;
    gap: 38px;
  }

  .generation-row {
    min-height: 102px;
    grid-template-columns: 40px 88px 1fr auto;
    gap: 9px;
  }

  .generation-label {
    font-size: 22px;
  }

  .generation-audience {
    font-size: 14px;
  }

  .generation-detail {
    min-height: auto;
    padding: 34px 26px;
  }

  .generation-detail h3 {
    font-size: 31px;
  }

  .system-section {
    padding-top: 82px;
  }

  .system-captions {
    grid-template-columns: 1fr;
  }

  .system-captions span {
    min-height: 52px;
    display: grid;
    place-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--navy-line);
  }

  .common-section,
  .contact-section {
    padding: 84px 0 92px;
  }

  .common-list {
    margin-top: 46px;
  }

  .common-list article {
    padding: 28px 0;
    grid-template-columns: 45px 1fr;
    align-items: start;
    gap: 4px 10px;
  }

  .common-list p {
    grid-column: 2;
  }

  .faq-shell {
    gap: 50px;
  }

  .faq-item button {
    font-size: 16px;
  }

  .contact-inner {
    width: calc(100% - 36px);
  }

  .contact-details {
    align-items: center;
    flex-direction: column;
  }

  .site-footer {
    padding: 40px 18px;
  }

  .site-footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

  html:not(.motion-force) *,
  html:not(.motion-force) *::before,
  html:not(.motion-force) *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html:not(.motion-force) [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
