:root {
  --bg: #09111f;
  --bg-soft: rgba(13, 24, 43, 0.82);
  --panel: rgba(14, 27, 51, 0.78);
  --line: rgba(143, 188, 255, 0.16);
  --text: #ebf3ff;
  --muted: #a8bfdc;
  --cyan: #69c4ff;
  --mint: #74e1c0;
  --rose: #ff8ba7;
  --gold: #ffd37a;
  --shadow: 0 26px 80px rgba(1, 8, 20, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(105, 196, 255, 0.18), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(255, 139, 167, 0.14), transparent 28%),
    linear-gradient(180deg, #08101c 0%, #0b1630 48%, #111b39 100%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.layout {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 60px;
}

.header,
.panel,
.tile,
.news-card,
.work-card,
.roadmap,
.footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(7, 18, 36, 0.8);
}

.logo,
.menu a,
.footer a {
  text-decoration: none;
}

.logo {
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.menu a {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: stretch;
  min-height: 74vh;
  margin-top: 18px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(9, 20, 39, 0.82), rgba(18, 31, 59, 0.78)),
    linear-gradient(120deg, rgba(116, 225, 192, 0.12), transparent 40%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker,
.tiny-label,
.badge {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2 {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 11ch;
}

.intro,
.section-head p,
.tile p,
.news-card p,
.copy p,
.road-step p,
.footer p,
.info-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.source-links a,
.news-card a,
.footer a {
  color: var(--mint);
  text-underline-offset: 3px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.button.primary {
  color: #05111f;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(15, 28, 52, 0.92);
}

.hero-side {
  display: grid;
  gap: 14px;
}

.info-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(18, 35, 68, 0.74);
}

.section {
  padding: 34px 0 0;
}

.section-head {
  max-width: 740px;
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.feature-grid,
.news-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tile,
.news-card,
.work-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel);
}

.tile,
.news-card {
  padding: 22px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 211, 122, 0.28);
  border-radius: 999px;
}

.art {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
}

.art-link {
  display: block;
  background: rgba(9, 18, 35, 0.92);
}

.art-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.copy {
  padding: 20px;
}

.roadmap {
  padding: 24px;
  border-radius: 28px;
  background: rgba(10, 20, 38, 0.82);
}

.road-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.road-step + .road-step {
  border-top: 1px solid var(--line);
}

.road-step span {
  color: var(--cyan);
  font-size: 1.6rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(6, 16, 31, 0.82);
}

.footer a {
  color: var(--mint);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero,
  .feature-grid,
  .news-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .layout {
    width: min(100% - 20px, 1160px);
  }

  .header {
    position: static;
  }

  .hero,
  .tile,
  .news-card,
  .copy,
  .roadmap,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .road-step {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 4rem);
  }
}
