:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --ink: #05070a;
  --muted: #626d78;
  --accent: #00e6a8;
  --accent-dark: #00b481;
  --dark-surface: #0b0f16;
  --dark-card: #111827;
  --line: #d9dee4;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, #ffffff 0%, #f4f7fb 46%, #eef2f8 100%),
    linear-gradient(120deg, rgba(0, 230, 168, 0.08), transparent 30%);
  line-height: 1.45;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image: radial-gradient(#000000 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  z-index: -1;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(243, 245, 247, 0.78);
  border-bottom: 1px solid rgba(5, 7, 10, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-dark {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

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

.btn-solid {
  background: var(--accent);
  color: #04120e;
}

.btn-solid:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: rgba(5, 7, 10, 0.24);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: rgba(5, 7, 10, 0.5);
}

.btn-ghost {
  border-color: rgba(5, 7, 10, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.eyebrow,
.section-tag,
.panel-title {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.6rem, 8vw, 6.1rem);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

h2 {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  letter-spacing: 0.02em;
}

h3 {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 56ch;
}

.hero-stats {
  margin-top: 1.7rem;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.stat-value {
  margin-top: 0.35rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.hero-panel {
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  background: linear-gradient(135deg, #0d131d 0%, #111d2f 100%);
  color: #f8fafc;
  box-shadow: var(--shadow);
}

.role-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.role-list li {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 4.4vw, 2.35rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.panel-foot {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.9);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.section-dark {
  color: #e8edf4;
  background: linear-gradient(160deg, #05080f 0%, #0b111a 100%);
}

.mission,
.schedule,
.contact {
  padding: 74px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.section-dark p {
  color: rgba(232, 237, 244, 0.88);
}

.section-dark .section-tag {
  color: rgba(232, 237, 244, 0.78);
}

.mission h2 {
  margin: 0.7rem 0 1rem;
}

.mission p + p {
  margin-top: 0.95rem;
}

.milestones {
  display: grid;
  gap: 12px;
}

.milestones article {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(232, 237, 244, 0.15);
  border-radius: 14px;
  padding: 1.05rem;
}

.schedule .subhead {
  color: var(--muted);
  margin-top: 0.8rem;
}

.schedule-grid {
  margin-top: 1.6rem;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.schedule-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.2rem;
}

.schedule-card .label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  font-weight: 700;
}

.schedule-card .value {
  font-weight: 800;
  font-size: 1.15rem;
}

.contact-wrap {
  text-align: center;
}

.contact p {
  margin-top: 0.85rem;
}

.contact .cta-row {
  justify-content: center;
  margin-top: 1.35rem;
}

.site-footer {
  background: #05080f;
  color: rgba(232, 237, 244, 0.78);
  border-top: 1px solid rgba(232, 237, 244, 0.12);
}

.footer-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-logo {
  height: 34px;
  width: auto;
}

.hero-copy,
.hero-panel,
.mission,
.schedule,
.contact {
  animation: fadeUp 700ms ease both;
}

.hero-panel {
  animation-delay: 120ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand img {
    height: 36px;
  }

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

  .btn {
    width: 100%;
  }

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

  .hero-stats,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    padding: 1rem 0;
    min-height: auto;
    flex-direction: column;
    justify-content: center;
  }
}

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