:root {
  --paper: #f2eee7;
  --paper-deep: #e8e0d3;
  --red: #d60015;
  --black: #0b0a09;
  --violet: #3c214f;
  --violet-soft: #65506f;
  --sheet-w: 560px;
}

* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; min-height: 100%; }
html { background: var(--paper); }
body {
  min-height: 100dvh;
  overflow: hidden;
  background: transparent;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overscroll-behavior: none;
}
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }

.poster {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.52), transparent 40%),
    linear-gradient(180deg, #f5f1ea 0%, var(--paper) 58%, #eee8de 100%);
}

.poster-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .035;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.masthead {
  position: absolute;
  z-index: 2;
  top: 4.6vh;
  left: 50%;
  width: min(90vw, 1460px);
  transform: translateX(-50%);
  pointer-events: none;
}

.headline {
  color: var(--red);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(82px, 12vw, 210px);
  line-height: .74;
  font-weight: 950;
  letter-spacing: -.085em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}
.headline-bottom { margin-top: .045em; }

.product-strip {
  position: absolute;
  z-index: 4;
  top: clamp(50%, 53vh, 56%);
  left: 50%;
  width: min(88vw, 1400px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
  gap: 24px;
}
.product {
  font-size: clamp(15px, 1.3vw, 23px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -.035em;
}

.hero-mark-stage {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 43%;
  width: clamp(300px, 31vw, 560px);
  height: 68vh;
  transform: translateX(-50%);
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}
.hero-mark {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  transform: translateX(-50%);
  transform-origin: center center;
  object-fit: contain;
  image-rendering: auto;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 1;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.hero-mark-stage:hover .hero-mark,
.hero-mark-stage:focus-within .hero-mark {
  transform: translateX(-50%) scale(1.015);
  opacity: 1;
}
.hero-cta {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  min-width: 190px;
  padding: 13px 18px 12px;
  border: 2px solid var(--black);
  background: rgba(242,238,231,.92);
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(214,0,21,.96);
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translate(-50%, -50%) translate(-2px,-2px);
  background: var(--red);
  color: #fff;
  box-shadow: 11px 11px 0 var(--black);
}

.poster-note {
  position: absolute;
  z-index: 5;
  bottom: max(5.5vh, calc(env(safe-area-inset-bottom) + 22px));
  margin: 0;
  color: var(--red);
  font-size: clamp(18px, 1.5vw, 27px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.poster-note-left { left: 3.3vw; }
.poster-note-right { right: 3.3vw; text-align: right; }

.corner-rule {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 24vw;
  height: 1px;
  background: rgba(11,10,9,.16);
}
.corner-rule-left { left: 0; }
.corner-rule-right { right: 0; }

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(40,24,32,.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity .34s ease;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
.sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.waitlist-sheet {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 12px));
  width: min(var(--sheet-w), calc(100vw - 32px));
  max-height: min(720px, calc(100dvh - 44px));
  padding: 28px;
  transform: translate(-50%, calc(100% + 80px));
  opacity: 0;
  background: rgba(245,241,234,.98);
  border: 2px solid var(--black);
  box-shadow: 16px 16px 0 rgba(214,0,21,.94), 0 30px 90px rgba(30,15,25,.2);
  transition: transform .5s cubic-bezier(.18,.85,.22,1), opacity .28s ease;
  overflow: auto;
}
.waitlist-sheet.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
}
.sheet-close {
  position: absolute;
  top: 11px;
  right: 13px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}
.sheet-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 44px;
  margin-bottom: 28px;
}
.sheet-mark {
  width: 58px;
  height: 66px;
  object-fit: contain;
  filter: none;
}
.sheet-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.waitlist-sheet h1 {
  margin: 0;
  color: var(--black);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(38px, 7vw, 62px);
  line-height: .86;
  letter-spacing: -.06em;
}

#waitlistForm { display: grid; gap: 17px; }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.field-row { display: grid; gap: 7px; }
.field-row label {
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.input-shell { position: relative; }
.input-shell input {
  width: 100%;
  height: 56px;
  border: 2px solid var(--black);
  border-radius: 0;
  outline: none;
  background: rgba(255,255,255,.48);
  color: var(--black);
  padding: 0 48px 0 16px;
  font-size: 18px;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.input-shell input:focus {
  background: #fff;
  border-color: var(--red);
  box-shadow: 5px 5px 0 rgba(214,0,21,.22);
}
.input-shell input::placeholder { color: rgba(11,10,9,.42); font-weight: 600; }
.field-check {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) scale(.65);
  color: var(--red);
  font-weight: 900;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}
.input-shell.is-valid .field-check { opacity: 1; transform: translateY(-50%) scale(1); }

.join-button {
  height: 58px;
  border: 2px solid var(--black);
  border-radius: 0;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 7px 7px 0 var(--black);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.join-button:hover:not(:disabled) { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 var(--black); }
.join-button:disabled { opacity: .62; cursor: wait; }
.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.success-panel {
  display: none;
  gap: 14px;
  text-align: left;
}
.success-panel.is-visible { display: grid; }
.success-title {
  color: var(--red);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(34px, 7vw, 54px);
  line-height: .9;
  letter-spacing: -.05em;
}
.success-panel p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}
.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 2px solid var(--black);
  background: var(--black);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
.instagram-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.instagram-dot { fill: currentColor; stroke: none; }

body.sheet-open .hero-mark { transform: translateX(-50%) scale(.995); }
body.success-burst .poster { animation: posterFlash .7s ease both; }
body.success-burst .headline { animation: headlinePunch .7s cubic-bezier(.2,.8,.2,1) both; }
@keyframes posterFlash {
  0% { filter: none; }
  28% { filter: saturate(1.15) contrast(1.04); }
  100% { filter: none; }
}
@keyframes headlinePunch {
  0%,100% { transform: scale(1); }
  36% { transform: scale(1.018); }
}

@media (max-width: 900px) {
  .masthead { top: 7vh; width: 94vw; }
  .headline { font-size: clamp(58px, 15.8vw, 118px); line-height: .78; }
  .product-strip {
    top: 35%;
    width: 91vw;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 12px;
  }
  .product { font-size: clamp(11px, 2.7vw, 16px); line-height: .92; }
  .hero-mark-stage { top: 42%; width: clamp(240px, 58vw, 410px); height: 62vh; }
  .hero-cta { top: 46%; min-width: 170px; font-size: 12px; padding: 12px 14px 11px; }
  .poster-note { font-size: clamp(12px, 3vw, 17px); bottom: max(4.3vh, calc(env(safe-area-inset-bottom) + 18px)); }
  .poster-note-left { left: 5vw; }
  .poster-note-right { right: 5vw; }
}

@media (max-width: 520px) {
  .masthead { top: max(7.5vh, 56px); }
  .headline { font-size: clamp(50px, 16vw, 76px); line-height: .82; letter-spacing: -.09em; }
  .product-strip { top: 31%; width: 94vw; grid-template-columns: repeat(3, 1fr); }
  .product { font-size: clamp(9px, 2.6vw, 12px); }
  .hero-mark-stage { top: 40%; width: min(72vw, 330px); height: 61vh; }
  .hero-mark { top: 0; transform: translateX(-50%); }
  .hero-cta { top: 50%; }
  .poster-note { font-size: 11px; bottom: max(3vh, calc(env(safe-area-inset-bottom) + 12px)); }
  .poster-note-left { left: 4vw; }
  .poster-note-right { right: 4vw; }
  .waitlist-sheet { padding: 24px 20px 22px; width: calc(100vw - 24px); bottom: max(12px, calc(env(safe-area-inset-bottom) + 6px)); }
  .sheet-brand-row { margin-bottom: 22px; }
  .input-shell input { height: 54px; font-size: 17px; }
}

@media (max-height: 700px) and (orientation: landscape) {
  .masthead { top: 3vh; width: 84vw; }
  .headline { font-size: clamp(54px, 12vw, 104px); }
  .product-strip { top: 51%; }
  .hero-mark-stage { top: 42%; height: 70vh; width: min(33vw, 360px); }
  .poster-note { font-size: 12px; bottom: max(3vh, calc(env(safe-area-inset-bottom) + 8px)); }
  .waitlist-sheet { max-height: calc(100dvh - 20px); bottom: max(10px, env(safe-area-inset-bottom)); }
}

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