:root {
  --ink: #070b12;
  --ink-soft: #0d141d;
  --paper: #f0f3eb;
  --paper-dim: #c8cec3;
  --line: rgba(227, 237, 225, 0.15);
  --green: #28eba3;
  --cyan: #5cdcff;
  --violet: #a47cff;
  --red: #ff596d;
  --radius: 22px;
  --gutter: clamp(22px, 5vw, 78px);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.026;
  pointer-events: none;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  transform: rotate(-2deg);
}

.brand-mark i {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--green);
  box-shadow: inset -3px -3px 0 rgba(0, 0, 0, 0.18);
}

.brand-mark i:nth-child(1) { left: 0; top: 0; }
.brand-mark i:nth-child(2) { right: 0; top: 0; background: var(--cyan); }
.brand-mark i:nth-child(3) { left: 0; bottom: 0; background: var(--violet); }
.brand-mark i:nth-child(4) { right: 0; bottom: 0; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: #fff;
}

.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b55;
  box-shadow: 0 0 0 5px rgba(255, 59, 85, 0.13);
  animation: blink 1.8s infinite;
}

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  max-height: 1100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 110px var(--gutter) 130px;
  isolation: isolate;
  --lens-x: 72%;
  --lens-y: 46%;
  --lens-opacity: 0;
  --lens-radius: clamp(175px, 20vw, 300px);
}

.hero-art,
.hero-shade,
.hero-day,
.hero-lens-glow,
.hero-fog {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-art {
  z-index: -4;
  inset: -24px;
  background: url("/assets/minekrop-world.webp") 50% 50% / cover no-repeat;
  transform: scale(1.035) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 7, 14, 0.97) 0%, rgba(3, 7, 14, 0.88) 31%, rgba(3, 7, 14, 0.43) 57%, rgba(3, 7, 14, 0.05) 82%),
    linear-gradient(0deg, var(--ink) 0%, transparent 28%, rgba(0, 4, 10, 0.3) 100%);
}

.hero-day {
  z-index: -3;
  inset: -24px;
  opacity: var(--lens-opacity);
  background: url("/assets/minekrop-world-day.webp") 50% 50% / cover no-repeat;
  filter: saturate(0.92) brightness(0.94);
  transform: scale(1.035) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  -webkit-mask-image: radial-gradient(
    circle var(--lens-radius) at calc(var(--lens-x) + 24px) calc(var(--lens-y) + 24px),
    #000 0%,
    rgba(0, 0, 0, 0.98) 48%,
    rgba(0, 0, 0, 0.72) 64%,
    rgba(0, 0, 0, 0.22) 83%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle var(--lens-radius) at calc(var(--lens-x) + 24px) calc(var(--lens-y) + 24px),
    #000 0%,
    rgba(0, 0, 0, 0.98) 48%,
    rgba(0, 0, 0, 0.72) 64%,
    rgba(0, 0, 0, 0.22) 83%,
    transparent 100%
  );
  transition: opacity 420ms ease, transform 500ms cubic-bezier(.2, .7, .2, 1);
  will-change: mask-image, -webkit-mask-image, opacity;
}

.hero-lens-glow {
  z-index: -1;
  width: calc(var(--lens-radius) * 2.28);
  height: calc(var(--lens-radius) * 2.28);
  left: var(--lens-x);
  top: var(--lens-y);
  inset: auto;
  border-radius: 50%;
  opacity: calc(var(--lens-opacity) * 0.65);
  background: radial-gradient(circle, transparent 54%, rgba(175, 255, 229, 0.10) 68%, rgba(92, 220, 255, 0.08) 75%, transparent 82%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: opacity 420ms ease;
}

.hero-fog {
  z-index: -1;
  overflow: hidden;
  opacity: 0.24;
  mix-blend-mode: screen;
  mask-image: linear-gradient(0deg, #000 5%, rgba(0,0,0,.75) 43%, transparent 78%);
}

.hero-fog i {
  position: absolute;
  display: block;
  width: 65vw;
  height: 21vw;
  min-height: 170px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(175, 221, 226, 0.55), rgba(80, 144, 159, 0.20) 46%, transparent 73%);
  filter: blur(34px);
  will-change: transform;
}

.hero-fog i:nth-child(1) {
  left: -22vw;
  bottom: 4%;
  animation: fog-drift-a 24s ease-in-out infinite alternate;
}

.hero-fog i:nth-child(2) {
  right: -25vw;
  bottom: 16%;
  opacity: 0.72;
  animation: fog-drift-b 31s ease-in-out infinite alternate;
}

.hero-fog i:nth-child(3) {
  left: 28vw;
  bottom: -3%;
  width: 50vw;
  opacity: 0.48;
  animation: fog-drift-c 27s ease-in-out infinite alternate;
}

.hero-content {
  width: min(690px, 56vw);
  margin-top: 20px;
}

.eyebrow,
.mini-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  animation: enter 700ms 120ms both;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: var(--green);
  box-shadow: 8px 0 20px var(--green);
}

.hero h1,
.statement h2,
.join h2,
.stream h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(66px, 8.1vw, 132px);
  animation: enter 780ms 190ms both;
}

h1 em,
.stream h2 em {
  color: var(--green);
  font-style: normal;
  text-shadow: 0 0 44px rgba(40, 235, 163, 0.2);
}

.hero-copy {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(238, 244, 237, 0.67);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
  animation: enter 760ms 270ms both;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 38px;
  animation: enter 760ms 350ms both;
}

.server-address {
  position: relative;
  min-width: 248px;
  padding: 13px 52px 13px 18px;
  color: var(--ink);
  text-align: left;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(40, 235, 163, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.server-address:hover {
  transform: translateY(-2px);
  background: #46f2b5;
  box-shadow: 0 18px 50px rgba(40, 235, 163, 0.25);
}

.server-address__label {
  display: block;
  margin-bottom: 3px;
  opacity: 0.62;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.server-address strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.copy-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translateY(-40%);
}

.copy-icon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 12px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: var(--green);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.ghost-button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.ghost-button span {
  color: var(--green);
}

.hero-status {
  position: absolute;
  right: var(--gutter);
  bottom: 43px;
  display: grid;
  grid-template-columns: auto minmax(140px, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-width: min(390px, calc(100vw - 44px));
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(6, 10, 16, 0.64);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  animation: enter 760ms 480ms both;
}

.status-orb {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(40, 235, 163, 0.3);
  border-radius: 9px;
  background: rgba(40, 235, 163, 0.08);
}

.status-orb > span {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.status-orb.is-loading > span {
  animation: blink 1s infinite;
}

.status-orb.is-offline {
  border-color: rgba(255, 89, 109, 0.35);
  background: rgba(255, 89, 109, 0.08);
}

.status-orb.is-offline > span {
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}

.status-kicker,
.hero-status strong {
  display: block;
}

.status-kicker {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 14px;
}

.status-ping {
  padding-left: 20px;
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.status-ping span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.status-ping b {
  font-size: 25px;
  letter-spacing: -0.05em;
}

.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.38);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lens-hint {
  position: absolute;
  right: var(--gutter);
  top: 112px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: enter 760ms 620ms both;
}

.lens-hint span {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(92, 220, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(92, 220, 255, 0.18);
}

.lens-hint span::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.scroll-cue span {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.statement {
  padding-top: clamp(110px, 13vw, 200px);
  padding-bottom: clamp(90px, 11vw, 170px);
}

.section-number {
  margin-bottom: clamp(55px, 7vw, 100px);
  color: rgba(255, 255, 255, 0.32);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.statement h2,
.join h2,
.final-cta h2 {
  font-size: clamp(54px, 7.4vw, 110px);
}

.statement h2 span,
.join h2 span,
.final-cta h2 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(92, 220, 255, 0.72);
}

.statement-copy {
  padding-top: 8px;
}

.statement-copy > p,
.join-head > p,
.stream-copy > p {
  margin: 0;
  color: rgba(239, 244, 236, 0.57);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.68;
}

.world-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.world-meta b,
.world-meta span {
  display: block;
}

.world-meta b {
  color: var(--green);
  font-family: ui-monospace, monospace;
  font-size: 18px;
}

.world-meta span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.4;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding-bottom: clamp(120px, 14vw, 210px);
}

.feature-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.feature-card--world { grid-column: span 4; background: #101923; }
.feature-card--arena { grid-column: span 5; background: #11101a; }
.feature-card--versions { grid-column: span 3; background: #0d1917; }

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 46%);
  transition: opacity 300ms ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255, 255, 255, 0.26);
  font-family: ui-monospace, monospace;
  font-size: 10px;
}

.feature-card .mini-label {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 9px;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 38px);
  letter-spacing: -0.05em;
}

.feature-card p:last-child {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  line-height: 1.7;
}

.cube-scene {
  position: relative;
  height: 250px;
  perspective: 700px;
}

.cube {
  position: absolute;
  display: block;
  width: 90px;
  height: 90px;
  background: #24d398;
  box-shadow: inset -22px -20px 0 #147c68, 0 32px 70px rgba(40, 235, 163, 0.14);
  transform: rotate(30deg) skew(-8deg, -8deg);
}

.cube::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cube--one { left: 29%; top: 75px; width: 112px; height: 112px; }
.cube--two { left: 7%; top: 30px; width: 55px; height: 55px; opacity: 0.6; }
.cube--three { right: 2%; top: 18px; width: 42px; height: 42px; opacity: 0.36; }

.arena-glyph {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.arena-flag {
  position: relative;
  width: 72px;
  height: 130px;
  border-left: 6px solid rgba(255, 255, 255, 0.52);
}

.arena-flag i {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 52px;
  clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%);
  background: var(--red);
  filter: drop-shadow(0 0 28px rgba(255, 89, 109, 0.28));
}

.arena-flag--blue {
  transform: scaleX(-1);
}

.arena-flag--blue i {
  background: var(--cyan);
  filter: drop-shadow(0 0 28px rgba(92, 220, 255, 0.28));
}

.arena-cross {
  color: rgba(255, 255, 255, 0.34);
  font-family: ui-monospace, monospace;
  font-size: 28px;
}

.version-stack {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, monospace;
}

.version-stack span:first-child {
  color: var(--green);
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 900;
  letter-spacing: -0.09em;
  text-shadow: 0 0 50px rgba(40, 235, 163, 0.22);
}

.version-stack span:nth-child(2) {
  color: rgba(255, 255, 255, 0.2);
  font-size: 28px;
}

.version-stack span:last-child {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 22px;
}

.join {
  padding-top: clamp(110px, 12vw, 180px);
  padding-bottom: clamp(120px, 13vw, 200px);
  border-top: 1px solid var(--line);
}

.join-head {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 9vw;
  align-items: end;
}

.join-head > p {
  padding-bottom: 8px;
}

.steps {
  margin: 100px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  padding-top: 7px;
  color: var(--green);
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.7vw, 38px);
  letter-spacing: -0.045em;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  line-height: 1.65;
}

.inline-copy {
  margin: 0;
  padding: 2px 7px;
  color: var(--green);
  border: 1px solid rgba(40, 235, 163, 0.24);
  border-radius: 4px;
  background: rgba(40, 235, 163, 0.08);
  cursor: pointer;
}

code {
  padding: 3px 7px;
  color: #d9f9ed;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88em;
}

.stream {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: calc(min(100%, var(--max)) - (2 * var(--gutter)));
  padding: clamp(55px, 7vw, 100px);
  border-radius: 30px;
  background: #efece5;
  color: var(--ink);
  isolation: isolate;
}

.stream-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(#8e8a82 1px, transparent 1px), linear-gradient(90deg, #8e8a82 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.stream::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 580px;
  height: 580px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #66ffd0, #1ad898 36%, #a47cff 78%);
  filter: blur(2px);
}

.stream-copy {
  width: 58%;
}

.eyebrow--light {
  color: rgba(7, 11, 18, 0.55);
}

.stream h2 {
  margin-top: 28px;
  font-size: clamp(52px, 6.7vw, 100px);
}

.stream h2 em {
  color: #008f65;
  text-shadow: none;
}

.stream-copy > p {
  max-width: 540px;
  margin-top: 30px;
  color: rgba(7, 11, 18, 0.56);
}

.tiktok-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-width: 280px;
  margin-top: 38px;
  padding: 18px 20px;
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.tiktok-button:hover {
  transform: translateY(-2px);
  background: #151f2b;
}

.tiktok-button span {
  color: var(--green);
  font-size: 18px;
}

.stream-card {
  position: absolute;
  right: clamp(40px, 7vw, 110px);
  bottom: -30px;
  width: min(28vw, 350px);
  aspect-ratio: 0.58;
  overflow: hidden;
  border: 8px solid #0a0d13;
  border-bottom-width: 0;
  border-radius: 42px 42px 0 0;
  background: #07101b;
  box-shadow: 0 40px 90px rgba(7, 11, 18, 0.32);
  transform: rotate(4deg);
}

.live-badge {
  position: absolute;
  z-index: 2;
  top: 23px;
  left: 22px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: #f0385a;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.live-badge i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.4s infinite;
}

.phone-world {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(#153c55 0 45%, #1d674b 45% 67%, #423223 67%);
}

.phone-world::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 42%, rgba(92, 220, 255, 0.25)), repeating-linear-gradient(0deg, transparent 0 40px, rgba(255,255,255,.025) 40px 41px);
}

.phone-world i {
  position: absolute;
  display: block;
  width: 70px;
  height: 70px;
  background: #287f51;
  box-shadow: inset -16px -15px 0 #1c533d;
}

.phone-world i:nth-child(1) { left: -10px; top: 43%; }
.phone-world i:nth-child(2) { left: 50px; top: 51%; width: 100px; height: 100px; }
.phone-world i:nth-child(3) { right: 12px; top: 39%; width: 92px; height: 92px; }
.phone-world i:nth-child(4) { right: -20px; top: 57%; width: 135px; height: 135px; background: #1f5f45; }
.phone-world i:nth-child(5) { left: 0; top: 67%; width: 180px; height: 100px; background: #4f3b28; }

.phone-ui {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 36px;
  color: #fff;
  text-shadow: 0 2px 7px rgba(0,0,0,.65);
}

.phone-ui b,
.phone-ui span {
  display: block;
}

.phone-ui b {
  font-size: 12px;
}

.phone-ui span {
  margin-top: 6px;
  font-size: 10px;
  opacity: 0.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(150px, 17vw, 250px);
  padding-bottom: clamp(150px, 17vw, 250px);
  text-align: center;
}

.final-cta__orb {
  position: absolute;
  z-index: -1;
  width: 650px;
  height: 650px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 235, 163, 0.12), rgba(92, 220, 255, 0.04) 42%, transparent 70%);
  transform: translate(-50%, -50%);
}

.final-cta .mini-label {
  margin: 0 0 28px;
  color: var(--green);
}

.server-address--large {
  min-width: min(370px, 100%);
  margin-top: 45px;
  padding: 18px 62px 18px 23px;
  text-align: left;
}

.server-address--large strong {
  font-size: 27px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px var(--gutter);
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid var(--line);
  font-size: 10px;
}

footer p:last-child {
  text-align: right;
}

.brand--footer {
  color: var(--paper);
  font-size: 15px;
}

.brand--footer .brand-mark {
  width: 20px;
  height: 20px;
}

.brand--footer .brand-mark i {
  width: 9px;
  height: 9px;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 28px;
  padding: 13px 17px;
  color: var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 60px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .75, .2, 1);
}

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

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes fog-drift-a {
  from { transform: translate3d(-4vw, 0, 0) scale(0.94); }
  to { transform: translate3d(32vw, -3vh, 0) scale(1.12); }
}

@keyframes fog-drift-b {
  from { transform: translate3d(5vw, 2vh, 0) scale(1.08); }
  to { transform: translate3d(-38vw, -2vh, 0) scale(0.92); }
}

@keyframes fog-drift-c {
  from { transform: translate3d(-15vw, 0, 0) scale(0.9); }
  to { transform: translate3d(18vw, -4vh, 0) scale(1.1); }
}

@media (max-width: 1050px) {
  .hero-content { width: 70vw; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 7, 14, 0.96) 0%, rgba(3, 7, 14, 0.74) 57%, rgba(3, 7, 14, 0.18)), linear-gradient(0deg, var(--ink), transparent 35%);
  }
  .feature-card--world,
  .feature-card--arena { grid-column: span 6; }
  .feature-card--versions { grid-column: span 12; min-height: 410px; }
  .version-stack { height: 150px; }
  .stream-copy { width: 62%; }
  .stream-card { width: 30vw; right: 35px; }
}

@media (max-width: 760px) {
  .site-header { padding-top: 21px; padding-bottom: 21px; }
  .nav > a:not(.nav-live) { display: none; }
  .nav-live { font-size: 11px; }
  .hero {
    min-height: 780px;
    height: 100svh;
    max-height: 900px;
    align-items: flex-start;
    padding-top: 138px;
    padding-bottom: 175px;
  }
  .hero-art {
    background-position: 68% 50%;
    filter: saturate(0.88);
  }
  .hero-day,
  .hero-lens-glow,
  .lens-hint { display: none; }
  .hero-fog { opacity: 0.13; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(3,7,14,.87), rgba(3,7,14,.4)), linear-gradient(0deg, var(--ink) 0, rgba(3,7,14,.58) 36%, rgba(3,7,14,.42) 100%);
  }
  .hero-content { width: 100%; margin-top: 0; }
  .hero h1 { margin-top: 22px; font-size: clamp(58px, 17vw, 86px); }
  .hero-copy { max-width: 520px; margin-top: 22px; font-size: 15px; line-height: 1.55; }
  .hero-actions { margin-top: 28px; }
  .ghost-button { display: none; }
  .server-address { min-width: 245px; }
  .hero-status {
    left: 22px;
    right: 22px;
    bottom: 45px;
    min-width: 0;
  }
  .scroll-cue { display: none; }
  .statement-grid,
  .join-head {
    grid-template-columns: 1fr;
  }
  .statement-grid { gap: 45px; }
  .statement h2,
  .join h2,
  .final-cta h2 { font-size: clamp(48px, 15vw, 74px); }
  .world-meta { margin-top: 40px; }
  .feature-card--world,
  .feature-card--arena,
  .feature-card--versions { grid-column: span 12; min-height: 470px; }
  .feature-card--versions { min-height: 390px; }
  .join-head { gap: 35px; }
  .steps { margin-top: 65px; }
  .steps li { grid-template-columns: 52px 1fr; gap: 16px; padding: 30px 0; }
  .stream {
    width: calc(100% - 44px);
    min-height: 760px;
    align-items: flex-start;
    padding: 45px 28px;
  }
  .stream-copy { width: 100%; }
  .stream h2 { font-size: clamp(47px, 13vw, 72px); }
  .stream-card {
    width: 215px;
    height: 360px;
    right: 22px;
    bottom: -16px;
    border-radius: 30px 30px 0 0;
  }
  .tiktok-button { position: relative; z-index: 4; }
  footer { grid-template-columns: 1fr auto; }
  footer p:first-of-type { display: none; }
}

@media (max-width: 430px) {
  .eyebrow { font-size: 9px; letter-spacing: .11em; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 15.5vw; }
  .hero-copy { font-size: 14px; }
  .hero-status { grid-template-columns: auto 1fr auto; gap: 10px; padding: 14px; }
  .status-orb { width: 34px; height: 34px; }
  .status-ping { padding-left: 12px; }
  .status-ping b { font-size: 21px; }
  .hero-status strong { font-size: 12px; }
  .world-meta { gap: 10px; }
  .world-meta b { font-size: 15px; }
  .feature-card { min-height: 440px; padding: 23px; }
  .arena-glyph { gap: 20px; }
  .stream { min-height: 770px; }
  .stream-card { width: 190px; height: 320px; }
  .tiktok-button { min-width: 100%; }
  footer { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-day,
  .hero-lens-glow,
  .lens-hint { display: none; }
  .hero-fog { display: none; }
}
