:root {
  --bg: #0c0c0f;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --text: #f5f0e6;
  --muted: #c2b9a6;
  --accent: #c6a469;
  --accent-2: #9c8055;
  --card-border: rgba(198, 164, 105, 0.35);
  --gradient: linear-gradient(135deg, rgba(198, 164, 105, 0.22), rgba(156, 128, 85, 0.18));
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  background:
    linear-gradient(120deg, rgba(198, 164, 105, 0.06), transparent 35%),
    linear-gradient(300deg, rgba(156, 128, 85, 0.06), transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(198, 164, 105, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  padding: 32px clamp(16px, 3vw, 48px) 40px;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: clamp(20px, 3vw, 40px);
  border-radius: 20px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}

.page-shell::after {
  background: radial-gradient(circle at 70% 30%, rgba(198, 164, 105, 0.2), transparent 45%);
  filter: blur(100px);
  opacity: 0.4;
}

.site-header,
.content-grid,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(198, 164, 105, 0.35);
}

.labyrinth {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: conic-gradient(from 60deg, var(--accent), var(--accent-2), var(--accent));
  mask: radial-gradient(circle at center, transparent 35%, black 37%),
    conic-gradient(#000 0 90deg, transparent 90deg 100%);
  mask-composite: intersect;
  border-radius: 8px;
}

.brand-text {
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--text);
}

.brand-text-group {
  display: grid;
  gap: 2px;
}

.pill {
  background: rgba(198, 164, 105, 0.15);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(198, 164, 105, 0.4);
}

.content-grid {
  display: grid;
  gap: 48px;
}

.hero {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20px 20% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(198, 164, 105, 0.18), transparent 55%);
  filter: blur(30px);
  opacity: 0.6;
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 10px;
  font-size: 0.85rem;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

h3 {
  font-size: 1.15rem;
}

.lede {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 780px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.primary-btn,
.ghost-btn,
.update-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.primary-btn,
.update-form button {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0c0b0b;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.primary-btn:hover,
.update-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.ghost-btn {
  border: 1px solid rgba(198, 164, 105, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.highlight-card {
  background: var(--surface-strong);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.card-eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.countdown {
  margin: 6px 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
}

.card-sub {
  margin: 0;
  color: var(--muted);
}

.progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section-head {
  max-width: 900px;
}

.feature-stack,
.updates,
.contact {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
  display: grid;
  gap: 22px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid var(--card-border);
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(198, 164, 105, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.updates {
  position: relative;
  overflow: hidden;
}

.updates::after {
  content: "";
  position: absolute;
  inset: auto 0 -50px;
  height: 180px;
  background: linear-gradient(180deg, rgba(198, 164, 105, 0.12), transparent);
  filter: blur(30px);
  opacity: 0.5;
  pointer-events: none;
}

.update-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.update-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

.update-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(109, 225, 255, 0.2);
}

.update-form button {
  border: none;
  padding-inline: 18px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  padding: 12px 14px;
}

.contact-item a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.social-row a {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.timeline {
  display: grid;
  gap: 14px;
  align-content: start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  margin-top: 6px;
}

.step-label {
  margin: 0 0 4px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

.site-footer {
  text-align: center;
  color: var(--muted);
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.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;
}

@media (max-width: 720px) {
  body {
    padding: 18px 12px;
  }

  .page-shell {
    padding: 18px;
  }

  .update-form {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-content: center;
  }

  .pill {
    width: 100%;
    text-align: center;
  }
}
