/* ==========================================================================
   OOZZIT — coming soon
   Self-contained. Shares the brand tokens with the main site but does not
   import from it, so nothing here can break website/site.
   ========================================================================== */

:root {
  --ink:        #0A0A0B;
  --surface:    #141417;
  --surface-2:  #1D1D21;
  --paper:      #F2EFE9;
  --paper-dim:  #A3A099;
  --accent:     #F26522;
  --accent-hot: #FF4D1C;
  --ok:         #4ADE80;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --t-hero:  clamp(2.6rem, 8.5vw, 6.5rem);
  --t-h2:    clamp(1.9rem, 4.6vw, 3.4rem);
  --t-h3:    clamp(1.15rem, 2.2vw, 1.6rem);
  --t-body:  clamp(1rem, 1.15vw, 1.125rem);
  --t-label: 0.75rem;

  --gutter:  clamp(20px, 5vw, 64px);
  --section: clamp(72px, 11vw, 150px);
  --measure: 62ch;

  --radius:      10px;
  --radius-card: clamp(18px, 2.2vw, 28px);
  --radius-pill: 999px;
  --border:      1px solid var(--surface-2);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face { font-family:'Space Grotesk'; src:url('../assets/fonts/SpaceGrotesk-Bold.woff2') format('woff2'); font-weight:700; font-display:swap; }
@font-face { font-family:'Space Grotesk'; src:url('../assets/fonts/SpaceGrotesk-Medium.woff2') format('woff2'); font-weight:500; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../assets/fonts/Inter-Regular.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../assets/fonts/Inter-Italic.woff2') format('woff2'); font-weight:400; font-style:italic; font-display:swap; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ink); color: var(--paper);
  font-family: var(--font-body); font-size: var(--t-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.sr-only {
  position:absolute !important; width:1px !important; height:1px !important;
  padding:0 !important; margin:-1px !important; border:0 !important;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}
.skip-link:focus {
  position:fixed; top:12px; left:12px; width:auto; height:auto; clip:auto;
  padding:12px 18px; background:var(--paper); color:var(--ink);
  border-radius:var(--radius); z-index:200;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { width: 100%; max-width: 1360px; margin-inline: auto; padding-inline: var(--gutter); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 20px;
  padding: 18px var(--gutter);
  background: rgba(10,10,11,0.82);
  border-bottom: var(--border);
}
@supports (backdrop-filter: blur(2px)) {
  /* Cheap on this page — one element, no stacked layers. */
  .header { backdrop-filter: saturate(140%) blur(10px); }
}
.header__logo { display: flex; align-items: center; gap: 20px; text-decoration: none; }
/* Both SVGs shipped with large empty margins baked in — the ink filled only
   60% of the mark's box and 36% of the wordmark's height. Their viewBoxes are
   now cropped to the artwork, so these numbers are what you actually see and
   the 20px gap above is a real 20px. Sizes below preserve the approved
   appearance: mark 50% up on its original, wordmark doubled. */
.header__logo .mark { height: 24px; width: auto; }
.header__logo .word { height: 20px; width: auto; }
.nav { margin-left: auto; display: flex; gap: 26px; }
/* Padded to a 44px touch target rather than sized by the text alone —
   most pre-launch traffic is on a phone, and a 22px link is a miss. */
.nav a {
  text-decoration: none; color: var(--paper-dim); font-size: 0.95rem;
  display: inline-flex; align-items: center; min-height: 44px;
  transition: color 150ms var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--paper); }
@media (max-width: 720px) { .nav { gap: 16px; } .nav a { font-size: 0.86rem; } }

/* The wordmark was hidden here while the mark was 44px and the lockup did not
   fit a 375px header. At 24px the lockup is 142px and clears the nav by 22px,
   so the full mark-plus-word shows at every width again. */
@media (max-width: 620px) {
  .header { gap: 14px; }
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 16px 14px 26px; border: 0; cursor: pointer;
  background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  border-radius: var(--radius-pill); text-decoration: none;
  transition: transform 200ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn__disc {
  width: 34px; height: 34px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center; color: var(--paper); font-size: 15px;
}
.btn--ghost {
  background: transparent; color: var(--paper); border: var(--border);
  padding: 14px 26px;
}

/* ── Labels ─────────────────────────────────────────────────────────────── */
.label {
  font-size: var(--t-label); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper-dim);
}
.status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: var(--border); border-radius: var(--radius-pill);
  background: var(--surface); color: var(--paper-dim);
  font-size: var(--t-label); letter-spacing: 0.14em; text-transform: uppercase;
}
.status .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 70px); }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-hero); line-height: 0.95; letter-spacing: -0.03em;
  margin: 24px 0 0; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub {
  margin: 26px 0 0; max-width: var(--measure);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--paper-dim);
}

/* ── Signup form ────────────────────────────────────────────────────────── */
.signup { margin-top: 38px; max-width: 640px; }
.signup__row { display: flex; gap: 12px; flex-wrap: wrap; }
.field { flex: 1 1 200px; min-width: 0; }
.signup input, .signup textarea, .contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 15px 18px;
  background: var(--surface); color: var(--paper);
  border: var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem;
}
.signup input::placeholder, .contact-form input::placeholder, .contact-form textarea::placeholder { color: #6d6a64; }
.signup input:focus, .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--accent);
}
.signup .btn { margin-top: 12px; }
.signup__note { margin: 14px 0 0; font-size: 0.86rem; color: var(--paper-dim); }
.form-msg { margin-top: 16px; font-size: 0.95rem; display: none; }
.form-msg[data-state="ok"]   { display: block; color: var(--ok); }
.form-msg[data-state="err"]  { display: block; color: var(--accent-hot); }
.form-msg[data-state="busy"] { display: block; color: var(--paper-dim); }

/* ── Marquee ────────────────────────────────────────────────────────────── */
.reel { padding: clamp(30px, 5vw, 60px) 0; }
.reel__rows { display: grid; gap: clamp(10px, 1.4vw, 18px); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; gap: clamp(10px, 1.4vw, 18px); width: max-content;
  animation: slide 66s linear infinite;
}
.marquee--rtl .marquee__track { animation-direction: normal; }
.marquee--ltr .marquee__track { animation-direction: reverse; }
.marquee:nth-child(2) .marquee__track { animation-duration: 78s; }
.marquee:nth-child(3) .marquee__track { animation-duration: 58s; }
.marquee img {
  width: clamp(180px, 22vw, 300px); height: auto; aspect-ratio: 4 / 3;
  object-fit: cover; border-radius: var(--radius-card); flex: none;
}
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ── Sections ───────────────────────────────────────────────────────────── */
.section { padding-block: var(--section); }
.section--line { border-top: var(--border); }
.section h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-h2); line-height: 1.02; letter-spacing: -0.02em;
  margin: 18px 0 0; text-wrap: balance;
}
.section__lead { margin: 22px 0 0; max-width: var(--measure); color: var(--paper-dim); font-size: 1.1rem; }

/* Two lanes */
.lanes { display: grid; gap: clamp(16px, 2vw, 24px); margin-top: 50px; }
@media (min-width: 900px) { .lanes { grid-template-columns: 1fr 1fr; } }
.lane {
  background: var(--surface); border: var(--border);
  border-radius: var(--radius-card); padding: clamp(26px, 3.2vw, 44px);
}
.lane__n { font-family: var(--font-display); font-size: 0.95rem; color: var(--accent); letter-spacing: 0.1em; }
.lane h3 {
  font-family: var(--font-display); font-weight: 700; font-size: var(--t-h3);
  margin: 14px 0 10px; letter-spacing: -0.01em;
}
.lane p { color: var(--paper-dim); margin: 0 0 22px; }
.lane ul { list-style: none; margin: 0; padding: 0; }
.lane li { padding: 11px 0; border-top: var(--border); font-size: 0.98rem; }
.lane li::before { content: "→"; color: var(--accent); margin-right: 12px; }

/* The join between the lanes */
.join {
  margin-top: clamp(28px, 4vw, 48px); padding: clamp(26px, 3.2vw, 44px);
  border: 1px solid rgba(242,101,34,0.32); border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(242,101,34,0.09), rgba(242,101,34,0.02));
}
.join p { margin: 0; font-size: clamp(1.1rem, 1.9vw, 1.5rem); line-height: 1.45; text-wrap: balance; }

/* Simple list block */
.stack { display: grid; gap: 0; margin-top: 44px; }
.stack__row { display: grid; gap: 6px 30px; padding: 24px 0; border-top: var(--border); }
@media (min-width: 820px) { .stack__row { grid-template-columns: 240px 1fr; } }
.stack__row h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin: 0; }
.stack__row p { margin: 0; color: var(--paper-dim); }

/* Prose */
.prose { max-width: var(--measure); }
.prose p { color: var(--paper-dim); margin: 0 0 20px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 48px; }
.prose strong { color: var(--paper); font-weight: 500; }

/* Footer */
.footer { border-top: var(--border); padding: 54px 0 70px; }
.footer__grid { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; justify-content: space-between; }
.footer a { color: var(--paper-dim); text-decoration: none; }
.footer a:hover { color: var(--paper); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { display: inline-flex; align-items: center; min-height: 44px; }
.footer__legal { margin-top: 34px; font-size: 0.84rem; color: #6d6a64; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none !important; transform: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .status .dot { animation: none !important; }
  .btn:hover { transform: none; }
}
