:root {
  --bg: #060606;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 228, 168, 0.14);
  --text: #f7f1e3;
  --muted: rgba(247, 241, 227, 0.72);
  --soft: rgba(247, 241, 227, 0.5);
  --gold: #f3c977;
  --gold-strong: #ffd991;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --max-width: 1220px;
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(243, 201, 119, 0.12), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 217, 145, 0.09), transparent 22%),
    linear-gradient(180deg, #040404 0%, #090909 42%, #050505 100%);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.particle-canvas,
.pointer-glow,
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.particle-canvas {
  z-index: -6;
}

.pointer-glow {
  z-index: -2;
  width: 18rem;
  height: 18rem;
  margin-left: -9rem;
  margin-top: -9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 201, 119, 0.18), rgba(243, 201, 119, 0.05) 42%, transparent 72%);
  filter: blur(28px);
  opacity: 0;
  transition: opacity 300ms ease;
  will-change: transform;
}

.page-noise {
  z-index: -1;
  opacity: 0.07;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.4) 0.55px, transparent 0.8px),
    radial-gradient(rgba(255, 217, 145, 0.3) 0.45px, transparent 0.8px);
  background-position: 0 0, 18px 18px;
  background-size: 24px 24px, 32px 32px;
  mix-blend-mode: soft-light;
}

.page-glow {
  position: fixed;
  inset: auto;
  z-index: -3;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
}

.glow-a {
  top: 6rem;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  background: rgba(243, 201, 119, 0.1);
}

.glow-b {
  right: -6rem;
  top: 20rem;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.05);
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
  pointer-events: none;
}

.section,
.site-header,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-monogram {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(243, 201, 119, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 217, 145, 0.2), transparent 58%),
    rgba(255, 255, 255, 0.03);
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  overflow: hidden;
}

.brand-logo {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 217, 145, 0.22));
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong,
.hero-symbol,
.eyebrow,
.roadmap-phase {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-copy small,
.site-nav a,
.footer-meta,
.footer-link,
.story-body,
.feature-card p,
.metric-card p,
.ecosystem-card p,
.point-card p,
.faq-item p {
  color: var(--muted);
}

.brand-copy small {
  font-size: 0.72rem;
}

.site-nav,
.header-actions,
.lang-toggle,
.hero-actions,
.hero-ticker {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 1.4rem;
}

.site-nav a,
.header-cta,
.footer-link {
  position: relative;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.site-nav a::after,
.header-cta::after,
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.header-cta:hover,
.footer-link:hover {
  color: var(--gold-strong);
}

.site-nav a:hover::after,
.header-cta:hover::after,
.footer-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 1rem;
}

.lang-toggle {
  gap: 0.3rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-button {
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.lang-button.active {
  background: rgba(243, 201, 119, 0.16);
  color: var(--gold-strong);
}

.lang-button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-cta {
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 4rem;
  min-height: calc(100vh - 8rem);
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-title-wrap {
  display: grid;
  gap: 0.6rem;
}

.hero-symbol {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.narrative-strip h2,
.site-footer h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.9rem, 8vw, 7.6rem);
}

.hero-lead {
  max-width: 36rem;
  margin: 1.7rem 0 1rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text);
}

.hero-body {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform var(--transition),
    letter-spacing var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button svg {
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
  letter-spacing: 0.03em;
}

.button-primary {
  color: #17120b;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 16px 30px rgba(243, 201, 119, 0.2);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero-actions {
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-ticker {
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.hero-ticker span {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
  display: grid;
  place-items: center;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.hero-core,
.signal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 26px rgba(255, 217, 145, 0.22));
}

.hero-core {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.4rem;
  width: min(100%, 24rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-core::before,
.hero-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-core::before {
  inset: 1.6rem;
  border: 1px solid rgba(243, 201, 119, 0.2);
}

.hero-core::after {
  inset: 3.7rem;
  background: radial-gradient(circle, rgba(243, 201, 119, 0.18), transparent 70%);
  filter: blur(16px);
}

.hero-core p,
.hero-core span {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--soft);
}

.hero-core strong {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 9vw, 6.8rem);
  color: var(--gold-strong);
  line-height: 1;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(243, 201, 119, 0.14);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.hero-shard {
  position: absolute;
  border: 1px solid rgba(255, 217, 145, 0.14);
  background: linear-gradient(180deg, rgba(255, 217, 145, 0.18), rgba(255, 217, 145, 0.03));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.shard-a {
  top: 10%;
  left: 8%;
  width: 6rem;
  height: 10rem;
  clip-path: polygon(50% 0%, 100% 24%, 70% 100%, 0% 68%);
  transform: rotate(-18deg);
}

.shard-b {
  right: 9%;
  top: 18%;
  width: 4.8rem;
  height: 8.4rem;
  clip-path: polygon(40% 0%, 100% 35%, 62% 100%, 0 72%);
  transform: rotate(15deg);
}

.shard-c {
  bottom: 8%;
  right: 20%;
  width: 5.2rem;
  height: 7rem;
  clip-path: polygon(30% 0%, 100% 22%, 72% 100%, 0 58%);
  transform: rotate(32deg);
}

.orbit-a {
  width: 25rem;
  height: 25rem;
}

.orbit-b {
  width: 31rem;
  height: 31rem;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 28s;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  width: 0.65rem;
  height: 0.65rem;
  margin-left: -0.325rem;
  border-radius: 50%;
  background: var(--gold-strong);
  box-shadow: 0 0 18px rgba(255, 217, 145, 0.6);
}

.signal-card {
  position: absolute;
  min-width: 11rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
}

.signal-card span,
.metric-card span,
.roadmap-phase {
  display: block;
  color: var(--soft);
  font-size: 0.74rem;
}

.signal-card strong,
.metric-card strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--gold-strong);
  font-size: 1.25rem;
}

.signal-card-top {
  top: 2rem;
  left: 0;
}

.signal-card-right {
  top: 9.5rem;
  right: -0.5rem;
}

.signal-card-bottom {
  bottom: 2rem;
  left: 1.4rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.narrative-strip h2,
.site-footer h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.section-heading p:last-child,
.narrative-strip p:last-child,
.site-footer p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
}

.card-grid,
.metric-grid,
.ecosystem-grid,
.story-points {
  display: grid;
  gap: 1.3rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.4rem;
  align-items: start;
}

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

.feature-card,
.metric-card,
.story-panel,
.point-card,
.ecosystem-card,
.roadmap-item,
.narrative-strip,
.faq-item,
.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.feature-card,
.metric-card,
.story-panel,
.point-card,
.ecosystem-card,
.narrative-strip,
.faq-item {
  padding: 1.6rem;
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    background 320ms ease;
}

.roadmap-item,
.site-footer {
  padding: 1.8rem;
}

.feature-card::before,
.metric-card::before,
.story-panel::before,
.point-card::before,
.ecosystem-card::before,
.roadmap-item::before,
.narrative-strip::before,
.faq-item::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 217, 145, 0.14), transparent 35%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.feature-card:hover::before,
.metric-card:hover::before,
.point-card:hover::before,
.ecosystem-card:hover::before,
.roadmap-item:hover::before,
.faq-item:hover::before {
  opacity: 1;
}

.feature-card:hover,
.metric-card:hover,
.point-card:hover,
.ecosystem-card:hover,
.roadmap-item:hover,
.faq-item:hover,
.story-panel:hover,
.narrative-strip:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 201, 119, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(243, 201, 119, 0.05);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.35rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(243, 201, 119, 0.34);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 232, 182, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(243, 201, 119, 0.16), rgba(243, 201, 119, 0.05));
  color: var(--gold-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 233, 188, 0.28),
    0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 217, 145, 0.04);
  font-size: 1.65rem;
}

.card-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter:
    drop-shadow(0 0 10px rgba(255, 217, 145, 0.18))
    drop-shadow(0 0 22px rgba(255, 217, 145, 0.08));
}

.feature-card:hover .card-icon,
.point-card:hover .card-icon,
.ecosystem-card:hover .card-icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 217, 145, 0.46);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 232, 182, 0.3), transparent 48%),
    linear-gradient(180deg, rgba(243, 201, 119, 0.22), rgba(243, 201, 119, 0.08));
}

.feature-card h3,
.point-card h3,
.ecosystem-card h3,
.roadmap-item h3,
.faq-item summary {
  margin: 0;
  font-size: 1.16rem;
}

.feature-card p,
.metric-card p,
.point-card p,
.ecosystem-card p,
.roadmap-item p,
.faq-item p {
  margin: 0.7rem 0 0;
}

.metric-card strong {
  margin-top: 0.55rem;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 0 24px rgba(255, 217, 145, 0.15);
}

.story-body {
  font-size: 1.06rem;
}

.roadmap-list {
  display: grid;
  gap: 1rem;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.roadmap-icon {
  margin-bottom: 1rem;
}

.roadmap-item h3 {
  margin-top: 0;
}

.roadmap-phase {
  color: var(--gold-strong);
  font-weight: 700;
}

.narrative-strip {
  text-align: center;
  padding: 4rem min(8vw, 5rem);
  background:
    radial-gradient(circle at top, rgba(255, 217, 145, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  border-color: rgba(243, 201, 119, 0.18);
}

.faq-item summary {
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold-strong);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-actions,
.footer-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-meta {
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
  font-size: 0.82rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.parallax-node {
  will-change: transform;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .site-header {
    border-radius: 2rem;
    padding-inline: 1rem;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .story,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 31rem;
  }

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

@media (max-width: 720px) {
  .section,
  .site-header,
  .site-footer {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .section {
    padding: 4.3rem 0;
  }

  .site-header {
    gap: 0.75rem;
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 1.5rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    gap: 2rem;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-visual {
    min-height: 24rem;
  }

  .hero-shard {
    opacity: 0.55;
  }

  .hero-core {
    width: min(100%, 17rem);
  }

  .orbit-a {
    width: 18rem;
    height: 18rem;
  }

  .orbit-b {
    width: 22rem;
    height: 22rem;
  }

  .signal-card {
    min-width: auto;
    max-width: 9rem;
    padding: 0.8rem;
  }

  .signal-card-top {
    top: 0.8rem;
  }

  .signal-card-right {
    right: 0;
    top: 7rem;
  }

  .signal-card-bottom {
    left: 0.5rem;
    bottom: 0.8rem;
  }

  .three-up,
  .metric-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

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

  .narrative-strip {
    padding-inline: 1.4rem;
  }

  .footer-actions,
  .footer-meta {
    justify-content: flex-start;
  }
}
