/* LaunchBox Games — design tokens.
   Palette taken from the rocket-lunchbox mark: deep space navy, the blue orbit
   ring, and the orange-to-red exhaust. Cream stands in for the ice cream itself. */

:root {
  --ink: #070B18;
  --hull: #0E1730;
  --hull-2: #141F3C;
  --line: rgba(255, 246, 233, 0.14);
  --jet: #2F7BFF;
  --jet-soft: #6FA6FF;
  --flame: #FF7A18;
  --ember: #FF3D2E;
  --mint: #38D39F;
  --cream: #FFF6E9;
  --cream-dim: rgba(255, 246, 233, 0.68);
  --cream-faint: rgba(255, 246, 233, 0.45);
  --warn: #FFC94D;
  --danger: #FF6B75;

  --exhaust: linear-gradient(180deg, var(--flame) 0%, var(--ember) 55%, rgba(255, 61, 46, 0) 100%);
  --chrome: linear-gradient(160deg, #F4F7FF 0%, #C6D2E8 45%, #8FA0C0 100%);

  --font-display: 'Archivo', 'Archivo Black', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --shadow-lift: 0 18px 44px rgba(3, 7, 20, 0.45);
  --shadow-card: 0 2px 0 rgba(255, 255, 255, 0.04), 0 14px 30px rgba(3, 7, 20, 0.35);
  --gutter: clamp(18px, 5vw, 64px);
  --stack: clamp(56px, 9vw, 116px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0;
  font-stretch: 112%;
}

p { margin: 0; }
a { color: var(--jet-soft); }
img { max-width: 100%; display: block; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--warn);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: min(1180px, 100% - var(--gutter) * 2); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.is-hidden { display: none !important; }

/* Eyebrow labels double as the product's structural signposts. */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #17060B;
  box-shadow: 0 10px 26px rgba(255, 90, 30, 0.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255, 90, 30, 0.42); }
.btn--blue { background: var(--jet); color: #fff; box-shadow: 0 10px 26px rgba(47, 123, 255, 0.34); }
.btn--blue:hover { transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--jet); color: var(--jet-soft); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.field { display: grid; gap: 6px; }
.field > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.field input, .field select, .field textarea {
  min-height: 46px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(7, 11, 24, 0.6);
  color: var(--cream);
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--jet);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 123, 255, 0.2);
}
.field--error input, .field--error select { border-color: var(--danger); }
.field-note { font-size: 13px; color: var(--cream-faint); }
.field-error { font-size: 13px; color: var(--danger); }

.notice {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(47, 123, 255, 0.1);
  font-size: 14px;
}
.notice--error { background: rgba(255, 107, 117, 0.12); border-color: rgba(255, 107, 117, 0.4); }
.notice--good { background: rgba(56, 211, 159, 0.12); border-color: rgba(56, 211, 159, 0.4); }
.notice--warn { background: rgba(255, 201, 77, 0.12); border-color: rgba(255, 201, 77, 0.4); }

/* The exhaust plume behind the hero. This is the page's signature. */
.plume {
  position: absolute;
  inset-inline: 0;
  top: -8%;
  height: 78%;
  background: var(--exhaust);
  filter: blur(46px);
  opacity: 0.42;
  clip-path: polygon(38% 0, 62% 0, 92% 100%, 8% 100%);
  pointer-events: none;
}
