@font-face {
  font-family: "Space Grotesk Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url("fonts/space-grotesk-latin.woff2") format("woff2-variations");
}

:root {
  --ink: #050607;
  --panel: #0a0d10;
  --panel-soft: #10151a;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.25);
  --text: #f2f4ef;
  --muted: #99a1a6;
  --acid: #bafc4a;
  --cyan: #37d9ff;
  --ember: #ff7b2f;
  --display: "Space Grotesk Variable", "Arial Black", "Helvetica Neue", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(55, 217, 255, 0.06), transparent 28rem),
    radial-gradient(circle at 84% 48%, rgba(186, 252, 74, 0.035), transparent 30rem),
    var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.035;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

img {
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #080a08;
  background: var(--acid);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 22px 3vw;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1450px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(5, 8, 11, 0.72), rgba(5, 8, 11, 0.34));
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.header-shell::before,
.header-shell::after {
  position: absolute;
  top: -1px;
  width: 52px;
  height: 1px;
  content: "";
  background: var(--acid);
  box-shadow: 0 0 12px rgba(186, 252, 74, 0.8);
}

.header-shell::before { left: 0; }
.header-shell::after { right: 0; }

.nav-side {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
  padding: 0 20px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-side a {
  position: relative;
  padding: 13px 2px;
  color: #d6dbda;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.nav-side a::after {
  position: absolute;
  right: 50%;
  bottom: 6px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--acid);
  transition: right 220ms ease, left 220ms ease;
}

.nav-side a:hover,
.nav-side a:focus-visible {
  color: var(--acid);
}

.nav-side a:hover::after,
.nav-side a:focus-visible::after {
  right: 0;
  left: 0;
}

.nav-side .nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(186, 252, 74, 0.6);
  color: var(--acid);
  background: rgba(186, 252, 74, 0.07);
}

.nav-side .nav-cta::after { display: none; }

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 26px;
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.18);
}

.brand-mark img {
  width: 53px;
  height: 53px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), filter 300ms ease;
}

.brand-mark:hover img {
  transform: translateY(-3px) rotate(-4deg);
  filter: drop-shadow(0 0 14px rgba(186, 252, 74, 0.35));
}

.menu-toggle,
.mobile-menu {
  display: none;
}

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

.hero-image {
  position: absolute;
  inset: -10% 0 -12%;
  z-index: -4;
  background: url("img/hero.jpg") center / cover no-repeat;
  transform: translateY(var(--hero-shift)) scale(1.03);
  will-change: transform;
  animation: heroIn 1.8s cubic-bezier(.2,.8,.2,1) both;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(2, 4, 8, 0.68) 0%, rgba(2, 4, 8, 0.16) 30%, rgba(2, 4, 8, 0.52) 64%, #050607 103%),
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.62) 82%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.hero-content {
  width: min(1320px, 92vw);
  margin-top: 15vh;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker {
  justify-content: center;
  animation: fadeUp 800ms 300ms both;
}

.hero-kicker span {
  width: 48px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.hero h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2em;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8.6vw, 9.2rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.68), 0 0 40px rgba(55, 217, 255, 0.1);
}

.typewriter {
  display: inline;
}

.type-cursor {
  display: inline-block;
  width: 0.065em;
  height: 0.76em;
  margin-left: 0.06em;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(186, 252, 74, 0.8);
  animation: blink 700ms steps(2, start) infinite;
}

.hero-copy {
  max-width: 680px;
  margin: 6px auto 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.96rem, 1.5vw, 1.16rem);
  line-height: 1.7;
  text-shadow: 0 2px 14px #000;
  animation: fadeUp 800ms 520ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: fadeUp 800ms 680ms both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 220px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  border-color: var(--acid);
  color: #080b06;
  background: var(--acid);
  box-shadow: 0 0 30px rgba(186, 252, 74, 0.16);
}

.button-primary:hover { background: #d3ff87; }

.button-ghost {
  background: rgba(5, 7, 9, 0.55);
  backdrop-filter: blur(10px);
}

.button-ghost:hover { border-color: rgba(255, 255, 255, 0.55); }

.hero-status {
  position: absolute;
  right: 3vw;
  bottom: 28px;
  left: 3vw;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}

.hero-status span:first-child { color: var(--acid); }
.hero-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  animation: statusPulse 1.8s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--acid), transparent);
  animation: scrollLine 1.7s ease-in-out infinite;
}

.section-pad {
  padding: clamp(90px, 12vw, 180px) max(5vw, calc((100vw - 1440px) / 2));
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(480px, 1.2fr) minmax(300px, 0.7fr);
  gap: 9vw;
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 92px);
}

.section-intro.platform-intro {
  display: block;
}

.section-intro.platform-intro .eyebrow {
  margin-bottom: clamp(36px, 4vw, 62px);
}

.platform-intro-layout {
  display: grid;
  grid-template-columns: minmax(470px, 1.18fr) minmax(320px, 0.72fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: center;
}

.platform-media-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-width: 0;
  gap: 28px;
}

.platform-globe-row,
.platform-copy-row {
  grid-column: 1;
  width: 100%;
}

.platform-globe-row {
  display: flex;
  justify-content: center;
}

.platform-globe {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 1;
  isolation: isolate;
}

.platform-globe::before,
.platform-globe::after {
  position: absolute;
  inset: 7%;
  z-index: -1;
  border: 1px solid rgba(55, 217, 255, 0.24);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 50px rgba(55, 217, 255, 0.12);
}

.platform-globe::after {
  inset: 1%;
  border-color: rgba(186, 252, 74, 0.16);
  border-right-color: transparent;
  border-left-color: transparent;
  animation: globeOrbit 12s linear infinite;
}

.platform-globe img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 22px rgba(55, 217, 255, 0.15));
  animation: globeFloat 5.5s ease-in-out infinite;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4vw;
}

.section-intro h2,
.how-heading h2,
.crypto-intro h2,
.contact-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.4vw, 7.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-intro h2 em,
.how-heading h2 em,
.crypto-intro h2 em,
.contact-inner h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
}

.section-intro > p:last-child,
.platform-copy-row > p,
.how-heading > p,
.crypto-intro > p:last-child,
.contact-inner > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.worlds-section {
  position: relative;
  overflow: hidden;
}

.worlds-section::before {
  position: absolute;
  top: 8%;
  right: -14rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(55, 217, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 90px rgba(55, 217, 255, 0.04) inset;
}

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

.world-card {
  --accent-color: var(--cyan);
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(220px, 1.25fr);
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(18, 22, 27, 0.98), rgba(8, 10, 12, 0.97));
  transition: border-color 350ms ease, transform 450ms cubic-bezier(.2,.8,.2,1), box-shadow 350ms ease;
}

.world-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 4;
  width: 2px;
  content: "";
  background: var(--accent-color);
  box-shadow: 0 0 20px var(--accent-color);
  transform: scaleY(0.2);
  transform-origin: top;
  transition: transform 400ms ease;
}

.world-card:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--accent-color) 48%, transparent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(-7px);
}

.world-card:hover::before { transform: scaleY(1); }
.accent-violet { --accent-color: #a96cff; }
.accent-green { --accent-color: #6bde74; }
.accent-red { --accent-color: #ff5c56; }
.accent-gold { --accent-color: #f3ca50; }

.world-image-wrap {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #030405;
}

.world-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 65%, rgba(8, 10, 12, 0.9));
  pointer-events: none;
}

.world-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) brightness(0.83);
  transition: filter 500ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.world-card:hover img {
  filter: saturate(1.08) brightness(1);
  transform: scale(1.035);
}

.world-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  background: rgba(0, 0, 0, 0.55);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.world-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 4vw, 64px);
}

.world-eyebrow {
  margin: 0 0 24px;
  color: var(--accent-color);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.world-copy h3 {
  max-width: 100%;
  margin: 0 0 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 2.8vw, 3.35rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.world-copy > p:not(.world-eyebrow) {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.world-meter {
  width: min(100%, 300px);
  height: 2px;
  margin-top: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.world-meter span {
  display: block;
  width: 36%;
  height: 100%;
  background: var(--accent-color);
  box-shadow: 0 0 12px var(--accent-color);
  transition: width 650ms cubic-bezier(.2,.8,.2,1);
}

.world-card:hover .world-meter span { width: 100%; }

.features-section {
  position: relative;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #080a0c, #050607);
}

.section-intro.compact {
  display: block;
}

.section-intro.compact .eyebrow { margin-bottom: 26px; }

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

.feature-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.feature-card.wide {
  grid-column: 1 / -1;
  min-height: min(620px, 62vw);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.72);
  transition: transform 850ms cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.feature-card:hover img {
  filter: saturate(1.05) brightness(0.83);
  transform: scale(1.035);
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 22%, rgba(4, 6, 8, 0.34) 55%, rgba(4, 6, 8, 0.96)),
    linear-gradient(90deg, rgba(4, 6, 8, 0.18), transparent 60%);
}

.feature-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  align-items: start;
  padding: clamp(28px, 4vw, 58px);
}

.feature-copy > span {
  grid-row: span 2;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  line-height: 2;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.feature-card:not(.wide) .feature-copy h3 {
  font-size: clamp(2.1rem, 3.4vw, 3.9rem);
}

.feature-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.how-section {
  overflow: hidden;
}

.how-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: clamp(55px, 7vw, 90px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.workflow-card {
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 12, 14, 0.82);
  transition: background 300ms ease, transform 350ms ease;
}

.workflow-card:hover {
  z-index: 2;
  background: #10151a;
  transform: translateY(-6px);
}

.workflow-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.22;
  border-bottom: 1px solid var(--line);
}

.workflow-image::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 -40px 60px rgba(0, 0, 0, 0.32);
}

.workflow-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
  transition: filter 400ms ease, transform 600ms cubic-bezier(.2,.8,.2,1);
}

.workflow-card:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.04);
}

.workflow-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--acid);
  background: rgba(0, 0, 0, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.63rem;
}

.workflow-copy {
  min-height: 260px;
  padding: 28px;
}

.workflow-copy h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.workflow-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.crypto-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 65%, rgba(255, 183, 58, 0.1), transparent 38rem),
    #07080a;
}

.crypto-intro {
  max-width: 940px;
  margin: 0 auto clamp(45px, 6vw, 78px);
  text-align: center;
}

.crypto-intro .eyebrow {
  justify-content: center;
}

.crypto-intro > p:last-child {
  max-width: 750px;
  margin: 28px auto 0;
}

.crypto-visual {
  position: relative;
  width: min(1250px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 197, 91, 0.28);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.55), 0 0 70px rgba(255, 173, 45, 0.06);
}

.crypto-visual img {
  display: block;
  width: 100%;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 1s cubic-bezier(.2,.8,.2,1), filter 500ms ease;
}

.crypto-visual:hover img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.018);
}

.scan-line {
  position: absolute;
  top: -10%;
  right: 0;
  left: 0;
  height: 16%;
  opacity: 0.22;
  background: linear-gradient(transparent, rgba(255, 218, 137, 0.6), transparent);
  animation: scan 5.5s linear infinite;
}

.crypto-label {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(255, 210, 121, 0.35);
  color: #ffd87a;
  background: rgba(4, 6, 10, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  backdrop-filter: blur(10px);
}

.label-one { top: 24px; left: 24px; }
.label-two { right: 24px; bottom: 24px; }

.contact-section {
  position: relative;
  display: grid;
  min-height: 820px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("img/bk2.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.contact-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.98) 0%, rgba(4, 6, 9, 0.85) 44%, rgba(4, 6, 9, 0.28) 100%),
    linear-gradient(180deg, #050607 0%, transparent 24%, rgba(5, 6, 7, 0.82) 100%);
}

.contact-inner {
  width: min(1380px, 90vw);
  margin: auto;
  padding: 110px 0;
}

.contact-inner h2 {
  max-width: 920px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 26px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1080px;
  margin-top: 50px;
}

.contact-options a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(14px);
  transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}

.contact-options a:hover,
.contact-options a:focus-visible {
  border-color: var(--acid);
  background: rgba(16, 20, 22, 0.9);
  transform: translateY(-5px);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.38));
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), filter 260ms ease;
}

.contact-options a:hover .contact-icon img,
.contact-options a:focus-visible .contact-icon img {
  transform: translateY(-2px) scale(1.07);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

.contact-options a > span:nth-child(2) {
  overflow-wrap: anywhere;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-options small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-options i {
  color: var(--acid);
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  min-height: 140px;
  padding: 28px max(4vw, calc((100vw - 1440px) / 2));
  border-top: 1px solid var(--line);
  background: #040506;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.site-footer > p {
  margin: 0;
  color: #70777b;
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  color: #a5abad;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-links a:hover { color: var(--acid); }

[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 850ms var(--delay, 0ms) cubic-bezier(.2,.8,.2,1),
    transform 850ms var(--delay, 0ms) cubic-bezier(.2,.8,.2,1);
}

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

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 80% 0%, rgba(55,217,255,.08), transparent 28rem),
    #06080a;
  background-size: 70px 70px, 70px 70px, auto, auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 90vw);
  min-height: 110px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: .08em;
}

.legal-brand img { width: 46px; height: 46px; object-fit: contain; }

.legal-back {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.legal-back:hover { color: var(--acid); }

.legal-document {
  width: min(1000px, 88vw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 0;
}

.legal-title-block {
  max-width: 850px;
  margin-bottom: 90px;
}

.legal-title-block h1 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4.2rem, 10vw, 9rem);
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.legal-updated {
  margin: 0 0 34px;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-intro {
  margin: 0;
  color: #bdc3c4;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.72;
}

.legal-sections {
  border-top: 1px solid var(--line);
}

.legal-sections section {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.legal-sections section > span {
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .7rem;
}

.legal-sections h2 {
  margin: -7px 0 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.legal-sections p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.8;
}

.legal-sections a { color: var(--acid); text-decoration: underline; text-underline-offset: 4px; }

.legal-footer {
  display: flex;
  justify-content: space-between;
  width: min(1180px, 90vw);
  min-height: 110px;
  margin: 0 auto;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  letter-spacing: .08em;
}

.legal-footer div { display: flex; gap: 28px; color: var(--muted); font-family: var(--body); font-size: .72rem; font-weight: 700; }
.legal-footer a:hover { color: var(--acid); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(0) scale(1.12); }
  to { opacity: 1; transform: translateY(var(--hero-shift)) scale(1.03); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink { 50% { opacity: 0; } }
@keyframes statusPulse { 50% { opacity: .35; transform: scale(.7); } }
@keyframes scrollLine { 0%, 100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); } }
@keyframes scan { from { transform: translateY(-60%); } to { transform: translateY(740%); } }
@keyframes globeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes globeOrbit { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .platform-intro-layout { grid-template-columns: minmax(0, 1fr) minmax(280px, .68fr); gap: 42px; }
  .world-stack { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-options { grid-template-columns: 1fr; max-width: 560px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 820px) {
  .site-header { padding: 14px 16px; }
  .header-shell { grid-template-columns: 1fr auto; min-height: 64px; }
  .nav-side { display: none; }
  .brand-mark { justify-content: flex-start; padding: 0 10px; }
  .brand-mark img { width: 46px; height: 46px; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 1px; background: white; }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    background: rgba(5, 7, 9, .98);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 300ms ease, opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
  }
  .mobile-menu.is-open { max-height: 320px; border-color: var(--line); opacity: 1; transform: translateY(0); }
  .mobile-menu a { padding: 18px 20px; border-bottom: 1px solid var(--line); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .hero-content { margin-top: 12vh; }
  .hero h1 { min-height: 2.9em; font-size: clamp(3rem, 12vw, 6rem); }
  .hero-status { display: none; }
  .scroll-cue { display: none; }
  .section-intro,
  .how-heading { grid-template-columns: 1fr; gap: 30px; }
  .platform-intro-layout { grid-template-columns: 1fr; gap: 34px; }
  .section-intro .eyebrow { grid-column: auto; margin-bottom: 0; }
  .section-intro.platform-intro .eyebrow { margin-bottom: 34px; }
  .platform-media-copy { gap: 24px; }
  .platform-globe { width: min(72vw, 360px); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: auto; min-height: 520px; }
  .feature-card { min-height: 500px; }
  .contact-section { min-height: 760px; }
  .contact-section::after { background: linear-gradient(90deg, rgba(4,6,9,.96), rgba(4,6,9,.64)), linear-gradient(180deg, #050607, transparent 24%, rgba(5,6,7,.86)); }
}

@media (max-width: 620px) {
  .hero-kicker span { width: 18px; }
  .hero-kicker { gap: 8px; font-size: .57rem; }
  .hero-copy { line-height: 1.6; }
  .button { width: 100%; min-width: 0; }
  .hero-actions { max-width: 420px; margin: 0 auto; }
  .section-pad { padding-right: 18px; padding-left: 18px; }
  .world-card { grid-template-columns: 1fr; min-height: 0; }
  .world-image-wrap { min-height: 0; aspect-ratio: 4 / 5; }
  .world-image-wrap::after { background: linear-gradient(180deg, transparent 70%, rgba(8, 10, 12, 0.92)); }
  .world-copy { padding: 30px 24px 34px; }
  .world-copy h3 { font-size: clamp(2rem, 10vw, 2.75rem); line-height: 1; }
  .world-copy > p:not(.world-eyebrow) { font-size: .88rem; line-height: 1.65; }
  .world-eyebrow { margin-bottom: 17px; font-size: .54rem; }
  .world-meter { margin-top: 25px; }
  .world-index { top: 10px; left: 10px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-copy { min-height: auto; }
  .crypto-label { display: none; }
  .contact-inner { padding: 90px 0; }
  .contact-options a { min-height: 88px; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .footer-links { justify-content: flex-start; }
  .site-footer > p { grid-column: auto; grid-row: auto; }
  .legal-header { min-height: 90px; }
  .legal-brand img { width: 40px; height: 40px; }
  .legal-back { font-size: .6rem; }
  .legal-title-block { margin-bottom: 65px; }
  .legal-sections section { grid-template-columns: 36px 1fr; gap: 10px; padding: 34px 0; }
  .legal-footer { flex-direction: column; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-image { transform: none; }
}
