/* ════════════════════════════════════════════════════════════════
   EXPERIENCE.CSS — homepage "the site is the machine" experience.
   Loaded ONLY by index.astro (head-extra slot). Deep pages never
   pay for this file. Tokens come from styles.css (:root).
   ════════════════════════════════════════════════════════════════ */

/* ── shared act scaffolding ─────────────────────────────────── */
.act {
  position: relative;
  scroll-margin-top: 72px;
}
.act-head {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.act-head .auto-kicker { justify-content: center; }
.act-h2 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  text-wrap: balance;
  margin: 10px 0 14px;
}
.act-sub {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}
.act-sub strong { color: #fff; font-weight: 600; }


/* ═══════════════════════════════════════════════════════════
   ACT 1 — IGNITION (hero)
   ═══════════════════════════════════════════════════════════ */
.ignition {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--asphalt);
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.ignition-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.ignition-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: 0.4;
}
.ignition-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,14,18,0.55), rgba(11,14,18,0.78) 55%, var(--asphalt));
}
.ignition-glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 70%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 85% at 50% -25%, color-mix(in srgb, var(--accent) 24%, transparent), color-mix(in srgb, var(--accent-2) 7%, transparent) 45%, transparent 66%);
}
.ignition-road {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  perspective: 260px;
  overflow: hidden;
}
.ignition-road-plane {
  position: absolute;
  /* kept tight: an oversized plane rasterizes a huge layer and stalls
     first paint on throttled mobile CPUs */
  inset: 10% -18% -28%;
  transform: rotateX(72deg);
  background-image:
    linear-gradient(to right, rgba(138,151,166,0.12) 1px, transparent 0),
    linear-gradient(to bottom, rgba(138,151,166,0.12) 1px, transparent 0);
  background-size: 62px 62px;
  /* transform-based scroll: compositor-friendly, no per-frame repaint */
  animation: roadScroll 2.4s linear infinite;
  will-change: transform;
}
@keyframes roadScroll {
  from { transform: rotateX(72deg) translateY(0); }
  to { transform: rotateX(72deg) translateY(62px); }
}
@media (max-width: 768px) {
  /* photo + glow carry the mobile hero; the grid isn't worth the CPU */
  .ignition-road { display: none; }
}
.ignition-road::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--asphalt), rgba(11,14,18,0.85) 45%, rgba(11,14,18,0.25));
}
@media (prefers-reduced-motion: reduce) {
  .ignition-road-plane { animation: none; }
}

.ignition-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 96px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.ignition-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 26px;
}
.ignition-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pillPulse 2.2s ease-in-out infinite;
}
@keyframes pillPulse { 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .ignition-pill-dot { animation: none; } }

.ignition-h1 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: #fff;
  text-wrap: balance;
}
.ignition-h1 .line { display: block; }
.ignition-sub {
  margin-top: 24px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.62;
  color: var(--steel);
  max-width: 56ch;
}
.ignition-sub strong { color: #fff; font-weight: 600; }
.ignition-ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost-dark:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: rgba(255,255,255,0.09);
}
.ignition-strip {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.ignition-strip .sep { color: color-mix(in srgb, var(--accent) 55%, transparent); }

/* hero gauge cluster (island) */
.hero-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  user-select: none;
}
.hero-cluster-gauge { width: min(320px, 100%); height: auto; display: block; }
.hero-cluster-hint {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cluster-hint::before,
.hero-cluster-hint::after {
  content: '';
  width: 22px;
  height: 1px;
  background: color-mix(in srgb, var(--steel) 45%, transparent);
}
.hero-cluster-stats {
  display: flex;
  gap: 26px;
}
.hero-cluster-stat { text-align: center; }
.hero-cluster-stat dt {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.hero-cluster-stat dd {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-cluster-stat dd.is-accent { color: var(--accent-2); }

/* ═══════════════════════════════════════════════════════════
   IGNITION ENTRANCE — one-time per session (html.ignite, stamped
   pre-paint by index.astro; never stamped under reduced motion).
   Default state without the class is the fully-visible page.
   ═══════════════════════════════════════════════════════════ */
html.ignite .ignition-copy > * {
  animation: igniteRise 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
html.ignite .ignition-copy > .ignition-pill { animation-delay: 0.05s; }
html.ignite .ignition-copy > .ignition-h1 { animation-delay: 0.16s; }
html.ignite .ignition-copy > .ignition-sub { animation-delay: 0.3s; }
html.ignite .ignition-copy > .ignition-ctas { animation-delay: 0.42s; }
html.ignite .ignition-copy > .ignition-strip { animation-delay: 0.52s; }
html.ignite .hero-cluster { animation: igniteFade 0.6s ease-out both 0.2s; }
html.ignite .hero-cluster-hint { animation: igniteFade 0.5s ease-out both 1.2s; }
@keyframes igniteRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes igniteFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html.ignite .ignition-copy > *,
  html.ignite .hero-cluster,
  html.ignite .hero-cluster-hint { animation: none; }
}

@media (max-width: 980px) {
  .ignition-inner {
    grid-template-columns: 1fr;
    padding: 104px 24px 72px;
    text-align: center;
  }
  .ignition-sub { margin-inline: auto; }
  .ignition-ctas { justify-content: center; }
  .ignition-strip { justify-content: center; }
  /* The machine stays alive on phones: compact dash strip instead of
     hiding the cluster (the signature live element) entirely. */
  .hero-cluster {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 28px auto 0;
  }
  .hero-cluster-gauge { width: 150px; flex: none; }
  .hero-cluster-stats {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    margin: 0;
  }
  .hero-cluster-stat { text-align: left; }
  .hero-cluster-stat dd { font-size: 17px; }
  .hero-cluster-hint { display: none; }
}
@media (max-width: 380px) {
  .hero-cluster { gap: 14px; }
  .hero-cluster-gauge { width: 128px; }
}

/* ═══════════════════════════════════════════════════════════
   act shells (filled in later phases)
   ═══════════════════════════════════════════════════════════ */
.act-simulator { background: var(--asphalt); min-height: 60vh; padding: 110px 0; }
.act-assembly { background: var(--asphalt-2); min-height: 40vh; padding: 110px 0; }
.act-racing-line { background: var(--asphalt); min-height: 40vh; padding: 110px 0; }
.act-lap-records { min-height: 40vh; padding: 110px 0; }
.act-pit-lane { background: var(--asphalt); min-height: 40vh; padding: 110px 0; }

/* ═══════════════════════════════════════════════════════════
   ACT 2 — THE SIMULATOR
   ═══════════════════════════════════════════════════════════ */
.act-simulator {
  background:
    radial-gradient(100% 60% at 50% 0%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 60%),
    linear-gradient(180deg, var(--asphalt), var(--asphalt-2));
}
.sim-mount {
  max-width: var(--max-width);
  margin: 44px auto 0;
  padding: 0 20px;
}
@keyframes simCaret { 50% { opacity: 0; } }
@keyframes simScanSweep {
  from { left: -20%; }
  to { left: 105%; }
}
@keyframes simClickRipple {
  from { transform: scale(0.4); opacity: 1; }
  to { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 640px) {
  /* lot grid trims to 6 cards on small screens */
  .sim-lot-grid > article:nth-child(n + 7) { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   ACT 3 — THE ASSEMBLY LINE
   ═══════════════════════════════════════════════════════════ */
.al-mount { margin-top: 44px; }
.al-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: #fff;
  border-radius: 7px;
  padding: 4px 10px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
}
.al-entered .al-chip { animation: alDrop 0.5s cubic-bezier(0.2, 0.8, 0.3, 1) forwards; }
.al-ad { opacity: 0; }
.al-entered .al-ad { animation: alRise 0.6s cubic-bezier(0.2, 0.8, 0.3, 1) forwards; }
@keyframes alDrop {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: none; }
}
@keyframes alRise {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .al-chip, .al-ad { opacity: 1; animation: none !important; }
}
/* GSAP owns the pinned conveyor: the CSS entrance stands down so its
   fill-forwards state can never fight the scrubbed inline styles. */
.al-gsap .al-chip,
.al-gsap .al-ad {
  animation: none !important;
  opacity: 1;
}
/* Pinned-conveyor compact rhythm (same rule as the lap: fit the screen). */
.act-assembly.al-pin-fit {
  padding: 72px 0 48px;
  min-height: 0;
}
.al-pin-fit .al-mount { margin-top: 24px; }
.al-row { scrollbar-width: thin; }

/* ═══════════════════════════════════════════════════════════
   ACT 4 — THE RACING LINE
   ═══════════════════════════════════════════════════════════ */
.act-racing-line {
  background:
    radial-gradient(90% 55% at 50% 100%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 60%),
    var(--asphalt);
}
.rl-wrap {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.rl-track { width: 100%; height: auto; display: block; }
.rl-path-outer {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 18;
  stroke-linejoin: round;
}
.rl-path {
  fill: none;
  stroke: rgba(255,255,255,0.16);
  stroke-width: 2.5;
  stroke-dasharray: 7 7;
  stroke-linejoin: round;
}
.rl-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px var(--accent));
}
.rl-startline rect { fill: #fff; opacity: 0.85; }
.rl-startline rect.alt { fill: transparent; }
.rl-car-glow { fill: color-mix(in srgb, var(--accent) 35%, transparent); }
.rl-car-dot {
  fill: #fff;
  stroke: var(--accent);
  stroke-width: 2.5;
}
.rl-marker-ring {
  fill: var(--asphalt-2);
  stroke: rgba(255,255,255,0.25);
  stroke-width: 1.5;
}
.rl-marker-label {
  fill: var(--steel);
  font-family: var(--font-condensed);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.rl-lap-note {
  margin-top: 10px;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--steel) 70%, transparent);
}
.rl-sectors {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.rl-sector {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.rl-sector:hover { border-color: rgba(255,255,255,0.22); transform: translateX(4px); }
.rl-sector.is-active {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 12%, transparent);
}
.rl-sector-num {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--steel);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 5px 9px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.rl-sector.is-active .rl-sector-num {
  color: #1a0d04;
  background: linear-gradient(95deg, var(--accent), var(--accent-2));
  border-color: transparent;
}
.rl-sector-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.rl-sector-name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
}
.rl-sector-channel {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.rl-sector-copy { font-size: 14px; line-height: 1.55; color: var(--steel); }
.rl-sector-arrow {
  margin-left: auto;
  align-self: center;
  color: var(--steel);
  transition: color 0.3s, transform 0.3s;
}
.rl-sector:hover .rl-sector-arrow { color: var(--accent); transform: translateX(3px); }

@media (max-width: 900px) {
  .rl-wrap { grid-template-columns: 1fr; gap: 28px; }
  .rl-track-col { max-width: 420px; margin: 0 auto; }
}

/* Pinned-lap compact rhythm: a pinned scene must fit the viewport whole,
   so the act tightens its vertical spacing while it holds the screen.
   Applied by script only when the pin actually engages. */
.act-racing-line.rl-pin-fit {
  padding: 64px 0 36px;
  min-height: 0;
}
.rl-pin-fit .act-h2 { font-size: clamp(28px, 3.6vw, 42px); }
.rl-pin-fit .act-sub { font-size: 15.5px; line-height: 1.5; }
.rl-pin-fit .rl-wrap {
  margin-top: 16px;
  align-items: center;
}
.rl-pin-fit .rl-track {
  max-height: min(46vh, 470px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.rl-pin-fit .rl-sectors { gap: 8px; }
.rl-pin-fit .rl-sector { padding: 10px 12px; }
.rl-pin-fit .rl-sector-name { font-size: 16px; }
.rl-pin-fit .rl-sector-channel { font-size: 11px; }
.rl-pin-fit .rl-sector-copy { font-size: 13px; line-height: 1.45; }
.rl-pin-fit .rl-lap-note { margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   ACT 5 — LAP RECORDS
   ═══════════════════════════════════════════════════════════ */
.lr-wrap {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 0 24px;
}
.lr-odometers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.lr-odo {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lr-odo:last-child { border-right: none; }
.lr-odo-num {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.lr-odo-num > span:first-child, .lr-odo-num > span:last-child { color: var(--accent-2); }
.lr-odo-label {
  margin-top: 8px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.lr-odo-brand { margin-top: 3px; font-size: 12px; color: var(--steel); }
.lr-cases {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lr-case {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background: var(--asphalt-2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lr-case-head { display: flex; align-items: baseline; gap: 10px; }
.lr-case-metric {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 30px;
  color: var(--accent-2);
  line-height: 1;
}
.lr-case-metric-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}
.lr-case-brand {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}
.lr-case-summary { font-size: 13.5px; line-height: 1.6; color: var(--steel); }
.lr-case-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.lr-chip {
  font-size: 11px;
  color: var(--steel);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 3px 8px;
}
.lr-chip strong { color: var(--accent-2); font-weight: 700; }
.lr-case-more {
  align-items: center;
  justify-content: center;
  background: transparent;
  border-style: dashed;
}
.lr-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.lr-more-link:hover { color: var(--accent-2); }
.lr-disclaimer {
  margin-top: 36px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 760px;
}
@media (max-width: 1000px) {
  .lr-odometers { grid-template-columns: 1fr 1fr; }
  .lr-odo:nth-child(2) { border-right: none; }
  .lr-odo:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .lr-cases { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lr-cases { grid-template-columns: 1fr; }
  .lr-disclaimer { flex-direction: column; gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   ACT 6 — PIT LANE
   ═══════════════════════════════════════════════════════════ */
.act-pit-lane {
  background:
    radial-gradient(110% 65% at 50% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 55%),
    linear-gradient(180deg, var(--asphalt-2), var(--asphalt));
}
.pl-wrap {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding: 0 24px;
}
.pl-bays {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pl-bay {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--asphalt-2);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pl-bay:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.4), 0 0 40px color-mix(in srgb, var(--accent) 10%, transparent);
}
.pl-bay-door {
  display: block;
  height: 86px;
  position: relative;
  background: linear-gradient(180deg, var(--asphalt-3), var(--asphalt-2));
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.pl-bay-slats {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 12px, rgba(255,255,255,0.05) 12px 14px);
  transition: transform 0.45s cubic-bezier(0.3, 0.7, 0.3, 1);
}
.pl-bay:hover .pl-bay-slats { transform: translateY(-30%); }
.pl-bay-door::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.55;
  transition: opacity 0.3s;
}
.pl-bay:hover .pl-bay-door::after { opacity: 1; }
.pl-bay-body { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px 26px; }
.pl-bay-tag {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.pl-bay-name {
  font-family: var(--font-condensed);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}
.pl-bay-copy { font-size: 14.5px; line-height: 1.6; color: var(--steel); }
.pl-bay-cta {
  margin-top: 8px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.pl-form-band {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.pl-form-h3 {
  font-family: var(--font-condensed);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin: 12px 0 14px;
}
.pl-form-copy > p { font-size: 15.5px; line-height: 1.7; color: var(--steel); }
.pl-form-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pl-form-points li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: #fff;
}
.pl-form-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-2);
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}
.pl-form-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: var(--asphalt-2);
  padding: 28px;
}
.pl-form-card .ac-field label {
  color: #f8fafc;
}
.pl-form-card .ac-form-footer {
  color: #a8b2bd;
}
@media (max-width: 900px) {
  .pl-bays { grid-template-columns: 1fr; }
  .pl-form-band { grid-template-columns: 1fr; gap: 28px; }
}
