/* ============================================================
   STEPOFF legal pages (privacy, delete) — matches the home page.
   Dark ink + violet halftone, Archivo body, Archivo Black display,
   flat hard-edged, violet accents. No rounded corners.
   ============================================================ */

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo Black';
  src: url('/fonts/archivo-black.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --line: #222;
  --cream: #efece2;
  --violet: #8c5cff;
  --grey: #8b8e96;
  --dim: #b6b2a8;
  --arch: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --archb: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  --maxw: 820px;
  --pad: clamp(22px, 5vw, 56px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: clip;
}
body {
  background-color: var(--ink);
  background-image: radial-gradient(circle, rgba(140, 92, 255, 0.08) 1.2px, transparent 1.5px);
  background-size: 18px 18px;
  color: var(--cream);
  font-family: var(--arch);
  font-weight: 450;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--violet);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

/* ---------- header (matches home) ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 11, 11, 0.9);
  border-bottom: 1px solid var(--line);
}
.header .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--archb);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.wordmark:hover {
  text-decoration: none;
}
.wordmark img {
  width: 26px;
  height: 26px;
}
.header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}
.header nav a {
  font-family: var(--arch);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--grey);
}
.header nav a:hover {
  color: var(--cream);
  text-decoration: none;
}
.header nav a.strong {
  color: var(--cream);
  font-weight: 700;
}
.header nav a.strong:hover {
  color: var(--violet);
}

/* ---------- legal content ---------- */
.legal {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) var(--pad) clamp(64px, 10vw, 120px);
}
.legal h1 {
  font-family: var(--archb);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.004em;
  color: var(--cream);
}
.legal .updated {
  margin-top: 14px;
  color: var(--grey);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.legal h2 {
  font-family: var(--archb);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  color: var(--cream);
  margin: 2.6em 0 0.6em;
  padding-top: 1.3em;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal h2::before {
  content: '';
  flex: 0 0 auto;
  width: 16px;
  height: 4px;
  background: var(--violet);
}
.legal p {
  margin: 0.9em 0;
  color: var(--dim);
  max-width: 72ch;
}
.legal > p:first-of-type {
  color: var(--cream);
  font-size: 1.06rem;
}
.legal strong {
  color: var(--cream);
  font-weight: 700;
}
.legal ul,
.legal ol {
  margin: 1.1em 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72em;
  max-width: 72ch;
}
.legal li {
  position: relative;
  padding-left: 26px;
  color: var(--dim);
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  background: var(--violet);
}
.legal ol {
  counter-reset: step;
}
.legal ol li {
  counter-increment: step;
}
.legal ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.05em;
  font-family: var(--archb);
  color: var(--violet);
  font-size: 0.95em;
}

/* ---------- footer (matches home) ---------- */
.footer {
  border-top: 1px solid var(--line);
}
.footer .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 40px) var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--grey);
}
.footer .house {
  font-family: var(--archb);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9c98d6;
  font-size: 0.72rem;
}
.footer nav {
  display: flex;
  gap: 20px;
}
.footer nav a {
  color: var(--grey);
}
.footer nav a:hover {
  color: var(--cream);
  text-decoration: none;
}

/* ---------- deep-link landing pages (invite / callout / crew) ---------- */
.lander {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(64px, 13vw, 150px) var(--pad);
  text-align: center;
}
.lander h1 {
  font-family: var(--archb);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.004em;
  color: var(--cream);
  margin-bottom: 0.4em;
}
.lander h1 .v {
  color: var(--violet);
}
.lander p {
  color: var(--dim);
  font-size: clamp(1rem, 2vw, 1.16rem);
  max-width: 46ch;
  margin: 0 auto 2.2em;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--archb);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  padding: 1em 1.4em;
  border: 2px solid var(--violet);
  background: var(--violet);
  color: var(--ink);
  box-shadow: 5px 5px 0 0 #000;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 #000;
  text-decoration: none;
}
.btn.soon {
  background: transparent;
  border-color: #333;
  color: var(--grey);
  box-shadow: none;
  cursor: default;
}
.btn.soon:hover {
  transform: none;
  box-shadow: none;
}
.btn .sub {
  display: block;
  font-family: var(--arch);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.66rem;
  line-height: 1.1;
  opacity: 0.72;
}
.btn .lead {
  display: block;
  line-height: 1.1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}
