:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --black-3: #111111;
  --panel: #141414;
  --panel-2: #1a1a1a;
  --line: #2b2b2b;
  --line-strong: #3a3a3a;
  --text: #f0eee7;
  --muted: #a09d94;
  --yellow: #f2c94c;
  --yellow-deep: #c9a72e;
  --yellow-soft: rgba(242, 201, 76, 0.10);
  --danger: #c94646;
  --success: #7fa861;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px),
    var(--black);
  background-size: 48px 48px;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 0%, rgba(242,201,76,0.07), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,0.015), transparent 18rem);
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-weight: 1000;
  font-size: 1.22rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-links a {
  padding: 11px 14px;
  color: #c7c4bb;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  border-color: var(--line);
  background: var(--black-3);
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #0c0c0c;
  color: #d3d0c7;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.status-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(242,201,76,0.55);
}

/* ---------- HERO ---------- */
.hero {
  padding: 86px 0 72px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--yellow);
}

.hero h1 {
  margin: 0 0 24px;
  max-width: 780px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.1rem, 8.5vw, 8.4rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: #070707;
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: #ffd84f;
  border-color: #ffd84f;
}

.btn-secondary {
  background: #0a0a0a;
  color: var(--text);
}

.btn-secondary:hover {
  background: #121212;
  border-color: #555;
}

.drop-console {
  border: 1px solid var(--line-strong);
  background: #0a0a0a;
  box-shadow: 16px 16px 0 #000;
  position: relative;
}

.drop-console::before {
  content: attr(data-label);
  display: block;
  padding: 10px 14px;
  background: var(--yellow);
  color: #080808;
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.console-body {
  padding: 28px;
}

.console-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.drop-console h2 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.035em;
}

.drop-console p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.console-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 18px;
}

.console-meta div {
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.console-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.console-meta strong {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.join-btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: default;
}

/* ---------- COUNTDOWN ---------- */
.countdown {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(242,201,76,0.32);
  background: var(--yellow-soft);
}

.countdown-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.countdown-value {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ---------- SECTION STRUCTURE ---------- */
.section {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.section-head h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}

/* ---------- FEATURE BLOCKS ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.feature-index {
  display: block;
  margin-bottom: 34px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.field-note {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid rgba(242,201,76,0.28);
  background: var(--yellow-soft);
}

.field-note strong {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  white-space: nowrap;
}

.field-note p {
  margin: 0;
  color: #d4cfbc;
  line-height: 1.6;
}

/* ---------- ARCHIVE ---------- */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.archive-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #0b0b0b;
  position: relative;
  overflow: hidden;
}

.archive-card::after {
  content: "ARCHIVE";
  position: absolute;
  right: -22px;
  bottom: 18px;
  transform: rotate(-90deg);
  color: rgba(255,255,255,0.035);
  font-size: 2.2rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.archive-date {
  display: inline-block;
  margin-bottom: 28px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--yellow);
  color: #d8d4c7;
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.archive-card h3 {
  margin: 0 0 10px;
  max-width: 88%;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

.archive-card p {
  margin: 0;
  max-width: 90%;
  color: var(--muted);
  line-height: 1.55;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  background: #0a0a0a;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-item {
  padding: 24px;
  background: #0a0a0a;
}

.faq-item h3 {
  margin: 0 0 10px;
  color: #e7e3d8;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- CONTACT / UPDATES ---------- */
.contact-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  border: 1px solid var(--line);
  background: #0a0a0a;
}

.contact-copy {
  padding: 28px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(242,201,76,0.07), transparent 50%),
    #0c0c0c;
}

.contact-copy h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.notify-form {
  padding: 28px;
  display: grid;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #d8d4c9;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #060606;
  color: var(--text);
  padding: 14px;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow);
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.status-message {
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.status-success {
  border-color: rgba(127,168,97,0.45);
  background: rgba(127,168,97,0.08);
  color: #bfd0ae;
}

.status-error {
  border-color: rgba(201,70,70,0.45);
  background: rgba(201,70,70,0.08);
  color: #e6b0b0;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 34px 0 46px;
  color: #7f7c74;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer strong {
  color: #b5b1a7;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-head,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-tag,
  .nav-status {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 20vw, 6rem);
  }

  .feature-grid,
  .archive-grid,
  .faq-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .field-note {
    grid-template-columns: 1fr;
  }

  .console-meta {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
  }
}
