:root {
  color-scheme: dark;
  --bg-deep: #07130f;
  --bg-green: #10281e;
  --green-glass: rgba(13, 35, 27, 0.86);
  --green-panel: rgba(21, 53, 38, 0.74);
  --green-line: rgba(196, 150, 70, 0.26);
  --green-line-strong: rgba(239, 198, 107, 0.44);
  --gold: #efc66b;
  --gold-soft: #f4d99b;
  --paper: #f8ecd1;
  --paper-muted: #d9c8a6;
  --orange: #cf7439;
  --orange-dark: #9d4e27;
  --shadow: rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    "Aptos",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 10%, rgba(239, 198, 107, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 14%, rgba(207, 116, 57, 0.2), transparent 30rem),
    radial-gradient(circle at 50% 112%, rgba(46, 103, 70, 0.3), transparent 38rem),
    linear-gradient(145deg, var(--bg-deep), var(--bg-green));
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background-image:
    linear-gradient(rgba(248, 236, 209, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 236, 209, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 82%);
}

body::after {
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(239, 198, 107, 0.05) 30% 31%, transparent 31% 100%),
    radial-gradient(circle at 8% 86%, rgba(207, 116, 57, 0.12), transparent 22rem);
}

.page-shell {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 56px);
}

.landing-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.hero-panel {
  border: 1px solid var(--green-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    linear-gradient(145deg, rgba(19, 52, 37, 0.88), rgba(7, 19, 15, 0.9));
  box-shadow: 0 28px 90px var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  min-height: 560px;
  border-radius: 34px;
  padding: clamp(30px, 5vw, 64px);
}

.download-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.compact {
  margin-bottom: 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.lead {
  max-width: 650px;
  color: var(--paper-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.fine-print,
.download-card p,
.invite-panel p,
.flow-grid p,
.safety-board li,
.update-note {
  color: rgba(248, 236, 209, 0.74);
  line-height: 1.55;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 12px;
}

.status-strip div,
.release-facts div {
  border: 1px solid rgba(239, 198, 107, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.16);
}

.status-strip span,
.release-facts dt {
  display: block;
  margin-bottom: 6px;
  color: rgba(239, 198, 107, 0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-strip strong,
.release-facts dd {
  margin: 0;
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
}

.invite-panel {
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 26px 0;
  border: 1px solid var(--green-line-strong);
  border-radius: 22px;
  padding: 18px 22px;
  background: rgba(248, 236, 209, 0.08);
}

.invite-panel strong {
  color: var(--paper);
  font-size: clamp(32px, 7vw, 48px);
  line-height: 1;
  letter-spacing: 0.14em;
}

.panel-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 20px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    filter 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  box-shadow: 0 18px 38px rgba(207, 116, 57, 0.32);
}

.button.primary:hover {
  box-shadow: 0 22px 48px rgba(207, 116, 57, 0.44);
  filter: saturate(1.08);
}

.button.secondary {
  border: 1px solid rgba(239, 198, 107, 0.32);
  background: rgba(248, 236, 209, 0.08);
}

.button.wide {
  width: 100%;
  margin-top: 18px;
}

.button.disabled {
  pointer-events: none;
  opacity: 0.62;
}

.release-badge {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(239, 198, 107, 0.32);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(239, 198, 107, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.checksum {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
}

.checksum span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

code {
  overflow-wrap: anywhere;
  border: 1px solid rgba(239, 198, 107, 0.18);
  border-radius: 12px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
}

.text-button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--gold-soft);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.update-note {
  margin-top: 16px;
  border: 1px solid rgba(248, 236, 209, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(248, 236, 209, 0.06);
}

.update-note strong {
  display: block;
  color: var(--paper);
}

.flow-board,
.safety-board {
  grid-column: 1 / -1;
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
}

.section-heading {
  max-width: 620px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.flow-grid article {
  border: 1px solid rgba(239, 198, 107, 0.18);
  border-radius: 20px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.flow-grid span {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid rgba(239, 198, 107, 0.34);
  border-radius: 12px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.flow-grid p {
  margin-bottom: 0;
}

.safety-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 24px;
  align-items: start;
}

.safety-board ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-board li {
  position: relative;
  padding-left: 22px;
}

.safety-board li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(239, 198, 107, 0.45);
  content: "";
}

@media (max-width: 920px) {
  .landing-shell,
  .safety-board {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .status-strip,
  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 14px;
  }

  .hero-copy,
  .download-card,
  .flow-board,
  .safety-board {
    border-radius: 24px;
  }

  .status-strip,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .actions,
  .button {
    width: 100%;
  }
}
