:root {
  --bg: #071018;
  --bg-deep: #03080c;
  --panel: #0d1922;
  --panel-soft: #10212d;
  --text: #f5f1e8;
  --muted: #9aa8b2;
  --gold: #c99b43;
  --gold-light: #f0d899;
  --line: rgba(255, 255, 255, 0.11);
  --white: #ffffff;
  --radius-lg: 30px;
  --radius-md: 21px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: #071018;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 8, 12, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 0.9rem;
  font-weight: 650;
}

.navigation a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.navigation a:hover {
  color: var(--white);
}

.nav-youtube {
  padding: 11px 17px;
  color: #0a1014 !important;
  background: var(--gold-light);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-background,
.hero-vignette,
.hero-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.7;
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 0.96) 0%, rgba(3, 8, 12, 0.72) 38%, rgba(3, 8, 12, 0.18) 72%),
    linear-gradient(180deg, rgba(3, 8, 12, 0.15) 45%, rgba(3, 8, 12, 0.92) 100%);
}

.hero-glow {
  background: radial-gradient(circle at 68% 28%, rgba(201, 155, 67, 0.16), transparent 31%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 70px;
  padding-top: 150px;
  padding-bottom: 92px;
}

.hero-copy {
  max-width: 720px;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--gold-light);
  background: rgba(201, 155, 67, 0.14);
  border: 1px solid rgba(240, 216, 153, 0.22);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker,
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.55);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.1rem, 9vw, 8.7rem);
  line-height: 0.84;
  font-weight: 500;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.42rem;
  letter-spacing: -0.025em;
}

.hero-intro {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  line-height: 1.66;
}

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

.hero-actions {
  margin-top: 35px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #10100d;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.button-white {
  color: var(--bg);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-seal {
  justify-self: end;
  width: min(330px, 58%);
  opacity: 0.82;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.35));
}

.hero-seal img {
  border-radius: 30px;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: 50%;
  bottom: 28px;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 999px;
  transform: translateX(50%);
}

.scroll-hint span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scroll 1.8s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 17px); opacity: 0; }
}

.section {
  padding: 118px 0;
}

.intro-section {
  background: #f0ece3;
  color: #141312;
}

.intro-grid,
.section-heading,
.discovery-grid,
.contact-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 76px;
}

.intro-copy,
.section-heading > p,
.discovery-copy > p {
  color: #5e625f;
  font-size: 1.08rem;
  line-height: 1.72;
}

.universe-panel {
  overflow: hidden;
  margin-top: 70px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.universe-panel img {
  width: 100%;
  height: auto;
}

.pillars-section {
  background: var(--bg);
}

.section-heading {
  align-items: end;
  margin-bottom: 54px;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar-card,
.roadmap-card {
  min-height: 285px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.pillar-index {
  display: block;
  margin-bottom: 76px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.pillar-card p,
.roadmap-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.discovery-section {
  background:
    radial-gradient(circle at 18% 48%, rgba(201, 155, 67, 0.08), transparent 25%),
    #09151d;
}

.discovery-grid {
  align-items: center;
}

.discovery-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 155, 67, 0.12), transparent 38%),
    linear-gradient(155deg, #132631, #050b10);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.discovery-visual img {
  position: relative;
  z-index: 2;
  width: 56%;
  border-radius: 32px;
  opacity: 0.85;
}

.fog {
  position: absolute;
  border-radius: 50%;
  background: rgba(176, 196, 205, 0.12);
  filter: blur(34px);
}

.fog-one {
  top: 8%;
  left: -14%;
  width: 70%;
  height: 28%;
}

.fog-two {
  right: -20%;
  bottom: 13%;
  width: 80%;
  height: 30%;
}

.fog-three {
  top: 44%;
  left: 16%;
  width: 72%;
  height: 20%;
}

.discovery-copy h2 {
  margin-bottom: 30px;
}

.discovery-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.discovery-copy li {
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--line);
}

.discovery-copy li::before {
  content: "◇";
  margin-right: 12px;
  color: var(--gold-light);
}

.development-section {
  background: #f0ece3;
  color: #141312;
}

.development-section .section-heading > p {
  color: #5e625f;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(0, 0, 0, 0.09);
}

.roadmap-card p {
  color: #62655f;
}

.roadmap-state {
  display: inline-flex;
  margin-bottom: 70px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.state-done {
  color: #2a6f46;
  background: #dcefe3;
}

.state-current {
  color: #7a5314;
  background: #f5e6c5;
}

.state-next {
  color: #5d6166;
  background: #e4e5e6;
}

.contact-section {
  padding: 24px 0 96px;
  background: #f0ece3;
}

.contact-panel {
  align-items: end;
  padding: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 13%, rgba(201, 155, 67, 0.22), transparent 24%),
    var(--bg-deep);
  border-radius: var(--radius-lg);
}

.contact-panel h2 {
  margin-bottom: 24px;
}

.contact-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.63;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 56px 0;
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  object-fit: cover;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  margin-bottom: 4px;
  letter-spacing: 0.12em;
}

.footer-brand span,
.studio-credit,
.copyright {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.studio-credit,
.copyright {
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.studio-credit {
  grid-column: 1;
}

.studio-credit a {
  color: var(--gold-light);
  font-weight: 750;
}

.copyright {
  grid-column: 2;
  text-align: right;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .navigation {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    background: rgba(3, 8, 12, 0.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  }

  .navigation.is-open {
    display: grid;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .intro-grid,
  .section-heading,
  .discovery-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-seal {
    display: none;
  }

  .pillars-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-background {
    object-position: 55% center;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(3, 8, 12, 0.36) 15%, rgba(3, 8, 12, 0.82) 55%, rgba(3, 8, 12, 0.98) 100%);
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 6.1rem);
  }

  .section {
    padding: 86px 0;
  }

  .universe-panel {
    margin-top: 44px;
    border-radius: 18px;
  }

  .discovery-visual {
    min-height: 430px;
  }

  .contact-panel {
    padding: 42px 25px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .studio-credit,
  .copyright {
    grid-column: 1;
    text-align: left;
  }

  .copyright {
    padding-top: 0;
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
