:root {
  --bg: #030503;
  --bg-soft: #070b07;
  --panel: rgba(255,255,255,0.035);
  --panel-strong: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.10);
  --text: #f3f7ef;
  --muted: rgba(243,247,239,0.58);
  --green: #9cff22;
  --green-soft: rgba(156,255,34,0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(114,255,0,0.08),
      transparent 32rem
    ),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a,
button {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  min-height: 62px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 10px 8px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(3,5,3,0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--text);
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #081000;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(156,255,34,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156,255,34,0.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image:
    radial-gradient(circle at center, #000, transparent 75%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(156,255,34,0.12),
      rgba(156,255,34,0.025) 40%,
      transparent 70%
    );
  filter: blur(10px);
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,0.72fr);
  align-items: center;
  gap: 60px;
  padding: 140px 0 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(92px, 13vw, 190px);
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.hero h1 span {
  color: var(--green);
}

.hero-lead {
  margin: 32px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.hero-description {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.button-primary {
  border: 0;
  background: var(--green);
  color: #071000;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
}

.hero-contract {
  display: block;
  max-width: 100%;
  margin-top: 22px;
  color: rgba(243,247,239,0.4);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.hero-visual,
.utility-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.aura-ring,
.utility-ring {
  position: absolute;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(156,255,34,0.65);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(156,255,34,0.11),
    inset 0 0 60px rgba(156,255,34,0.05);
}

.aura-core,
.utility-core {
  width: 32%;
  height: 32%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      #d9ffaf 0%,
      var(--green) 10%,
      rgba(89,255,0,0.42) 34%,
      rgba(89,255,0,0.05) 62%,
      transparent 72%
    );
  box-shadow: 0 0 90px rgba(156,255,34,0.24);
}

.aura-orbit {
  position: absolute;
  border: 1px solid rgba(156,255,34,0.18);
  border-radius: 50%;
}

.aura-orbit-one {
  width: 92%;
  height: 38%;
  transform: rotate(-20deg);
}

.aura-orbit-two {
  width: 88%;
  height: 48%;
  transform: rotate(56deg);
}

.section {
  padding: 130px 20px;
  border-bottom: 1px solid var(--line);
}

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-shell.narrow {
  width: min(100%, 960px);
}

.section h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section h2 em {
  display: block;
  color: var(--green);
  font-style: normal;
}

.section-copy {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.standard-grid,
.market-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 70px;
}

.standard-grid article,
.market-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.standard-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.standard-grid strong,
.market-grid strong {
  display: block;
  margin-top: 52px;
  font-size: 24px;
}

.standard-grid p,
.market-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px,0.42fr);
  align-items: end;
  gap: 60px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  margin-top: 60px;
}

.community-card {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}

.community-card.primary-card {
  background:
    linear-gradient(
      135deg,
      rgba(156,255,34,0.12),
      rgba(255,255,255,0.025)
    );
}

.community-card img,
.market-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.community-card small,
.market-grid small {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-card strong {
  font-size: 24px;
}

.community-card p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.role-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.role-strip span,
.status-badge {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.utility {
  background:
    radial-gradient(
      circle at 72% 50%,
      rgba(156,255,34,0.08),
      transparent 31rem
    );
}

.utility-shell {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.utility-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.utility-loop {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 30px 0;
}

.utility-loop span {
  color: var(--text);
  font-weight: 750;
}

.utility-loop i {
  color: var(--green);
  font-style: normal;
}

.utility-pulse {
  position: absolute;
  width: 96%;
  height: 96%;
  border: 1px solid rgba(156,255,34,0.08);
  border-radius: 50%;
}

.contract-card {
  margin-top: 60px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.6fr 1.6fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(156,255,34,0.25);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(156,255,34,0.07),
      rgba(255,255,255,0.02)
    );
}

.contract-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
}

.contract-card code {
  color: var(--text);
  overflow-wrap: anywhere;
}

.contract-card button {
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--text);
  font-weight: 800;
}

.market-grid article {
  position: relative;
}

.market-grid article img {
  margin-bottom: 34px;
}

.market-grid strong {
  margin-top: 4px;
}

.market-grid article > span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

.faq-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-list p {
  max-width: 720px;
  margin: -5px 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-code {
  overflow-wrap: anywhere;
  font-family: monospace;
}

.footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer strong {
  font-size: 20px;
}

.footer p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer code {
  color: rgba(243,247,239,0.42);
  font-size: 10px;
}

.footer-disclosure {
  justify-self: end;
  max-width: 320px;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-inner,
  .utility-shell,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(420px, 90vw);
    margin: 0 auto;
  }

  .standard-grid,
  .market-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .contract-card {
    grid-template-columns: 1fr;
  }

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

  .footer-disclosure {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .header-cta {
    padding: 11px 14px;
  }

  .hero-inner {
    width: min(calc(100% - 28px), var(--max));
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(76px, 25vw, 118px);
  }

  .section {
    padding: 90px 16px;
  }

  .section h2 {
    font-size: clamp(42px, 13vw, 68px);
  }
}

/* ==========================================================
   AURA HERO CHARACTER V1
   ========================================================== */

.hero {
  overflow: hidden;
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(
      circle at 18% 24%,
      rgba(210,255,175,0.92) 0 1px,
      transparent 1.6px
    ),
    radial-gradient(
      circle at 74% 18%,
      rgba(156,255,34,0.72) 0 1px,
      transparent 1.8px
    ),
    radial-gradient(
      circle at 86% 66%,
      rgba(255,255,255,0.5) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 36% 78%,
      rgba(156,255,34,0.5) 0 1px,
      transparent 1.5px
    );
  background-size:
    230px 230px,
    310px 310px,
    270px 270px,
    350px 350px;
}

.hero-visual {
  --hero-x: 0;
  --hero-y: 0;
  --hero-scroll: 0;

  min-height: min(720px, 76vh);
  isolation: isolate;
  transform:
    translate3d(
      calc(var(--hero-x) * 4px),
      calc(var(--hero-y) * 3px),
      0
    );
}

.hero-cosmos {
  position: absolute;
  z-index: -5;
  width: 118%;
  height: 118%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(170,255,66,0.15),
      rgba(65,159,0,0.055) 33%,
      rgba(0,0,0,0) 68%
    );
  filter: blur(8px);
  transform:
    scale(calc(1 + var(--hero-scroll) * 0.08));
}

.hero-visual .aura-ring {
  z-index: -3;
  width: 72%;
  height: 72%;
  border-color: rgba(156,255,34,0.48);
  opacity: 0.78;
  box-shadow:
    0 0 54px rgba(156,255,34,0.12),
    inset 0 0 44px rgba(156,255,34,0.035);
  transform:
    translate3d(
      calc(var(--hero-x) * -7px),
      calc(var(--hero-y) * -5px),
      0
    )
    rotate(calc(var(--hero-scroll) * 8deg));
}

.hero-visual .aura-ring-secondary {
  width: 52%;
  height: 52%;
  border-color: rgba(204,255,145,0.18);
  opacity: 0.58;
  transform:
    translate3d(
      calc(var(--hero-x) * 5px),
      calc(var(--hero-y) * 4px),
      0
    )
    rotate(calc(var(--hero-scroll) * -12deg));
}

.hero-visual .aura-orbit {
  z-index: -4;
  opacity: 0.72;
}

.hero-visual .aura-orbit-one {
  transform:
    translate3d(
      calc(var(--hero-x) * -5px),
      calc(var(--hero-y) * 3px),
      0
    )
    rotate(calc(-18deg + var(--hero-scroll) * 8deg));
}

.hero-visual .aura-orbit-two {
  transform:
    translate3d(
      calc(var(--hero-x) * 4px),
      calc(var(--hero-y) * -3px),
      0
    )
    rotate(calc(57deg - var(--hero-scroll) * 10deg));
}

.hero-character-glow {
  position: absolute;
  z-index: -2;
  top: 14%;
  left: 50%;
  width: 58%;
  height: 68%;
  transform: translateX(-50%);
  border-radius: 46%;
  background:
    radial-gradient(
      ellipse at 50% 42%,
      rgba(156,255,34,0.24),
      rgba(99,255,0,0.075) 36%,
      transparent 72%
    );
  filter: blur(34px);
}

.hero-character-wrap {
  position: relative;
  z-index: 4;
  height: min(720px, 76vh);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform:
    translate3d(
      calc(var(--hero-x) * 10px),
      calc(var(--hero-y) * 7px + var(--hero-scroll) * 12px),
      0
    )
    scale(calc(1 + var(--hero-scroll) * 0.025));
  transform-origin: 50% 80%;
  transition: filter 180ms ease;
  will-change: transform;
}

.hero-character {
  display: block;
  width: auto;
  height: 96%;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 0 16px rgba(156,255,34,0.22))
    drop-shadow(0 0 46px rgba(94,255,0,0.12));
  user-select: none;
  pointer-events: none;
}

.hero-ground-glow {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 2%;
  width: 56%;
  height: 7%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(156,255,34,0.34),
      rgba(156,255,34,0.06) 46%,
      transparent 74%
    );
  filter: blur(10px);
}

.hero-scroll-signal {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
}

.hero-scroll-signal span {
  display: block;
  width: 100%;
  height: 42%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(156,255,34,0.7);
  animation: aura-scroll-signal 1.8s ease-in-out infinite;
}

@keyframes aura-scroll-signal {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(250%);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    gap: 20px;
  }

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

  .hero-character-wrap {
    height: 580px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    gap: 12px;
  }

  .hero-visual {
    width: 100%;
    min-height: 470px;
  }

  .hero-character-wrap {
    height: 470px;
  }

  .hero-character {
    height: 94%;
  }

  .hero-visual .aura-ring {
    width: 76%;
    height: 76%;
  }

  .hero-scroll-signal {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-character-wrap,
  .hero-visual .aura-ring,
  .hero-visual .aura-orbit,
  .hero-cosmos {
    transform: none;
  }

  .hero-scroll-signal span {
    animation: none;
  }
}

/* AURA HERO + ASCENSION V2 START */

/* HERO SCALE + PRESENCE */

.hero-inner {
  grid-template-columns:
    minmax(0, 0.93fr)
    minmax(390px, 0.86fr);
  gap: 24px;
}

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

.hero-visual {
  width: 116%;
  margin-left: -13%;
  min-height: min(780px, 82vh);
}

.hero-character-wrap {
  height: min(780px, 82vh);
}

.hero-character {
  height: 103%;
  max-width: none;
}

.hero-character-glow {
  width: 72%;
  height: 76%;
  opacity: 1;
  filter: blur(42px);
}

.hero-visual .aura-ring {
  width: 79%;
  height: 79%;
  border-color: rgba(156, 255, 34, 0.56);
}

.hero-visual .aura-ring-secondary {
  width: 58%;
  height: 58%;
}

.hero-ground-glow {
  bottom: 0;
  width: 68%;
  height: 9%;
}

.hero-signal-label {
  position: absolute;
  z-index: 6;
  color: rgba(183, 255, 102, 0.52);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  pointer-events: none;
}

.hero-signal-label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: rgba(156, 255, 34, 0.42);
}

.hero-signal-label-top {
  top: 17%;
  right: 7%;
}

.hero-signal-label-bottom {
  left: 4%;
  bottom: 18%;
}


/* ASCENSION */

.utility {
  overflow: hidden;
}

.utility-shell {
  grid-template-columns:
    minmax(0, 0.72fr)
    minmax(480px, 1.1fr);
  gap: 80px;
}

.utility-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-meta > span:last-child {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.ascension-preview {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(156, 255, 34, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 52%,
      rgba(101, 255, 0, 0.12),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(10, 17, 8, 0.98),
      rgba(2, 5, 2, 0.99)
    );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.015) inset,
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(109, 255, 0, 0.05);
  isolation: isolate;
}

.ascension-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(156,255,34,0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(156,255,34,0.12) 1px,
      transparent 1px
    );
  background-size: 44px 44px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 18%,
      #000 78%,
      transparent
    );
}

.ascension-scan {
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background:
    linear-gradient(
      to bottom,
      transparent 48%,
      rgba(156,255,34,0.08) 50%,
      transparent 52%
    );
  background-size: 100% 9px;
}

.ascension-vignette {
  position: absolute;
  z-index: 6;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 120px rgba(0,0,0,0.72);
}

.ascension-topbar,
.ascension-footer {
  position: absolute;
  z-index: 20;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ascension-topbar {
  top: 0;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
  background: rgba(3, 6, 3, 0.68);
  backdrop-filter: blur(12px);
}

.ascension-topbar small {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ascension-topbar strong {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ascension-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(243,247,239,0.55);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.ascension-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(156,255,34,0.9);
}

.ascension-stage {
  position: absolute;
  inset: 64px 0 112px;
  display: grid;
  place-items: center;
}

.ascension-character {
  position: absolute;
  z-index: 5;
  bottom: 1%;
  left: 50%;
  height: 91%;
  width: auto;
  transform: translateX(-50%);
  object-fit: contain;
  filter:
    drop-shadow(0 0 15px rgba(156,255,34,0.18))
    drop-shadow(0 0 38px rgba(91,255,0,0.09));
}

.ascension-aura-field {
  position: absolute;
  z-index: 1;
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid rgba(156,255,34,0.42);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(156,255,34,0.12),
    inset 0 0 80px rgba(156,255,34,0.055);
  animation:
    ascension-field 5s ease-in-out infinite;
}

.ascension-aura-field.secondary {
  width: 72%;
  border-color: rgba(156,255,34,0.10);
  animation-delay: -2.5s;
}

@keyframes ascension-field {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.ascension-enemy {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.62;
}

.ascension-enemy span {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 80, 80, 0.65);
  border-radius: 50%;
  background: rgba(255, 32, 32, 0.08);
  box-shadow:
    0 0 15px rgba(255, 48, 48, 0.14);
}

.ascension-enemy small {
  color: rgba(255, 130, 130, 0.52);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.enemy-one {
  top: 22%;
  left: 16%;
}

.enemy-two {
  top: 35%;
  right: 13%;
}

.enemy-three {
  bottom: 18%;
  left: 11%;
}

.enemy-four {
  right: 21%;
  bottom: 12%;
}

.ascension-floor {
  position: absolute;
  z-index: 2;
  bottom: 3%;
  width: 58%;
  height: 8%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      rgba(156,255,34,0.28),
      rgba(156,255,34,0.04) 46%,
      transparent 74%
    );
  filter: blur(8px);
}

.ascension-hud {
  position: absolute;
  z-index: 20;
  left: 18px;
  right: 18px;
  bottom: 48px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr;
  gap: 8px;
}

.ascension-hud > div {
  min-height: 60px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 10px;
  background: rgba(3,7,3,0.74);
  backdrop-filter: blur(10px);
}

.ascension-hud small {
  display: block;
  margin-bottom: 4px;
  color: rgba(243,247,239,0.42);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.ascension-hud strong {
  display: block;
  font-size: 15px;
}

.ascension-hud > div > span:not(.hud-bar) {
  display: block;
  margin-top: 2px;
  color: var(--green);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.hud-bar {
  display: block;
  height: 3px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
}

.hud-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.ascension-footer {
  bottom: 0;
  min-height: 40px;
  padding: 0 20px;
  border-top: 1px solid rgba(255,255,255,0.065);
  color: rgba(243,247,239,0.32);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(2,4,2,0.8);
}

.ascension-footer strong {
  color: rgba(156,255,34,0.5);
  font-size: inherit;
}


/* RESPONSIVE */

@media (max-width: 1050px) {
  .hero-inner {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(350px, 0.8fr);
  }

  .hero-visual {
    width: 108%;
    margin-left: -8%;
  }

  .utility-shell {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(580px, 105vw);
    margin: -50px auto 0;
  }

  .hero-character-wrap {
    height: 610px;
  }

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

  .utility-shell {
    grid-template-columns: 1fr;
  }

  .ascension-preview {
    width: min(650px, 100%);
    min-height: 600px;
    margin: 20px auto 0;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    width: 112%;
    min-height: 480px;
    margin:
      -22px
      0
      0
      -6%;
  }

  .hero-character-wrap {
    height: 500px;
  }

  .hero-character {
    height: 99%;
  }

  .hero-signal-label {
    display: none;
  }

  .ascension-preview {
    min-height: 530px;
    border-radius: 20px;
  }

  .ascension-stage {
    inset: 62px 0 132px;
  }

  .ascension-character {
    height: 88%;
  }

  .ascension-aura-field {
    width: 72%;
  }

  .ascension-aura-field.secondary {
    width: 90%;
  }

  .ascension-hud {
    grid-template-columns: 1fr 1fr;
    bottom: 45px;
  }

  .ascension-hud > div:first-child {
    grid-column: 1 / -1;
  }

  .enemy-three,
  .enemy-four {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ascension-aura-field {
    animation: none;
  }
}

/* AURA HERO + ASCENSION V2 END */

/* AURA PREMIUM UI V3 START */

:root {
  --page-scroll: 0px;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-float] {
  transform: translate3d(0, var(--float-shift, 0px), 0);
  will-change: transform;
}

.site-header {
  min-height: 76px;
  padding: 10px 12px 10px 24px;
  border-color: rgba(156,255,34,0.09);
  background:
    linear-gradient(
      180deg,
      rgba(4, 7, 4, 0.76),
      rgba(3, 5, 3, 0.62)
    );
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.018) inset,
    0 20px 60px rgba(0,0,0,0.3);
}

.site-header nav a {
  font-size: 13px;
}

.header-cta {
  min-height: 50px;
  padding: 0 26px;
  box-shadow: 0 0 30px rgba(156,255,34,0.18);
}

.hero-premium {
  min-height: 100svh;
  background:
    radial-gradient(
      circle at 62% 18%,
      rgba(156,255,34,0.11),
      transparent 34rem
    ),
    linear-gradient(
      180deg,
      rgba(8,14,6,0.25),
      transparent 28rem
    );
}

.hero-premium .hero-inner {
  grid-template-columns:
    minmax(0, 0.93fr)
    minmax(430px, 0.96fr);
  gap: 18px;
  padding-top: 158px;
  padding-bottom: 110px;
}

.hero-premium-backdrop {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.9;
}

.hero-premium-backdrop-one {
  top: 10%;
  left: -6%;
  width: 32rem;
  height: 32rem;
  background:
    radial-gradient(circle, rgba(80,255,0,0.12), transparent 68%);
}

.hero-premium-backdrop-two {
  right: 4%;
  bottom: 12%;
  width: 26rem;
  height: 26rem;
  background:
    radial-gradient(circle, rgba(180,255,120,0.08), transparent 68%);
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-micro-chip {
  padding: 7px 11px;
  border: 1px solid rgba(156,255,34,0.16);
  border-radius: 999px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,0.02);
}

.hero-premium h1 {
  font-size: clamp(108px, 14vw, 220px);
  line-height: 0.8;
}

.hero-premium .hero-lead {
  margin-top: 26px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.hero-premium .hero-description {
  max-width: 650px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.hero-premium .hero-actions {
  margin-top: 34px;
}

.hero-panel {
  max-width: 580px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(156,255,34,0.15);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(11,16,10,0.72),
      rgba(3,6,3,0.58)
    );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.015) inset,
    0 18px 48px rgba(0,0,0,0.22);
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hero-panel-row:last-child {
  border-bottom: 0;
}

.hero-panel-row span {
  color: rgba(243,247,239,0.44);
  font-size: 12px;
}

.hero-panel-row strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-panel-row code {
  color: rgba(243,247,239,0.88);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.hero-visual-premium {
  width: 122%;
  margin-left: -17%;
  min-height: min(840px, 84vh);
}

.hero-character-wrap {
  height: min(820px, 82vh);
}

.hero-character {
  height: 108%;
  max-width: none;
  filter:
    drop-shadow(0 0 20px rgba(156,255,34,0.22))
    drop-shadow(0 0 60px rgba(112,255,0,0.16));
}

.hero-energy-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(156,255,34,0.17);
  border-radius: 50%;
  transform:
    translate3d(-50%, calc(-50% + var(--float-shift, 0px)), 0);
  pointer-events: none;
}

.hero-energy-shell-one {
  width: 86%;
  height: 86%;
}

.hero-energy-shell-two {
  width: 64%;
  height: 64%;
  border-color: rgba(196,255,141,0.18);
}

.hero-energy-shell-three {
  width: 98%;
  height: 56%;
  transform:
    translate3d(-50%, calc(-50% + var(--float-shift, 0px)), 0)
    rotate(52deg);
}

.hero-energy-column {
  position: absolute;
  left: 50%;
  top: 6%;
  bottom: 18%;
  width: 14px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      180deg,
      rgba(210,255,178,0.7),
      rgba(156,255,34,0.12),
      rgba(156,255,34,0)
    );
  filter: blur(16px);
  opacity: 0.46;
}

.hero-energy-burst {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 38%;
  height: 38%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(211,255,170,0.18), transparent 70%);
  filter: blur(16px);
}

.hero-energy-burst.secondary {
  top: 42%;
  width: 58%;
  height: 32%;
  opacity: 0.6;
}

.hero-character-glow {
  width: 78%;
  height: 80%;
  opacity: 1;
  filter: blur(48px);
}

.hero-ground-glow {
  bottom: 0;
  width: 76%;
  height: 10%;
}

.hero-telemetry {
  position: absolute;
  z-index: 8;
  min-width: 110px;
  padding: 10px 12px;
  border: 1px solid rgba(156,255,34,0.12);
  border-radius: 14px;
  background: rgba(5,8,5,0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}

.hero-telemetry small {
  display: block;
  margin-bottom: 4px;
  color: rgba(243,247,239,0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-telemetry strong {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-telemetry-left {
  left: 4%;
  top: 34%;
}

.hero-telemetry-right {
  right: 3%;
  top: 58%;
}

.standard-v2 {
  position: relative;
}

.standard-v2::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  margin: 0 auto;
  width: min(100%, 860px);
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(156,255,34,0.055), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.standard-heading {
  display: grid;
  gap: 16px;
}

.standard-signal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 68px;
}

.standard-pillar {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(156,255,34,0.08);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(9,12,9,0.82),
      rgba(5,7,5,0.82)
    );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.012) inset,
    0 20px 50px rgba(0,0,0,0.18);
}

.standard-pillar.primary {
  border-color: rgba(156,255,34,0.18);
  background:
    linear-gradient(
      145deg,
      rgba(12,18,10,0.95),
      rgba(6,10,6,0.92)
    );
}

.pillar-ambient {
  position: absolute;
  top: -12%;
  right: -4%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(156,255,34,0.11), transparent 70%);
  filter: blur(10px);
}

.pillar-number {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.standard-pillar strong {
  display: block;
  margin-top: 50px;
  font-size: 34px;
  line-height: 1;
}

.standard-pillar p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.pillar-bar {
  width: 100%;
  height: 4px;
  margin-top: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.pillar-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #d8ffb0);
  box-shadow: 0 0 18px rgba(156,255,34,0.5);
}

.community-v2 .section-heading {
  margin-bottom: 48px;
}

.community-grid-v2 {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 0;
}

.community-card-v2 {
  min-height: 204px;
  justify-content: flex-start;
  align-items: stretch;
  padding: 24px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.community-card-v2::before {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(156,255,34,0.07), transparent 70%);
  filter: blur(8px);
}

.community-card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.community-card-topline span {
  color: rgba(243,247,239,0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.community-card-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.community-card-body img {
  width: 40px;
  height: 40px;
}

.community-card-body strong {
  display: block;
  font-size: 22px;
}

.community-card-body p {
  margin: 9px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.utility-v2 {
  position: relative;
  background:
    radial-gradient(
      circle at 72% 50%,
      rgba(156,255,34,0.08),
      transparent 32rem
    ),
    linear-gradient(
      180deg,
      rgba(8,12,8,0.08),
      transparent 24rem
    );
}

.utility-shell-v2 {
  grid-template-columns:
    minmax(0, 0.74fr)
    minmax(520px, 1.08fr);
  gap: 84px;
}

.utility-v2 .section-kicker {
  margin-bottom: 16px;
}

.utility-v2 h2 {
  font-size: clamp(60px, 8vw, 118px);
  line-height: 0.95;
}

.utility-v2 .utility-copy > p:not(.section-kicker) {
  font-size: 18px;
}

.ascension-preview-premium {
  min-height: 650px;
  border-radius: 34px;
  border-color: rgba(156,255,34,0.18);
  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(122,255,24,0.08),
      transparent 44%
    ),
    linear-gradient(
      180deg,
      rgba(10,16,9,0.98),
      rgba(2,5,2,0.99)
    );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.015) inset,
    0 30px 90px rgba(0,0,0,0.42),
    0 0 100px rgba(109,255,0,0.06);
}

.ascension-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.ascension-ambient.ambient-one {
  top: 12%;
  left: 8%;
  width: 180px;
  height: 180px;
  background:
    radial-gradient(circle, rgba(156,255,34,0.08), transparent 72%);
}

.ascension-ambient.ambient-two {
  right: 6%;
  bottom: 18%;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle, rgba(196,255,141,0.06), transparent 72%);
}

.contract-v2 {
  position: relative;
}

.contract-terminal {
  position: relative;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(156,255,34,0.18);
  border-radius: 30px;
  background:
    linear-gradient(
      180deg,
      rgba(10,14,9,0.92),
      rgba(3,6,3,0.9)
    );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.012) inset,
    0 28px 72px rgba(0,0,0,0.24);
}

.contract-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156,255,34,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156,255,34,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  mask-image:
    linear-gradient(to bottom, #000, rgba(0,0,0,0.18));
  pointer-events: none;
}

.contract-terminal-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(156,255,34,0.72);
}

.contract-terminal-head strong {
  font-size: 12px;
  letter-spacing: 0.14em;
}

.contract-terminal-head small {
  margin-left: auto;
  color: rgba(243,247,239,0.42);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.contract-terminal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.55fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
}

.contract-terminal-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
}

.contract-terminal-card small {
  display: block;
  margin-bottom: 8px;
  color: rgba(243,247,239,0.44);
}

.contract-terminal-card strong {
  font-size: 18px;
}

.contract-terminal-card code {
  display: block;
  color: rgba(243,247,239,0.9);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.contract-terminal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contract-action-primary,
.contract-action-secondary {
  min-width: 190px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.contract-action-primary {
  border: 1px solid rgba(156,255,34,0.2);
  background: linear-gradient(90deg, rgba(156,255,34,0.18), rgba(156,255,34,0.08));
  color: var(--text);
}

.contract-action-secondary {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.market-v2 .section-heading {
  margin-bottom: 56px;
}

.market-grid-v2 {
  gap: 18px;
  margin-top: 0;
}

.market-route-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(156,255,34,0.08);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(10,12,10,0.86),
      rgba(4,6,4,0.84)
    );
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.012) inset,
    0 20px 52px rgba(0,0,0,0.18);
}

.market-route-glow {
  position: absolute;
  top: -14%;
  right: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(156,255,34,0.08), transparent 72%);
  filter: blur(10px);
}

.market-route-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.market-route-top img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.market-status-pill {
  padding: 7px 10px;
  border: 1px solid rgba(156,255,34,0.12);
  border-radius: 999px;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,0.02);
}

.market-route-card small {
  display: block;
  margin-top: 26px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.market-route-card strong {
  display: block;
  margin-top: 12px;
  font-size: 26px;
}

.market-route-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.market-action-line {
  display: inline-block;
  margin-top: 22px;
  color: rgba(243,247,239,0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.market-route-card:hover,
.standard-pillar:hover,
.community-card-v2:hover,
.contract-terminal:hover {
  border-color: rgba(156,255,34,0.16);
}

@media (max-width: 1100px) {
  .hero-premium .hero-inner {
    grid-template-columns:
      minmax(0, 0.92fr)
      minmax(360px, 0.88fr);
  }

  .hero-visual-premium {
    width: 112%;
    margin-left: -10%;
  }

  .utility-shell-v2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .hero-premium .hero-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual-premium {
    width: min(620px, 108vw);
    margin: -30px auto 0;
    min-height: 600px;
  }

  .hero-character-wrap {
    height: 590px;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-telemetry {
    display: none;
  }

  .standard-signal-grid,
  .community-grid-v2,
  .market-grid-v2 {
    grid-template-columns: 1fr;
  }

  .contract-terminal-grid {
    grid-template-columns: 1fr;
  }

  .contract-terminal-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding-left: 16px;
  }

  .hero-premium .hero-inner {
    padding-top: 126px;
    padding-bottom: 86px;
  }

  .hero-premium h1 {
    font-size: clamp(78px, 24vw, 118px);
  }

  .hero-premium .hero-lead {
    font-size: 22px;
  }

  .hero-premium .hero-description {
    font-size: 16px;
  }

  .hero-visual-premium {
    width: 114%;
    margin-left: -7%;
    min-height: 470px;
  }

  .hero-character-wrap {
    height: 470px;
  }

  .hero-panel-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-signal-label,
  .hero-scroll-signal {
    display: none;
  }

  .utility-v2 h2 {
    font-size: clamp(48px, 17vw, 74px);
  }

  .ascension-preview-premium {
    min-height: 540px;
    border-radius: 24px;
  }

  .contract-action-primary,
  .contract-action-secondary {
    width: 100%;
    min-width: 0;
  }

  .market-route-card {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-float] {
    transform: none;
  }
}

/* AURA PREMIUM UI V3 END */

/* AURA LAYOUT STABILITY V4 START */

/* ==========================================================
   GLOBAL LAYOUT GUARDRAILS
   ========================================================== */

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  position: relative;
}

img,
svg {
  max-width: 100%;
}

main,
section,
.section-shell,
.hero-inner,
.section-heading,
.utility-shell,
.community-grid,
.market-grid,
.standard-signal-grid {
  min-width: 0;
}

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

.page-shell::before {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  inset: -25vh -20vw;
  opacity: 0.17;

  background:
    radial-gradient(
      circle at 22% 20%,
      rgba(111, 255, 0, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 78% 42%,
      rgba(156, 255, 34, 0.11),
      transparent 23%
    ),
    radial-gradient(
      circle at 45% 82%,
      rgba(95, 255, 0, 0.08),
      transparent 25%
    );

  filter: blur(60px);

  animation:
    aura-ambient-drift
    18s
    ease-in-out
    infinite alternate;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

@keyframes aura-ambient-drift {
  0% {
    transform:
      translate3d(-2%, -1%, 0)
      scale(1);
  }

  50% {
    transform:
      translate3d(3%, 2%, 0)
      scale(1.06);
  }

  100% {
    transform:
      translate3d(-1%, 4%, 0)
      scale(1.02);
  }
}


/* ==========================================================
   SAFE REVEALS
   ========================================================== */

[data-reveal] {
  opacity: 1;
  transform: none;
}

.aura-fx [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);

  transition:
    opacity 720ms cubic-bezier(.2,.8,.2,1),
    transform 720ms cubic-bezier(.2,.8,.2,1);
}

.aura-fx [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


/* ==========================================================
   SHARED WIDTH / TYPOGRAPHY
   ========================================================== */

.section {
  position: relative;
  padding:
    clamp(104px, 9vw, 148px)
    32px;

  overflow: clip;
}

.section-shell,
.hero-inner {
  width: min(
    calc(100% - 0px),
    1240px
  );

  margin-inline: auto;
}

.section-shell.narrow {
  width: min(
    100%,
    1120px
  );
}

.section h2 {
  max-width: 980px;

  font-size:
    clamp(50px, 6.6vw, 92px);

  line-height: 0.96;
  letter-spacing: -0.058em;

  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

.section h2 em {
  line-height: inherit;
}

.section-copy,
.section-heading > p {
  max-width: 540px;
}


/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  width: min(
    calc(100% - 40px),
    1240px
  );

  min-height: 72px;
}

.site-header nav {
  gap: 30px;
}

.site-header nav a {
  white-space: nowrap;
}


/* ==========================================================
   HERO
   ========================================================== */

.hero-premium .hero-inner {
  width: min(
    calc(100% - 64px),
    1240px
  );

  grid-template-columns:
    minmax(0, 0.96fr)
    minmax(0, 0.88fr);

  gap: 36px;

  padding-top: 148px;
  padding-bottom: 100px;
}

.hero-copy {
  min-width: 0;
}

.hero-premium h1 {
  max-width: 100%;

  font-size:
    clamp(96px, 12.7vw, 192px);

  white-space: nowrap;
}

.hero-premium .hero-lead {
  max-width: 610px;

  font-size:
    clamp(28px, 3vw, 42px);
}

.hero-premium .hero-description {
  max-width: 610px;
}

.hero-panel {
  width: min(
    100%,
    590px
  );
}

.hero-visual-premium {
  width: 110%;
  margin-left: -5%;

  min-height:
    min(760px, 78vh);
}

.hero-character-wrap {
  height:
    min(750px, 77vh);
}

.hero-character {
  height: 101%;
}

.hero-energy-shell-one {
  width: 82%;
  height: 82%;
}

.hero-energy-shell-two {
  width: 60%;
  height: 60%;
}

.hero-energy-shell-three {
  width: 94%;
}

.hero-telemetry-left {
  left: 1%;
}

.hero-telemetry-right {
  right: 1%;
}


/* ==========================================================
   STANDARD
   ========================================================== */

.standard-v2 .section-shell.narrow {
  width: min(
    100%,
    1120px
  );
}

.standard-heading {
  max-width: 940px;
}

.standard-v2 .section-copy {
  margin-top: 24px;
}

.standard-signal-grid {
  grid-template-columns:
    1.12fr
    1fr
    1fr;

  gap: 16px;
  margin-top: 58px;
}

.standard-pillar {
  min-width: 0;
  min-height: 238px;

  padding: 26px;

  border-radius: 24px;
}

.standard-pillar strong {
  margin-top: 38px;

  font-size:
    clamp(26px, 2.4vw, 34px);
}

.standard-pillar p {
  font-size: 15px;
}


/* ==========================================================
   COMMUNITY
   ========================================================== */

.community-v2 .section-heading {
  grid-template-columns:
    minmax(0, 1.3fr)
    minmax(260px, 0.48fr);

  gap: 70px;

  margin-bottom: 42px;
}

.community-grid-v2 {
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(0, 0.9fr);

  gap: 16px;
}

.community-card-v2 {
  display: block;

  min-width: 0;
  min-height: 170px;

  padding: 22px 24px;
}

.community-card-body {
  grid-template-columns:
    46px
    minmax(0, 1fr);

  gap: 16px;

  margin-top: 20px;
}

.community-card-body img {
  width: 38px;
  height: 38px;
}

.community-card-body strong {
  font-size: 21px;
}

.community-card-body p {
  max-width: 430px;

  margin-top: 6px;

  font-size: 14px;
}

.role-strip {
  margin-top: 14px;
}


/* ==========================================================
   ASCENSION
   ========================================================== */

.utility-shell-v2 {
  width: min(
    100%,
    1240px
  );

  grid-template-columns:
    minmax(0, 0.76fr)
    minmax(0, 1.04fr);

  gap: clamp(40px, 5vw, 74px);

  align-items: center;
}

.utility-copy {
  min-width: 0;
}

.utility-v2 h2 {
  width: 100%;
  max-width: 570px;

  font-size:
    clamp(54px, 6.1vw, 90px);

  line-height: 0.9;

  overflow: visible;
}

.utility-v2 h2 em {
  display: block;

  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.utility-v2 .utility-copy > p:not(.section-kicker) {
  max-width: 520px;

  font-size: 16px;
}

.utility-loop {
  gap: 8px;
}

.ascension-preview-premium {
  width: 100%;
  min-width: 0;

  min-height: 610px;

  border-radius: 28px;
}

.ascension-stage {
  overflow: hidden;
}

.ascension-character {
  max-width: 58%;
}


/* ==========================================================
   CONTRACT
   ========================================================== */

.contract-v2 h2 {
  max-width: 780px;
}

.contract-terminal {
  margin-top: 48px;
}

.contract-terminal-grid {
  grid-template-columns:
    minmax(170px, 0.65fr)
    minmax(0, 1.7fr)
    minmax(180px, auto);

  gap: 14px;
}

.contract-terminal-card {
  min-width: 0;
}

.contract-terminal-card-address {
  overflow: hidden;
}

.contract-terminal-card code {
  width: 100%;
  max-width: 100%;

  overflow-wrap: anywhere;
}

.contract-terminal-actions {
  min-width: 180px;
}

.contract-action-primary,
.contract-action-secondary {
  min-width: 180px;
}


/* ==========================================================
   MARKET
   ========================================================== */

.market-v2 .section-heading {
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(260px, 0.42fr);

  gap: 70px;

  margin-bottom: 48px;
}

.market-v2 h2 {
  max-width: 920px;

  font-size:
    clamp(52px, 6vw, 88px);
}

.market-grid-v2 {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 16px;
}

.market-route-card {
  min-width: 0;
  min-height: 260px;

  padding: 24px;

  border-radius: 24px;
}

.market-route-top img {
  width: 46px;
  height: 46px;
}

.market-route-card small {
  margin-top: 22px;
}

.market-route-card strong {
  font-size:
    clamp(23px, 2vw, 28px);
}

.market-route-card p {
  font-size: 14px;
}


/* ==========================================================
   FAQ
   ========================================================== */

.faq .section-shell.narrow {
  width: min(
    100%,
    1050px
  );
}

.faq h2 {
  max-width: 760px;

  font-size:
    clamp(50px, 6.4vw, 86px);
}

.faq-list {
  margin-top: 48px;
}

.faq-list summary {
  min-height: 68px;

  display: flex;
  align-items: center;

  padding: 20px 0;
}

.faq-list details {
  scroll-margin-top: 100px;
}


/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
  width: min(
    calc(100% - 64px),
    1240px
  );

  min-height: 130px;

  padding:
    38px
    0
    54px;
}


/* ==========================================================
   DESKTOP MID
   ========================================================== */

@media (max-width: 1080px) {

  .hero-premium .hero-inner {
    grid-template-columns:
      minmax(0, 0.94fr)
      minmax(360px, 0.82fr);

    gap: 18px;
  }

  .hero-visual-premium {
    width: 104%;
    margin-left: -2%;
  }

  .utility-shell-v2 {
    grid-template-columns:
      minmax(0, 0.85fr)
      minmax(430px, 1fr);

    gap: 36px;
  }

  .utility-v2 h2 {
    font-size:
      clamp(52px, 6vw, 76px);
  }

  .community-v2 .section-heading,
  .market-v2 .section-heading {
    gap: 40px;
  }
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

  .section {
    padding:
      100px
      24px;
  }

  .hero-premium .hero-inner {
    width: min(
      calc(100% - 40px),
      760px
    );

    grid-template-columns: 1fr;

    gap: 20px;
  }

  .hero-premium h1 {
    white-space: normal;
  }

  .hero-visual-premium {
    width: min(
      600px,
      105vw
    );

    margin:
      -20px
      auto
      0;

    min-height: 560px;
  }

  .hero-character-wrap {
    height: 560px;
  }

  .standard-signal-grid,
  .community-grid-v2,
  .market-grid-v2 {
    grid-template-columns: 1fr;
  }

  .standard-pillar {
    min-height: 210px;
  }

  .community-v2 .section-heading,
  .market-v2 .section-heading {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .community-card-v2 {
    min-height: 154px;
  }

  .utility-shell-v2 {
    grid-template-columns: 1fr;

    gap: 46px;
  }

  .utility-v2 h2 {
    max-width: 700px;

    font-size:
      clamp(58px, 11vw, 88px);
  }

  .ascension-preview-premium {
    width: min(
      700px,
      100%
    );

    margin-inline: auto;
  }

  .contract-terminal-grid {
    grid-template-columns: 1fr;
  }

  .contract-terminal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contract-action-primary,
  .contract-action-secondary {
    width: 100%;
  }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

  .section {
    padding:
      82px
      16px;
  }

  .section h2 {
    font-size:
      clamp(42px, 13vw, 62px);
  }

  .site-header {
    width: calc(100% - 20px);

    min-height: 64px;
  }

  .brand strong {
    font-size: 14px;
  }

  .header-cta {
    min-height: 44px;

    padding:
      0
      16px;
  }

  .hero-premium .hero-inner {
    width: calc(100% - 28px);

    padding-top: 112px;
    padding-bottom: 76px;
  }

  .hero-premium h1 {
    font-size:
      clamp(72px, 23vw, 104px);
  }

  .hero-micro {
    gap: 6px;
  }

  .hero-micro-chip {
    font-size: 8px;
  }

  .hero-panel {
    border-radius: 18px;
  }

  .hero-visual-premium {
    width: 108%;

    margin-left: -4%;

    min-height: 430px;
  }

  .hero-character-wrap {
    height: 440px;
  }

  .standard-signal-grid {
    gap: 12px;
  }

  .standard-pillar {
    min-height: 190px;

    padding: 22px;
  }

  .standard-pillar strong {
    margin-top: 30px;
  }

  .community-card-v2 {
    min-height: 148px;

    padding: 20px;
  }

  .community-card-body {
    margin-top: 16px;
  }

  .role-strip {
    gap: 6px;
  }

  .role-strip span {
    padding: 7px 10px;

    font-size: 9px;
  }

  .utility-v2 h2 {
    font-size:
      clamp(46px, 14.4vw, 64px);

    line-height: 0.92;
  }

  .utility-loop {
    font-size: 13px;
  }

  .ascension-preview-premium {
    min-height: 520px;

    border-radius: 22px;
  }

  .ascension-character {
    max-width: 68%;
  }

  .contract-terminal-head small {
    display: none;
  }

  .contract-terminal-actions {
    grid-template-columns: 1fr;
  }

  .market-route-card {
    min-height: 230px;
  }

  .footer {
    width: calc(100% - 32px);
  }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .page-shell::before {
    animation: none;
  }

  .aura-fx [data-reveal],
  .aura-fx [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  [data-float] {
    transform: none !important;
  }
}

/* AURA LAYOUT STABILITY V4 END */

/* ==========================================================
   AURA UI MICRO POLISH V5 START
   ========================================================== */


/* HEADER FIX */

.site-header {
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto !important;

  column-gap: 34px;

  min-height: 68px !important;

  padding:
    8px
    10px
    8px
    20px !important;
}

.site-header nav {
  justify-self: center;
}

.header-cta {
  justify-self: end;

  width: auto !important;
  min-width: 0 !important;

  min-height: 44px !important;

  padding:
    0
    20px !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;

  border:
    1px solid
    rgba(190, 255, 125, 0.32);

  background:
    linear-gradient(
      180deg,
      #9cff22,
      #82f800
    );

  box-shadow:
    0 0 22px rgba(156,255,34,0.18),
    inset 0 1px 0 rgba(255,255,255,0.32);

  font-size: 12px;
  letter-spacing: -0.01em;
}

.header-cta:hover {
  transform: translateY(-1px);

  box-shadow:
    0 0 30px rgba(156,255,34,0.26),
    inset 0 1px 0 rgba(255,255,255,0.38);
}


/* ASCENSION PROTOCOL */

.ascension-protocol {
  width: min(
    100%,
    560px
  );

  margin-top: 34px;

  border:
    1px solid
    rgba(156,255,34,0.13);

  border-radius: 24px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(12,18,9,0.82),
      rgba(3,7,3,0.72)
    );

  box-shadow:
    0 24px 70px rgba(0,0,0,0.22),
    0 0 46px rgba(156,255,34,0.025);
}

.ascension-protocol-head {
  min-height: 48px;

  padding:
    0
    16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom:
    1px solid
    rgba(255,255,255,0.055);

  background:
    rgba(255,255,255,0.018);
}

.ascension-protocol-head span,
.ascension-protocol-head strong {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.ascension-protocol-head span {
  color:
    rgba(243,247,239,0.5);
}

.ascension-protocol-head strong {
  color: var(--green);
}

.ascension-protocol-track {
  position: relative;

  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  padding:
    20px
    16px
    22px;
}

.ascension-protocol-track::before {
  content: "";

  position: absolute;

  left: 12%;
  right: 12%;
  top: 34px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(156,255,34,0.08),
      rgba(156,255,34,0.62),
      rgba(156,255,34,0.08)
    );

  box-shadow:
    0 0 14px
    rgba(156,255,34,0.18);
}

.ascension-protocol-step {
  position: relative;
  z-index: 2;

  min-width: 0;

  text-align: center;
}

.ascension-protocol-step i {
  width: 28px;
  height: 28px;

  margin:
    0
    auto
    14px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(156,255,34,0.34);

  border-radius: 50%;

  background:
    #071006;

  color: var(--green);

  font-size: 8px;
  font-weight: 900;
  font-style: normal;

  box-shadow:
    0 0 18px rgba(156,255,34,0.12);
}

.ascension-protocol-step small {
  display: block;

  margin-bottom: 5px;

  color:
    rgba(243,247,239,0.3);

  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.ascension-protocol-step strong {
  display: block;

  padding-inline: 4px;

  color:
    rgba(243,247,239,0.88);

  font-size: 10px;
  line-height: 1.35;
}

.ascension-build-state {
  min-height: 60px;

  display: grid;

  grid-template-columns:
    auto
    1fr
    auto;

  gap: 12px;

  align-items: center;

  padding:
    12px
    16px;

  border-top:
    1px solid
    rgba(255,255,255,0.055);

  background:
    linear-gradient(
      90deg,
      rgba(156,255,34,0.035),
      transparent
    );
}

.ascension-build-pulse {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 16px var(--green);

  animation:
    aura-core-pulse
    1.8s
    ease-in-out
    infinite;
}

.ascension-build-state small {
  display: block;

  margin-bottom: 3px;

  color:
    rgba(243,247,239,0.32);

  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.ascension-build-state strong {
  display: block;

  color: var(--green);

  font-size: 10px;
  letter-spacing: 0.1em;
}

.ascension-build-code {
  color:
    rgba(243,247,239,0.3);

  font-family: monospace;
  font-size: 9px;
}

@keyframes aura-core-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}


/* MARKET SIGNAL NODES */

.market-grid-v2 {
  gap: 16px;
}

.aura-node {
  position: relative;

  min-height: 300px !important;

  display: flex;
  flex-direction: column;

  padding: 24px !important;

  overflow: hidden;

  border-color:
    rgba(156,255,34,0.11) !important;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(156,255,34,0.065),
      transparent 32%
    ),
    linear-gradient(
      155deg,
      rgba(11,15,10,0.94),
      rgba(3,6,3,0.92)
    ) !important;
}

.aura-node::before,
.aura-node::after {
  content: "";

  position: absolute;

  width: 28px;
  height: 28px;

  pointer-events: none;
}

.aura-node::before {
  top: 12px;
  left: 12px;

  border-top:
    1px solid
    rgba(156,255,34,0.26);

  border-left:
    1px solid
    rgba(156,255,34,0.26);
}

.aura-node::after {
  right: 12px;
  bottom: 12px;

  border-right:
    1px solid
    rgba(156,255,34,0.18);

  border-bottom:
    1px solid
    rgba(156,255,34,0.18);
}

.aura-node-scan {
  position: absolute;

  left: 0;
  right: 0;
  top: -20%;

  height: 18%;

  pointer-events: none;

  opacity: 0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(156,255,34,0.05),
      transparent
    );
}

.aura-node:hover .aura-node-scan {
  opacity: 1;

  animation:
    aura-node-scan
    1.4s
    ease-out
    forwards;
}

@keyframes aura-node-scan {
  from {
    transform:
      translateY(0);
  }

  to {
    transform:
      translateY(700%);
  }
}

.aura-node-head {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.aura-node-logo {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border:
    1px solid
    rgba(255,255,255,0.07);

  border-radius: 14px;

  background:
    rgba(255,255,255,0.025);
}

.aura-node-logo img {
  width: 34px;
  height: 34px;

  object-fit: contain;
}

.aura-node-index {
  text-align: right;
}

.aura-node-index small {
  display: block;

  margin: 0 0 3px !important;

  color:
    rgba(243,247,239,0.28) !important;

  font-size: 7px !important;
}

.aura-node-index strong {
  margin: 0 !important;

  color:
    rgba(156,255,34,0.72);

  font-size: 20px !important;
  font-weight: 700;
}

.aura-node-body {
  position: relative;
  z-index: 2;

  margin-top: 30px;
}

.aura-node-body small {
  margin: 0 0 8px !important;

  color: var(--green) !important;

  font-size: 9px !important;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.aura-node-body strong {
  margin: 0 !important;

  font-size:
    clamp(24px, 2vw, 30px) !important;
}

.aura-node-body p {
  max-width: 300px;

  margin:
    10px
    0
    0 !important;

  color:
    rgba(243,247,239,0.48) !important;

  font-size: 14px !important;
}

.aura-node-footer {
  position: relative;
  z-index: 2;

  margin-top: auto;

  padding-top: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  border-top:
    1px solid
    rgba(255,255,255,0.055);
}

.aura-node-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color:
    rgba(243,247,239,0.28);

  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.aura-node-footer > span i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background:
    rgba(255,205,70,0.7);

  box-shadow:
    0 0 10px
    rgba(255,205,70,0.2);
}

.aura-node-footer > span.is-live i {
  background: var(--green);

  box-shadow:
    0 0 12px
    rgba(156,255,34,0.6);
}

.aura-node-footer > strong {
  white-space: nowrap;

  color:
    rgba(243,247,239,0.66);

  font-size: 9px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
}


/* MOBILE */

@media (max-width: 900px) {

  .site-header {
    grid-template-columns:
      auto
      auto !important;

    justify-content: space-between;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    margin: 0 !important;
  }

  .ascension-protocol {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .header-cta {
    min-height: 40px !important;

    padding:
      0
      14px !important;

    font-size: 11px;
  }

  .ascension-protocol-track {
    grid-template-columns:
      1fr
      1fr;

    row-gap: 22px;
  }

  .ascension-protocol-track::before {
    display: none;
  }

  .ascension-build-state {
    grid-template-columns:
      auto
      1fr;
  }

  .ascension-build-code {
    display: none;
  }

  .aura-node {
    min-height: 270px !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ascension-build-pulse,
  .aura-node:hover .aura-node-scan {
    animation: none;
  }
}

/* AURA UI MICRO POLISH V5 END */

/* AURA UI ALIGNMENT V7 START */


/* ==========================================================
   TYPOGRAPHY RHYTHM
   ========================================================== */

.standard-v2 h2 {
  max-width: 820px;

  font-size:
    clamp(46px, 5.3vw, 76px);

  line-height: 0.97;
}

.community-v2 h2 {
  max-width: 760px;

  font-size:
    clamp(46px, 5.25vw, 76px);

  line-height: 0.97;
}

.utility-v2 h2 {
  max-width: 530px;

  font-size:
    clamp(50px, 5.5vw, 78px);

  line-height: 0.92;
}

.contract-v2 h2 {
  max-width: 700px;

  font-size:
    clamp(48px, 5.2vw, 74px);

  line-height: 0.96;
}

.market-v2 h2 {
  max-width: 800px;

  font-size:
    clamp(46px, 5.25vw, 76px);

  line-height: 0.96;
}

.faq h2 {
  max-width: 650px;

  font-size:
    clamp(46px, 5.2vw, 72px);

  line-height: 0.96;
}

.hero-premium .hero-description,
.standard-pillar p,
.community-card-body p,
.utility-v2 .utility-copy > p:not(.section-kicker),
.market-route-card p {
  text-wrap: pretty;
}


/* ==========================================================
   STANDARD CARDS
   ========================================================== */

.standard-signal-grid {
  align-items: stretch;
}

.standard-pillar {
  display: flex;
  flex-direction: column;

  min-height: 224px;
}

.standard-pillar strong {
  margin-top: 34px;
}

.standard-pillar p {
  max-width: 300px;

  margin-top: 14px;

  font-size: 14px;
  line-height: 1.55;
}

.pillar-bar {
  margin-top: auto;
  padding-top: 22px;
}


/* ==========================================================
   COMMUNITY ICON ALIGNMENT
   ========================================================== */

.community-card-body {
  align-items: center;
}

.community-card-body img {
  display: block;

  width: 38px !important;
  height: 38px !important;

  min-width: 38px;
  min-height: 38px;

  margin: 0 !important;

  object-fit: contain;
  object-position: center;

  align-self: center;
}

.community-card-v2:not(.primary-card)
.community-card-body img {
  padding: 7px;

  border:
    1px solid
    rgba(255,255,255,0.08);

  border-radius: 11px;

  background:
    rgba(255,255,255,0.025);
}

.community-card-topline {
  min-height: 20px;
}

.community-card-body {
  margin-top: 18px;
}

.community-card-body strong {
  line-height: 1.1;
}

.community-card-body p {
  line-height: 1.5;
}


/* ==========================================================
   ASCENSION COPY / PROTOCOL BALANCE
   ========================================================== */

.utility-v2 .utility-copy {
  align-self: center;
}

.utility-v2 .utility-copy > p:not(.section-kicker) {
  max-width: 475px;

  margin:
    24px
    0
    0;

  font-size: 16px;
  line-height: 1.65;
}

.ascension-protocol {
  max-width: 500px;

  margin-top: 30px;
}

.ascension-protocol-track {
  padding:
    18px
    14px
    20px;
}

.ascension-protocol-step strong {
  font-size: 9px;
}

.ascension-build-state {
  min-height: 54px;
}


/* ==========================================================
   CONTRACT
   ========================================================== */

.contract-terminal-grid {
  align-items: stretch;
}

.contract-terminal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 66px;
}

.contract-terminal-actions {
  justify-content: center;
}

.contract-action-primary,
.contract-action-secondary {
  min-height: 44px;
}


/* ==========================================================
   MARKET ICON NORMALIZATION
   ========================================================== */

.aura-node {
  min-height: 286px !important;
}

.aura-node-logo {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  overflow: hidden;

  border-radius: 12px;
}

.aura-node-logo img {
  display: block;

  width: 30px !important;
  height: 30px !important;

  max-width: 30px !important;
  max-height: 30px !important;

  margin: 0 !important;

  object-fit: contain;
  object-position: center;
}

/* Source images have different internal whitespace. */
.aura-node:nth-child(1)
.aura-node-logo img {
  transform: scale(1.14);
}

.aura-node:nth-child(2)
.aura-node-logo img {
  transform: scale(1.02);
}

.aura-node:nth-child(3)
.aura-node-logo img {
  transform: scale(0.92);
}

.aura-node-index {
  min-width: 54px;
}

.aura-node-index small {
  line-height: 1.2;
}

.aura-node-body {
  margin-top: 26px;
}

.aura-node-body strong {
  line-height: 1.08;
}

.aura-node-body p {
  max-width: 270px;

  min-height: 44px;

  margin-top: 9px !important;
}

.aura-node-footer {
  min-height: 38px;

  padding-top: 14px;
}

.aura-node-footer > span {
  line-height: 1.3;
}


/* ==========================================================
   HEADER FINAL ALIGNMENT
   ========================================================== */

.site-header {
  align-items: center;

  min-height: 66px !important;
}

.brand,
.site-header nav,
.header-cta {
  align-self: center;
}

.brand {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
}

.header-cta {
  height: 42px !important;
  min-height: 42px !important;

  padding:
    0
    18px !important;

  line-height: 1;
}


/* ==========================================================
   SECTION SPACING
   ========================================================== */

.standard-v2,
.community-v2,
.utility-v2,
.contract-v2,
.market-v2,
.faq {
  padding-top:
    clamp(92px, 8vw, 126px);

  padding-bottom:
    clamp(92px, 8vw, 126px);
}

.community-v2 .section-heading,
.market-v2 .section-heading {
  align-items: end;
}

.section-heading > p {
  margin-bottom: 4px;

  font-size: 15px;
  line-height: 1.6;
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 900px) {

  .standard-v2 h2,
  .community-v2 h2,
  .contract-v2 h2,
  .market-v2 h2,
  .faq h2 {
    font-size:
      clamp(44px, 9vw, 66px);
  }

  .utility-v2 h2 {
    font-size:
      clamp(48px, 10vw, 68px);
  }

  .community-card-body p,
  .standard-pillar p {
    max-width: none;
  }

  .aura-node-body p {
    min-height: 0;
  }
}

@media (max-width: 600px) {

  .standard-v2 h2,
  .community-v2 h2,
  .contract-v2 h2,
  .market-v2 h2,
  .faq h2 {
    font-size:
      clamp(40px, 12vw, 56px);
  }

  .utility-v2 h2 {
    font-size:
      clamp(44px, 13vw, 60px);
  }

  .community-card-body {
    grid-template-columns:
      40px
      minmax(0,1fr);
  }

  .community-card-body img {
    width: 34px !important;
    height: 34px !important;

    min-width: 34px;
    min-height: 34px;
  }

  .ascension-protocol {
    max-width: none;
  }

  .aura-node {
    min-height: 250px !important;
  }
}

/* AURA UI ALIGNMENT V7 END */

/* AURA PILLAR BAR FIX V7.1 START */

.pillar-bar {
  position: relative;
  width: 100%;
  height: 4px;
  min-height: 4px;

  margin-top: auto;
  padding: 0;

  overflow: hidden;
  border-radius: 999px;

  background:
    rgba(255,255,255,0.08);
}

.pillar-bar i {
  display: block;

  height: 100%;
  min-height: 4px;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      var(--green),
      #d8ffb0
    );

  box-shadow:
    0 0 18px
    rgba(156,255,34,0.5);
}

/* AURA PILLAR BAR FIX V7.1 END */


/* AURA_ASCENSION_LANDING_LIVE */

.utility-live-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 28px;
}

.utility-play-button {
  min-width: 154px;
  justify-content: center;
  text-decoration: none;
}

.utility-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9cff22;
}

.utility-live-status i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: #9cff22;
  box-shadow:
    0 0 8px rgba(156, 255, 34, 0.75),
    0 0 18px rgba(156, 255, 34, 0.35);
}

@media (max-width: 720px) {
  .utility-live-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
