/* ════════════════════════════════════════════════════════════
   THE PLUG — Lights On at Last Call
   charcoal #1D1B1B · cream #F2E8D8 · coral #F06A4A · neon #FF8C32
   ════════════════════════════════════════════════════════════ */

:root {
  --charcoal: #1D1B1B;
  --charcoal-2: #242020;
  --cream: #F2E8D8;
  --coral: #F06A4A;
  --neon: #FF8C32;
  --offwhite: #F8F5EF;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

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

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* anchor targets clear the fixed nav (esp. on touch where Lenis is off) */
section[id], #top { scroll-margin-top: 84px; }

/* film grain over everything */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url('../assets/grain.png') repeat;
  background-size: 128px;
  pointer-events: none;
  z-index: 2000;
  opacity: .5;
}

::selection { background: var(--coral); color: var(--charcoal); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 3000;
  background: var(--coral); color: var(--charcoal);
  padding: 12px 20px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ── type utilities ─────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}

.line { display: block; overflow: hidden; }
.line-inner { display: block; will-change: transform; }

/* ── buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0 32px;
  height: 56px;
  cursor: pointer;
  position: relative;
  transition: transform .15s var(--ease-out), background .2s, color .2s, box-shadow .2s;
}
.btn:active { transform: scale(.97); }
.btn-coral { background: var(--coral); color: var(--charcoal); }
.btn-coral:hover { background: #f37e5f; box-shadow: 0 6px 30px rgba(240, 106, 74, .35); }
.btn-ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(242, 232, 216, .4); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cream); }
.btn-lg { height: 64px; padding: 0 44px; font-size: 18px; }
.btn-block { width: 100%; height: 60px; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 2px; }
/* charcoal outline on light chapters — coral fails 3:1 on off-white */
.theme-light :focus-visible,
body[data-lights="on"] .nav :focus-visible { outline-color: var(--charcoal); }

/* ════════════ LOADER ════════════ */
.loader {
  position: fixed; inset: 0; z-index: 4000;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
}
.loader-bolt-path { stroke-dasharray: 240; stroke-dashoffset: 240; }
.loader-wipe {
  position: absolute; inset: 0;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: top;
}
body.loaded .loader { display: none; }

/* ════════════ FLASH (lights switch) ════════════ */
.flash {
  position: fixed; inset: 0; z-index: 1500;
  background: var(--offwhite);
  opacity: 0;
  pointer-events: none;
}

/* ════════════ NAV ════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(24px, 4vw);
  transition: background .35s, box-shadow .35s;
}
body[data-scrolled] .nav { background: rgba(29, 27, 27, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
body[data-lights="on"][data-scrolled] .nav { background: rgba(248, 245, 239, .85); }

.nav-logo img { height: 40px; width: auto; }
.nav-logo-light { display: none; }
body[data-lights="on"] .nav-logo-dark { display: none; }
body[data-lights="on"] .nav-logo-light { display: block; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  transition: color .3s;
}
body[data-lights="on"] .nav-links a { color: var(--charcoal); }

/* riso misregistration hover — coral clone offset */
.nav-links a[data-nav]::before {
  content: attr(data-text) / "";  /* empty alt — decorative clone, not announced by AT */
  position: absolute; left: 0; top: 0;
  color: var(--coral);
  opacity: 0;
  transform: translate(0, 0);
  transition: transform .18s var(--ease-out), opacity .18s;
  pointer-events: none;
}
.nav-links a[data-nav]:hover::before { opacity: 1; transform: translate(-2px, 2px); }

.nav-phone { opacity: .75; font-variant-numeric: tabular-nums; }
.nav-cta {
  background: var(--coral);
  color: var(--charcoal) !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px !important;
  letter-spacing: .06em !important;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #f37e5f; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav-burger span {
  width: 26px; height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), background .3s;
}
body[data-lights="on"] .nav-burger span { background: var(--charcoal); }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 900;
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
  gap: 8px;
  padding: 0 28px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

/* while the dark menu is open, force the nav to its dark appearance regardless of lights state */
body.menu-open .nav { background: transparent !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
body.menu-open .nav-burger span { background: var(--cream) !important; }
body.menu-open .nav-logo-dark { display: block !important; }
body.menu-open .nav-logo-light { display: none !important; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 52px);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding: 8px 0;
  letter-spacing: .01em;
}
.mobile-menu a:nth-child(4) { color: var(--coral); }
.mobile-menu-phone {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600;
  opacity: .7;
  margin-top: 24px;
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 24px) max(24px, 4vw) 0;
  overflow: hidden;
}

/* wood-slat wall lines */
.hero-wall {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 119px,
    rgba(242, 232, 216, .05) 119px 120px
  );
}
/* hard-edged sconce light cone */
.hero-cone {
  position: absolute;
  top: 0; right: 4%;
  width: 46%; height: 100%;
  background: rgba(242, 232, 216, .035);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0% 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 24px;
  align-items: center;
  width: min(1440px, 100%);
  margin: 0 auto;
  min-height: calc(100svh - var(--nav-h) - 24px);
}

.hero-eyebrow { margin-bottom: 22px; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(96px, 14.5vw, 230px);
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-weight: 400;
  color: var(--cream);
}

.lit-dot { color: var(--coral); }
.hero-h1 .line:last-child .line-inner { color: var(--neon); text-shadow: 0 0 38px rgba(255, 140, 50, 0); }
.hero-h1.is-lit .line:last-child .line-inner { text-shadow: 0 0 38px rgba(255, 140, 50, .45); }

.hero-sub {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  max-width: 46ch;
  opacity: .82;
  margin-top: 30px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

.hero-stats {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 232, 216, .14);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-stats i { color: var(--coral); font-style: normal; }
.hero-stats span:first-child { color: var(--neon); }

.hero-machine {
  position: relative;
  align-self: end;
  margin-bottom: -6vh;            /* crop past the fold — scroll down the machine */
  padding: 0 2vw;
}
.machine { width: 100%; max-width: 560px; height: auto; display: block; margin: 0 auto; }

.m-price {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  fill: var(--cream);
  opacity: .5;
}
.m-cell {
  fill: #1B1918;
  stroke: rgba(242, 232, 216, .13);
  stroke-width: 1.5;
  transition: fill .45s, stroke .45s;
}
.machine-sm .m-slot { transition: opacity .45s; }
.m-slot.dim { opacity: .42; }
.m-slot.lit .m-cell { fill: #2B2522; stroke: var(--coral); }

.m-ticker { animation: ticker 9s linear infinite; }
@keyframes ticker { to { transform: translateX(-250px); } }

.hero-scrollcue {
  position: absolute;
  bottom: 28px; left: max(24px, 4vw);
  width: 1.5px; height: 56px;
  background: rgba(242, 232, 216, .18);
  overflow: hidden;
}
.hero-scrollcue span {
  position: absolute; inset: 0;
  background: var(--coral);
  transform: scaleY(.35);
  transform-origin: top;
  animation: scrollcue 2s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(-100%) scaleY(.35); }
  60%, 100% { transform: translateY(300%) scaleY(.35); }
}

/* ════════════ MARQUEE ════════════ */
.marquee-band {
  position: relative;
  padding: 56px 0;
  transform: rotate(-2deg) scale(1.02);
  border-top: 1px solid rgba(242, 232, 216, .1);
  border-bottom: 1px solid rgba(242, 232, 216, .1);
  background: var(--charcoal);
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 232, 216, .32);
  padding-right: 8px;
}
.marquee-track i { font-style: normal; color: var(--coral); -webkit-text-stroke: 0; }
.marquee-b .marquee-track span { color: var(--cream); -webkit-text-stroke: 0; opacity: .92; }
.marquee-b { margin-top: 10px; }
.marquee-b .marquee-track i { color: var(--neon); }

/* ════════════ MANIFESTO ════════════ */
.manifesto {
  padding: clamp(120px, 16vw, 220px) max(24px, 4vw);
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}
.manifesto .eyebrow { margin-bottom: 26px; }
.manifesto-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 110px);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -.005em;
}
.manifesto-h2 em { font-style: normal; color: var(--coral); }
.strike-wrap { position: relative; white-space: nowrap; }
.strike {
  position: absolute;
  left: -2%; right: -2%;
  top: 54%;
  height: clamp(5px, .55vw, 9px);
  background: var(--coral);
  transform: scaleX(0) rotate(-1.6deg);
  transform-origin: left center;
  border-radius: 4px;
}
.manifesto-sub {
  margin-top: 34px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  max-width: 56ch;
  opacity: .75;
}

/* ════════════ STOCKED — PRODUCTS ════════════ */
.stocked { position: relative; }
.stocked-pin { padding: clamp(60px, 8vw, 100px) max(24px, 4vw); }
.stocked-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 96px);
  width: min(1340px, 100%);
  margin: 0 auto;
  align-items: start;
}
.stocked-machine { position: sticky; top: calc(var(--nav-h) + 20px); }
.machine-sm { max-width: 470px; }

.stocked-copy { padding-top: 2vh; }
.stocked-h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 104px);
  line-height: .94;
  text-transform: uppercase;
  font-weight: 400;
  margin: 18px 0 10px;
}

.chapters { margin-top: 8px; }
.chapter {
  padding: clamp(36px, 6vh, 64px) 0;
  border-bottom: 1px solid rgba(242, 232, 216, .12);
  transition: opacity .4s;
}
.chapter-count {
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em;
  color: var(--coral);
  margin-bottom: 14px;
}
.chapter h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .01em;
  margin-bottom: 12px;
}
.chapter > p { font-size: 16px; line-height: 1.65; opacity: .78; max-width: 50ch; }

.chapter-menu { list-style: none; margin-top: 22px; }
.chapter-menu li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 9px 0;
  font-size: 14.5px;
  font-weight: 500;
}
.chapter-menu li span:first-child { white-space: nowrap; }
.chapter-menu li span:last-child {
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
}
.chapter-menu .dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(242, 232, 216, .3);
  transform: translateY(-4px);
}

.stocked-chip {
  margin-top: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
}
.stocked-chip span { display: block; margin-top: 8px; color: var(--neon); }

/* ════════════ THE DEAL — lights on ════════════ */
.deal {
  background: var(--offwhite);
  color: var(--charcoal);
  padding: clamp(90px, 12vw, 160px) max(24px, 4vw);
}
.deal-inner { width: min(1340px, 100%); margin: 0 auto; }
.deal-eyebrow { color: var(--charcoal); }
.deal-h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 150px);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 400;
  margin: 16px 0 clamp(40px, 5vw, 80px);
}

.deal-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr) minmax(0, 3fr);
  gap: clamp(36px, 4.5vw, 72px);
  align-items: start;
}

.deal-big { margin-bottom: 44px; }
.deal-num {
  font-family: var(--font-display);
  font-size: clamp(96px, 10vw, 170px);
  line-height: .9;
  letter-spacing: -.01em;
  color: var(--charcoal);
}
.deal-num-label {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 30ch;
  opacity: .72;
}

.deal-photo {
  margin-top: 12px;
  transform: rotate(-1.5deg);
  max-width: 360px;
}
.deal-photo-frame { position: relative; }
.deal-photo img {
  border: 4px solid var(--charcoal);
  filter: grayscale(1) contrast(1.12) sepia(.22);
  width: 100%;
}
.deal-photo-frame::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(29, 27, 27, .35) 1px, transparent 1.2px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.deal-photo-frame::after {
  content: '';
  position: absolute;
  top: -14px; left: 50%;
  width: 96px; height: 28px;
  transform: translateX(-50%) rotate(2deg);
  background: rgba(242, 232, 216, .85);
  border: 1px solid rgba(29, 27, 27, .12);
}
.deal-photo figcaption {
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .6;
}

.deal-table { list-style: none; }
.deal-table li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(29, 27, 27, .14);
  transition: background .2s;
}
.deal-table li:first-child { border-top: 1px solid rgba(29, 27, 27, .14); }
.deal-table li:hover { background: rgba(240, 106, 74, .06); }
.deal-table strong { display: block; font-size: 16px; font-weight: 700; letter-spacing: .01em; }
.deal-table em { display: block; font-style: normal; font-size: 14px; margin-top: 3px; opacity: .65; }
.stamp {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--coral);
  color: var(--charcoal);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.fineprint {
  position: relative;
  margin-top: 40px;
  padding: 28px 30px 30px;
  background: #fff;
  border: 2px solid var(--charcoal);
  box-shadow: 7px 7px 0 rgba(29, 27, 27, .9);
}
.fineprint h3 {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
}
.fineprint-sub { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin: 4px 0 14px; }
.fineprint p:last-child { font-size: 15.5px; line-height: 1.6; }
.fineprint-sticker {
  position: absolute;
  top: -16px; right: -14px;
  background: var(--coral);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  transform: rotate(7deg);
  box-shadow: 0 4px 14px rgba(29, 27, 27, .18);
}

.deal-schematic { position: sticky; top: calc(var(--nav-h) + 24px); }
.schematic { width: 100%; max-width: 380px; margin: 0 auto; display: block; }

/* ════════════ HOW IT WORKS ════════════ */
.how {
  background: var(--offwhite);
  color: var(--charcoal);
  padding: 0 max(24px, 4vw) clamp(100px, 12vw, 170px);
}
.how-inner { width: min(1240px, 100%); margin: 0 auto; }
.how-h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 120px);
  text-transform: uppercase;
  font-weight: 400;
  line-height: .95;
  margin: 16px 0 clamp(30px, 4vw, 60px);
}

.steps { list-style: none; position: relative; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(20px, 3.5vw, 56px);
  align-items: center;
  padding: clamp(40px, 6vh, 72px) 0;
  border-top: 1px solid rgba(29, 27, 27, .14);
}
.step-ghost {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 190px);
  line-height: .8;
  color: rgba(29, 27, 27, .07);
  user-select: none;
}
.step-icon { width: clamp(44px, 4.5vw, 64px); height: auto; color: var(--coral); flex: 0 0 auto; }
.step-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
.step-copy p { font-size: 16px; line-height: 1.65; max-width: 52ch; opacity: .72; }

.how-cta { margin-top: clamp(40px, 5vw, 64px); text-align: center; }

/* ════════════ LAST CALL ════════════ */
.lastcall {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(100px, 13vw, 180px) max(24px, 4vw) clamp(80px, 9vw, 130px);
}
.lastcall-inner { width: min(1240px, 100%); margin: 0 auto; }

.neon-sign-wrap { display: flex; justify-content: center; margin-bottom: clamp(56px, 8vw, 96px); }
.neon-sign { width: min(620px, 92%); height: auto; }

.lastcall-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.lastcall-h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 120px);
  line-height: .94;
  text-transform: uppercase;
  font-weight: 400;
}
.lastcall-sub { margin-top: 26px; font-size: 17px; line-height: 1.65; opacity: .78; max-width: 42ch; }

.contact-rows { list-style: none; margin-top: 40px; }
.contact-rows li { border-top: 1px solid rgba(242, 232, 216, .14); }
.contact-rows li:last-child { border-bottom: 1px solid rgba(242, 232, 216, .14); }
.contact-rows a, .contact-rows span {
  position: relative;
  display: block;
  padding: 18px 2px;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
}
.contact-rows a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 100%;
  background: rgba(240, 106, 74, .14);
  transform: translateY(101%);
  transition: transform .3s var(--ease-out);
  z-index: -1;
}
.contact-rows a:hover::after { transform: translateY(0); }
.contact-rows span { opacity: .6; font-weight: 500; }
.lastcall-note { margin-top: 22px; font-size: 13.5px; opacity: .55; }

/* receipt form */
.receipt {
  position: relative;
  background: var(--offwhite);
  color: var(--charcoal);
  border-radius: 4px;
  padding: 34px clamp(22px, 3vw, 40px) 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}
.receipt::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(135deg, var(--offwhite) 6px, transparent 0) 0 0 / 14px 12px repeat-x,
              linear-gradient(225deg, var(--offwhite) 6px, transparent 0) 7px 0 / 14px 12px repeat-x;
}
.receipt-head {
  text-align: center;
  border-bottom: 1.5px dashed rgba(29, 27, 27, .3);
  padding-bottom: 18px;
  margin-bottom: 26px;
}
.receipt-head p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
}
.receipt-head p + p { margin-top: 5px; opacity: .55; letter-spacing: .2em; font-weight: 600; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.field label span { opacity: .5; text-transform: none; letter-spacing: .04em; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(29, 27, 27, .35);
  padding: 9px 2px 11px;
  border-radius: 0;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231D1B1B' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 26px;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(29, 27, 27, .35); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--coral);
  border-bottom-width: 2px;
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--charcoal);
  outline-offset: 2px;
}
.field input.invalid, .field select.invalid { border-bottom-color: var(--coral); border-bottom-width: 2.5px; background: rgba(240,106,74,.05); }

.form-error {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--charcoal);
  border-left: 4px solid var(--coral);
  padding-left: 12px;
  margin-bottom: 16px;
}

.receipt-success { text-align: center; padding: 44px 10px 36px; }
.success-stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 48px;
  text-transform: uppercase;
  color: var(--coral);
  border: 4px solid var(--coral);
  border-radius: 10px;
  padding: 8px 26px;
  transform: rotate(-6deg);
  margin-bottom: 22px;
}
.receipt-success p:last-child { font-size: 16px; line-height: 1.6; opacity: .75; }

/* ════════════ FOOTER ════════════ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(242, 232, 216, .1);
  padding: clamp(70px, 8vw, 110px) max(24px, 4vw) 110px;
  text-align: center;
}
.footer-inner { width: min(900px, 100%); margin: 0 auto; }
.footer-logo { width: min(280px, 60vw); height: auto; margin: 0 auto 26px; }
.footer-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--cream);
  opacity: .92;
}
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; margin: 34px 0 38px; }
.footer-links a {
  font-size: 13px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  opacity: .65;
  transition: opacity .2s, color .2s;
}
.footer-links a:hover { opacity: 1; color: var(--coral); }
.footer-legal { font-size: 12.5px; line-height: 2; opacity: .62; }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { color: var(--coral); }

/* ════════════ STICKY MOBILE BAR ════════════ */
.sticky-bar {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1100;
  display: none;
  gap: 10px;
  transform: translateY(140%);
  visibility: hidden;
  transition: transform .45s var(--ease-out), visibility .45s;
}
.sticky-bar.show { transform: translateY(0); visibility: visible; }
body.menu-open .sticky-bar { transform: translateY(140%); visibility: hidden; }
.sticky-cta { flex: 1; height: 58px; box-shadow: 0 10px 36px rgba(0, 0, 0, .5); }
.sticky-call {
  flex: 0 0 58px;
  display: grid; place-items: center;
  height: 58px;
  background: var(--charcoal-2);
  color: var(--cream);
  border: 1.5px solid rgba(242, 232, 216, .3);
  border-radius: 999px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, .5);
}

/* ════════════ CURSOR ════════════ */
.cursor, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    background: var(--cream);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3000;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    display: grid; place-items: center;
    position: fixed; top: 0; left: 0;
    width: 44px; height: 44px;
    margin: -22px 0 0 -22px;
    border: 1.5px solid var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2990;
    opacity: 0;
    transform: scale(.5);
    transition: opacity .25s, transform .25s var(--ease-out);
  }
  .cursor-ring span { font-size: 13px; color: var(--coral); opacity: 0; transition: opacity .2s; }
  body.cursor-hover .cursor-ring { opacity: 1; transform: scale(1); }
  body.cursor-hover .cursor-ring span { opacity: 1; }
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { padding-top: 2vh; }
  .hero-h1 { font-size: clamp(88px, 24vw, 160px); }
  .hero-machine { margin-bottom: -16vh; padding: 24px 6vw 0; }
  .machine { max-width: 340px; }
  .hero-scrollcue { display: none; }

  .stocked-grid { grid-template-columns: 1fr; }
  .stocked-machine { position: sticky; top: var(--nav-h); z-index: 1; background: var(--charcoal); padding: 8px 0 4px; }
  .machine-sm { max-width: min(46vw, 240px); }
  .stocked-copy { padding-top: 0; }

  .deal-grid { grid-template-columns: 1fr; }
  .deal-schematic { position: static; order: 3; }
  .schematic { max-width: 330px; }
  .deal-photo { max-width: 320px; }

  .step { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .step-ghost { grid-column: 1 / -1; font-size: clamp(72px, 16vw, 120px); }

  .lastcall-grid { grid-template-columns: 1fr; }

  .sticky-bar { display: flex; }

  .footer { padding-bottom: 150px; }
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .marquee-track span { font-size: 30px; }
  .hero-stats { gap: 10px; font-size: 11.5px; }
  .btn { padding: 0 26px; }
  .hero-ctas .btn { width: 100%; }
}

/* ════════════ REDUCED MOTION / STATIC ════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
@media (prefers-reduced-motion: reduce) { body { --static: 1; } }
body.static { --static: 1; }
body.static .loader,
body.static .hero-scrollcue { display: none !important; }
body.static .line-inner { transform: none !important; }
body.static .m-screen, body.static .m-neon-tube { opacity: 1 !important; }
body.static .m-neon-blur { opacity: .7 !important; }
body.static .m-aura { opacity: .45 !important; }
body.static .strike { transform: scaleX(1) rotate(-1.6deg) !important; }
body.static .n-tube { opacity: 1 !important; }
body.static .n-blur { opacity: .6 !important; }
body.static .icon-draw, body.static .s-draw * { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
