:root {
  --carbon: #071013;
  --carbon-soft: #0d191d;
  --ink: #0b171a;
  --paper: #f4f7f5;
  --paper-soft: #e9efec;
  --white: #ffffff;
  --signal: #55f6d1;
  --signal-deep: #19cfa9;
  --signal-ink: #087e68;
  --blue: #65bdfb;
  --warm: #e8ae69;
  --muted: #637176;
  --line: rgba(11, 23, 26, 0.14);
  --shell: min(1180px, calc(100% - 64px));
  --hero-shift: 0px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

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

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

svg,
img {
  display: block;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-150%);
}

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(244, 247, 245, 0.9);
  box-shadow: 0 1px 0 rgba(11, 23, 26, 0.1);
  color: var(--ink);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: var(--shell);
  min-height: 82px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-header[data-brand-switch] .brand-mark-inverted {
  display: none;
}

.site-header[data-brand-switch]:not(.is-scrolled) .brand-mark-normal {
  display: none;
}

.site-header[data-brand-switch]:not(.is-scrolled) .brand-mark-inverted {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: clamp(28px, 4vw, 56px);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  transition: opacity 160ms ease;
}

.site-nav a:hover {
  opacity: 0.55;
}

.header-tools {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  color: inherit;
  cursor: pointer;
}

.language-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.language-select {
  min-height: 38px;
  padding: 0 18px 0 0;
  border: 0;
  outline: none;
  appearance: none;
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 7px) 16px, calc(100% - 3px) 16px;
  background-size: 4px 4px;
  background-repeat: no-repeat;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}

.language-select:focus-visible {
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(85, 246, 209, 0.16);
}

.signal-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(85, 246, 209, 0.13);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--carbon);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  inset: -56px -26px;
  background: url("assets/tesnetic-hero.webp") center calc(50% + var(--hero-shift)) / cover no-repeat;
  transform: scale(1.045);
  animation: image-enter 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 13, 18, 0.96) 0%, rgba(5, 15, 20, 0.86) 34%, rgba(5, 14, 18, 0.26) 68%, rgba(4, 12, 16, 0.12) 100%),
    linear-gradient(180deg, rgba(4, 12, 16, 0.5) 0%, transparent 34%, rgba(4, 12, 16, 0.7) 100%);
}

.hero-inner {
  display: flex;
  align-items: center;
  width: var(--shell);
  min-height: 100svh;
  margin-inline: auto;
  padding: 124px 0 128px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  animation: copy-enter 900ms 160ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-brand {
  margin-bottom: 13px;
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: -0.078em;
}

.hero-kicker,
.eyebrow,
.moment-index,
.visual-kicker,
.trace-label {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 44px;
  color: var(--signal);
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.3vw, 72px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 565px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--signal);
  box-shadow: 0 18px 46px rgba(18, 235, 188, 0.19);
  color: #031310;
}

.text-link {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--signal);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-trace {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 3;
  color: rgba(255, 255, 255, 0.56);
  opacity: 0;
  animation: trace-enter 700ms 900ms ease forwards;
}

.trace-label {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  bottom: 25px;
}

.hero-trace svg {
  width: 100%;
  height: 70px;
}

.hero-trace path {
  fill: none;
  stroke: rgba(85, 246, 209, 0.36);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.scroll-cue {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 48px;
  z-index: 4;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.scroll-cue span {
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(45deg);
  animation: cue 1.8s ease-in-out infinite;
}

.eyebrow {
  margin-bottom: 25px;
  color: var(--signal-deep);
}

.moment h2,
.timeline-heading h2,
.trust h2,
.status h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.062em;
}

.moment {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
  min-height: 820px;
  padding-top: 96px;
  padding-bottom: 96px;
  border-top: 1px solid var(--line);
}

.moment-copy {
  max-width: 505px;
}

.moment-index {
  margin-bottom: 28px;
  color: var(--signal-deep);
}

.moment-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.order-record {
  display: block;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.timeline-heading {
  margin: 0;
}

.timeline-heading h2 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 94px);
}

.timeline-description {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.order-timeline {
  margin-top: clamp(76px, 10vw, 118px);
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-track::before {
  position: absolute;
  top: 12px;
  right: 26.25%;
  left: 1.25%;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline-track::after {
  position: absolute;
  top: 12px;
  right: 1.25%;
  left: 73.75%;
  border-top: 1px dashed var(--muted);
  content: "";
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.timeline-step:first-child {
  justify-items: start;
  text-align: left;
}

.timeline-step:last-child {
  justify-items: end;
  text-align: right;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: #bd241b;
  box-shadow: 0 0 0 1px rgba(189, 36, 27, 0.12), 0 0 0 12px rgba(189, 36, 27, 0.045);
}

.timeline-label {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* The timeline becomes a vertical record on narrow screens. */
@media (max-width: 640px) {
  .timeline-track {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 22px;
  }

  .timeline-track::before {
    top: 12px;
    right: auto;
    bottom: 25%;
    left: 11px;
    width: 1px;
    height: auto;
  }

  .timeline-track::after {
    top: 75%;
    right: auto;
    bottom: 12px;
    left: 11px;
    width: 1px;
    height: auto;
    border-top: 0;
    border-left: 1px dashed var(--muted);
  }

  .timeline-step,
  .timeline-step:first-child,
  .timeline-step:last-child {
    display: block;
    text-align: left;
  }

  .timeline-dot {
    position: absolute;
    top: 0;
    left: -22px;
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .timeline-label {
    display: block;
  }
}

.moment-drive {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--carbon);
  color: var(--white);
}

.moment-drive::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, transparent 5%, black 58%, transparent);
  mask-image: linear-gradient(90deg, transparent 5%, black 58%, transparent);
}

.drive-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(70px, 8vw, 120px);
  min-height: 940px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.moment-copy-light .moment-index {
  color: var(--signal);
}

.moment-copy-light > p:last-child {
  color: rgba(255, 255, 255, 0.63);
}

.signal-board {
  position: relative;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.signal-summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.signal-summary p:first-child {
  margin-bottom: 0;
}

.signal-summary span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-summary strong {
  font-size: 17px;
}

.signal-live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
}

.signal-chart {
  margin: 36px 0 4px;
}

.signal-chart svg {
  width: 100%;
  height: 260px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-fill {
  fill: url(#signalFill);
}

.chart-line {
  fill: none;
  stroke: var(--signal);
  stroke-linecap: round;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

.signal-board.is-visible .chart-line {
  animation: draw-line 1.8s 180ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.signal-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-metrics div {
  padding: 20px 18px 24px 0;
}

.signal-metrics div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-metrics dt {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-metrics dd {
  margin-bottom: 0;
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 560;
  letter-spacing: -0.045em;
}

.signal-metrics small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: -31px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moment-charge {
  grid-template-columns: minmax(480px, 1.16fr) minmax(0, 0.84fr);
}

.charge-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(35px, 5vw, 72px);
  padding: 54px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.charge-ring {
  display: grid;
  width: min(280px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--paper) 0 60%, transparent 60.7%),
    conic-gradient(var(--signal-deep) 0 76%, rgba(11, 23, 26, 0.1) 76% 100%);
  text-align: center;
  place-content: center;
}

.charge-ring span {
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 560;
  letter-spacing: -0.07em;
}

.charge-ring small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.charge-details {
  border-top: 1px solid var(--line);
}

.charge-details p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.charge-details span {
  color: var(--muted);
  font-size: 12px;
}

.charge-details strong {
  font-size: 13px;
}

.trust {
  padding: clamp(120px, 14vw, 190px) 0;
  background: var(--paper-soft);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.85fr);
  gap: clamp(80px, 12vw, 175px);
}

.trust-heading {
  max-width: 650px;
}

.trust-copy > p {
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.trust-points {
  margin: 0;
  border-top: 1px solid var(--line);
}

.trust-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.trust-points dt {
  color: var(--signal-deep);
  font-size: 10px;
  font-weight: 850;
}

.trust-points dd {
  margin-bottom: 0;
}

.trust-points strong,
.trust-points span {
  display: block;
}

.trust-points strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.trust-points span {
  color: var(--muted);
  font-size: 12px;
}

.status {
  position: relative;
  overflow: hidden;
  padding: clamp(130px, 17vw, 230px) 0;
  background: var(--carbon);
  color: var(--white);
}

.status-glow {
  position: absolute;
  top: 50%;
  left: 70%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(85, 246, 209, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(85, 246, 209, 0.03),
    0 0 0 180px rgba(85, 246, 209, 0.02);
  transform: translate(-50%, -50%);
}

.status-inner {
  position: relative;
  max-width: 940px;
}

.eyebrow-light {
  color: var(--signal);
}

.status h2 {
  max-width: 900px;
}

.status-inner > p:not(.eyebrow) {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 18px;
}

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

.button-secondary:hover {
  border-color: var(--signal);
  background: rgba(85, 246, 209, 0.06);
}

.site-footer {
  padding: 44px 0;
  background: #03090b;
  color: rgba(255, 255, 255, 0.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  color: var(--white);
  font-size: 19px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
}

.footer-inner > p {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1.6;
}

.footer-inner > p:last-child {
  justify-self: end;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.callback-page,
.not-found-page {
  display: grid;
  min-height: 100svh;
  padding: 36px;
  background: var(--carbon);
  color: var(--white);
  place-items: center;
}

.callback-shell {
  width: min(660px, 100%);
  text-align: center;
}

.callback-shell .brand {
  justify-content: center;
  margin-bottom: 78px;
}

.callback-language {
  margin-top: -56px;
  margin-bottom: 54px;
}

.callback-pulse {
  width: 74px;
  height: 74px;
  margin: 0 auto 34px;
  border: 1px solid rgba(85, 246, 209, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(85, 246, 209, 0.04), 0 0 0 34px rgba(85, 246, 209, 0.02);
}

.callback-shell h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}

.callback-shell > p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.65;
}

@keyframes image-enter {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.045); }
}

@keyframes copy-enter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes trace-enter {
  from { opacity: 0; transform: translateX(-3%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes cue {
  0%, 100% { opacity: 0.4; transform: translateY(-3px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(4px) rotate(45deg); }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 44px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 13, 18, 0.95) 0%, rgba(5, 15, 20, 0.78) 56%, rgba(5, 14, 18, 0.26) 100%),
      linear-gradient(180deg, rgba(4, 12, 16, 0.44), transparent 35%, rgba(4, 12, 16, 0.78));
  }

  .moment,
  .moment-charge,
  .drive-inner,
  .trust-inner {
    gap: 70px;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .moment-copy {
    max-width: 650px;
  }

  .drive-inner {
    gap: 80px;
    min-height: auto;
  }

  .signal-board {
    width: 100%;
  }

  .moment-charge .charge-visual {
    grid-row: 2;
  }

  .trust-inner {
    gap: 50px;
  }

  .trust-copy {
    max-width: 640px;
  }

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

  .footer-inner > p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-image {
    background-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 13, 18, 0.75) 0%, rgba(4, 13, 18, 0.55) 33%, rgba(4, 13, 18, 0.9) 72%, rgba(4, 13, 18, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 13, 18, 0.84), rgba(4, 13, 18, 0.12));
  }

  .hero-inner {
    align-items: flex-end;
    min-height: max(720px, 100svh);
    padding: 116px 0 132px;
  }

  .hero-brand {
    font-size: clamp(54px, 20vw, 78px);
  }

  .hero-kicker {
    margin-bottom: 28px;
  }

  .hero h1 {
    max-width: 480px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .button {
    min-height: 52px;
  }

  .hero-trace {
    bottom: 18px;
  }

  .trace-label {
    display: none;
  }

  .scroll-cue {
    right: 18px;
    bottom: 30px;
  }

  .moment h2,
  .timeline-heading h2,
  .trust h2,
  .status h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .moment-copy > p:last-child,
  .trust-copy > p {
    font-size: 16px;
  }

  .moment {
    gap: 56px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .drive-inner {
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .signal-chart svg {
    height: 210px;
  }

  .signal-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .signal-metrics div:nth-child(3) {
    border-left: 0;
  }

  .signal-metrics div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .order-record {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .charge-ring {
    width: min(250px, 76vw);
  }

  .trust {
    padding: 110px 0;
  }

  .status-glow {
    left: 100%;
  }

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

  .footer-inner > p:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-inner > p:last-child {
    justify-self: start;
  }

  .callback-page,
  .not-found-page {
    padding: 24px;
  }

  .callback-shell .brand {
    margin-bottom: 64px;
  }
}

@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;
  }

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

  .chart-line {
    stroke-dashoffset: 0;
  }
}
