*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  --cream: #F9F4EB;
  --dust-rose: #D9C9C9;
  --olive: #4A5929;
  --olive-dk: #3a4620;
  --olive-lt: #5c6e33;
  --sand: #D8D1C3;
  --sage: #939C80;
  --sage-lt: #b5bcaa;
  --text-dk: #1e2810;
  --sage-dk: #7a8268;
  --rose-dk: #c4b0b0;
  --rose-lt: #e8dada;
  --container: 1180px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --pad-y: clamp(4rem, 8vw, 7rem);
  --f-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --bounce: cubic-bezier(.34, 1.32, .64, 1);
  --smooth: cubic-bezier(.65, 0, .35, 1);
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(160deg, var(--cream) 0%, #f0ead8 40%, var(--sand) 70%, var(--dust-rose) 100%);
  color: var(--text-dk);
  font-family: var(--f-serif);
  overflow-x: clip;
  position: relative;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  width: 100%;
}

.ico {
  display: block;
}

.ico--sm {
  width: 32px;
  height: 32px;
}

.ico--md {
  width: 36px;
  height: 36px;
}

.ico--lg {
  width: 64px;
  height: 64px;
}

.page :focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 6px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--olive-lt) 50%, var(--sage) 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 200;
  transition: transform .1s linear;
  pointer-events: none;
}

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 0 var(--pad-x);
  overflow: hidden;
  transition: background .35s var(--ease), min-height .35s var(--ease), box-shadow .35s var(--ease);
  animation: drop .7s var(--ease) both;
}

.hdr--scrolled {
  background: rgba(249, 244, 235, .88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  min-height: 80px;
  box-shadow: 0 1px 0 rgba(74, 89, 41, .1), 0 4px 24px rgba(74, 89, 41, .06);
}

.hdr-logo {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: 78px;
  overflow: hidden;
  text-decoration: none;
}

.hdr-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hdr--scrolled .hdr-logo {
  width: 142px;
  height: 64px;
}

.hdr-nav {
  display: flex;
  gap: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--f-sans);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .25s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn--out {
  padding: .6rem 1.5rem;
  font-size: .78rem;
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}

.btn--out:hover {
  background: var(--olive);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74, 89, 41, .22);
}

.btn--fill {
  padding: .6rem 1.5rem;
  font-size: .78rem;
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
  box-shadow: 0 3px 10px rgba(74, 89, 41, .18);
}

.btn--fill:hover {
  background: var(--olive-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(74, 89, 41, .28);
}

.btn--hero {
  padding: 1rem 2.6rem;
  font-size: .88rem;
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 6px 24px rgba(74, 89, 41, .25);
}

.btn--hero:hover {
  background: var(--olive-dk);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(74, 89, 41, .35);
}

.btn--hero-light {
  background: var(--cream);
  color: var(--olive);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
}

.btn--hero-light:hover {
  background: #f0ead8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.btn--ghost {
  padding: 1rem 2.2rem;
  font-size: .88rem;
  background: transparent;
  color: var(--olive);
  border-color: rgba(74, 89, 41, .35);
  text-transform: none;
  letter-spacing: .04em;
}

.btn--ghost:hover {
  border-color: var(--olive);
  background: rgba(74, 89, 41, .06);
  transform: translateY(-2px);
}

@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mask {
  display: block;
  overflow: hidden;
  padding-bottom: .14em;
  line-height: inherit;
}

.mask-i {
  display: block;
  transform: translateY(110%);
  transition: transform .85s var(--smooth);
}

.sec-head.in .mask-i {
  transform: translateY(0);
}

.sec-head .mask:nth-child(2) .mask-i {
  transition-delay: .1s;
}

.sec-head .mask:nth-child(3) .mask-i {
  transition-delay: .2s;
}

.sec-head {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .8s var(--ease);
}

.sec-head.in {
  opacity: 1;
  transform: translateY(0);
}

.feat-card,
.step,
.car-wrap,
.aud-card,
.tech-card,
.prereg-card {
  opacity: 0;
}

.hero {
  position: relative;
  z-index: 5;
  height: 240svh;
  min-height: 1680px;
  text-align: left;
  background: var(--cream);
}

.hero-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #111807;
}

.hero-media-bg,
.hero-video-primary,
.hero-frame-canvas,
.hero-video-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media-bg {
  z-index: 1;
  background: radial-gradient(circle at 50% 45%, rgba(249, 244, 235, .18), transparent 34%), linear-gradient(135deg, #f9f4eb 0%, #647247 42%, #101506 100%);
}

.hero-video-primary,
.hero-frame-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-video-primary {
  z-index: 2;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .45s var(--ease), transform .9s var(--ease);
}

.hero-media-bg.ready .hero-video-primary {
  opacity: 1;
  transform: scale(1);
}

.hero-frame-canvas {
  z-index: 1;
  opacity: 0;
}

.hero-media-bg.frame-mode .hero-video-primary,
.hero-media-bg.failed .hero-video-primary {
  opacity: 0;
}

.hero-media-bg.frame-mode .hero-frame-canvas,
.hero-media-bg.failed .hero-frame-canvas {
  opacity: 1;
}

.hero-video-fallback {
  display: grid;
  place-items: center;
  z-index: 0;
  transition: opacity .4s var(--ease);
}

.hero-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.hero-media-bg.ready .hero-video-fallback {
  opacity: 0;
}

.hero-shade {
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 11, 6, .82) 0%, rgba(18, 24, 11, .5) 34%, rgba(8, 11, 6, .12) 68%, rgba(8, 11, 6, .5) 100%), linear-gradient(180deg, rgba(8, 11, 6, .34) 0%, rgba(8, 11, 6, .06) 44%, rgba(8, 11, 6, .72) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(5rem, 11vh, 7.5rem);
  z-index: 4;
  width: min(760px, calc(100% - 2 * var(--pad-x)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}

.hero-copy-stack {
  min-height: clamp(18rem, 42vh, 26rem);
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  width: min(720px, 100%);
  transition: opacity .45s var(--ease), transform .55s var(--smooth), filter .45s var(--ease);
}

.hero-copy.switching {
  opacity: 0;
  transform: translateY(-18px);
  filter: blur(8px);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-sans);
  font-size: .74rem;
  font-weight: 600;
  color: rgba(249, 244, 235, .88);
  background: rgba(8, 11, 6, .34);
  border: 1px solid rgba(249, 244, 235, .2);
  padding: .5rem 1rem;
  border-radius: 100px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.pip {
  width: 7px;
  height: 7px;
  background: var(--cream);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .55;
    transform: scale(1.4);
  }
}

.hero-h1 {
  font-size: clamp(3.1rem, 8.4vw, 7.2rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: 0;
  color: var(--cream);
  text-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  margin: 0 0 1.25rem;
  max-width: 10.8ch;
}

.hero-p {
  font-family: var(--f-sans);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-weight: 300;
  color: rgba(249, 244, 235, .78);
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  pointer-events: auto;
}

.btn--ghost-video {
  color: var(--cream);
  border-color: rgba(249, 244, 235, .35);
  background: rgba(8, 11, 6, .18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn--ghost-video:hover {
  color: var(--cream);
  border-color: rgba(249, 244, 235, .7);
  background: rgba(249, 244, 235, .12);
}

.hero-progress-steps {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transform: translateY(-50%);
}

.hero-progress-steps span {
  width: 8px;
  height: 32px;
  border-radius: 999px;
  background: rgba(249, 244, 235, .26);
  transition: height .35s var(--ease), background .35s var(--ease), opacity .35s var(--ease);
}

.hero-progress-steps span.active {
  height: 54px;
  background: var(--cream);
}

.hero-scroll-control {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  color: rgba(249, 244, 235, .68);
  font-family: var(--f-sans);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  padding: .5rem 1rem;
  transform: translateX(-50%);
  transition: color .3s;
}

.hero-scroll-control:hover {
  color: var(--cream);
}

.scroll-rail {
  display: block;
  width: 1.5px;
  height: 40px;
  background: rgba(249, 244, 235, .28);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.scroll-bead {
  display: block;
  width: 100%;
  height: 40%;
  background: var(--cream);
  border-radius: 1px;
  animation: scrollBead 1.8s ease-in-out infinite;
}

@keyframes scrollBead {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(280%);
    opacity: 0;
  }
}

.sec {
  padding: var(--pad-y) 0;
  position: relative;
  z-index: 5;
}

.sec-head {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.sec-h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--text-dk);
  margin: 0;
  max-width: 22ch;
}

.sec-h2 em {
  font-style: italic;
  color: var(--olive);
}

.tag {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--sage);
  border: 1px solid rgba(147, 156, 128, .4);
  padding: .28rem .9rem;
  border-radius: 100px;
}

.tag--light {
  color: rgba(249, 244, 235, .8);
  border-color: rgba(249, 244, 235, .3);
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.aud-card {
  position: relative;
  background: rgba(249, 244, 235, .88);
  border: 1px solid rgba(216, 209, 195, .75);
  border-radius: 24px;
  padding: 2.6rem 2rem 2.2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transform: translateY(52px) scale(.93) rotate(-1.5deg);
  transition: opacity .7s var(--ease), transform 1s var(--bounce), box-shadow .35s var(--ease);
  transition-delay: var(--d, 0s);
}

.aud-card.in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.aud-card.in:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .12);
}

.aud-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  transition: height .35s var(--ease);
}

.aud-card:hover .aud-top-bar {
  height: 6px;
}

.aud--olive .aud-top-bar {
  background: linear-gradient(90deg, var(--olive-dk), var(--olive-lt));
}

.aud--olive .aud-ico-wrap,
.aud--olive .aud-badge {
  background: rgba(74, 89, 41, .1);
  color: var(--olive);
}

.aud--olive .aud-feats li svg {
  stroke: var(--olive);
}

.aud--olive .aud-cta {
  background: var(--olive);
}

.aud--olive .aud-cta:hover {
  background: var(--olive-dk);
}

.aud--sage .aud-top-bar {
  background: linear-gradient(90deg, var(--sage-dk), var(--sage-lt));
}

.aud--sage .aud-ico-wrap,
.aud--sage .aud-badge {
  background: rgba(147, 156, 128, .15);
  color: var(--sage-dk);
}

.aud--sage .aud-feats li svg {
  stroke: var(--sage-dk);
}

.aud--sage .aud-cta {
  background: var(--sage-dk);
  color: var(--cream);
}

.aud--sage .aud-cta:hover {
  background: var(--sage);
}

.aud--rose .aud-top-bar {
  background: linear-gradient(90deg, var(--rose-dk), var(--rose-lt));
}

.aud--rose .aud-ico-wrap {
  background: rgba(217, 201, 201, .3);
  color: var(--olive);
}

.aud--rose .aud-badge {
  background: rgba(217, 201, 201, .35);
  color: var(--olive);
}

.aud--rose .aud-feats li svg {
  stroke: var(--olive);
}

.aud--rose .aud-cta {
  background: var(--dust-rose);
  color: var(--olive);
}

.aud--rose .aud-cta:hover {
  background: var(--rose-dk);
}

.aud-ico-wrap,
.feat-ico-wrap,
.step-ico-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aud-ico-wrap {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  margin-bottom: .1rem;
  transition: transform .4s var(--bounce);
}

.aud-card:hover .aud-ico-wrap {
  transform: scale(1.1) rotate(-6deg);
}

.aud-badge {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .22rem .8rem;
  border-radius: 100px;
  align-self: flex-start;
}

.aud-title {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--text-dk);
  line-height: 1.2;
  margin: 0;
}

.aud-desc {
  font-family: var(--f-sans);
  font-size: .86rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.65;
  margin: 0;
}

.aud-feats {
  list-style: none;
  padding: 0;
  margin: .3rem 0;
  display: flex;
  flex-direction: column;
  gap: .52rem;
}

.aud-feats li {
  display: flex;
  align-items: center;
  gap: .52rem;
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-dk);
}

.aud-feats li svg {
  flex-shrink: 0;
}

.aud-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .6rem;
  padding: .68rem 1.4rem;
  font-family: var(--f-sans);
  font-size: .79rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--cream);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background .3s var(--ease), transform .25s var(--bounce), box-shadow .3s var(--ease);
}

.aud-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: rgba(249, 244, 235, .75);
  border: 1px solid rgba(216, 209, 195, .8);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transform: translateY(40px) scale(.94) rotate(-1deg);
  transition: opacity .7s var(--ease), transform .9s var(--bounce), box-shadow .35s var(--ease);
  transition-delay: var(--d, 0s);
}

.feat-card.in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.feat-card.in:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 44px rgba(74, 89, 41, .14);
}

.feat-ico-wrap {
  width: 64px;
  height: 64px;
  background: rgba(74, 89, 41, .08);
  border-radius: 16px;
  color: var(--olive);
  margin-bottom: 1.4rem;
  transition: background .3s, transform .3s var(--ease);
}

.feat-card:hover .feat-ico-wrap {
  background: rgba(74, 89, 41, .15);
  transform: scale(1.08) rotate(-3deg);
}

.feat-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dk);
  margin: 0 0 .65rem;
  line-height: 1.25;
}

.feat-card p,
.step p,
.car-desc {
  font-family: var(--f-sans);
  font-weight: 300;
  color: var(--sage);
}

.feat-card p {
  font-size: .87rem;
  line-height: 1.65;
  margin: 0;
}

.sec--stats {
  background: linear-gradient(135deg, var(--olive-dk) 0%, var(--olive) 55%, var(--olive-lt) 100%);
  min-height: clamp(8.5rem, 18vw, 10.5rem);
  padding: 0;
  overflow: hidden;
}

.sec--stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, .05) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, .04) 0%, transparent 60%);
  pointer-events: none;
}

.sec--how {
  background: rgba(249, 244, 235, .4);
}

.steps {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 76px;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(74, 89, 41, .3) 15%, rgba(74, 89, 41, .3) 85%, transparent);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s var(--smooth) .15s;
}

.steps.in .steps-line {
  transform: scaleX(1);
}

.step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .8s var(--bounce);
  transition-delay: var(--d, 0s);
}

.steps.in .step {
  opacity: 1;
  transform: translateY(0);
}

.step-n {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 200;
  font-style: italic;
  color: rgba(74, 89, 41, .15);
  line-height: 1;
  margin-bottom: -.3rem;
}

.step-ico-wrap {
  width: 68px;
  height: 68px;
  background: var(--cream);
  border: 2px solid rgba(74, 89, 41, .15);
  border-radius: 50%;
  color: var(--olive);
  margin: 0 auto 1.4rem;
  box-shadow: 0 4px 18px rgba(74, 89, 41, .1);
  transition: transform .4s var(--ease), border-color .3s;
}

.step:hover .step-ico-wrap {
  transform: scale(1.08);
  border-color: rgba(74, 89, 41, .35);
}

.step h3 {
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--text-dk);
  margin: 0 0 .6rem;
}

.step p {
  font-size: .85rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 28ch;
}

.problem-p {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.problem-p strong {
  color: var(--olive);
  font-weight: 500;
}

.sec--problem .sec-head {
  gap: 1.2rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tech-card {
  background: rgba(249, 244, 235, .75);
  border: 1px solid rgba(216, 209, 195, .8);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  transform: translateY(40px) scale(.94) rotate(-1deg);
  transition: opacity .7s var(--ease), transform .9s var(--bounce), box-shadow .35s var(--ease);
  transition-delay: var(--d, 0s);
}

.tech-card.in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

.tech-card.in:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 44px rgba(74, 89, 41, .14);
}

.tech-ico-wrap {
  width: 60px;
  height: 60px;
  background: rgba(74, 89, 41, .08);
  border-radius: 16px;
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--bounce), background .3s;
}

.tech-card:hover .tech-ico-wrap {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(74, 89, 41, .15);
}

.tech-card h3 {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--f-sans);
  color: var(--text-dk);
  margin: 0;
}

.tech-card p {
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 300;
  color: var(--sage);
  margin: 0;
  line-height: 1.5;
}

.sec--prereg {
  padding: 5rem 0 7rem;
}

.prereg-card {
  position: relative;
  background: linear-gradient(135deg, var(--olive-dk) 0%, var(--olive) 60%, var(--olive-lt) 100%);
  border-radius: 28px;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 89, 41, .3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transform: translateY(40px) scale(.92);
  transition: opacity .8s var(--ease), transform 1s var(--bounce), box-shadow .5s var(--ease);
}

.prereg-card.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.prereg-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  width: 0%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(255, 255, 255, .12) 0%, transparent 65%);
  pointer-events: none;
  transform: translateX(-50%);
  transition: width 1.4s var(--ease) .3s;
}

.prereg-card.in .prereg-glow {
  width: 130%;
}

.prereg-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0;
  line-height: 1.18;
  max-width: 18ch;
}

.prereg-card > p {
  font-family: var(--f-sans);
  font-size: .95rem;
  font-weight: 300;
  color: rgba(249, 244, 235, .7);
  line-height: 1.7;
  margin: 0 0 .5rem;
  max-width: 40ch;
}

.prereg-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
}

.prereg-fields {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.prereg-group {
  width: 100%;
}

.prereg-input {
  width: 100%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(249, 244, 235, .25);
  border-radius: 12px;
  padding: .9rem 1.2rem;
  font-family: var(--f-sans);
  font-size: .92rem;
  color: var(--cream);
  transition: border-color .25s, background .25s, box-shadow .25s;
  outline: none;
}

.prereg-input::placeholder {
  color: rgba(249, 244, 235, .45);
}

.prereg-input:focus {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(249, 244, 235, .6);
  box-shadow: 0 0 0 3px rgba(249, 244, 235, .1);
}

.prereg-submit {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
}

.prereg-feedback {
  width: 100%;
  max-width: 420px;
}

.prereg-success,
.prereg-error {
  text-align: center;
  padding: 1rem 0;
}

.prereg-success h3 {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin: 0 0 .5rem;
}

.prereg-success p {
  color: rgba(249, 244, 235, .7);
  margin: 0;
  font-family: var(--f-sans);
  font-size: .95rem;
  line-height: 1.5;
}

.prereg-error-msg {
  color: #ffb3b3;
  font-family: var(--f-sans);
  font-size: .92rem;
  margin: 0 0 1rem;
}

.prereg-retry {
  color: var(--cream) !important;
  border-color: rgba(249, 244, 235, .4) !important;
}

.prereg-retry:hover {
  background: rgba(249, 244, 235, .1) !important;
}

.prereg-success .success-icon {
  color: rgba(249, 244, 235, .8);
  margin-bottom: 1rem;
}

.car-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 24px;
  background: rgba(249, 244, 235, .8);
  border: 1px solid rgba(216, 209, 195, .7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(74, 89, 41, .09);
  overflow: hidden;
  transform: translateY(40px) scale(.97);
  transition: opacity .8s var(--ease), transform .9s var(--bounce), box-shadow .4s var(--ease);
}

.car-wrap.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.car-wrap.in:hover {
  box-shadow: 0 14px 56px rgba(74, 89, 41, .14);
}

.car-track {
  display: flex;
  transition: transform .65s var(--ease);
}

.car-slide {
  min-width: 100%;
  padding: 4rem 2rem 5rem;
  display: flex;
  justify-content: center;
}

.car-inner {
  text-align: center;
  max-width: 560px;
}

.car-ico {
  color: var(--olive);
  opacity: .9;
  margin-bottom: 1.8rem;
  display: inline-block;
  animation: iconFloat 3.5s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.car-title {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 300;
  color: var(--text-dk);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.car-desc {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.car-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  padding-bottom: 1.8rem;
}

.car-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-lt);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s, border-color .3s;
}

.car-dot:hover {
  background: var(--sage-lt);
}

.car-dot.active {
  background: var(--olive);
  border-color: var(--olive);
  transform: scale(1.3);
}

.car-arrow {
  position: absolute;
  top: calc(50% - 22px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(147, 156, 128, .5);
  background: rgba(249, 244, 235, .9);
  color: var(--olive);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.car-arrow:hover {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
  transform: scale(1.08);
}

.car-prev {
  left: 1rem;
}

.car-next {
  right: 1rem;
}

.ftr {
  background: var(--text-dk);
  position: relative;
  z-index: 5;
  padding: 4.5rem 0 2.5rem;
}

.ftr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.ftr-logo {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .3s;
}

.ftr-logo:hover {
  color: var(--sage-lt);
}

.ftr-tagline {
  font-family: var(--f-sans);
  font-size: .92rem;
  font-weight: 300;
  color: rgba(249, 244, 235, .55);
  margin: 0;
  line-height: 1.6;
}

.ftr-socials {
  display: flex;
  gap: .6rem;
  margin-top: .25rem;
}

.ftr-s {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(249, 244, 235, .55);
  text-decoration: none;
  transition: border-color .3s, color .3s, background .3s, transform .3s;
}

.ftr-s:hover {
  border-color: rgba(147, 156, 128, .6);
  color: var(--cream);
  background: rgba(255, 255, 255, .04);
  transform: translateY(-2px);
}

.ftr-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: .5rem;
}

.ftr-links a {
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 300;
  color: rgba(249, 244, 235, .55);
  text-decoration: none;
  transition: color .25s;
}

.ftr-links a:hover {
  color: rgba(249, 244, 235, .95);
}

.ftr-links .dot {
  color: rgba(249, 244, 235, .25);
  font-size: .8rem;
}

.ftr-copy {
  font-family: var(--f-sans);
  font-size: .76rem;
  font-weight: 300;
  color: rgba(249, 244, 235, .3);
  margin: 1rem 0 0;
}

@media (max-width: 1100px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 960px) {
  .aud-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
  }

  .hero {
    height: 200svh;
    min-height: 1400px;
  }

  .hero-content {
    left: 1.25rem;
    bottom: clamp(4.5rem, 9vh, 6rem);
    width: min(680px, calc(100vw - 2.5rem));
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(8, 11, 6, .58) 0%, rgba(8, 11, 6, .18) 35%, rgba(8, 11, 6, .78) 100%), linear-gradient(90deg, rgba(8, 11, 6, .62) 0%, rgba(8, 11, 6, .22) 100%);
  }
}

@media (max-width: 860px) {
  .steps {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 2rem;
  }

  .steps-line {
    display: none;
  }
}

@media (max-width: 560px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }

  .hdr {
    min-height: 88px;
  }

  .hdr-logo {
    width: 140px;
    height: 64px;
  }

  .hdr--scrolled {
    min-height: 72px;
  }

  .hdr--scrolled .hdr-logo {
    width: 122px;
    height: 56px;
  }

  .hdr-nav {
    gap: .5rem;
  }

  .btn--out,
  .btn--fill {
    padding: .55rem 1.1rem;
    font-size: .72rem;
  }

  .hero {
    height: 180svh;
    min-height: 1100px;
  }

  .hero-content {
    left: 1rem;
    bottom: 4.4rem;
    width: calc(100vw - 2rem);
    gap: 1.25rem;
  }

  .hero-copy-stack {
    min-height: 20rem;
  }

  .hero-pill {
    font-size: .62rem;
    max-width: 100%;
  }

  .hero-h1 {
    font-size: clamp(2.75rem, 16vw, 4.2rem);
    max-width: 9ch;
  }

  .hero-p {
    font-size: .95rem;
    max-width: 31ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-progress-steps {
    right: .75rem;
    gap: .5rem;
  }

  .hero-progress-steps span {
    width: 6px;
    height: 24px;
  }

  .hero-progress-steps span.active {
    height: 38px;
  }

  .hero-scroll-control {
    display: none;
  }

  .car-slide {
    padding: 3rem 1.5rem 4rem;
  }

  .car-prev {
    left: .5rem;
  }

  .car-next {
    right: .5rem;
  }

  .ftr {
    padding: 3.5rem 0 2rem;
  }

  .ftr-logo {
    font-size: 1.7rem;
  }

  .ftr-links {
    gap: .6rem;
    font-size: .78rem;
  }
}

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

  .sec-head,
  .feat-card,
  .step,
  .car-wrap,
  .mask-i,
  .aud-card,
  .tech-card,
  .prereg-card {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0s !important;
  }

  .steps-line {
    transform: scaleX(1) !important;
  }

  .scroll-progress {
    display: none;
  }

  .pip,
  .scroll-bead,
  .car-ico {
    animation: none !important;
  }
}
