/* ==========================================================================
   Get Set Gig — landing shared stylesheet
   --------------------------------------------------------------------------
   Design tokens + shared page chrome for every static page under /landing.

   SOURCE OF TRUTH for colour + type tokens is the app:
       apps/web/app/globals.css
   These are the field-kit dark values, mirrored. When the app's tokens move,
   mirror them here — do not hand-pick "close enough" hexes, or the landing
   and the app drift apart the moment someone eyeballs a colour.

   Token names are deliberately unchanged from the old light scheme so the
   legal / help / blog pages re-skin from their values alone.

   Page-specific rules stay in each page's inline <style> block.
   ========================================================================== */

:root {
  /* --- surfaces --- */
  --canvas: #0e0e0e;
  --canvas-deep: #0d0d0d;
  --raised: #1a1a18;

  /* --- ink --- */
  --ink: #f2eee2;
  --ink-2: #c8c4b8;
  --ink-3: #8a8a82;
  --ink-4: #6a6a64;
  --ink-5: #4a4a44;

  /* --- lines --- */
  --hairline: #201f1c;
  --border: #2a2a26;
  --border-2: #3a3a36;

  /* --- accent --- */
  --accent: #e5341f;
  --accent-hover: #ff5a44;
  --on-accent: #0d0d0d;

  /* --- type --- */
  --font-display: Anton, "Arial Narrow", system-ui, sans-serif;
  --font-sans: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* --- layout --- */
  /* Each page sets --wrap to its own measure; 720px is the sub-page default. */
  --wrap: 720px;
}

/* ===== reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

/* Keyboard focus has to survive on a dark canvas. */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
}

/* ===== layout ===== */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== type primitives ===== */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.9;
  font-weight: 400;
}

/* Mono eyebrow / label. */
.label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.label.accent {
  color: var(--accent);
}

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  border-radius: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 120ms ease,
    color 120ms ease,
    border-color 120ms ease,
    filter 120ms ease;
}

.btn.big {
  font-size: 14px;
  padding: 17px 30px;
}

.btn.sm {
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 9px;
}

.btn.primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn.primary:hover {
  filter: brightness(1.08);
}

.btn.secondary {
  background: var(--ink);
  color: var(--on-accent);
}

.btn.secondary:hover {
  filter: brightness(1.05);
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-2);
}

.btn.outline:hover {
  border-color: var(--ink-3);
}

.btn.full-width {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: default;
}

/* ===== wordmark ===== */
.wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.wordmark .accent {
  color: var(--accent);
}

/* The BAND OS tag that sits beside the wordmark in the nav. */
.os-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  padding: 3px 6px;
  border-radius: 4px;
}

/* ===== shared chrome — sub-page top nav row ===== */
.top {
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-row a {
  color: var(--ink-3);
  text-decoration: none;
}

.nav-row a:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* ===== shared chrome — footer =====
   Scoped away from index.html's own `footer.fp`, which is styled from scratch
   in that page's inline block. */
footer:not(.fp) {
  border-top: 1px solid var(--hairline);
  padding: 32px 0 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  line-height: 1.7;
}
