:root {
  --space: #05070f;
  --space-2: #08111f;
  --panel: rgba(9, 19, 34, 0.72);
  --panel-strong: rgba(14, 29, 48, 0.9);
  --line: rgba(120, 227, 255, 0.22);
  --line-strong: rgba(120, 227, 255, 0.5);
  --text: #edf8ff;
  --muted: #9db4c4;
  --cyan: #6ee7ff;
  --violet: #9b7cff;
  --gold: #ffd36a;
  --rose: #ff6b8f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(111, 231, 255, 0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(155, 124, 255, 0.14), transparent 28%),
    linear-gradient(180deg, var(--space), #090d18 46%, #03050b);
  font-family:
    Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial,
    sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(120, 227, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 227, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.cosmic-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(110, 231, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 68%, rgba(255, 211, 106, 0.75) 0 1px, transparent 2px),
    linear-gradient(115deg, transparent 0 44%, rgba(110, 231, 255, 0.07) 48%, transparent 54%);
  background-size: 220px 220px, 310px 310px, 260px 260px, 100% 100%;
  animation: starDrift 22s linear infinite;
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 30%;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(110, 231, 255, 0.16), transparent 64%);
  filter: blur(8px);
  opacity: 0.7;
  transition: opacity 200ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  border-bottom: 1px solid rgba(120, 227, 255, 0.14);
  background: linear-gradient(180deg, rgba(3, 6, 14, 0.88), rgba(3, 6, 14, 0.24));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-shadow: 0 0 22px rgba(110, 231, 255, 0.52);
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
}

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

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

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 76px) 42px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.04);
  animation: heroPulse 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 13, 0.92), rgba(3, 5, 13, 0.4) 56%, rgba(3, 5, 13, 0.78)),
    linear-gradient(0deg, var(--space), transparent 42%);
}

.orbital {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(110, 231, 255, 0.34);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: 0 0 42px rgba(110, 231, 255, 0.18);
  animation: orbitSpin 24s linear infinite;
}

.orbital-one {
  right: -10vw;
  bottom: 10vh;
  width: min(560px, 78vw);
  aspect-ratio: 1;
}

.orbital-two {
  right: 13vw;
  bottom: 23vh;
  width: min(310px, 42vw);
  aspect-ratio: 1;
  border-color: rgba(255, 211, 106, 0.28);
  animation-duration: 32s;
  animation-direction: reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-bottom: 76px;
}

.kicker,
.section-label,
.project-tag {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(110, 231, 255, 0.36);
  border-radius: 999px;
  color: #d8fbff;
  background: rgba(110, 231, 255, 0.08);
  font-size: clamp(16px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: none;
  box-shadow: 0 0 28px rgba(110, 231, 255, 0.12);
}

.hero h1 {
  margin: 0;
  font-size: clamp(62px, 15vw, 164px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    0 0 24px rgba(110, 231, 255, 0.48),
    0 0 80px rgba(155, 124, 255, 0.32);
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(237, 248, 255, 0.84);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 46px;
  padding: 13px 19px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.button.primary {
  color: #041018;
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--cyan), #d8fbff);
  box-shadow: 0 0 28px rgba(110, 231, 255, 0.34);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 48%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: buttonScan 3.8s ease-in-out infinite;
}

.button.ghost {
  color: var(--text);
  border-color: rgba(237, 248, 255, 0.34);
  background: rgba(237, 248, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(110, 231, 255, 0.2);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
  width: min(560px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(5, 10, 22, 0.54);
  box-shadow: inset 0 0 24px rgba(110, 231, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  color: var(--text);
}

.section-inner {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(14, 29, 48, 0.86), rgba(5, 9, 19, 0.78)),
    radial-gradient(circle at 20% 10%, rgba(110, 231, 255, 0.12), transparent 32%);
}

.awakening {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 50%, rgba(110, 231, 255, 0.16), transparent 34%),
    radial-gradient(circle at 28% 30%, rgba(155, 124, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(3, 6, 14, 0.68), rgba(8, 13, 28, 0.92));
}

.awakening-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.awakening-copy p:last-child {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.ascension-stage {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(110, 231, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(110, 231, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(110, 231, 255, 0.18), transparent 36%),
    rgba(2, 7, 17, 0.82);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow:
    inset 0 0 80px rgba(110, 231, 255, 0.09),
    0 30px 90px rgba(0, 0, 0, 0.35);
}

.ascension-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(110, 231, 255, 0.09), transparent);
  transform: translateY(-100%);
  animation: stageScan 5.8s ease-in-out infinite;
}

.energy-field,
.unlock-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.energy-field {
  border: 1px solid rgba(110, 231, 255, 0.28);
  box-shadow: 0 0 42px rgba(110, 231, 255, 0.08);
}

.field-one {
  width: min(420px, 76%);
  aspect-ratio: 1;
  animation: fieldRotate 18s linear infinite;
}

.field-two {
  width: min(310px, 58%);
  aspect-ratio: 1;
  border-color: rgba(255, 211, 106, 0.28);
  animation: fieldRotate 24s linear infinite reverse;
}

.field-three {
  width: min(510px, 86%);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(155, 124, 255, 0.26);
  animation: fieldRotate 34s linear infinite;
}

.human-figure {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 168px;
  height: 300px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 24px rgba(110, 231, 255, 0.32));
  animation: humanRise 4.8s ease-in-out infinite;
}

.human-head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(237, 248, 255, 0.72);
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 42%, rgba(237, 248, 255, 0.88), rgba(110, 231, 255, 0.18) 48%, rgba(7, 17, 32, 0.85) 70%);
}

.human-body {
  position: absolute;
  left: 50%;
  top: 78px;
  width: 126px;
  height: 210px;
  border: 1px solid rgba(237, 248, 255, 0.56);
  border-radius: 48% 48% 40% 40%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 42%, rgba(110, 231, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(237, 248, 255, 0.22), rgba(110, 231, 255, 0.06) 48%, transparent);
  clip-path: polygon(50% 0, 88% 18%, 100% 72%, 72% 100%, 28% 100%, 0 72%, 12% 18%);
}

.human-core {
  position: absolute;
  left: 50%;
  top: 158px;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #fff 0 12%, var(--cyan) 28%, rgba(110, 231, 255, 0.1) 68%);
  box-shadow:
    0 0 24px rgba(110, 231, 255, 0.9),
    0 0 82px rgba(110, 231, 255, 0.44);
  animation: corePulse 2.4s ease-in-out infinite;
}

.spine-light {
  position: absolute;
  left: 50%;
  top: 70px;
  width: 3px;
  height: 208px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--cyan), var(--gold), transparent);
  box-shadow: 0 0 18px rgba(110, 231, 255, 0.8);
  animation: spineFlow 2.8s linear infinite;
}

.unlock-ring {
  width: 124px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 211, 106, 0.8);
  border-left-color: transparent;
  border-bottom-color: rgba(110, 231, 255, 0.25);
  box-shadow: 0 0 36px rgba(255, 211, 106, 0.22);
  animation: unlockSpin 3.4s ease-in-out infinite;
}

.light-beam {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 2px;
  height: 72%;
  transform-origin: bottom;
  background: linear-gradient(180deg, transparent, rgba(110, 231, 255, 0.82), transparent);
  box-shadow: 0 0 20px rgba(110, 231, 255, 0.52);
  animation: beamRise 3.6s ease-in-out infinite;
}

.beam-one {
  transform: rotate(-12deg);
}

.beam-two {
  transform: rotate(13deg);
  animation-delay: 1.1s;
}

.data-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 58px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(110, 231, 255, 0.34);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(5, 10, 22, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 28px rgba(110, 231, 255, 0.12);
  animation: nodeFloat 5.4s ease-in-out infinite;
}

.node-one {
  left: 18%;
  top: 28%;
}

.node-two {
  right: 18%;
  top: 24%;
  animation-delay: 1.2s;
}

.node-three {
  right: 14%;
  bottom: 22%;
  color: var(--gold);
  border-color: rgba(255, 211, 106, 0.36);
  animation-delay: 2s;
}

.floating-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@property --spin {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.word {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 211, 106, 0.32);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle, rgba(255, 211, 106, 0.16), rgba(255, 211, 106, 0.04) 58%, transparent 72%),
    rgba(5, 10, 22, 0.42);
  font-size: 22px;
  font-weight: 900;
  text-shadow:
    0 0 10px rgba(255, 211, 106, 0.95),
    0 0 28px rgba(255, 211, 106, 0.58),
    0 0 48px rgba(110, 231, 255, 0.24);
  box-shadow:
    0 0 18px rgba(255, 211, 106, 0.18),
    inset 0 0 16px rgba(255, 211, 106, 0.08);
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--angle) + var(--spin, 0deg)))
    translateX(var(--radius))
    rotate(calc((var(--angle) + var(--spin, 0deg)) * -1));
  animation:
    wordOrbit 36s linear infinite,
    wordGlow 4.8s ease-in-out infinite;
  animation-delay: 0s, var(--pulse-delay, 0s);
}

.word-one {
  --angle: -94deg;
  --radius: 156px;
  --pulse-delay: 0s;
}

.word-two {
  --angle: -58deg;
  --radius: 176px;
  --pulse-delay: 0.6s;
}

.word-three {
  --angle: -22deg;
  --radius: 198px;
  --pulse-delay: 1.2s;
}

.word-four {
  --angle: 14deg;
  --radius: 220px;
  --pulse-delay: 1.8s;
}

.word-five {
  --angle: 50deg;
  --radius: 240px;
  --pulse-delay: 2.4s;
}

.word-six {
  --angle: 86deg;
  --radius: 260px;
  --pulse-delay: 3s;
}

.word-seven {
  --angle: 122deg;
  --radius: 276px;
  --pulse-delay: 3.6s;
}

.word-eight {
  --angle: 158deg;
  --radius: 286px;
  --pulse-delay: 4.2s;
}

.word-nine {
  --angle: 194deg;
  --radius: 294px;
  width: 36px;
  font-size: 19px;
  --pulse-delay: 4.8s;
}

.word-ten {
  --angle: 230deg;
  --radius: 302px;
  width: 36px;
  font-size: 19px;
  --pulse-delay: 5.4s;
}

.treasure-system {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
}

.treasure-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.08), transparent),
    radial-gradient(circle at 72% 34%, rgba(255, 211, 106, 0.14), transparent 30%);
  opacity: 0.9;
  pointer-events: none;
}

.treasure-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.treasure-copy p:last-child {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.treasure-console {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 211, 106, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(255, 211, 106, 0.15), transparent 34%),
    rgba(3, 8, 18, 0.88);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow:
    inset 0 0 90px rgba(255, 211, 106, 0.08),
    0 26px 86px rgba(0, 0, 0, 0.34);
}

.treasure-console::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: 50%;
  filter: blur(0.2px);
}

.console-core {
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 154px;
  aspect-ratio: 1;
  border: 1px solid rgba(237, 248, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 9%, rgba(255, 211, 106, 0.55) 19%, rgba(110, 231, 255, 0.13) 58%, rgba(3, 8, 18, 0.92) 72%);
  box-shadow:
    0 0 34px rgba(255, 211, 106, 0.42),
    0 0 86px rgba(110, 231, 255, 0.18);
  animation: treasureCore 3.4s ease-in-out infinite;
}

.console-core span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.console-core strong {
  margin-top: -26px;
  color: var(--text);
  font-size: 17px;
}

.treasure-orbit {
  position: absolute;
  left: 50%;
  top: 47%;
  border: 1px solid rgba(110, 231, 255, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-a {
  width: min(430px, 78%);
  aspect-ratio: 1;
  border-style: dashed;
  animation: fieldRotate 28s linear infinite;
}

.orbit-b {
  width: min(300px, 58%);
  aspect-ratio: 1;
  border-color: rgba(255, 211, 106, 0.34);
  animation: fieldRotate 20s linear infinite reverse;
}

.treasure-list {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treasure-list li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(237, 248, 255, 0.2);
  border-radius: 6px;
  color: rgba(237, 248, 255, 0.88);
  background: rgba(237, 248, 255, 0.055);
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 24px rgba(110, 231, 255, 0.04);
  animation: treasurePulse 4.8s ease-in-out infinite;
}

.treasure-list li:nth-child(2n) {
  animation-delay: 0.7s;
}

.treasure-list li:nth-child(3n) {
  color: rgba(255, 236, 188, 0.92);
  border-color: rgba(255, 211, 106, 0.26);
  animation-delay: 1.3s;
}

.console-path {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.console-path span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(110, 231, 255, 0.24);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(5, 10, 22, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.intro {
  padding: 64px 0;
}

.intro-grid,
.operations-grid,
.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p:last-child,
.contact-box p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--line);
}

.signal-strip div {
  padding: 18px;
  background: rgba(5, 10, 22, 0.82);
}

.signal-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.signal-strip strong {
  color: var(--gold);
}

.ecosystem {
  padding: 42px 0 12px;
}

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

.ecosystem article {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 23, 42, 0.82), rgba(5, 10, 22, 0.92)),
    radial-gradient(circle at 80% 0%, rgba(255, 211, 106, 0.12), transparent 36%);
  box-shadow: inset 0 0 30px rgba(110, 231, 255, 0.05);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.ecosystem span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 211, 106, 0.52);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  box-shadow: 0 0 32px rgba(255, 211, 106, 0.12);
}

.ecosystem h3 {
  margin: 34px 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.ecosystem p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.projects {
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 30, 50, 0.9), rgba(6, 12, 25, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(110, 231, 255, 0.16), transparent 40%);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.project-card:hover,
.ecosystem article:hover,
.steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 231, 255, 0.56);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(110, 231, 255, 0.1);
}

.project-card.accent {
  border-color: rgba(155, 124, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(37, 27, 72, 0.92), rgba(8, 12, 28, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(155, 124, 255, 0.2), transparent 42%);
}

.project-card.deep {
  border-color: rgba(255, 211, 106, 0.4);
  background:
    linear-gradient(180deg, rgba(45, 35, 17, 0.85), rgba(7, 10, 20, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(255, 211, 106, 0.18), transparent 42%);
}

.project-index {
  color: var(--gold);
  font-weight: 900;
}

.project-tag {
  margin: 18px 0 0;
  color: var(--muted);
}

.project-card h3,
.steps h3 {
  margin: 32px 0 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.2;
}

.project-card p:not(.project-tag) {
  max-width: 58ch;
  margin: 0;
  color: rgba(237, 248, 255, 0.74);
  line-height: 1.75;
}

.project-card .project-proof {
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 211, 106, 0.3);
  border-radius: 6px;
  color: rgba(255, 236, 188, 0.9);
  background: rgba(255, 211, 106, 0.07);
  font-size: 13px;
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.project-card li {
  padding: 7px 10px;
  border: 1px solid rgba(237, 248, 255, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(237, 248, 255, 0.06);
  font-size: 12px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  margin-top: 18px;
  padding: 11px 14px;
  border: 1px solid rgba(110, 231, 255, 0.42);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(110, 231, 255, 0.08);
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.project-link:hover {
  transform: translateY(-2px);
  color: #041018;
  background: var(--cyan);
}

.project-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 100%;
}

.project-actions .project-link {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  text-align: center;
}

.operations {
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.steps article {
  min-height: 220px;
  padding: 24px;
  background: rgba(5, 10, 22, 0.86);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.steps span {
  color: var(--cyan);
  font-weight: 900;
}

.steps h3 {
  margin-top: 36px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  align-items: center;
  padding: 90px 0;
}

.contact-box {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(5, 10, 22, 0.76);
  box-shadow: 0 0 60px rgba(110, 231, 255, 0.12);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-email {
  color: var(--text);
  border-color: rgba(237, 248, 255, 0.28);
  background: rgba(237, 248, 255, 0.06);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(2, 4, 10, 0.94);
  font-size: 13px;
}

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

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

@keyframes starDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 220px 180px, -310px 220px, 260px -210px, 0 0;
  }
}

@keyframes heroPulse {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(-18deg);
  }

  to {
    transform: rotate(342deg);
  }
}

@keyframes buttonScan {
  0%,
  46% {
    left: -70%;
  }

  70%,
  100% {
    left: 120%;
  }
}

@keyframes stageScan {
  0%,
  36% {
    transform: translateY(-100%);
  }

  72%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes fieldRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes humanRise {
  0%,
  100% {
    transform: translate(-50%, -49%);
  }

  50% {
    transform: translate(-50%, -54%);
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.76;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: 1;
  }
}

@keyframes spineFlow {
  from {
    filter: hue-rotate(0deg);
    opacity: 0.66;
  }

  to {
    filter: hue-rotate(80deg);
    opacity: 1;
  }
}

@keyframes unlockSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.9);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.08);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(0.9);
  }
}

@keyframes beamRise {
  0%,
  100% {
    opacity: 0.22;
    height: 56%;
  }

  50% {
    opacity: 0.78;
    height: 78%;
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes wordOrbit {
  0% {
    --spin: 0deg;
  }

  100% {
    --spin: 360deg;
  }
}

@keyframes wordGlow {
  0%,
  100% {
    opacity: 0.72;
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    filter: brightness(1.32);
  }
}

@keyframes treasureCore {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 34px rgba(255, 211, 106, 0.42),
      0 0 86px rgba(110, 231, 255, 0.18);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow:
      0 0 54px rgba(255, 211, 106, 0.58),
      0 0 120px rgba(110, 231, 255, 0.26);
  }
}

@keyframes treasurePulse {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(237, 248, 255, 0.2);
  }

  50% {
    transform: translateY(-4px);
    border-color: rgba(110, 231, 255, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 920px) {
  .project-grid,
  .awakening-grid,
  .treasure-grid,
  .intro-grid,
  .operations-grid,
  .contact,
  .ecosystem-grid,
  .signal-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
  }

  .nav {
    flex-shrink: 0;
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 30px;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .kicker,
  .section-label,
  .project-tag {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: clamp(46px, 17vw, 72px);
    line-height: 0.94;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    white-space: normal;
    text-align: center;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
    font-size: 14px;
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .awakening {
    padding: 58px 0;
  }

  .awakening-copy p:last-child,
  .treasure-copy p:last-child {
    font-size: 16px;
    line-height: 1.75;
  }

  .ascension-stage {
    min-height: 430px;
  }

  .human-figure {
    width: 138px;
    height: 250px;
  }

  .human-head {
    width: 52px;
    height: 52px;
  }

  .human-body {
    top: 66px;
    width: 104px;
    height: 176px;
  }

  .human-core {
    top: 134px;
  }

  .spine-light {
    top: 58px;
    height: 180px;
  }

  .data-node {
    min-width: 48px;
    min-height: 30px;
    font-size: 10px;
  }

  .word {
    width: 34px;
    font-size: 18px;
  }

  .word-nine,
  .word-ten {
    width: 30px;
    font-size: 16px;
  }

  .word-one {
    --radius: 102px;
  }

  .word-two {
    --radius: 112px;
  }

  .word-three {
    --radius: 122px;
  }

  .word-four {
    --radius: 132px;
  }

  .word-five {
    --radius: 140px;
  }

  .word-six {
    --radius: 148px;
  }

  .word-seven {
    --radius: 156px;
  }

  .word-eight {
    --radius: 164px;
  }

  .word-nine {
    --radius: 170px;
  }

  .word-ten {
    --radius: 176px;
  }

  .node-one {
    left: 10%;
  }

  .node-two {
    right: 10%;
  }

  .node-three {
    right: 8%;
  }

  .treasure-system {
    padding: 58px 0;
  }

  .treasure-console {
    min-height: 440px;
  }

  .treasure-list {
    inset: 18px;
    gap: 8px;
  }

  .treasure-list li {
    min-height: 44px;
    padding: 10px;
    font-size: 13px;
  }

  .console-core {
    width: 130px;
  }

  .console-path {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 6px;
  }

  .console-path span {
    min-height: 34px;
    font-size: 11px;
  }

  .intro,
  .operations {
    padding: 54px 0;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.12;
  }

  .intro p:last-child,
  .contact-box p {
    font-size: 16px;
    line-height: 1.75;
  }

  .signal-strip {
    margin-top: 34px;
  }

  .signal-strip div {
    padding: 16px;
  }

  .ecosystem {
    padding: 34px 0 0;
  }

  .ecosystem article,
  .steps article {
    min-height: auto;
    padding: 20px;
  }

  .ecosystem h3,
  .project-card h3,
  .steps h3 {
    margin-top: 24px;
    font-size: 22px;
  }

  .projects {
    padding: 64px 0;
  }

  .project-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: auto;
    padding: 22px;
  }

  .project-card ul {
    margin-top: 30px;
  }

  .project-link {
    width: 100%;
  }

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

  .project-actions .project-link {
    width: auto;
    min-height: 46px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .project-card .project-proof {
    font-size: 12px;
    line-height: 1.65;
  }

  .contact {
    padding: 64px 0;
  }

  .contact-box {
    padding: 22px;
  }

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

  .orbital-one {
    right: -45vw;
  }

  .orbital-two {
    right: -8vw;
    bottom: 34vh;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 18px;
  }
}

@media (max-width: 380px) {
  .nav {
    gap: 8px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 44px;
  }
}
