:root {
  --color-primary: #f8f6ee;
  --color-secondary: #dce7d2;
  --color-cta: #ffffff;
  --color-accent-1: #ff7a2f;
  --color-accent-2: #83f0c5;
  --color-layer-0: #020202;
  --color-layer-1: rgba(255, 255, 255, 0.07);
  --color-layer-1-stroke: rgba(255, 255, 255, 0.22);
  --color-layer-2: rgba(8, 10, 8, 0.66);
  --color-divider: rgba(255, 255, 255, 0.34);
  --color-text-default: #ffffff;
  --color-text-subtle: rgba(255, 255, 255, 0.76);
  --color-text-muted: rgba(255, 255, 255, 0.42);
  --space-0: 4px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 20px;
  --space-4: 40px;
  --space-5: 80px;
  --space-6: 120px;
  --space-7: 160px;
  --space-8: 340px;
  --radius-panel: 16px;
  --radius-control: 8px;
  --font-display: "Articulat CF", "Geist", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-layer-0);
  color: var(--color-text-default);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

.page-shell {
  background: var(--color-layer-0);
  margin: 0;
  max-width: none;
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}

.hero {
  background: #020302;
  height: 100svh;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-grade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-media {
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  top: 0;
  transform: none;
  z-index: -4;
}

.is-loading .hero-media {
  filter: blur(2px) saturate(0.92);
  opacity: 0.72;
}

.is-ready .hero-media {
  animation: hero-media-in 800ms cubic-bezier(0.45, 0, 0.15, 1) 10ms both;
}

.hero-grade {
  background:
    radial-gradient(circle at 74% 47%, rgba(255, 122, 47, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 42%, rgba(0, 0, 0, 0.96)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.78));
  z-index: -3;
}

.hero::after {
  background: rgba(0, 0, 0, 0.38);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.is-loading .hero::after {
  background: rgba(0, 0, 0, 0.62);
  opacity: 1;
}

.is-ready .hero::after {
  animation: hero-dark-reveal 900ms cubic-bezier(0.45, 0, 0.15, 1) 20ms both;
  background: rgba(0, 0, 0, 0.62);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 40px clamp(var(--space-3), 4.2vw, 60px) var(--space-3);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}

.brand {
  align-items: center;
  display: inline-flex;
  min-height: 52px;
}

.is-ready .brand {
  animation: hero-item-in 340ms ease-out 120ms both;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.brand-lockup-mark {
  height: 33px;
  width: 33px;
}

.brand-lockup-wordmark {
  height: 17px;
  width: 52px;
}

.brand-lockup-muted {
  opacity: 0.54;
}

.brand-mark {
  display: grid;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.16));
  gap: 2px;
  grid-template-columns: repeat(2, 30px);
  transform: skewX(-12deg);
}

.brand-mark span {
  background: var(--color-text-default);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  display: block;
  height: 17px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  transform: translateX(-14px);
}

.brand-mark-muted {
  opacity: 0.48;
  transform: scale(0.88) skewX(-12deg);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(var(--space-3), 4.2vw, 60px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.is-ready .nav-links {
  animation: hero-item-in 340ms ease-out 160ms both;
}

.nav-links a:not(.nav-cta) {
  opacity: 0.9;
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 14px;
  font-variation-settings: "wght" 450;
  font-weight: 450;
  gap: 4px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  white-space: nowrap;
}

.nav-cta {
  backdrop-filter: blur(39.153px);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-default);
  min-height: 48px;
  padding: 16px 20px;
  transition: opacity 160ms ease;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 638px) minmax(360px, 482px);
  justify-content: space-between;
  min-height: 100%;
  padding: 128px clamp(var(--space-3), 4.2vw, 60px) 112px;
  position: relative;
  z-index: 2;
}

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

.is-ready .hero-copy {
  animation: hero-item-in 380ms ease-out 210ms both;
}

.eyebrow {
  font-size: clamp(12px, 1.38vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  align-items: baseline;
  column-gap: 0.16em;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(54px, 5vw, 72px);
  line-height: 0.9;
  max-width: 820px;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.86);
  font-variation-settings: "wght" 410;
  font-size: clamp(17px, 1.38vw, 20px);
  font-weight: 410;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 24px 0 0;
  max-width: 645px;
}

.headline-verb-rotator {
  display: block;
  flex: 0 0 auto;
  height: 0.92em;
  overflow: hidden;
  position: relative;
  top: 0.015em;
  width: var(--headline-verb-fund-width, 2.4em);
  will-change: width;
}

.is-ready .headline-verb-rotator {
  animation: headline-verb-width-cycle 6.8s cubic-bezier(0.72, 0, 0.2, 1) 800ms infinite;
}

.headline-static {
  display: block;
  flex: 0 1 auto;
}

.headline-verb-track {
  display: grid;
  font-weight: 400;
  transform: translateY(0);
  will-change: transform;
}

.is-ready .headline-verb-track {
  animation: headline-verb-cycle 6.8s cubic-bezier(0.72, 0, 0.2, 1) 800ms infinite;
}

.headline-verb-track span {
  display: block;
  height: 0.92em;
  line-height: 0.92;
  padding-right: 0.04em;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.is-ready .hero-actions {
  animation: hero-item-in 340ms ease-out 320ms both;
}

.button {
  border: 0;
  min-height: 48px;
  padding: 16px 20px;
  transition: opacity 160ms ease;
}

.button-primary {
  background: var(--color-cta);
  color: #050505;
}

.button-secondary {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--color-text-default);
}

.button-glass {
  backdrop-filter: blur(39.153px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--color-text-default);
}

.nav-cta:hover,
.button-glass:hover {
  opacity: 0.86;
}

.button-glass-subtle {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.auton-panel {
  --panel-hover-transform: rotateX(0deg) rotateY(0deg);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  backdrop-filter: blur(2px);
  background: var(--color-layer-1);
  border: 1px solid var(--color-layer-1-stroke);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-panel);
  height: 475px;
  overflow: hidden;
  position: relative;
  transform: perspective(1000px) translateX(-36px) rotateX(1deg) rotateY(-2.4deg) var(--panel-hover-transform);
  transform-origin: center left;
  width: min(100%, 482px);
}

.is-ready .auton-panel {
  animation: panel-wake 625ms cubic-bezier(0.45, 0, 0.15, 1) 330ms both;
}

.panel-grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  inset: 0;
  mask-image: radial-gradient(circle at 55% 48%, black, transparent 72%);
  opacity: 0.48;
  position: absolute;
}

.orbit {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-large {
  animation: drift 16s linear infinite;
  height: 392px;
  width: 392px;
}

.orbit-mid {
  animation: drift 12s linear infinite reverse;
  height: 232px;
  width: 232px;
}

.orbit-small {
  animation: pulse-ring 5s ease-in-out infinite;
  height: 92px;
  width: 92px;
}

.signal-line {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), transparent);
  height: 1px;
  left: 232px;
  position: absolute;
  top: 238px;
  transform-origin: left center;
}

.signal-line-a {
  transform: rotate(-47deg);
  width: 196px;
}

.signal-line-b {
  opacity: 0.45;
  transform: rotate(25deg);
  width: 128px;
}

.node {
  background: var(--color-text-default);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.42);
  position: absolute;
}

.is-ready .node {
  animation: node-calibrate 310ms ease-out 710ms both;
}

.node-core {
  height: 12px;
  left: 229px;
  top: 231px;
  width: 12px;
}

.node-founder {
  background: var(--color-accent-1);
  height: 8px;
  left: 151px;
  top: 147px;
  width: 8px;
}

.node-customer {
  height: 12px;
  left: 368px;
  top: 86px;
  width: 12px;
}

.node-revenue {
  background: var(--color-accent-2);
  height: 9px;
  left: 325px;
  top: 333px;
  width: 9px;
}

.packet {
  background: #fff;
  border-radius: 999px;
  height: 6px;
  left: 234px;
  position: absolute;
  top: 234px;
  width: 6px;
}

.packet-a {
  animation: packet-a 3.8s ease-in-out infinite;
}

.packet-b {
  animation: packet-b 4.8s ease-in-out infinite 0.7s;
  opacity: 0.7;
}

.auton-label,
.telemetry {
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  position: absolute;
  text-transform: uppercase;
}

.auton-label {
  color: var(--color-text-default);
  display: grid;
  font-size: 8px;
  line-height: 1.4;
}

.label-customer {
  left: 386px;
  top: 80px;
}

.label-runway {
  color: var(--color-text-subtle);
  left: 79px;
  top: 303px;
}

.telemetry {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  bottom: 28px;
  display: grid;
  font-size: 9px;
  gap: 5px;
  left: 28px;
  padding: 10px 12px;
}

.telemetry strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 520;
  letter-spacing: 0;
}

.ticker {
  bottom: 24px;
  left: 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  overflow: hidden;
  padding: 0 36px;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.is-ready .ticker {
  animation: ticker-in 380ms ease-out 680ms both;
}

.is-loading .brand,
.is-loading .nav-links,
.is-loading .hero-copy,
.is-loading .hero-actions,
.is-loading .auton-panel,
.is-loading .ticker {
  filter: blur(5px);
  opacity: 0;
}

.ticker::before,
.ticker::after {
  content: "";
  bottom: -8px;
  pointer-events: none;
  position: absolute;
  top: -8px;
  width: 144px;
  z-index: 2;
}

.ticker::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38) 48%, transparent);
  left: 0;
}

.ticker::after {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38) 48%, transparent);
  right: 0;
}

.ticker-track {
  display: inline-flex;
  gap: 18px;
  min-width: max-content;
}

.is-ready .ticker-track {
  animation: ticker 24s linear 930ms infinite;
}

.ticker span {
  color: var(--color-text-default);
  font-size: 10px;
  letter-spacing: -0.01em;
}

.ticker span:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.42);
  content: "|";
  margin-left: 18px;
}

.proof {
  background:
    radial-gradient(circle at 82% 18%, rgba(131, 240, 197, 0.13), transparent 26%),
    linear-gradient(180deg, #020202, #060706);
  border-top: 0;
  display: grid;
  gap: var(--space-5);
  padding: var(--space-4) clamp(var(--space-3), 5vw, 72px) var(--space-6);
}

.reveal-on-scroll {
  filter: blur(14px);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 820ms ease,
    transform 820ms ease,
    filter 820ms ease;
}

.reveal-on-scroll.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.proof-topline {
  display: grid;
  gap: var(--space-3);
  max-width: 1040px;
}

.proof h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.92;
  max-width: 1060px;
}

.proof-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: 1.14fr 0.94fr 1fr;
}

.proof-strip article {
  background: rgba(255, 255, 255, 0.045);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 210px;
  padding: 24px;
}

.proof-strip span,
.proof-strip p {
  color: var(--color-text-muted);
}

.proof-strip span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 64px;
}

.proof-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-variation-settings: "wght" 430;
  font-weight: 430;
  letter-spacing: 0;
}

.proof-strip p {
  font-variation-settings: "wght" 380;
  font-size: 15px;
  font-weight: 380;
  line-height: 1.35;
  margin: 14px 0 0;
  max-width: 330px;
}

.footer {
  background: #000;
  border-top: 1px solid rgba(203, 203, 203, 0.72);
  display: grid;
  gap: 108px;
  padding: 40px clamp(var(--space-3), 5vw, 72px) 36px;
}

.footer-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  min-height: 132px;
}

.footer-brand {
  display: inline-flex;
}

.footer-top p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.28;
  margin: 0;
  max-width: 360px;
  text-align: right;
}

.footer-row {
  align-items: center;
  border-top: 1px solid rgba(203, 203, 203, 0.72);
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  font-size: 12px;
  gap: 24px;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-row p {
  margin: 0;
}

.footer-row nav {
  display: flex;
  gap: 32px;
}

.footer-row a {
  transition: color 160ms ease;
}

.footer-row a:hover {
  color: rgba(255, 255, 255, 0.82);
}

@keyframes drift {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes packet-a {
  0%,
  18% {
    transform: translate(0, 0);
  }
  58%,
  100% {
    transform: translate(137px, -146px);
  }
}

@keyframes packet-b {
  0%,
  20% {
    transform: translate(0, 0);
  }
  60%,
  100% {
    transform: translate(88px, 94px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes hero-media-in {
  from {
    filter: blur(2px) saturate(0.92);
    opacity: 0.72;
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  }
  40% {
    filter: blur(1px) saturate(0.96);
    opacity: 0.84;
  }
  to {
    filter: blur(0) saturate(1);
    opacity: 0.9;
    transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
  }
}

@keyframes hero-dark-reveal {
  from {
    opacity: 1;
  }
  38% {
    opacity: 0.86;
  }
  to {
    opacity: 0;
  }
}

@keyframes hero-item-in {
  from {
    filter: blur(3px);
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panel-wake {
  0% {
    filter: blur(4px);
    opacity: 0;
    transform: perspective(1000px) translateX(-24px) rotateX(2deg) rotateY(-4.8deg) var(--panel-hover-transform) scale(0.992);
  }
  62% {
    filter: blur(1px);
    opacity: 1;
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: perspective(1000px) translateX(-36px) rotateX(1deg) rotateY(-2.4deg) var(--panel-hover-transform) scale(1);
  }
}

@keyframes node-calibrate {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(0.74);
  }
  58% {
    box-shadow: 0 0 34px rgba(255, 255, 255, 0.78);
    transform: scale(1.24);
  }
  100% {
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.42);
    transform: scale(1);
  }
}

@keyframes ticker-in {
  from {
    filter: blur(8px);
    opacity: 0;
  }
  to {
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes headline-verb-cycle {
  0%,
  18% {
    transform: translateY(0);
  }
  24%,
  42% {
    transform: translateY(-0.92em);
  }
  48%,
  66% {
    transform: translateY(-1.84em);
  }
  72%,
  90% {
    transform: translateY(-2.76em);
  }
  96%,
  100% {
    transform: translateY(-3.68em);
  }
}

@keyframes headline-verb-width-cycle {
  0%,
  18% {
    width: var(--headline-verb-fund-width, 2.4em);
  }
  24%,
  42% {
    width: var(--headline-verb-build-width, 2.6em);
  }
  48%,
  66% {
    width: var(--headline-verb-grow-width, 2.5em);
  }
  72%,
  90% {
    width: var(--headline-verb-own-width, 2em);
  }
  96%,
  100% {
    width: var(--headline-verb-fund-width, 2.4em);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .hero-media {
    display: none;
  }

  .brand,
  .nav-links,
  .hero-copy,
  .hero-actions,
  .auton-panel,
  .ticker,
  .reveal-on-scroll {
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .headline-verb-track {
    animation: none;
  }

  .headline-verb-rotator {
    animation: none;
    width: var(--headline-verb-fund-width, 2.4em);
  }

}

@media (max-width: 1080px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-grid {
    align-items: start;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 120px;
  }

  .auton-panel {
    justify-self: end;
    margin-top: -34px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-copy {
    max-width: calc(100vw - 64px);
    min-width: 0;
    width: min(638px, calc(100vw - 64px));
  }

  .hero-actions {
    max-width: calc(100vw - 64px);
    width: min(520px, calc(100vw - 64px));
  }

  .button {
    min-width: 0;
  }

  .auton-panel {
    justify-self: start;
    max-width: calc(100vw - 64px);
  }
}

@media (max-width: 760px) {
  .page-shell {
    margin: 0;
    max-width: 100vw;
    width: 100vw;
  }

  .hero {
    min-height: auto;
  }

  .nav {
    align-items: flex-start;
    padding: 28px 24px 20px;
  }

  .nav-links {
    flex: 1;
    gap: 14px;
    justify-content: flex-end;
    min-width: 0;
  }

  .nav-links a:not(.nav-cta):nth-child(-n + 2) {
    display: none;
  }

  .nav-links a[href="#signin"] {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 34px;
    max-width: 100vw;
    min-width: 0;
    overflow: hidden;
    padding-bottom: 72px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 116px;
  }

  .hero-copy {
    max-width: calc(100vw - 48px);
    min-width: 0;
    width: calc(100vw - 48px);
  }

  h1 {
    font-size: clamp(48px, 14vw, 56px);
    line-height: 0.9;
    max-width: min(100%, 340px);
  }

  .hero-lede {
    max-width: min(100%, 342px);
  }

  .hero-actions {
    gap: 12px;
    max-width: calc(100vw - 48px);
    width: calc(100vw - 48px);
  }

  .button {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .auton-panel {
    height: 475px;
    justify-self: start;
    margin-bottom: -48px;
    margin-top: 0;
    max-width: none;
    transform: scale(0.9);
    transform-origin: top left;
    width: 482px;
  }

  .ticker {
    bottom: 18px;
    padding: 0 24px;
  }

  .ticker::before,
  .ticker::after {
    width: 84px;
  }

  .proof {
    gap: 56px;
    padding: 56px 24px 88px;
  }

  .proof h2 {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 0.96;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: 188px;
    padding: 22px;
  }

  .proof-strip span {
    margin-bottom: 54px;
  }

  .footer {
    gap: 96px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
    min-height: 140px;
  }

  .footer-top p {
    max-width: 300px;
    text-align: left;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-row nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    max-width: calc(100vw - 64px);
    width: calc(100vw - 64px);
  }

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

  .auton-panel {
    margin-bottom: -124px;
    transform: scale(0.74);
  }
}

@media (max-width: 480px) {
  .brand-mark {
    grid-template-columns: repeat(2, 22px);
  }

  .brand-mark span {
    height: 13px;
  }

  .nav-links {
    font-size: 12px;
  }

  .hero-grid {
    padding-top: 112px;
  }

  .button {
    font-size: 14px;
    padding: 16px 18px;
  }

  .auton-panel {
    margin-bottom: 0;
    transform: scale(0.64);
    width: min(100vw - 48px, 342px);
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: clamp(46px, 13.6vw, 52px);
    max-width: 330px;
  }

  .hero-lede {
    font-size: 16px;
    max-width: 330px;
  }

  .auton-panel {
    margin-bottom: 0;
    transform: scale(0.6);
    width: min(100vw - 48px, 342px);
  }
}
