@font-face {
  font-family: "Outfit";
  src: url("fonts/outfit-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("fonts/cormorant-normal-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --carbon: #050505;
  --graphite: #151515;
  --soft-black: #222222;
  --warm-white: #f7f3ea;
  --paper: #f3efe6;
  --chrome: #c9ced3;
  --muted: #767b80;
  --champagne: #c8a45d;
  --media-border: rgba(200, 164, 93, 0.28);
  --media-glow: rgba(200, 164, 93, 0.14);
  --line-dark: rgba(5, 5, 5, 0.12);
  --line-light: rgba(247, 243, 234, 0.16);
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--carbon);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--soft-black);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(200, 164, 93, 0.78);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-140%);
  background: var(--warm-white);
  color: var(--carbon);
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  min-height: 82px;
  padding: 8px 12px 8px 22px;
  color: var(--warm-white);
  border: 1px solid rgba(247, 243, 234, 0.14);
  background: rgba(5, 5, 5, 0.48);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 300px;
  height: 72px;
  overflow: visible;
  min-width: 0;
}

.brand img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a,
.nav-cta {
  color: rgba(247, 243, 234, 0.78);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--warm-white);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--carbon);
  background: var(--warm-white);
}

.nav-cta:active {
  transform: scale(0.97);
}

.nav-cta[aria-disabled="true"] {
  color: rgba(247, 243, 234, 0.86);
  border: 1px solid rgba(247, 243, 234, 0.22);
  background: rgba(247, 243, 234, 0.08);
}

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

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  transform: scale(1.012);
  filter: saturate(0.94) contrast(1.06) brightness(0.84);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 25%, rgba(0, 0, 0, 0.45) 54%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.14) 40%, rgba(0, 0, 0, 0.86) 100%);
}

.hero__tech {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(247, 243, 234, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 234, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, black 0%, black 38%, transparent 76%);
}

.hero__content {
  display: grid;
  align-content: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 80px) 0 96px;
}

.hero__content > * {
  width: min(630px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(60px, 8.4vw, 128px);
  font-weight: 500;
  line-height: 0.88;
  text-wrap: balance;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 760;
  line-height: 0.95;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 760;
  line-height: 1.05;
}

.hero__text {
  margin-bottom: 36px;
  color: rgba(247, 243, 234, 0.72);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
}

.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--carbon);
  background: var(--warm-white);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(-1px) scale(0.97);
}

.button--ghost {
  color: var(--warm-white);
  border-color: rgba(247, 243, 234, 0.24);
  background: rgba(247, 243, 234, 0.06);
}

.button--ghost:hover {
  color: var(--carbon);
}

.button[aria-disabled="true"] {
  cursor: default;
}

.hero__facts {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr) minmax(190px, 1fr);
  gap: 12px;
  margin: 56px 0 0;
}

.hero__facts div {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(247, 243, 234, 0.12), rgba(247, 243, 234, 0.045));
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.hero__facts dt {
  color: rgba(247, 243, 234, 0.56);
  font-size: 12px;
}

.hero__facts dd {
  margin: 6px 0 0;
  font-size: clamp(18px, 1.7vw, 27px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  width: 1px;
  height: 64px;
  overflow: hidden;
  background: rgba(247, 243, 234, 0.18);
}

.scroll-cue::before {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  background: var(--champagne);
  animation: cue 1.6s cubic-bezier(.65, 0, .35, 1) infinite;
}

@keyframes cue {
  from {
    transform: translateY(-28px);
  }

  to {
    transform: translateY(68px);
  }
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 150px) 0;
}

.section__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: clamp(42px, 7vw, 84px);
}

.section-heading p:not(.section-kicker) {
  color: rgba(34, 34, 34, 0.68);
  font-size: 19px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .section-kicker {
  justify-content: center;
}

/* High contrast kickers for light sections */
.intro .section-kicker,
.benefits .section-kicker,
.specs .section-kicker,
.about .section-kicker,
.faq .section-kicker {
  color: #84642b;
}

.intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(201, 206, 211, 0.55), transparent 26%),
    linear-gradient(180deg, #f7f3ea 0%, #ebe4d8 100%);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.intro__copy p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(34, 34, 34, 0.72);
  font-size: 20px;
}

.intro__visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.intro__visual img {
  position: relative;
  z-index: 2;
  width: min(430px, 82%);
  filter: drop-shadow(0 34px 40px rgba(5, 5, 5, 0.22));
}

.intro__visual[data-stool-slide] img {
  transition: opacity 900ms ease, transform 900ms cubic-bezier(.2, .72, .18, 1);
}

html.js-active .intro__visual[data-stool-slide] img {
  opacity: 0;
  transform: translateX(42px) scale(0.95);
}

.intro__visual[data-stool-slide].is-visible img {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}

.intro__rings {
  position: absolute;
  width: min(560px, 96%);
  aspect-ratio: 1;
  border: 1px solid rgba(5, 5, 5, 0.12);
  transform: rotate(-9deg);
}

.intro__rings::before,
.intro__rings::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(5, 5, 5, 0.08);
}

.intro__rings::after {
  inset: 24%;
}

.proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-strip div {
  padding: 24px 26px;
  border: 1px solid rgba(5, 5, 5, 0.10);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 100% 0%, rgba(201, 206, 211, 0.32), transparent 36%);
  box-shadow: 0 18px 44px rgba(5, 5, 5, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1;
  white-space: nowrap;
}

.proof-strip span {
  margin-top: 8px;
  color: rgba(34, 34, 34, 0.58);
}

.use-cases {
  overflow: hidden;
  color: var(--warm-white);
  background:
    linear-gradient(180deg, #0b0b0b 0%, #151515 48%, #080808 100%);
}

.use-cases .section-heading p:not(.section-kicker) {
  color: rgba(247, 243, 234, 0.64);
}

.use-case-list {
  display: grid;
  gap: clamp(48px, 8vw, 96px);
}

.use-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  perspective: 1200px;
}

.use-card--reverse {
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 0.82fr);
}

.use-card--reverse .use-card__media {
  grid-column: 2;
}

.use-card--reverse .use-card__copy {
  grid-column: 1;
  grid-row: 1;
}

.use-card__media,
.detail-image,
.specs__visual {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--media-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    #101010;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 44px var(--media-glow),
    0 32px 84px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transform: none;
}

.use-card__media {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.use-card:hover .use-card__media {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 0 52px rgba(200, 164, 93, 0.18),
    0 32px 84px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.use-card__media::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.use-card__media::after,
.detail-image::after,
.specs__visual::after {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 2;
  border: 1px solid rgba(247, 243, 234, 0.10);
  border-radius: 6px;
  pointer-events: none;
}

.use-card__media img,
.detail-image img,
.specs__visual img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.use-card__media img {
  min-height: 0;
}

.use-card__media span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 3;
  color: var(--warm-white);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.use-card__copy p:not(.section-kicker) {
  color: rgba(247, 243, 234, 0.66);
  font-size: 18px;
}

.benefits {
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 164, 93, 0.16), transparent 30%),
    linear-gradient(180deg, #f7f3ea 0%, #ece4d7 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  perspective: 1200px;
}

.benefit-card {
  position: relative;
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 100% 0%, rgba(201, 206, 211, 0.34), transparent 32%);
  box-shadow:
    0 18px 0 -10px rgba(34, 34, 34, 0.16),
    0 28px 62px rgba(5, 5, 5, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: rotateX(1.4deg) rotateY(-1.1deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-card:nth-child(1),
.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
  grid-column: span 2;
}

.benefit-card:nth-child(4),
.benefit-card:nth-child(5) {
  grid-column: span 3;
}

.benefit-card:nth-child(even) {
  transform: rotateX(1.4deg) rotateY(1.1deg);
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 6px;
  pointer-events: none;
}

.benefit-card:hover {
  z-index: 2;
  transform: translateY(-10px) rotateX(0deg) rotateY(0deg);
  border-color: rgba(200, 164, 93, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.64)),
    radial-gradient(circle at 100% 0%, rgba(200, 164, 93, 0.22), transparent 34%);
  box-shadow:
    0 24px 0 -10px rgba(200, 164, 93, 0.24),
    0 38px 86px rgba(5, 5, 5, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.benefit-card--wide {
  grid-column: span 3;
}

.benefit-card span {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  border: 1px solid rgba(200, 164, 93, 0.38);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 850;
  line-height: 44px;
  text-align: center;
  background: rgba(200, 164, 93, 0.08);
}

.benefit-card p {
  color: rgba(34, 34, 34, 0.62);
}

.details {
  color: var(--warm-white);
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 164, 93, 0.12), transparent 30%),
    #101010;
}

.details__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.details__copy p:not(.section-kicker) {
  color: rgba(247, 243, 234, 0.68);
  font-size: 19px;
}

.detail-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  border: 1px solid var(--line-light);
  background: var(--line-light);
  list-style: none;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.045);
}

.detail-list span {
  color: rgba(247, 243, 234, 0.52);
}

.detail-images {
  position: relative;
  display: grid;
  gap: 24px;
}

.detail-image {
  margin: 0;
}

.detail-image img {
  display: block;
}

.detail-image--seat {
  aspect-ratio: 1.38;
}

.detail-image--wheel {
  width: min(58%, 380px);
  aspect-ratio: 1.25;
  margin-left: auto;
  transform: translateY(-54px);
}

.detail-image figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 8px 10px;
  color: var(--warm-white);
  background: rgba(5, 5, 5, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.specs {
  background: linear-gradient(180deg, #f3efe6 0%, #e7e0d4 100%);
}

.specs__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.specs__visual {
  align-self: center;
}

.specs__visual img {
  display: block;
  height: auto;
  object-fit: contain;
}

.spec-table {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--line-dark);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(5, 5, 5, 0.10);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(130px, 0.85fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.56);
}

.spec-table span {
  color: rgba(34, 34, 34, 0.56);
}

.proof-note {
  margin-top: 22px;
  padding: 18px;
  border-left: 3px solid var(--champagne);
  color: rgba(34, 34, 34, 0.7);
  background: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.about {
  background: #f7f3ea;
}

.about__box {
  max-width: 900px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 90% 0%, rgba(200, 164, 93, 0.18), transparent 30%);
}

.about__box p:not(.section-kicker) {
  color: rgba(34, 34, 34, 0.7);
  font-size: 19px;
}

.faq {
  color: var(--soft-black);
  background:
    radial-gradient(circle at 86% 10%, rgba(201, 206, 211, 0.46), transparent 30%),
    #f3efe6;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 120px;
}

.faq__intro p:not(.section-kicker) {
  color: rgba(34, 34, 34, 0.64);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 42px rgba(5, 5, 5, 0.07);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  min-height: 70px;
  padding: 20px 58px 20px 22px;
  border: 0;
  color: var(--soft-black);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 720;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--champagne);
  font-size: 26px;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 58px 24px 22px;
  color: rgba(34, 34, 34, 0.66);
}

.faq-answer p {
  margin: 0;
}

.final-cta {
  overflow: hidden;
  color: var(--warm-white);
  background:
    radial-gradient(circle at 78% 30%, rgba(247, 243, 234, 0.12), transparent 25%),
    linear-gradient(180deg, #070707 0%, #111 100%);
}

.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: center;
}

.final-cta p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(247, 243, 234, 0.68);
  font-size: 19px;
}

.final-cta img {
  width: min(390px, 86%);
  justify-self: center;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.34));
}

.site-footer {
  padding: 54px 0;
  color: rgba(247, 243, 234, 0.66);
  background: #050505;
}

.site-footer__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-footer img {
  width: 152px;
  height: auto;
}

.site-footer p {
  display: none;
}

.site-footer nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  justify-content: flex-end;
  align-content: start;
  white-space: nowrap;
}

.site-footer a {
  color: rgba(247, 243, 234, 0.68);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--warm-white);
}

.legal-page {
  background: var(--paper);
  color: var(--soft-black);
  --gap-6: clamp(48px, 8vw, 84px);
  --gap-4: clamp(24px, 4vw, 42px);
  --text: rgba(34, 34, 34, 0.72);
}

.legal-page .container {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-page .container--narrow {
  max-width: 640px;
}

.contact__card {
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(5, 5, 5, 0.06);
  backdrop-filter: blur(8px);
}

.thankyou-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.check-circle {
  stroke: var(--champagne);
  stroke-dasharray: 202;
  stroke-dashoffset: 0;
}

.check-mark {
  stroke: var(--soft-black);
  stroke-dasharray: 40;
  stroke-dashoffset: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(200, 164, 93, 0.12);
  color: #84642b;
  border: 1px solid rgba(200, 164, 93, 0.24);
}

.legal-page .site-header {
  display: block;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
}

.logo img {
  display: block;
  height: auto;
}

.legal-page main {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 170px 0 96px;
}

.legal-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-page h1 {
  color: var(--soft-black);
}

.gold-line {
  display: block;
  width: 74px;
  height: 2px;
  margin: 24px 0 38px;
  background: var(--champagne);
}

.legal-content {
  display: grid;
  gap: 20px;
  color: rgba(34, 34, 34, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.legal-content h2,
.legal-content h3 {
  margin: 28px 0 0;
  color: var(--soft-black);
  font-family: Outfit, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
}

.legal-content a,
.legal-page main a {
  color: var(--soft-black);
  text-decoration-color: rgba(200, 164, 93, 0.64);
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
}

.legal-content .notice,
.legal-content .seal {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

[data-reveal] {
  transition: opacity 700ms ease, transform 700ms ease;
}

html.js-active [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

html.js-active [data-reveal].reveal-left {
  transform: translateX(-32px);
}

[data-reveal].is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-left.is-visible {
  transform: translateX(0) !important;
}

[data-reveal].reveal-left.is-visible {
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .intro__grid,
  .details__grid,
  .specs__grid,
  .faq__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .faq__intro {
    position: static;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-card,
  .use-card--reverse {
    grid-template-columns: 1fr;
  }

  .use-card--reverse .use-card__media,
  .use-card--reverse .use-card__copy {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    top: 12px;
    width: min(100% - 28px, var(--container));
    min-height: 54px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    width: 170px;
    height: 38px;
    overflow: visible;
  }

  .brand img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    transform: none;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero__video {
    object-position: 68% center;
    filter: saturate(0.9) contrast(1.04) brightness(0.56);
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.52) 34%, rgba(0, 0, 0, 0.96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.44) 64%, rgba(0, 0, 0, 0.18) 100%);
  }

  .hero__content,
  .section__inner,
  .site-footer__inner {
    width: min(100% - 32px, var(--container));
  }

  .hero__content {
    align-content: end;
    padding: 34vh 0 58px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 78px);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero__actions,
  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .intro__visual {
    min-height: 420px;
  }

  .use-card__media {
    min-height: 0;
  }

  .benefit-card,
  .benefit-card--wide {
    grid-column: auto;
    min-height: 220px;
  }

  .benefit-card span {
    margin-bottom: 34px;
  }

  .detail-image--wheel {
    width: 72%;
    transform: translateY(-26px);
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .faq-item button {
    min-height: 64px;
    padding-right: 48px;
  }

  .faq-answer {
    padding-right: 22px;
  }

  .site-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }

  .legal-page main {
    width: min(100% - 32px, var(--container));
    padding-top: 130px;
  }

  .scroll-cue {
    display: none;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
