:root {
  --bg: #09100e;
  --surface: #101a17;
  --surface-raised: #14211d;
  --ink: #f0f0e8;
  --muted: #a7b0aa;
  --line: #314039;
  --green: #23725a;
  --green-bright: #3b9a78;
  --lime: #91ff00;
  --paper: #eeeee6;
  --paper-ink: #151815;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(145, 255, 0, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 255, 0, .035) 1px, transparent 1px),
    var(--bg);
  background-size: 25px 25px;
  font-family: Arial, Helvetica, sans-serif;
}

button,
input { font: inherit; }

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding-top: clamp(40px, 7vh, 78px);
  display: flex;
  flex-direction: column;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}

.site-name {
  margin: 0 0 4px;
  font-size: clamp(56px, 8.3vw, 108px);
  font-weight: 900;
  line-height: .93;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

h1 {
  margin: 20px 0 0;
  color: var(--green-bright);
  font-size: clamp(20px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.hero-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 700;
}

.hero-subtitle::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--lime) 0 42%, var(--ink) 42% 100%);
}

.meta-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 56px);
}

.meta-row p {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 13px;
}

.meta-row strong {
  color: var(--green-bright);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.meta-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-orbit {
  width: 190px;
  aspect-ratio: 1;
  padding: 8px;
  border: 4px solid var(--lime);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--ink), 0 0 0 7px var(--green);
}

.logo-orbit__inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
}

.logo-orbit img {
  width: 88%;
  filter: drop-shadow(0 7px 7px rgba(0, 0, 0, .15));
}

main {
  flex: 1;
  padding-top: 31px;
}

.content-section + .content-section { margin-top: 32px; }

.section-heading {
  display: grid;
  grid-template-columns: 12px auto 1fr;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.section-heading > span {
  width: 12px;
  height: 12px;
  border: 1px solid var(--paper-ink);
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
}

.section-heading h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading i {
  height: 1px;
  margin-left: 10px;
  background: var(--line);
}

.profile-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #405149;
  border-left: 6px solid var(--green);
  background: var(--surface);
}

.profile-card p {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(19px, 2.3vw, 28px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -.02em;
}

.signup-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.5fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #405149;
  border-left: 6px solid var(--green);
  background: var(--surface-raised);
}

.signup-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--lime);
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.signup-card h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

.signup-card__copy > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.signup-form {
  align-self: center;
}

.signup-form > label {
  display: block;
  margin-bottom: 9px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.signup-form__row {
  display: flex;
  gap: 10px;
}

.signup-form input[type="email"] {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #6c8077;
  border-radius: 0;
  color: var(--ink);
  background: #0b1310;
  outline: none;
}

.signup-form input[type="email"]::placeholder { color: #6f7b75; }

.signup-form input[type="email"]:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(145, 255, 0, .18);
}

.signup-form button {
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid var(--paper-ink);
  border-radius: 0;
  color: var(--paper-ink);
  background: var(--lime);
  font-weight: 900;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.signup-form button:hover {
  color: var(--ink);
  background: var(--green-bright);
}

.signup-form button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: .6;
}

.signup-consent,
.signup-status {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.4;
}

.signup-consent { color: var(--muted); }
.signup-status { min-height: 16px; font-weight: 800; }
.signup-status[data-state="success"] { color: var(--lime); }
.signup-status[data-state="error"] { color: #ff7784; }
.signup-status[data-state="info"] { color: #7fd3b1; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

.tag-row span {
  padding: 7px 10px;
  border: 1px solid #4b6258;
  color: var(--muted);
  background: rgba(16, 26, 23, .72);
  font-size: 11px;
}

.site-footer {
  position: relative;
  min-height: 116px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #718078;
  font-size: 10px;
  text-transform: uppercase;
}

.reserve-link {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  transform: translateX(-50%);
}

.reserve-link:hover,
.reserve-link:focus-visible { color: var(--lime); }

.reserve-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

.reserve-orbit {
  width: 76px;
  aspect-ratio: 1;
  padding: 4px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--green);
}

.reserve-orbit__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
}

.reserve-orbit img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 215%;
  max-width: none;
  transform: translateX(-45%);
}

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr 145px; }
  .logo-orbit { width: 140px; }
  .meta-row { grid-template-columns: 1fr; gap: 8px; }
  .signup-card { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 26px, 1180px);
    padding-top: 30px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-name { font-size: clamp(50px, 17vw, 76px); }
  .logo-orbit { width: 118px; grid-row: 1; }
  .hero-copy { grid-row: 2; }
  .signup-form__row { flex-direction: column; }
  .signup-form button { width: 100%; }
  .section-heading { grid-template-columns: 10px auto 1fr; }
  .section-heading > span { width: 10px; height: 10px; }
  .section-heading h2 { font-size: 15px; }
  .profile-card, .signup-card { border-left-width: 4px; }
  .site-footer { min-height: 104px; }
  .reserve-orbit { width: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
