@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Orbitron";
  src: url("./fonts/Orbitron-VariableFont.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Audiowide";
  src: url("./fonts/Audiowide-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("./fonts/Exo2-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --font-body: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-ui: "Orbitron", "Arial Narrow", "Segoe UI", sans-serif;
  --font-accent: "Audiowide", "Orbitron", "Segoe UI", sans-serif;
  --font-support: "Exo 2", "Inter", "Segoe UI", sans-serif;
  --bg: #031a28;
  --bg-elevated: rgba(4, 18, 28, 0.9);
  --bg-soft: rgba(1, 41, 62, 0.72);
  --panel: rgba(6, 18, 28, 0.82);
  --panel-strong: rgba(8, 25, 39, 0.95);
  --panel-outline: rgba(29, 171, 234, 0.22);
  --text: #e6eef5;
  --text-muted: #9bb0c3;
  --text-soft: #6e879c;
  --accent: #1daaea;
  --accent-strong: #49c7e3;
  --accent-glow: rgba(29, 171, 234, 0.24);
  --gold: #b79629;
  --gold-bright: #dedf00;
  --heading: #7dc7e3;
  --heading-secondary: #c2a33a;
  --danger: #8f3139;
  --warning: #e87d21;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top, rgba(29, 171, 234, 0.22), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(183, 150, 41, 0.14), transparent 26%),
    linear-gradient(180deg, #052131 0%, #03141f 52%, #020b12 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 85% 68%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--heading);
  text-shadow: 0 0 18px rgba(29, 171, 234, 0.12);
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  padding: 0.85rem 1rem;
  background: #ffffff;
  color: #000000;
  border-radius: 0.75rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  position: relative;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(4, 14, 22, 0.9);
  border-bottom: 1px solid rgba(29, 171, 234, 0.12);
}

.site-header__inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 0 0 auto;
}

.brand > span {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.1rem;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.brand__eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.54rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dca22a;
  opacity: 0.94;
  text-shadow: 0 0 12px rgba(220, 162, 42, 0.18);
}

.brand__name {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.05;
  color: #418492;
  text-shadow: 0 0 14px rgba(65, 132, 146, 0.18);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.9rem;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem;
}

.site-nav__links a {
  font-family: var(--font-ui);
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a.is-current {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.site-nav__cta {
  white-space: nowrap;
  min-height: 42px;
  padding: 0.68rem 1.15rem;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(183, 150, 41, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #071018;
  background: linear-gradient(135deg, #dedf00 0%, #b79629 100%);
  box-shadow: 0 14px 30px rgba(183, 150, 41, 0.3);
}

.button--secondary {
  background: rgba(29, 171, 234, 0.09);
  border-color: rgba(29, 171, 234, 0.24);
}

.button--ghost {
  background: transparent;
  border-color: rgba(29, 171, 234, 0.22);
  color: var(--accent-strong);
}

.hero,
.page-header {
  padding: 4.5rem 0 2.5rem;
}

.hero__grid,
.page-header__grid,
.split-grid,
.cta-banner,
.support-grid {
  display: grid;
  gap: 1.5rem;
}

.hero__grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) - 2rem);
}

.eyebrow,
.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(29, 171, 234, 0.12);
  border: 1px solid rgba(29, 171, 234, 0.2);
  color: var(--accent-strong);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-header h1 {
  margin: 1rem 0 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--gold-bright);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--heading) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
}

.page-header h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.lede,
.page-header p,
.copy-lead {
  font-family: var(--font-support);
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  font-family: var(--font-support);
  color: var(--text-soft);
  font-size: 0.96rem;
}

.meta-line span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 171, 234, 0.16);
  background: rgba(29, 171, 234, 0.06);
}

.hero-card,
.card,
.panel,
.update-card,
.faq-item,
.contact-card,
.timeline-item {
  background: var(--panel);
  border: 1px solid var(--panel-outline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(1.4rem, 2vw, 2rem);
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.panel--accent::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: auto auto -20% -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 171, 234, 0.22), transparent 72%);
  pointer-events: none;
}

.hero-card__logo {
  width: min(100%, 480px);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45));
}

.hero-card__grid,
.card-grid,
.stats-grid,
.faq-grid,
.updates-grid,
.support-links,
.info-grid {
  display: grid;
  gap: 1rem;
}

.hero-card__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--3,
.updates-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--2,
.split-grid,
.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.card,
.update-card,
.timeline-item,
.contact-card {
  padding: 1.4rem;
}

.card h2,
.card h3,
.panel h2,
.panel h3,
.update-card h2,
.update-card h3,
.contact-card h2,
.faq-item summary {
  margin: 0 0 0.75rem;
  color: var(--heading-secondary);
  text-shadow: 0 0 14px rgba(183, 150, 41, 0.1);
}

.card p,
.panel p,
.update-card p,
.timeline-item p,
.contact-card p,
.faq-item p,
.faq-item li,
.support-list li {
  color: var(--text-muted);
}

.section {
  padding: 1.35rem 0 3rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--heading);
}

.section-heading p {
  margin: 0;
  max-width: 65ch;
  color: var(--text-muted);
}

.panel {
  position: relative;
  padding: clamp(1.5rem, 2vw, 2.2rem);
  overflow: hidden;
}

.panel--accent {
  position: relative;
  background:
    linear-gradient(180deg, rgba(1, 41, 62, 0.96), rgba(4, 18, 28, 0.94)),
    rgba(8, 25, 39, 0.94);
}

.panel__label,
.update-card__label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: var(--font-accent);
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

.list li + li {
  margin-top: 0.55rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(29, 171, 234, 0.14);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 1.64rem;
  top: 2rem;
  bottom: -1rem;
  width: 1px;
  background: rgba(29, 171, 234, 0.18);
}

.timeline-item:last-child::after {
  display: none;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__body {
  padding: 0 1.3rem 1.3rem;
}

.contact-card address {
  font-style: normal;
  color: var(--text);
}

.support-links {
  margin-top: 1.25rem;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.support-list a {
  color: var(--accent-strong);
}

.cta-banner {
  position: relative;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  padding: 1.6rem 1.75rem;
  margin-top: 1rem;
  background:
    linear-gradient(135deg, rgba(1, 41, 62, 0.96), rgba(4, 18, 28, 0.95)),
    var(--panel-strong);
  border: 1px solid rgba(29, 171, 234, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-banner h2,
.cta-banner h3 {
  margin: 0 0 0.4rem;
  color: var(--gold-bright);
  text-shadow: 0 0 16px rgba(222, 223, 0, 0.12);
}

.page-links {
  display: grid;
  gap: 1rem;
}

.page-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.page-link strong {
  display: block;
  margin-bottom: 0.2rem;
}

.page-link span:last-child {
  color: var(--accent-strong);
  white-space: nowrap;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(29, 171, 234, 0.12);
  background: rgba(2, 10, 16, 0.9);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  color: var(--heading-secondary);
  text-shadow: none;
}

.site-footer p,
.site-footer li {
  color: var(--text-muted);
}

.footer-nav,
.footer-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-nav a,
.footer-meta a {
  color: var(--text-muted);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero__grid,
  .page-header__grid,
  .split-grid,
  .cta-banner,
  .site-footer__grid,
  .support-grid,
  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  .card-grid--3,
  .faq-grid,
  .info-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    padding: 0 1rem 1rem;
    display: none;
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav__panel {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 9, 18, 0.98);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow);
  }

  .site-nav__links,
  .site-nav__panel {
    display: grid;
    gap: 0.35rem;
  }

  .site-nav__cta {
    margin-top: 0.75rem;
  }

  .hero,
  .page-header {
    padding-top: 3.4rem;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .card-grid--3,
  .card-grid--2,
  .faq-grid,
  .updates-grid,
  .info-grid,
  .stats-grid,
  .hero-card__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
