:root {
  --black: #0e0f12;
  --charcoal: #2f3033;
  --surface: #18191d;
  --surface-raised: #222327;
  --grey: #a7a9ad;
  --white: #f6f7f9;
  --orange: #ff9800;
  --blue: #3b82f6;
  --purple: #a855f7;
  --line: rgba(246, 247, 249, 0.13);
  --line-strong: rgba(246, 247, 249, 0.23);
  --max-width: 1220px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
.wordmark {
  font-family: "Space Grotesk", sans-serif;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--black);
  background: var(--white);
  border-radius: 0.4rem;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.migration-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  min-height: 42px;
  padding: 0.6rem 1rem;
  color: #2b1b00;
  background: var(--orange);
  font-size: 0.78rem;
}

.migration-banner p {
  margin: 0;
}

.migration-banner a {
  font-weight: 700;
  text-underline-offset: 0.2rem;
}

.page-shell {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
  text-decoration: none;
}

.aura-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(59, 130, 246, 0.68);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.16);
}

.aura-mark::after {
  position: absolute;
  inset: 4px;
  content: "";
  border: 1px solid rgba(168, 85, 247, 0.66);
  border-radius: 50%;
}

.aura-mark i {
  width: 11px;
  height: 11px;
  z-index: 1;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 152, 0, 0.7);
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand small {
  padding: 0.23rem 0.38rem;
  color: var(--grey);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links a,
.nav-cta {
  color: var(--grey);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

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

.nav-cta {
  justify-self: end;
  padding: 0.68rem 0.9rem;
  color: var(--black);
  background: var(--orange);
  border-radius: 0.4rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  min-height: min(790px, calc(100vh - 134px));
  padding: 6.5rem 0 7rem;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  top: 8%;
  right: 2%;
  z-index: -1;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(59, 130, 246, 0.13), transparent 48%),
    radial-gradient(circle at 70% 40%, rgba(168, 85, 247, 0.1), transparent 48%);
  filter: blur(20px);
}

.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--grey);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.65rem;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 152, 0, 0.07);
}

h1 {
  max-width: 780px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.8rem, 7.2vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h1 > span,
h2 > span {
  display: block;
  color: var(--orange);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--grey);
  font-size: clamp(1.05rem, 2vw, 1.23rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.nav a:focus-visible,
.site-footer a:focus-visible,
.aura-copy a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.button-primary {
  color: var(--black);
  background: var(--orange);
  box-shadow: 0 14px 40px rgba(255, 152, 0, 0.16);
}

.button-primary:hover,
.nav-cta:hover {
  background: #ffab2e;
}

.button-secondary {
  color: var(--white);
  background: rgba(246, 247, 249, 0.035);
  border-color: var(--line);
}

.button-secondary:hover {
  background: rgba(246, 247, 249, 0.07);
  border-color: var(--line-strong);
}

.cta-note {
  margin: 1.05rem 0 0;
  color: #7f8186;
  font-size: 0.75rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 590px;
  margin: 2.6rem 0 0;
  padding: 1.15rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-proof li + li {
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
}

.hero-proof span {
  color: var(--grey);
  font-size: 0.67rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.profile-aura {
  position: absolute;
  inset: 6% -8%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.profile-aura span {
  position: absolute;
  border-radius: 50%;
}

.profile-aura span:nth-child(1) {
  width: 410px;
  height: 410px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 65px rgba(59, 130, 246, 0.13);
}

.profile-aura span:nth-child(2) {
  width: 485px;
  height: 485px;
  border: 1px dashed rgba(168, 85, 247, 0.27);
  animation: aura-spin 30s linear infinite;
}

.profile-aura span:nth-child(3) {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.07), transparent 68%);
}

.profile-preview {
  position: relative;
  width: min(100%, 340px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1.15rem;
  background: var(--surface);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
  transform: rotate(1.5deg);
}

.profile-viewport {
  position: relative;
  height: 455px;
  overflow: hidden;
  background: var(--charcoal);
}

.profile-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-preview figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  padding: 1rem 1.1rem 1.15rem;
}

.profile-preview figcaption span {
  color: var(--grey);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-preview figcaption i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.45rem;
  background: var(--orange);
  border-radius: 50%;
}

.profile-preview figcaption strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.platform-bar {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.platform-bar p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.platform-bar ul {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  color: var(--grey);
  list-style: none;
  font-size: 0.68rem;
}

.platform-bar li span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.38rem;
  background: var(--orange);
  border-radius: 50%;
}

.section {
  padding: 8rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.12fr 0.76fr;
  column-gap: 6rem;
  align-items: end;
  margin-bottom: 3.6rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.aura-copy h2,
.focus-copy h2,
.transition-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child,
.focus-copy > p:last-child {
  margin-bottom: 0;
  color: var(--grey);
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 375px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface);
}

.feature-number {
  color: #6f7176;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 4.7rem 0 1.6rem;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  font: 700 1.3rem/1 "Space Grotesk", sans-serif;
}

.feature-icon-spark {
  color: var(--white);
  background: var(--blue);
}

.feature-icon-people {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.feature-card > p {
  margin-bottom: 0.6rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.feature-card > span:last-child {
  color: var(--grey);
  line-height: 1.65;
}

.aura-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding: 7rem clamp(2rem, 6vw, 6rem);
  margin-bottom: 8rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.12), transparent 30%),
    linear-gradient(140deg, var(--surface-raised), var(--surface));
}

.aura-copy h2 {
  margin-bottom: 1.5rem;
}

.aura-lead {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.65;
}

.aura-copy > p:not(.eyebrow):not(.aura-lead) {
  color: var(--grey);
  line-height: 1.75;
}

.aura-copy > a {
  display: inline-flex;
  gap: 0.55rem;
  margin-top: 1.1rem;
  color: var(--orange);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}

.aura-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aura-rings {
  position: relative;
  display: grid;
  place-items: center;
  width: min(420px, 100%);
  aspect-ratio: 1;
}

.ring {
  position: absolute;
  border-radius: 50%;
}

.ring-one {
  inset: 4%;
  border: 1px solid rgba(59, 130, 246, 0.52);
  animation: aura-spin 26s linear infinite;
}

.ring-two {
  inset: 20%;
  border: 1px dashed rgba(168, 85, 247, 0.55);
  animation: aura-spin 20s linear infinite reverse;
}

.ring-three {
  inset: 34%;
  border: 1px solid rgba(255, 152, 0, 0.65);
  box-shadow: 0 0 35px rgba(255, 152, 0, 0.12);
}

.aura-core {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  font: 700 1rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  box-shadow: 0 0 45px rgba(255, 152, 0, 0.27);
}

.aura-node {
  position: absolute;
  padding: 0.42rem 0.62rem;
  color: var(--white);
  background: rgba(14, 15, 18, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
}

.node-games { top: 12%; right: 12%; }
.node-moments { right: 0; bottom: 28%; }
.node-history { bottom: 9%; left: 19%; }
.node-people { top: 32%; left: 0; }

.aura-map-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: min(420px, 100%);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aura-map-caption strong {
  color: var(--white);
}

.focus-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7rem;
  align-items: center;
  padding: 8rem 0;
  border-top: 1px solid var(--line);
}

.focus-copy h2 {
  margin-bottom: 1.5rem;
}

.standard-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface);
}

.standard-panel > p {
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.standard-panel li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.standard-panel li > span {
  color: #6f7176;
  font-size: 0.65rem;
}

.standard-panel li div {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.standard-panel small {
  color: var(--grey);
  line-height: 1.5;
}

.transition-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin: 2rem 0 7rem;
  padding: 6rem 2rem;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 50% 120%, rgba(255, 152, 0, 0.13), transparent 42%),
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.1), transparent 32%),
    var(--surface);
}

.transition-panel h2 {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.transition-panel > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--grey);
  line-height: 1.7;
}

.transition-panel .button {
  margin-top: 1rem;
}

.transition-panel small {
  margin-top: 1rem;
  color: #7f8186;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 145px;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: 0.8rem;
}

.footer-brand p,
.site-footer > p {
  margin: 0.55rem 0 0;
}

.aura-mark-small {
  width: 28px;
  height: 28px;
}

.aura-mark-small i {
  width: 9px;
  height: 9px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
}

.site-footer nav a {
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--white);
}

.js .hero-copy,
.js .hero-visual,
.js .section-heading,
.js .feature-card,
.js .aura-section,
.js .focus-section,
.js .transition-panel {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease var(--reveal-delay, 0ms),
    transform 650ms ease var(--reveal-delay, 0ms);
}

.js .hero-copy.is-visible,
.js .hero-visual.is-visible,
.js .section-heading.is-visible,
.js .feature-card.is-visible,
.js .aura-section.is-visible,
.js .focus-section.is-visible,
.js .transition-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aura-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section-heading,
  .aura-section,
  .focus-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 3rem;
    padding-top: 5rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .platform-bar {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .platform-bar ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section-heading,
  .focus-section {
    gap: 2rem;
  }

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

  .feature-card {
    min-height: 320px;
  }

  .feature-icon {
    margin-top: 3.3rem;
  }

  .aura-section {
    gap: 3rem;
  }
}

@media (max-width: 700px) {
  .migration-banner {
    align-items: flex-start;
    gap: 0.65rem;
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .page-shell {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .site-header {
    min-height: 82px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding: 0.6rem 0.72rem;
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding: 4.2rem 0 5rem;
  }

  h1 {
    font-size: clamp(3.45rem, 17vw, 5.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 0.8rem;
  }

  .hero-proof li + li {
    padding-left: 0.8rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .profile-aura span:nth-child(1) { width: 340px; height: 340px; }
  .profile-aura span:nth-child(2) { width: 400px; height: 400px; }
  .profile-aura span:nth-child(3) { width: 450px; height: 450px; }

  .section {
    padding: 5.5rem 0;
  }

  .section-heading h2,
  .aura-copy h2,
  .focus-copy h2,
  .transition-panel h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .aura-section {
    padding: 4.5rem 1.2rem;
    margin-bottom: 5.5rem;
  }

  .aura-rings {
    width: min(340px, 100%);
  }

  .focus-section {
    padding: 5.5rem 0;
  }

  .transition-panel {
    margin-bottom: 5rem;
    padding: 4.5rem 1.2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

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