/* DRIPSUP — colours pulled off the actual garments: jet black tee, teal mandala
   print, deep wine rose tee, gold frame, LA golden hour. */

/* Fonts are served from our own domain, not Google's. Two reasons, and the second
   is the one that matters: a fonts.googleapis.com stylesheet is render-blocking on
   a third-party host, so the page cannot paint until two extra DNS lookups and TLS
   handshakes finish — and browsers now partition their HTTP cache per site, so the
   old "everyone already has it cached" argument is no longer true. Self-hosted also
   means no visitor IP is handed to Google on page load.

   Latin subset only. Re-download from Google Fonts if the site ever needs another
   alphabet — see README. font-display: swap shows the fallback immediately rather
   than holding text invisible, which is what turns a slow font into a blank hero. */
@font-face {
  font-family: 'Archivo Black'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(assets/fonts/archivo-black-400.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(assets/fonts/dm-mono-400.woff2) format('woff2');
}
@font-face {
  font-family: 'DM Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url(assets/fonts/dm-mono-500.woff2) format('woff2');
}
/* One variable file covers every weight the page uses. */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url(assets/fonts/inter-var.woff2) format('woff2');
}

:root {
  --ink: #0a0a0b;
  --raise: #131316;
  --bone: #f1ede5;
  --ash: #8d887f;
  --teal: #40b3a2;
  --wine: #7e2a36;
  --gold: #c9a24e;
  --line: rgba(241, 237, 229, .13);
  --line-2: rgba(241, 237, 229, .26);

  --display: 'Archivo Black', Impact, sans-serif;
  --body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;

  --pad: clamp(1.1rem, 5vw, 4.5rem);
  /* Was 9vw. On a black page that much empty gutter reads as "the page ended",
     not as breathing room — sections need to touch closer than on a white site. */
  --gap: clamp(3rem, 6vw, 5rem);
  --announce: 2.15rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }
/* Film grain over the whole page — kills the flat-screen look on dark panels. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* height:auto is load-bearing, not tidiness. Every <img> carries width/height
   attributes so the browser can reserve space and not shift the layout while
   loading. Those attributes also act as a CSS presentational hint, so an image
   whose rule sets only `width` would keep its full pixel height and stretch —
   which is exactly what happened to the hero tee. Rules that genuinely want a
   fixed height (.shot img, .hero-bg img) set it themselves and win on specificity. */
img, video { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }
a { color: inherit; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--bone); color: var(--ink); padding: .8rem 1.2rem;
  font-family: var(--mono); font-size: .75rem;
}
.skip:focus { left: 0; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; letter-spacing: -.035em; text-transform: uppercase; }
h1 { font-size: clamp(2.7rem, 11vw, 6.5rem); line-height: .88; }
h2 { font-size: clamp(2rem, 6.5vw, 4rem); line-height: .92; text-wrap: balance; }
h3 { font-size: 1.05rem; line-height: 1.1; letter-spacing: -.02em; }
em { font-style: normal; color: var(--teal); }
p { margin: 0; }

.tag {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ash);
  display: flex; align-items: center; gap: .5rem;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 10px var(--teal); animation: pulse 1.6s infinite;
}
@keyframes pulse { 50% { opacity: .25; } }

/* ---------- Announcement bar ---------- */
.announce {
  position: fixed; inset: 0 0 auto; z-index: 101;
  height: var(--announce); display: grid; place-items: center;
  padding: 0 var(--pad); background: var(--teal); color: #05201c;
  overflow: hidden;
}
.announce p {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.announce b { font-weight: 500; }
.announce a { font-weight: 500; text-underline-offset: 3px; }
@media (max-width: 620px) {
  .announce p { font-size: .56rem; letter-spacing: .08em; }
  .announce span { display: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: var(--announce); left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem var(--pad);
  background: rgba(10, 10, 11, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.stuck { border-bottom-color: var(--line); background: rgba(10, 10, 11, .92); }
.wordmark {
  font-family: var(--display); font-size: 1.15rem; letter-spacing: -.05em;
  text-decoration: none; font-style: italic;
}
.wordmark span { color: var(--teal); }
.wordmark sup { font-size: .45em; vertical-align: super; color: var(--ash); }
.nav-links { display: none; gap: 2rem; }
.nav-links a {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-decoration: none; color: var(--ash); transition: color .2s;
}
.nav-links a:hover { color: var(--bone); }
.nav-right { display: flex; align-items: center; gap: .9rem; }
.bag {
  background: none; border: 1px solid var(--line-2); border-radius: 100px;
  padding: .45rem .9rem; font-family: var(--mono); font-size: .7rem;
  letter-spacing: .1em; cursor: pointer; transition: border-color .2s, color .2s;
  text-decoration: none; white-space: nowrap;
}
.bag:hover { border-color: var(--teal); color: var(--teal); }
.bag span { color: var(--teal); }
.burger {
  display: grid; gap: 5px; background: none; border: 0; padding: .4rem; cursor: pointer;
}
.burger i { display: block; width: 22px; height: 2px; background: var(--bone); transition: transform .3s; }
.nav.open .burger i:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.open .burger i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .burger { display: none; }
}
@media (max-width: 859px) {
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 1.4rem;
    position: absolute; inset: 100% 0 auto; padding: 1.75rem var(--pad) 2.25rem;
    background: var(--ink); border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a { font-size: 1rem; color: var(--bone); }
}

/* ---------- Hero ----------
   The tee is the hero. It flies in from the back of the scene on load, then
   floats and tilts toward the pointer — the campaign shot is demoted to a
   blurred backdrop so nothing competes with the garment. */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: grid; place-items: center;
  padding: calc(var(--announce) + clamp(5rem, 11vh, 7rem)) var(--pad) clamp(2.5rem, 6vh, 4rem);
}
.hero-bg { position: absolute; inset: -5%; z-index: 0; }
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  filter: blur(10px) saturate(.7) brightness(.4);
}
.hero-bg video { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s; }
.hero-bg video.ready { opacity: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(56% 44% at 50% 40%, rgba(64, 179, 162, .36), transparent 68%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(130% 85% at 50% 36%, transparent 34%, rgba(10, 10, 11, .72) 76%, var(--ink) 100%),
    linear-gradient(to bottom, rgba(10, 10, 11, .6), transparent 26%, var(--ink) 99%);
}

.stage {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1rem, 3vh, 2.25rem);
}
/* Sized by height, not width. The real constraint is the vertical room left
   between the nav and the CTA, and the garment is wider than it is tall — so
   capping the width made it far smaller than the space allowed. flex:none stops
   the column shrinking it below this. */
/* Only width is ever set — height comes from aspect-ratio alone, so no
   combination of viewport and cap can squash the garment. The vh term is the
   real constraint: the room between the nav and the CTA. The garment is wider
   than it is tall (794:715), so the vh figure is deliberately larger than the
   height it produces. flex:none stops the column shrinking it below this. */
.tee-stage {
  position: relative; perspective: 1000px;
  aspect-ratio: 794 / 715;
  width: min(88vw, 31rem, 58vh);
  flex: none;
}
/* Sits behind the garment and drifts the other way — cheap parallax depth. */
.word {
  position: absolute; left: 50%; top: 46%; z-index: 0;
  transform: translate(-50%, -50%) translate3d(calc(var(--mx, 0) * -34px), calc(var(--my, 0) * -20px), 0);
  font-family: var(--display); font-size: clamp(4rem, 17vw, 13rem);
  line-height: .8; letter-spacing: -.06em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(241, 237, 229, .2);
  pointer-events: none; user-select: none;
  animation: word-in 1.8s cubic-bezier(.16, 1, .3, 1) both;
}
.tee {
  position: relative; z-index: 1; height: 100%; transform-style: preserve-3d;
  transform: rotateY(calc(var(--mx, 0) * 18deg)) rotateX(calc(var(--my, 0) * -13deg));
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}
.tee-art {
  position: relative; height: 100%; transform-style: preserve-3d;
  animation: tee-in 1.6s cubic-bezier(.16, 1, .3, 1) both,
             tee-float 7s ease-in-out 1.7s infinite;
}
.tee-art img { width: 100%; filter: drop-shadow(0 32px 48px rgba(0, 0, 0, .8)); }
/* Lifted off the fabric so the print parallaxes with the tilt. */
.tee-print {
  position: absolute; left: 50%; top: 53%; width: 37%;
  transform: translate(-50%, -50%) translateZ(22px);
  pointer-events: none;
}
@keyframes tee-in {
  from { opacity: 0; filter: blur(20px); transform: translate3d(0, 12%, -700px) rotateX(28deg); }
  60%  { opacity: 1; }
  to   { opacity: 1; filter: blur(0); transform: none; }
}
@keyframes tee-float { 50% { transform: translate3d(0, -14px, 30px) rotate(.7deg); } }
@keyframes word-in { from { opacity: 0; letter-spacing: .06em; } to { opacity: 1; } }

.hero-copy {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  max-width: 42rem;
}
.hero-copy .tag { justify-content: center; }
.hero-copy h1 { font-size: clamp(2.1rem, 6.4vw, 4.2rem); }
.hero-sub { color: #d9d4ca; max-width: 34rem; font-size: 1.02rem; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: .3rem; }
.hero-copy > * { animation: rise .9s cubic-bezier(.16, 1, .3, 1) both; }
.hero-copy > :nth-child(1) { animation-delay: .55s; }
.hero-copy > :nth-child(2) { animation-delay: .66s; }
.hero-copy > :nth-child(3) { animation-delay: .77s; }
.hero-copy > :nth-child(4) { animation-delay: .88s; }
.hero-copy > :nth-child(5) { animation-delay: .99s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }

/* Short laptop screens: without this the CTA buttons fall below the fold,
   which on a coming-soon page is the whole point of the hero. */
@media (max-height: 820px) and (min-width: 860px) {
  .hero { padding-top: calc(var(--announce) + 4rem); }
  .stage { gap: .75rem; }
  .tee-stage { width: min(88vw, 26rem, 42vh); }
}
/* Very short laptops (1280x720 and similar). One more step down, or the JOIN
   buttons land just under the fold — measured at -11px before this rule. */
@media (max-height: 700px) and (min-width: 860px) {
  .tee-stage { width: min(88vw, 23rem, 40vh); }
  .hero-copy { gap: .8rem; }
  .hero-copy h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
  .hero-sub { font-size: .92rem; }
  .countdown li { min-width: 3.7rem; padding: .45rem .35rem; }
  .countdown b { font-size: 1.3rem; }
}
/* Small older phones (360x640 and down). */
@media (max-height: 700px) and (max-width: 859px) {
  .hero { padding-top: calc(var(--announce) + 3.2rem); }
  .stage { gap: .6rem; }
  .tee-stage { width: min(29rem, 74vw, 38vh); }
  .hero-copy { gap: .65rem; }
  .hero-sub { font-size: .88rem; }
  .countdown li { min-width: 3.3rem; padding: .4rem .3rem; }
  .countdown b { font-size: 1.1rem; }
  .countdown span { font-size: .48rem; }
}

/* ---------- Value strip ---------- */
.values {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  list-style: none; margin: 0; padding: 0;
  background: var(--line); border-bottom: 1px solid var(--line);
}
@media (min-width: 860px) { .values { grid-template-columns: repeat(4, 1fr); } }
.values li {
  background: var(--ink); padding: 1.5rem var(--pad);
  display: flex; flex-direction: column; gap: .3rem;
}
.values b { font-family: var(--display); font-size: 1rem; letter-spacing: -.02em; }
.values span { font-size: .82rem; color: var(--ash); line-height: 1.45; }

/* ---------- FAQ ---------- */
.faq { background: var(--raise); border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(.98rem, 2.4vw, 1.2rem);
  letter-spacing: -.02em; text-transform: uppercase;
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: none; font-family: var(--mono); font-size: 1.3rem;
  color: var(--teal); transition: transform .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--teal); }
.faq-list details p {
  padding: 0 3rem 1.4rem 0; color: var(--ash); max-width: 52rem;
}
.faq-list a { color: var(--teal); text-underline-offset: 3px; }

/* ---------- Sticky phone CTA ---------- */
.sticky-cta {
  position: fixed; z-index: 95; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; align-items: center; justify-content: center;
  padding: 1rem; background: var(--bone); color: var(--ink);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  text-decoration: none; box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
  transform: translateY(150%); transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
@media (max-width: 859px) { .sticky-cta { display: flex; } }
.sticky-cta.show { transform: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.7rem; font-family: var(--mono); font-size: .74rem;
  letter-spacing: .14em; text-decoration: none; border: 1px solid transparent;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--bone); color: var(--ink); }
.btn-solid:hover { background: var(--teal); box-shadow: 0 12px 34px rgba(64, 179, 162, .38); }
.btn-ghost { border-color: var(--line-2); color: var(--bone); }
.btn-ghost:hover { border-color: var(--bone); background: rgba(241, 237, 229, .07); }

.scroll-cue {
  position: absolute; right: var(--pad); bottom: clamp(3rem, 8vw, 5rem); z-index: 2;
  display: none; align-items: center; gap: .7rem; text-decoration: none;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; color: var(--ash);
  writing-mode: vertical-rl;
}
.scroll-cue i { width: 1px; height: 46px; background: linear-gradient(var(--ash), transparent); }
@media (min-width: 860px) { .scroll-cue { display: flex; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: .85rem 0; background: var(--raise); }
.marquee > div {
  display: flex; gap: 2rem; width: max-content;
  animation: slide 34s linear infinite;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; white-space: nowrap;
}
.marquee b { color: var(--teal); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Section shell ---------- */
section { padding: var(--gap) var(--pad); }
.head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); max-width: 46rem; }
.head-note { color: var(--ash); max-width: 38rem; }

/* ---------- The drop ---------- */
.grid { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.card:hover { transform: translateY(-7px); }
.shot {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--raise); border: 1px solid var(--line);
  transition: border-color .35s, box-shadow .35s;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.shot.dark { background: #101012; display: grid; place-items: center; }
.shot.dark img { object-fit: contain; padding: 6%; }
.card:hover .shot img { transform: scale(1.04); }
.card:hover .shot {
  border-color: rgba(64, 179, 162, .35);
  box-shadow: 0 26px 55px rgba(0, 0, 0, .55);
}
.print {
  position: absolute; left: 50%; top: 46%; width: 34%;
  transform: translate(-50%, -50%); fill: #fff; pointer-events: none;
}
.chip {
  position: absolute; left: .85rem; top: .85rem;
  background: rgba(10, 10, 11, .78); backdrop-filter: blur(6px);
  padding: .35rem .65rem; font-family: var(--mono); font-size: .58rem;
  letter-spacing: .14em; border: 1px solid var(--line);
}
.meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.meta p { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; color: var(--ash); margin-top: .4rem; }
.meta strong { font-family: var(--display); font-size: 1.15rem; letter-spacing: -.02em; }
.add {
  width: 100%; padding: 1rem; background: none; cursor: pointer;
  border: 1px solid var(--line-2); color: var(--bone);
  font-family: var(--mono); font-size: .74rem; letter-spacing: .14em;
  transition: background .2s, color .2s, border-color .2s;
}
.add:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* ---------- The tin ---------- */
.tin { background: var(--raise); border-block: 1px solid var(--line); }
.steps { display: grid; gap: 1px; grid-template-columns: 1fr; list-style: none; margin: 0; padding: 0; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { background: var(--raise); padding: clamp(1.6rem, 4vw, 2.4rem); display: flex; flex-direction: column; gap: .9rem; }
.steps b { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; color: var(--teal); }
.steps p { color: var(--ash); font-size: .94rem; }

/* ---------- Lookbook ---------- */
.look { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .look { grid-template-columns: 1.8fr 1fr; } }
.look-video { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--raise); border: 1px solid var(--line); }
@media (min-width: 900px) { .look-video { aspect-ratio: 16 / 10; } }
.look-video video, .look-video img { width: 100%; height: 100%; object-fit: cover; }
.play {
  position: absolute; inset: auto auto 1rem 1rem;
  background: rgba(10, 10, 11, .8); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); color: var(--bone); cursor: pointer;
  padding: .6rem 1rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
  transition: background .2s, color .2s;
}
.play:hover { background: var(--bone); color: var(--ink); }
.look-copy { display: flex; flex-direction: column; gap: 1rem; }
.look-copy p:last-child { color: var(--ash); }

/* ---------- Sizing ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { border-collapse: collapse; width: 100%; min-width: 30rem; }
caption {
  caption-side: bottom; text-align: left; padding: .9rem 1rem;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; color: var(--ash);
  border-top: 1px solid var(--line);
}
th, td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
thead th {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ash); font-weight: 400;
}
tbody th { font-family: var(--display); font-size: .95rem; letter-spacing: 0; }
td.n, th.n { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--mono); font-size: .88rem; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

.specs {
  display: grid; gap: 1px; grid-template-columns: 1fr; list-style: none;
  margin: 2rem 0 0; padding: 0; background: var(--line); border: 1px solid var(--line);
}
@media (min-width: 620px) { .specs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .specs { grid-template-columns: repeat(3, 1fr); } }
.specs li { background: var(--ink); padding: 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .3rem; }
.specs b { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; color: var(--ash); }
.specs span { font-size: .95rem; }

/* ---------- Join ---------- */
.join {
  background: var(--wine); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  border-block: 1px solid var(--line);
}
.join .tag { color: rgba(241, 237, 229, .72); justify-content: center; }
.join em, .join h2 { color: var(--bone); }
.join-sub { color: rgba(241, 237, 229, .82); max-width: 34rem; }
.join small { font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; color: rgba(241, 237, 229, .6); }

/* Only ever rendered once the count clears the floor in script.js. */
.proof {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bone);
}
.proof[hidden] { display: none; }
.proof::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 10px var(--teal); animation: pulse 1.6s infinite;
}
.panel .proof { justify-content: flex-start; color: var(--ash); }

.countdown {
  display: flex; gap: .5rem; list-style: none; margin: .2rem 0 0; padding: 0;
  font-variant-numeric: tabular-nums;
}
.countdown[hidden] { display: none; }
.countdown li {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  min-width: 4.1rem; padding: .6rem .4rem;
  background: rgba(10, 10, 11, .5); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
}
.countdown b { font-family: var(--display); font-size: 1.55rem; line-height: 1; letter-spacing: -.02em; }
.countdown span { font-family: var(--mono); font-size: .54rem; letter-spacing: .16em; color: var(--ash); }

/* ---------- Signup forms (join panel + modal) ---------- */
.signup { width: 100%; max-width: 44rem; margin-top: .8rem; }
.panel .signup { max-width: none; }
.form-grid { display: grid; gap: .85rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid:not(.one) { grid-template-columns: repeat(3, 1fr); } }
.fld { display: flex; flex-direction: column; gap: .35rem; margin: 0; text-align: left; }
.fld label {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(241, 237, 229, .72);
}
.fld label i { font-style: normal; opacity: .5; }
.fld input {
  background: rgba(0, 0, 0, .24); border: 1px solid rgba(241, 237, 229, .3);
  padding: .85rem .9rem; font-size: .95rem; outline: 0; min-width: 0;
  transition: border-color .2s, background .2s;
}
.fld input::placeholder { color: rgba(241, 237, 229, .42); }
.fld input:focus { border-color: var(--bone); background: rgba(0, 0, 0, .38); }
.panel .fld input:focus { border-color: var(--teal); }

.consent {
  display: flex; align-items: flex-start; gap: .65rem; cursor: pointer;
  margin-top: 1.05rem; text-align: left; font-size: .84rem; line-height: 1.5;
  color: rgba(241, 237, 229, .82);
}
.consent input { flex: none; width: 1.05rem; height: 1.05rem; margin: .18rem 0 0; accent-color: var(--teal); }
.consent a { text-underline-offset: 3px; }
.signup > .btn { width: 100%; margin-top: 1.05rem; }
.err {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .06em;
  color: var(--gold); margin-top: .7rem; text-align: left;
}
.panel .err { color: var(--teal); }

/* ---------- Footer ---------- */
footer { padding: 2.5rem var(--pad) 2rem; border-top: 1px solid var(--line); }
.foot-top, .foot-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.foot-bottom {
  margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  align-items: flex-start;
}
footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
footer a { font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-decoration: none; color: var(--ash); transition: color .2s; }
footer nav a:hover { color: var(--teal); }
.foot-bottom p {
  font-size: .72rem; line-height: 1.6; color: var(--ash);
  max-width: 42rem; margin-left: auto; text-align: right;
}
@media (max-width: 720px) { .foot-bottom p { text-align: left; margin-left: 0; } }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 46rem; margin: 0 auto;
  padding: clamp(7rem, 16vh, 10rem) var(--pad) var(--gap);
}
.legal h1 { font-size: clamp(2.2rem, 7vw, 3.6rem); margin-bottom: 1rem; }
.legal .updated {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .14em;
  color: var(--ash); text-transform: uppercase; margin-bottom: 2.5rem;
}
.legal h2 {
  font-size: clamp(1.15rem, 3vw, 1.5rem); margin: 2.8rem 0 .9rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.legal h3 { margin: 1.6rem 0 .5rem; color: var(--teal); }
.legal p, .legal li { color: #c8c3ba; margin-bottom: .9rem; }
.legal ul, .legal ol { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal a { color: var(--teal); text-underline-offset: 3px; }
.legal strong { color: var(--bone); }
.legal .note {
  border: 1px solid var(--line-2); border-left: 3px solid var(--gold);
  background: var(--raise); padding: 1.1rem 1.3rem; margin: 0 0 2rem;
}
.legal .note p:last-child { margin-bottom: 0; }
.legal dl { margin: 0 0 1.2rem; }
.legal dt { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; color: var(--bone); margin-top: 1rem; }
.legal dd { margin: .3rem 0 0; color: #c8c3ba; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: center; padding: 1.2rem;
  background: rgba(6, 6, 7, .82); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .28s;
}
.modal[hidden] { display: none; }
.modal.show { opacity: 1; }
.panel {
  position: relative; width: 100%; max-width: 32rem;
  background: var(--raise); border: 1px solid var(--line-2);
  padding: clamp(1.8rem, 5vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1rem;
  transform: translateY(14px); transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.modal.show .panel { transform: none; }
.close {
  position: absolute; top: .6rem; right: .7rem;
  background: none; border: 0; cursor: pointer; padding: .5rem; color: var(--ash);
}
.close:hover { color: var(--bone); }
.panel h2 { font-size: clamp(2rem, 8vw, 2.6rem); }
.panel-copy { color: var(--ash); font-size: .95rem; }
.panel-copy b { color: var(--teal); }
.panel .field { border-color: var(--line-2); }
.panel small { font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; color: var(--ash); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; z-index: 160; left: 1rem; right: 1rem; bottom: -8rem;
  background: var(--bone); color: var(--ink);
  padding: .95rem 1.2rem; display: flex; flex-direction: column; gap: .15rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  transition: bottom .4s cubic-bezier(.2,.8,.2,1);
}
.toast.show { bottom: 1rem; }
.toast b { font-family: var(--display); font-size: .82rem; letter-spacing: -.01em; text-transform: uppercase; }
.toast small { font-family: var(--mono); font-size: .64rem; letter-spacing: .06em; color: #5d5a54; }
@media (min-width: 620px) { .toast { left: auto; right: 1.5rem; min-width: 19rem; } .toast.show { bottom: 1.5rem; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
