/* =====================================================
   PITLANEPOETRY — DROP 001
   Editorial · Dark · Cold chrome
   Premium drop landing: fashion · motorsport · atelier confidentiel
   ===================================================== */

:root {
  /* Colour */
  --bg:           #0A0A0A;
  --bg-2:         #0E0E0E;
  --bg-3:         #111111;
  --ink:          #F1EEE9;
  --ink-soft:     #B0ACA6;
  --ink-mid:      #7C7872;
  --ink-muted:    #5A5650;
  --ink-faint:    #38332F;
  --silver:       #C8CDD3;
  --silver-soft:  #9DA1A6;
  --silver-dim:   rgba(200, 205, 211, 0.16);
  --line:         rgba(241, 238, 233, 0.07);
  --line-strong:  rgba(241, 238, 233, 0.14);
  --line-silver:  rgba(200, 205, 211, 0.28);
  --error:        #C95C45;
  --error-bg:     rgba(201, 92, 69, 0.08);
  --error-border: rgba(201, 92, 69, 0.32);

  /* Typography — Manrope only */
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, Helvetica, Arial, sans-serif;

  /* Spacing */
  --side: 22px;
  --max:  1480px;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100svh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

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


/* =====================================================
   NAV — fixed top, premium tag right
   ===================================================== */
.site-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px var(--side);
  background: linear-gradient(to bottom, rgba(10,10,10,0.96), rgba(10,10,10,0.4) 70%, rgba(10,10,10,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  display: block;
  width: 160px;
  line-height: 0;
  opacity: 1;
}

.logo-img {
  width: 100%;
  height: auto;
}

.nav-tag {
  position: absolute;
  right: var(--side);
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  padding: 9px 12px 9px 11px;
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .nav-tag { display: inline-flex; }
}

.nav-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver);
  box-shadow: 0 0 0 3px rgba(200, 205, 211, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}


/* =====================================================
   SHARED TYPE
   ===================================================== */
.eyebrow,
.section-eyebrow,
.form-label,
.form-card-label,
.transparency-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--silver-soft);
}

.microcopy {
  max-width: 36ch;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}


/* =====================================================
   BUTTON — Silver fill, dark text
   ===================================================== */
.btn-primary {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  background: var(--silver);
  color: #0A0A0A;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  padding: 0 26px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 120ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.btn-primary:hover { background: #DEE2E6; }
.btn-primary:active { transform: translateY(1px); }

.btn-primary:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 3px;
}

.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-arrow {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 180ms ease;
}

.btn-primary:hover .btn-arrow { transform: translateX(3px); }


/* =====================================================
   HERO — text left, single image right (edge-to-edge)
   ===================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 22px;
  padding: 120px var(--side) 60px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 4px;
}

.hero-headline {
  font-family: var(--sans);
  font-size: clamp(2.75rem, 11vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}

.hero-headline .line { display: block; }

.hero-subtitle {
  max-width: 30ch;
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.hero-lead {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.003em;
  line-height: 1.65;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
}

.hero-stamps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 0 0;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 460px;
}

.hero-stamps li {
  position: relative;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-soft);
}

.hero-stamps li + li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: var(--silver-soft);
  opacity: 0.5;
}

/* ── Hero gallery ─ */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 70svh;
  background: var(--bg-2);
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.94) contrast(1.05) saturate(0.94);
}

.hero-slide:nth-child(1) .hero-img { object-position: center 28%; }
.hero-slide:nth-child(2) .hero-img { object-position: center 42%; }
.hero-slide:nth-child(3) .hero-img { object-position: center 30%; }
.hero-slide:nth-child(4) .hero-img { object-position: center 36%; }
.hero-slide:nth-child(5) .hero-img { object-position: center 42%; }

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.32), rgba(10, 10, 10, 0) 42%),
    linear-gradient(to right, rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0) 40%);
}

.hero-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px;
  border: 1px solid rgba(241, 238, 233, 0.16);
  background: rgba(10, 10, 10, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-carousel-btn,
.hero-carousel-dot {
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.hero-carousel-btn {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  transition: color 180ms ease, transform 120ms ease;
}

.hero-carousel-btn:hover { color: var(--silver); }
.hero-carousel-btn:active { transform: translateY(1px); }

.hero-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-carousel-dot {
  position: relative;
  width: 20px;
  height: 20px;
}

.hero-carousel-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(241, 238, 233, 0.35);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-carousel-dot.is-active::before {
  background: var(--silver);
  transform: translate(-50%, -50%) scale(1.45);
}

.hero-carousel-btn:focus-visible,
.hero-carousel-dot:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 2px;
}

.hero-visual-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(241, 238, 233, 0.22);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 4;
}


/* =====================================================
   WAITLIST SECTION — Benefits left, form right
   ===================================================== */
.waitlist-section {
  padding: 90px var(--side);
  scroll-margin-top: 80px;
  border-bottom: 1px solid var(--line);
}

.waitlist-grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.waitlist-context {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-eyebrow {
  display: inline-block;
  align-self: flex-start;
}

.section-heading {
  font-family: var(--sans);
  font-size: clamp(2.25rem, 7vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}

.section-lede {
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  padding-bottom: 6px;
}

/* ── Benefits list ─ */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-num {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--silver);
  padding-top: 4px;
}

.benefit-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.benefit-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-transform: none;
}

.benefit-copy {
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 38ch;
}


/* =====================================================
   FORM CARD — premium conversion zone
   ===================================================== */
.waitlist-form-wrap {
  display: flex;
  align-items: flex-start;
}

.form-card {
  position: relative;
  width: 100%;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 32px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--line-silver) 30%, var(--line-silver) 70%, transparent 100%);
}

.form-card-label {
  align-self: flex-start;
}

.form-card-title {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: -10px;
}

/* ── Price block (hero + form card) ─ */
.hero-price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  padding: 14px 18px;
  border: 1px solid var(--line-silver);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(200, 205, 211, 0.04), rgba(200, 205, 211, 0));
  margin-top: 8px;
}

.hero-price .price-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 4px 8px;
  border: 1px solid var(--line-silver);
  border-radius: 999px;
}

.hero-price .price-amount {
  font-family: var(--sans);
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.hero-price .price-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.benefit-price {
  display: inline-block;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--silver);
}

.form-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line-silver);
  border-radius: 2px;
  background: rgba(200, 205, 211, 0.04);
}

.form-card-price-amount {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.form-card-price-meta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.form-consent {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--ink-mid);
}

.waitlist-form,
.success-state {
  width: 100%;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 0;
  min-inline-size: 0;
  padding: 0;
}

/* ── Inputs ─ */
.form-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: rgba(241, 238, 233, 0.015);
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  padding: 0 15px;
  transition: border-color 160ms ease, background 160ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--ink-faint); }

.form-input:focus {
  outline: none;
  border-color: var(--silver);
  background: rgba(241, 238, 233, 0.025);
}

.form-input.is-invalid { border-color: var(--error); }

/* ── Size selector ─ */
.size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.size-btn { cursor: pointer; }

.size-btn input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.size-face {
  display: grid;
  place-items: center;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  background: rgba(241, 238, 233, 0.015);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
  user-select: none;
}

.size-btn:hover .size-face {
  border-color: rgba(241, 238, 233, 0.3);
  color: var(--ink);
}

.size-btn input[type="radio"]:checked + .size-face {
  border-color: var(--silver);
  background: var(--silver-dim);
  color: var(--silver);
}

.size-btn input[type="radio"]:focus-visible + .size-face {
  outline: 2px solid var(--silver);
  outline-offset: 2px;
}

.size-grid.is-invalid .size-face { border-color: var(--error); }

/* ── Field errors ─ */
.field-error {
  display: block;
  min-height: 16px;
  color: var(--error);
  font-size: 12px;
  line-height: 1.4;
}

/* ── Submit ─ */
.form-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.btn-submit {
  width: 100%;
  min-height: 54px;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.form-microcopy { max-width: none; }

.btn-label   { transition: opacity 180ms ease; }

.btn-spinner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.btn-submit.is-loading .btn-label   { opacity: 0; }
.btn-submit.is-loading .btn-spinner { opacity: 1; }

.spinner-ring {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 10, 10, 0.28);
  border-top-color: #0A0A0A;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Form-level error ─ */
.form-error-banner {
  border: 1px solid var(--error-border);
  background: var(--error-bg);
  color: #E0937F;
  font-size: 13px;
  line-height: 1.55;
  padding: 13px 15px;
}

/* ── Success ─ */
.success-state {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0 4px;
}

.success-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--silver);
  color: var(--silver);
  font-size: 15px;
}

.success-heading {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
}

.success-sub {
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}


/* =====================================================
   TRANSPARENCY
   ===================================================== */
.transparency-section {
  padding: 80px var(--side) 90px;
  border-bottom: 1px solid var(--line);
}

.transparency-block {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  border-left: 1px solid var(--silver);
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.transparency-copy {
  max-width: 70ch;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.0625rem, 2.3vw, 1.3125rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
}


/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 30px var(--side) 40px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-handle {
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-handle:hover { color: var(--silver); }

.footer-dot     { color: var(--ink-faint); }
.footer-tagline { color: var(--ink-muted); }


/* =====================================================
   RESPONSIVE — Tablet
   ===================================================== */
@media (min-width: 720px) {
  :root { --side: 40px; }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    min-height: 100svh;
    align-items: stretch;
  }

  .hero-copy {
    padding: 140px var(--side) 80px;
    gap: 26px;
  }

  .hero-headline {
    font-size: clamp(3.5rem, 6.8vw, 5rem);
  }

  .hero-visual {
    min-height: 100svh;
  }

  .waitlist-section {
    padding-block: 130px;
  }

  .waitlist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .form-card {
    padding: 38px 34px;
  }

  .transparency-section {
    padding-block: 110px;
  }

  .transparency-block {
    padding-left: 28px;
  }
}


/* =====================================================
   RESPONSIVE — Desktop
   ===================================================== */
@media (min-width: 1024px) {
  :root { --side: clamp(48px, 4.5vw, 88px); }

  .nav-logo { width: 220px; }
  .site-nav { padding: 28px var(--side); }

  /* Single-column hero on desktop: text on top, carousel centered below */
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 140px var(--side) 60px;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }

  .hero-headline {
    font-size: clamp(4rem, 6vw, 6rem);
    letter-spacing: -0.045em;
  }

  .hero-headline .line { display: inline; }
  .hero-headline .line + .line::before { content: " "; }

  .hero-subtitle { font-size: 18px; max-width: 540px; }
  .hero-lead { font-size: 14.5px; padding-top: 4px; max-width: 540px; }

  .hero-cta { align-items: center; }
  .hero-stamps { justify-content: center; }

  /* ── Centered filmstrip carousel ── */
  .hero-visual {
    min-height: auto;
    width: 100%;
    padding: 24px 0 96px;
    display: block;
    background: var(--bg);
    overflow: hidden;
  }

  .hero-visual::after { display: none; }

  .hero-slides {
    position: relative;
    display: flex;
    align-items: center;
    inset: auto;
    width: max-content;
    height: min(72svh, 680px);
    gap: clamp(20px, 2.4vw, 44px);
    will-change: transform;
    transition: transform 720ms cubic-bezier(.4, 0, .2, 1);
  }

  .hero-slide {
    position: relative;
    inset: auto;
    flex: 0 0 clamp(300px, 32vw, 460px);
    height: 100%;
    opacity: 0.32;
    filter: grayscale(0.45) brightness(0.6);
    transform: scale(0.9);
    transition:
      opacity 720ms cubic-bezier(.4, 0, .2, 1),
      filter 720ms cubic-bezier(.4, 0, .2, 1),
      transform 720ms cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
  }

  .hero-slide.is-active {
    opacity: 1;
    filter: none;
    transform: scale(1);
    cursor: default;
  }

  .hero-img {
    object-fit: contain;
    object-position: center;
    filter: none;
  }

  .hero-slide:nth-child(n) .hero-img { object-position: center; }

  .hero-carousel-controls {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 32px auto 0;
    display: flex;
    width: fit-content;
  }

  .hero-visual-tag { display: none; }

  .waitlist-section {
    padding-block: 160px;
  }

  .waitlist-grid {
    gap: 120px;
    grid-template-columns: 1fr 0.85fr;
  }

  .waitlist-context { gap: 26px; }

  .benefit {
    grid-template-columns: 64px 1fr;
    padding: 28px 0;
  }

  .benefit-title { font-size: 17px; }
  .benefit-copy  { font-size: 14px; max-width: 42ch; }

  .form-card {
    padding: 44px 40px;
  }

  .form-card-title {
    font-size: 26px;
  }

  .transparency-section {
    padding-block: 140px;
  }

  .transparency-block {
    padding-left: 36px;
  }

  .site-footer {
    padding: 40px var(--side) 52px;
  }
}


/* =====================================================
   RESPONSIVE — XL
   ===================================================== */
@media (min-width: 1440px) {
  .hero-headline {
    font-size: clamp(5.5rem, 5.6vw, 7rem);
  }

  .section-heading {
    font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  }
}


/* =====================================================
   ACCESSIBILITY
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
