:root {
  --ink: #090a1a;
  --ink-soft: #111329;
  --panel: #15172c;
  --mint: #72f6e2;
  --coral: #ff5a78;
  --sand: #ffca7a;
  --white: #f7f8ff;
  --muted: #a8acc4;
  --line: rgba(247, 248, 255, 0.14);
  --display: "Bowlby One SC", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --page: min(1440px, calc(100vw - 32px));
  --ease: cubic-bezier(0.2, 0.85, 0.25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 27%, rgba(114, 246, 226, 0.07), transparent 23rem),
    var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 78px;
}

button,
input,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
}

.button:disabled {
  opacity: .44;
  filter: saturate(.35);
  box-shadow: none;
  transform: none;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--mint);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  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='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 50%;
  width: var(--page);
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
  transition: background 240ms ease, backdrop-filter 240ms ease, height 240ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(9, 10, 26, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--coral);
  transform: rotate(-5deg);
}

.brand-mark span {
  font: 400 19px/1 var(--display);
  transform: rotate(5deg);
}

.brand-name {
  font: 400 19px/1 var(--display);
  letter-spacing: 0.015em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.1em;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.74);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.mini-play {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font: 700 11px/1 var(--mono);
  box-shadow: 4px 4px 0 rgba(114, 246, 226, 0.65);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.mini-play:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(114, 246, 226, 0.8);
}

.mini-play svg {
  width: 13px;
  fill: currentColor;
  stroke: none;
}

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

.hero {
  padding: 16px 0 0;
}

.hero-scene {
  position: relative;
  width: var(--page);
  max-height: calc(100vh - 32px);
  aspect-ratio: 1672 / 941;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background: #17162d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

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

.scene-image {
  z-index: -3;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.scene-grade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 23, 0.84) 0%, rgba(8, 7, 23, 0.56) 25%, rgba(8, 7, 23, 0.08) 49%, transparent 66%),
    linear-gradient(180deg, rgba(5, 6, 19, 0.48) 0, transparent 32%, rgba(5, 6, 19, 0.34) 100%);
}

.sun-flare {
  position: absolute;
  z-index: -1;
  left: 14%;
  bottom: 10%;
  width: 26%;
  aspect-ratio: 1;
  background: rgba(255, 190, 105, 0.17);
  border-radius: 50%;
  filter: blur(60px);
  animation: sunPulse 6s ease-in-out infinite;
}

@keyframes sunPulse {
  50% { opacity: 0.58; transform: scale(1.1); }
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(28px, 4.5vw, 72px);
  width: min(43%, 590px);
  transform: translateY(-42%);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.08em;
}

.eyebrow {
  margin-bottom: clamp(15px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.76);
}

.status-dot,
.chart-footer i,
.terminal-live i,
.buy-route i {
  width: 7px;
  height: 7px;
  flex: none;
  display: inline-block;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--mint);
  animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
  50% { opacity: 0.42; }
}

.eyebrow-divider {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero h1,
.world h2,
.live h2,
.how h2,
.final-cta h2,
.buy-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(43px, 5vw, 82px);
  line-height: 0.88;
  text-shadow: 0 6px 35px rgba(0, 0, 0, 0.45);
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  padding-left: 0.35em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.86);
  font-style: normal;
}

.hero h1 span:last-child {
  color: var(--mint);
}

.hero-intro {
  max-width: 490px;
  margin: clamp(16px, 2vw, 28px) 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(20px, 2.4vw, 34px);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.02em;
  transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms var(--ease);
}

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

.button svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: var(--ink);
  background: var(--mint);
  box-shadow: 5px 5px 0 var(--coral);
}

.button-primary:hover {
  box-shadow: 7px 8px 0 var(--coral);
}

.button-glass {
  color: var(--white);
  background: rgba(9, 10, 26, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.button-glass:hover,
.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.roblox-glyph {
  width: 18px;
  aspect-ratio: 1;
  display: inline-block;
  border: 5px solid currentColor;
  transform: rotate(12deg);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font: 400 9px/1.4 var(--mono);
  letter-spacing: 0.02em;
}

.hero-note span {
  padding: 4px 5px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
}

.world-chart {
  position: absolute;
  z-index: 2;
  top: 27.3%;
  left: 49.75%;
  width: 38.8%;
  height: 44.4%;
  overflow: hidden;
  color: #eafdfa;
  background: #070b11;
  clip-path: polygon(0.8% 7.4%, 98.4% 0, 99.2% 99%, 0.9% 95.3%);
}

.world-chart::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(114, 246, 226, 0.08), transparent 32%, rgba(255, 255, 255, 0.035) 54%, transparent 67%);
}

.chart-scanlines {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background: repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(114, 246, 226, 0.13) 4px);
}

.chart-head {
  position: absolute;
  z-index: 3;
  top: 9%;
  right: 7%;
  left: 7%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.chart-head > div:first-child {
  display: grid;
  gap: 4px;
}

.chart-pair {
  color: var(--mint);
  font: 700 clamp(6px, 0.58vw, 10px)/1 var(--mono);
  letter-spacing: 0.04em;
}

.chart-head strong {
  font: 700 clamp(10px, 1.2vw, 20px)/1 var(--mono);
}

.chart-change {
  padding: 5px 7px;
  color: var(--mint);
  background: rgba(114, 246, 226, 0.08);
  border: 1px solid rgba(114, 246, 226, 0.26);
  border-radius: 4px;
  font: 700 clamp(5px, 0.48vw, 8px)/1 var(--mono);
}

.chart-change.is-negative {
  color: var(--coral);
  background: rgba(255, 90, 120, 0.08);
  border-color: rgba(255, 90, 120, 0.26);
}

.world-chart canvas {
  position: absolute;
  inset: 25% 4% 12%;
  width: 92%;
  height: 63%;
}

.chart-footer {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 5%;
  left: 6%;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font: 400 clamp(4px, 0.39vw, 7px)/1 var(--mono);
}

.chart-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.chart-footer i {
  width: 4px;
  height: 4px;
}

.chart-footer a:hover {
  color: var(--mint);
}

.scene-hud {
  position: absolute;
  z-index: 3;
  right: clamp(25px, 3vw, 48px);
  bottom: clamp(20px, 2.7vw, 42px);
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.63);
  font: 700 clamp(6px, 0.52vw, 9px)/1 var(--mono);
}

.hud-key {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-left: 8px;
  color: var(--white);
  background: rgba(9, 10, 26, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.experience-shell {
  position: relative;
  z-index: 8;
  width: min(1240px, calc(100vw - 54px));
  margin: -42px auto 0;
}

.experience-label {
  width: max-content;
  max-width: calc(100% - 28px);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 22px;
  padding: 10px 14px 9px;
  color: var(--white);
  background: #202226;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px 10px 0 0;
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.06em;
}

.experience-platform-mark {
  position: relative;
  width: 15px;
  aspect-ratio: 1;
  display: inline-block;
  background: var(--white);
  transform: rotate(12deg);
}

.experience-platform-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #202226;
}

.experience-label-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
  color: #73e6a4;
}

.experience-label-status.is-missing {
  color: var(--sand);
}

.experience-label-status.is-missing i {
  background: var(--sand);
  box-shadow: 0 0 10px rgba(255, 202, 122, 0.65);
}

.experience-label-status i,
.experience-foot i {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #00b06f;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 176, 111, 0.65);
}

.experience-card {
  --card-rx: 0deg;
  --card-ry: 0deg;
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  gap: 0;
  padding: 12px;
  color: #191b1f;
  background: #f2f3f5;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 8px 9px 0 rgba(114, 246, 226, 0.68);
}

.experience-card.tilt-reactive {
  transform: perspective(1400px) rotateX(var(--card-rx)) rotateY(var(--card-ry));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, box-shadow 240ms ease;
}

.experience-card.tilt-reactive::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background: radial-gradient(circle at var(--card-x) var(--card-y), rgba(255,255,255,.6), transparent 24%);
  border-radius: inherit;
  mix-blend-mode: soft-light;
}

.experience-card.tilt-reactive:hover {
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.5), 9px 10px 0 rgba(114, 246, 226, 0.76);
}

.experience-thumbnail {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #14151a;
  border-radius: 10px;
}

.experience-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 6, 12, 0.5));
  transition: background 220ms ease;
}

.experience-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms var(--ease);
}

.experience-thumbnail img.actual-place-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experience-thumbnail:hover img {
  transform: scale(1.025);
}

.experience-thumbnail:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 45%, rgba(5, 6, 12, 0.58));
}

.thumbnail-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(20, 21, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  backdrop-filter: blur(10px);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.05em;
}

.thumbnail-badge i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--mint);
}

.thumbnail-play {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #00b06f;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 180ms var(--ease), background 180ms ease;
}

.experience-thumbnail:hover .thumbnail-play {
  background: #00c97f;
  transform: scale(1.08);
}

.thumbnail-play svg,
.launch-play svg {
  width: 22px;
  fill: currentColor;
  stroke: none;
}

.experience-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 7px 28px;
}

.experience-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.experience-icon {
  position: relative;
  width: 66px;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, #72f6e2, #63decc);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 13px;
  box-shadow: 4px 4px 0 #ff5a78;
}

.experience-icon::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 33px;
  aspect-ratio: 1;
  background: #17191d;
  transform: rotate(13deg);
}

.experience-icon-hole {
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 27px;
  width: 11px;
  aspect-ratio: 1;
  background: var(--mint);
  transform: rotate(13deg);
}

.experience-type {
  margin-bottom: 5px;
  color: #6c6e73;
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.08em;
}

.experience-heading h2 {
  overflow: hidden;
  margin: 0;
  color: #191b1f;
  font: 800 clamp(23px, 2.3vw, 34px)/1.04 var(--body);
  letter-spacing: -0.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-heading h2 span {
  color: #73767d;
  font-weight: 600;
}

.experience-heading p {
  margin: 7px 0 0;
  color: #686a70;
  font-size: 12px;
}

.experience-heading p strong {
  color: #25272b;
}

.creator-check {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  margin-left: 3px;
  color: #fff;
  background: #1976d2;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.experience-description {
  margin: 23px 0 0;
  color: #5d6067;
  font-size: 13px;
  line-height: 1.48;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.experience-tags span {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  color: #4f5258;
  background: #e2e4e7;
  border-radius: 6px;
  font: 700 8px/1 var(--mono);
}

.experience-tags svg {
  width: 13px;
  height: 13px;
}

.roblox-launch {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  margin-top: auto;
  padding: 9px 15px 9px 9px;
  color: #fff;
  background: #00a86b;
  border: 1px solid #008c59;
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 5px 0 #007a4d;
  transition: background 160ms ease, transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.roblox-launch:hover {
  background: #00ba76;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 7px 0 #007a4d;
  transform: translateY(-2px);
}

.roblox-launch:active {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 2px 0 #007a4d;
  transform: translateY(3px);
}

.launch-play {
  width: 45px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.launch-copy {
  display: grid;
  gap: 4px;
}

.launch-copy strong {
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.launch-copy small {
  color: rgba(255, 255, 255, 0.72);
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.04em;
}

.launch-arrow {
  width: 22px;
}

.experience-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 15px;
  color: #7a7c82;
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.04em;
}

.experience-foot span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker {
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
  color: var(--ink);
  background: var(--mint);
  border-block: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(-0.6deg) scale(1.01);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 13px 0;
  font: 400 16px/1 var(--display);
  animation: tickerMove 24s linear infinite;
}

.ticker-track i {
  color: var(--coral);
  font-style: normal;
}

@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

.section-shell {
  width: min(1240px, calc(100vw - 40px));
  margin-inline: auto;
}

.world,
.live,
.how {
  padding-top: clamp(110px, 12vw, 180px);
}

.section-kicker {
  justify-content: space-between;
  padding-bottom: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.section-kicker span:last-child {
  color: var(--mint);
}

.world-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
  padding: clamp(42px, 6vw, 80px) 0 clamp(50px, 7vw, 96px);
}

.world h2,
.live h2,
.how h2 {
  font-size: clamp(62px, 9.2vw, 134px);
  line-height: 0.83;
}

.world h2 span,
.live h2 span,
.how h2 span,
.final-cta h2 span,
.buy-panel h2 span {
  color: var(--mint);
}

.world-heading p,
.live-copy > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

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

.feature-card:first-child {
  grid-row: span 2;
  min-height: 976px;
}

.feature-index {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.08em;
}

.feature-copy {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.feature-copy h3 {
  margin: 0;
  font: 400 clamp(32px, 4vw, 58px)/0.92 var(--display);
  letter-spacing: -0.04em;
}

.feature-copy p {
  max-width: 490px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-chart {
  background:
    linear-gradient(180deg, transparent 45%, rgba(9, 10, 26, 0.96) 78%),
    radial-gradient(circle at 50% 23%, rgba(114, 246, 226, 0.14), transparent 47%),
    var(--panel);
}

.mini-candles {
  position: absolute;
  top: 10%;
  right: 7%;
  left: 7%;
  height: 53%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8% 5%;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 100% 25%, 16.66% 100%;
  border: 1px solid rgba(114, 246, 226, 0.15);
  border-radius: 13px;
  transform: perspective(900px) rotateX(3deg) rotateY(-6deg);
  box-shadow: 0 0 80px rgba(114, 246, 226, 0.08);
}

.mini-candles i {
  position: relative;
  width: 4.5%;
  height: var(--h, 30%);
  background: var(--mint);
  box-shadow: 0 0 14px rgba(114, 246, 226, 0.35);
}

.mini-candles i::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: 50%;
  width: 1px;
  background: inherit;
}

.mini-candles i:nth-child(2),
.mini-candles i:nth-child(5),
.mini-candles i:nth-child(8),
.mini-candles i:nth-child(11) { background: var(--coral); }
.mini-candles i:nth-child(1) { --h: 21%; margin-top: 35%; }
.mini-candles i:nth-child(2) { --h: 17%; margin-top: 18%; }
.mini-candles i:nth-child(3) { --h: 34%; margin-top: 2%; }
.mini-candles i:nth-child(4) { --h: 25%; margin-top: -22%; }
.mini-candles i:nth-child(5) { --h: 13%; margin-top: -10%; }
.mini-candles i:nth-child(6) { --h: 39%; margin-top: -32%; }
.mini-candles i:nth-child(7) { --h: 23%; margin-top: -6%; }
.mini-candles i:nth-child(8) { --h: 31%; margin-top: 10%; }
.mini-candles i:nth-child(9) { --h: 42%; margin-top: -15%; }
.mini-candles i:nth-child(10) { --h: 29%; margin-top: -31%; }
.mini-candles i:nth-child(11) { --h: 16%; margin-top: -20%; }

.feature-voice {
  background: var(--mint);
  color: var(--ink);
}

.feature-voice .feature-index,
.feature-voice .feature-copy p {
  color: rgba(9, 10, 26, 0.62);
}

.voice-orbit {
  position: absolute;
  top: 14%;
  right: 11%;
  width: 230px;
  aspect-ratio: 1;
  border: 1px dashed rgba(9, 10, 26, 0.25);
  border-radius: 50%;
  animation: slowRotate 18s linear infinite;
}

@keyframes slowRotate { to { transform: rotate(360deg); } }

.voice-avatar {
  position: absolute;
  width: 66px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 5px solid var(--mint);
  border-radius: 16px;
  font: 400 22px/1 var(--display);
  box-shadow: 0 0 0 1px var(--ink);
}

.voice-a { top: -12px; left: 18px; transform: rotate(-8deg); }
.voice-b { right: -12px; top: 90px; color: var(--ink); background: var(--coral); transform: rotate(7deg); }
.voice-c { bottom: -15px; left: 55px; }

.voice-waves {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  align-items: center;
  gap: 5px;
  transform: translate(-50%, -50%);
}

.voice-waves i {
  width: 5px;
  height: 20px;
  background: var(--coral);
  border-radius: 8px;
  animation: voiceWave 1s ease-in-out infinite alternate;
}

.voice-waves i:nth-child(2) { animation-delay: -0.55s; }
.voice-waves i:nth-child(3) { height: 42px; animation-delay: -0.2s; }
.voice-waves i:nth-child(4) { animation-delay: -0.7s; }
.voice-waves i:nth-child(5) { animation-delay: -0.4s; }

@keyframes voiceWave { to { height: 49px; } }

.feature-sunset {
  background:
    linear-gradient(180deg, rgba(9, 10, 26, 0.05), rgba(9, 10, 26, 0.96)),
    linear-gradient(160deg, #58367a 4%, #ff7584 44%, #ffc97a 73%, #3f88b5 74%, #0d617c 100%);
}

.pixel-sun {
  position: absolute;
  top: 5%;
  right: 8%;
  width: 175px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(255, 210, 124, 0.2);
  border: 1px solid rgba(255, 231, 187, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 202, 122, 0.42);
}

.pixel-sun span {
  width: 61%;
  aspect-ratio: 1;
  display: block;
  background: var(--sand);
  border-radius: 50%;
  box-shadow: 0 0 45px var(--sand);
}

.scroll-signal {
  position: fixed;
  z-index: 180;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.05);
}

.scroll-signal span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--mint), var(--sand), var(--coral));
  box-shadow: 0 0 14px rgba(114, 246, 226, 0.65);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.harbor-core {
  position: relative;
  min-height: 980px;
  margin-top: clamp(130px, 15vw, 220px);
  padding: 0 0 clamp(110px, 12vw, 170px);
  overflow: hidden;
  isolation: isolate;
  content-visibility: auto;
  contain-intrinsic-size: 1050px;
}

.harbor-core::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 7% 0 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(114, 246, 226, 0.11), transparent 31rem),
    linear-gradient(180deg, transparent, rgba(16, 24, 45, 0.84) 25%, rgba(7, 9, 24, 0.98));
  border-block: 1px solid rgba(114, 246, 226, 0.11);
}

html[data-market-mood="negative"] .harbor-core::before {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 90, 120, 0.115), transparent 31rem),
    linear-gradient(180deg, transparent, rgba(27, 18, 38, 0.84) 25%, rgba(7, 9, 24, 0.98));
}

.signal-field {
  position: absolute;
  z-index: -2;
  inset: 8% 0 0;
  width: 100%;
  height: 92%;
  opacity: 0.5;
  pointer-events: none;
}

.core-word {
  position: absolute;
  z-index: -1;
  top: 15%;
  left: 50%;
  color: transparent;
  font: 400 clamp(145px, 23vw, 360px)/0.75 var(--display);
  letter-spacing: -0.08em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(114, 246, 226, 0.1);
  transform: translateX(-52%);
  user-select: none;
}

.core-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 42px));
  margin: 0 auto;
}

.core-kicker span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.core-kicker i {
  width: 6px;
  height: 6px;
  display: inline-block;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--mint);
}

.core-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
  padding-top: clamp(48px, 6vw, 82px);
}

.core-heading > div > p {
  margin: 0 0 19px;
  color: var(--coral);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.09em;
}

.core-heading h2 {
  margin: 0;
  font: 400 clamp(67px, 9vw, 132px)/0.82 var(--display);
  letter-spacing: -0.055em;
}

.core-heading h2 span {
  color: var(--mint);
}

.core-heading-copy {
  max-width: 460px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.core-theater {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(170px, 0.58fr) minmax(430px, 1.55fr) minmax(230px, 0.72fr);
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  margin-top: clamp(45px, 6vw, 78px);
  padding: 24px;
  background: rgba(7, 9, 23, 0.62);
  border: 1px solid rgba(114, 246, 226, 0.16);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 45px 100px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(5px);
}

.core-readout,
.core-console {
  position: relative;
  z-index: 4;
  padding: 20px;
  background: rgba(10, 13, 29, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.readout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--mint);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.07em;
}

.readout-head i {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--mint);
}

.readout-block {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.readout-block span,
.console-label,
.console-price span,
.console-row > span {
  color: rgba(255, 255, 255, 0.39);
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.08em;
}

.readout-block strong {
  color: rgba(255, 255, 255, 0.79);
  font: 700 10px/1.45 var(--mono);
}

.readout-meter {
  height: 78px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding-top: 18px;
}

.readout-meter span {
  width: 100%;
  height: var(--level);
  background: linear-gradient(180deg, var(--mint), rgba(114, 246, 226, 0.1));
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 13px rgba(114, 246, 226, 0.18);
  transform-origin: bottom;
  animation: meterSignal 2.6s ease-in-out infinite alternate;
}

.readout-meter span:nth-child(2) { animation-delay: -1.5s; }
.readout-meter span:nth-child(3) { animation-delay: -.8s; }
.readout-meter span:nth-child(4) { animation-delay: -2s; }
.readout-meter span:nth-child(5) { animation-delay: -.3s; }

@keyframes meterSignal {
  to { transform: scaleY(.55); opacity: .52; }
}

.core-stage {
  --pointer-x: 50%;
  --pointer-y: 44%;
  position: relative;
  min-width: 0;
  height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1050px;
  cursor: grab;
  touch-action: none;
  outline-offset: -5px;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.09), transparent 18%),
    radial-gradient(circle at center, rgba(114, 246, 226, 0.1), transparent 50%);
  contain: layout paint;
}

.core-stage:active {
  cursor: grabbing;
}

.core-stage::before,
.core-stage::after {
  content: "";
  position: absolute;
  inset: 9%;
  pointer-events: none;
  border: 1px dashed rgba(114, 246, 226, 0.16);
  border-radius: 50%;
  animation: coreOrbit 24s linear infinite;
}

.core-stage::after {
  inset: 18%;
  border-style: solid;
  border-color: rgba(255, 90, 120, 0.13);
  animation-direction: reverse;
  animation-duration: 17s;
}

@keyframes coreOrbit { to { transform: rotate(360deg); } }

.core-orbit {
  position: absolute;
  z-index: 0;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(114, 246, 226, 0.12);
  border-radius: 50%;
  transform: rotateX(67deg) rotateZ(11deg);
  box-shadow: 0 0 28px rgba(114, 246, 226, 0.04);
}

.core-orbit-b {
  width: 59%;
  border-color: rgba(255, 90, 120, 0.13);
  transform: rotateX(69deg) rotateZ(-36deg);
}

.coin-rig {
  position: relative;
  z-index: 3;
  width: clamp(260px, 28vw, 355px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(-9deg) rotateY(22deg) rotateZ(-5deg);
  transform-origin: 50% 50%;
  opacity: 1;
  will-change: transform;
  backface-visibility: visible;
}

.coin-depth,
.coin-face,
.coin-layer {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  clip-path: polygon(50% 0, 69% 4%, 85% 14%, 96% 31%, 100% 50%, 96% 69%, 85% 86%, 69% 96%, 50% 100%, 31% 96%, 15% 86%, 4% 69%, 0 50%, 4% 31%, 15% 14%, 31% 4%);
}

.coin-layer {
  background: linear-gradient(145deg, #2c998f, #143e4a 52%, #ff5a78);
  border: 1px solid rgba(8, 10, 24, 0.55);
  transform: translateZ(var(--layer-z));
}

.coin-face {
  overflow: hidden;
  backface-visibility: hidden;
  border: 2px solid rgba(255, 255, 255, 0.38);
}

.coin-face-front {
  background:
    radial-gradient(circle at 28% 23%, rgba(255, 255, 255, 0.55), transparent 9%),
    conic-gradient(from 210deg, #2da49a, #9cfff0 25%, #50dcc9 48%, #14717a 73%, #ff6a83 92%, #2da49a);
  box-shadow:
    inset 0 0 0 12px rgba(8, 11, 25, 0.18),
    inset 0 0 0 15px rgba(255, 255, 255, 0.12),
    inset -20px -22px 38px rgba(4, 25, 32, 0.42),
    0 0 55px rgba(114, 246, 226, 0.26);
  transform: translateZ(24px);
}

html[data-market-mood="negative"] .coin-face-front {
  background:
    radial-gradient(circle at 28% 23%, rgba(255, 255, 255, 0.5), transparent 9%),
    conic-gradient(from 210deg, #8d2845, #ff9aad 25%, #ff5a78 50%, #693553 73%, #72f6e2 92%, #8d2845);
  box-shadow: inset 0 0 0 12px rgba(8, 11, 25, 0.18), inset 0 0 0 15px rgba(255, 255, 255, 0.1), 0 0 55px rgba(255, 90, 120, 0.28);
}

.coin-face-front::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(8, 11, 25, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08), inset 0 0 28px rgba(8, 11, 25, 0.16);
}

.coin-face-back {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ff8096, #ba3c61 55%, #173f4b);
  box-shadow: inset 0 0 0 13px rgba(8, 11, 25, 0.18), inset 0 0 0 16px rgba(255, 255, 255, 0.1);
  transform: rotateY(180deg) translateZ(24px);
}

.coin-r {
  position: absolute;
  z-index: 5;
  inset: 50% auto auto 50%;
  color: #0b1020;
  font: 400 clamp(115px, 13vw, 170px)/1 var(--display);
  letter-spacing: -0.08em;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.16), 7px 8px 0 rgba(255, 90, 120, 0.28);
  transform: translate(-54%, -50%);
}

.coin-square {
  position: absolute;
  z-index: 6;
  top: 26%;
  right: 24%;
  width: 16%;
  aspect-ratio: 1;
  border: clamp(5px, .55vw, 9px) solid rgba(11, 16, 32, 0.92);
  transform: rotate(13deg);
}

.coin-micro,
.coin-chain {
  position: absolute;
  z-index: 5;
  color: rgba(8, 12, 27, 0.65);
  font: 700 clamp(5px, .43vw, 7px)/1.4 var(--mono);
  letter-spacing: 0.07em;
}

.coin-micro { top: 18%; left: 22%; }
.coin-chain { right: 18%; bottom: 20%; }

.coin-stud {
  position: absolute;
  z-index: 3;
  width: 4.6%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(8, 12, 27, 0.28);
  border-radius: 50%;
  box-shadow: inset -2px -2px 3px rgba(8, 12, 27, 0.2), 0 2px 4px rgba(255, 255, 255, 0.22);
}

.coin-back-mark {
  color: #111729;
  font: 400 clamp(82px, 9vw, 124px)/1 var(--display);
  letter-spacing: -0.09em;
}

.coin-back-copy {
  position: absolute;
  bottom: 21%;
  color: rgba(17, 23, 41, 0.65);
  text-align: center;
  font: 700 7px/1.35 var(--mono);
  letter-spacing: 0.07em;
}

.core-beacons {
  position: absolute;
  z-index: 2;
  inset: 50%;
  pointer-events: none;
}

.core-beacon {
  --beacon-color: var(--mint);
  position: absolute;
  width: 9px;
  height: var(--beacon-height);
  background: var(--beacon-color);
  border-radius: 2px;
  box-shadow: 0 0 14px color-mix(in srgb, var(--beacon-color) 55%, transparent);
  transform: rotate(var(--beacon-angle)) translateX(var(--beacon-radius)) rotate(calc(var(--beacon-angle) * -1));
  animation: beaconSignal var(--beacon-speed) ease-in-out infinite alternate;
}

.core-beacon::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: 50%;
  width: 1px;
  background: var(--beacon-color);
}

.core-beacon.is-down { --beacon-color: var(--coral); }

@keyframes beaconSignal {
  to { opacity: .42; transform: rotate(var(--beacon-angle)) translateX(calc(var(--beacon-radius) * .94)) rotate(calc(var(--beacon-angle) * -1)) scaleY(.65); }
}

.core-shadow {
  position: absolute;
  z-index: 1;
  bottom: 16%;
  left: 50%;
  width: 48%;
  height: 11%;
  background: rgba(0, 0, 0, 0.54);
  border-radius: 50%;
  filter: blur(16px);
  transform: translateX(-50%);
}

.drag-hint {
  position: absolute;
  z-index: 5;
  bottom: 6%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(8, 10, 24, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.06em;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
  transition: opacity 220ms ease;
}

.drag-hint svg { width: 15px; }
.core-stage.is-interacting .drag-hint { opacity: 0; }

.core-console {
  padding: 20px;
}

.console-label {
  padding-bottom: 13px;
  color: var(--mint);
  border-bottom: 1px solid var(--line);
}

.console-price {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.console-price strong {
  overflow: hidden;
  font: 700 clamp(18px, 2vw, 28px)/1 var(--mono);
  text-overflow: ellipsis;
}

.console-row {
  display: grid;
  gap: 8px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.console-row strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font: 700 8px/1.3 var(--mono);
}

.console-row strong i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--mint);
}

html[data-market-mood="negative"] .console-row strong i {
  background: var(--coral);
  box-shadow: 0 0 12px var(--coral);
}

.core-spin,
.core-buy {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--ink);
  background: var(--mint);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: 700 8px/1 var(--mono);
  box-shadow: 4px 4px 0 var(--coral);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.core-spin:hover,
.core-buy:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--coral);
}

.core-spin svg { width: 16px; }

.core-buy {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.core-buy:hover {
  color: var(--ink);
  background: var(--coral);
  box-shadow: none;
}

.core-footline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 16px 4px 0;
  color: rgba(255, 255, 255, 0.3);
  font: 700 7px/1 var(--mono);
  letter-spacing: 0.06em;
}

.core-footline span:nth-child(2) { text-align: center; }
.core-footline span:last-child { text-align: right; }

.live-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(45px, 7vw, 100px);
  align-items: center;
  padding-top: clamp(55px, 7vw, 100px);
}

.live h2 {
  font-size: clamp(64px, 8vw, 114px);
}

.live-copy > p {
  max-width: 430px;
  margin-top: 30px;
  font-size: 15px;
}

.contract-row {
  margin-top: 38px;
}

.contract-row > span,
.amount-label,
.buy-route,
.buy-kicker {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.08em;
}

.contract-row button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.contract-row button:hover:not(:disabled) {
  border-color: var(--mint);
}

.contract-row button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.contract-row code {
  font: 400 11px/1 var(--mono);
}

.contract-row svg {
  width: 17px;
}

.terminal-card {
  overflow: hidden;
  background: #080b13;
  border: 1px solid rgba(114, 246, 226, 0.32);
  border-radius: 18px;
  box-shadow: 14px 14px 0 rgba(255, 90, 120, 0.5), 0 0 90px rgba(114, 246, 226, 0.08);
}

.terminal-topbar,
.terminal-bottom {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 19px;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid var(--line);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.07em;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots i {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
}

.terminal-dots i:nth-child(2) { background: var(--sand); }
.terminal-dots i:nth-child(3) { background: var(--mint); }

.terminal-live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
}

.terminal-live i { width: 5px; height: 5px; }

.terminal-live[data-feed-state="demo"] { color: var(--sand); }
.terminal-live[data-feed-state="connecting"] { color: #9db7ff; }
.terminal-live[data-feed-state="offline"] { color: var(--coral); }
.terminal-live[data-feed-state="connecting"] i { animation: feedBlink .8s steps(2) infinite; }

@keyframes feedBlink { 50% { opacity: .18; } }

.terminal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.terminal-stats > div {
  min-width: 0;
  display: grid;
  gap: 9px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.terminal-stats > div:last-child { border: 0; }

.terminal-stats span {
  color: rgba(255, 255, 255, 0.4);
  font: 400 8px/1 var(--mono);
}

.terminal-stats strong {
  overflow: hidden;
  color: var(--white);
  font: 700 clamp(12px, 1.2vw, 17px)/1 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal-chart-wrap {
  position: relative;
  height: 410px;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 20%, 12.5% 100%;
}

.terminal-chart-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(114, 246, 226, 0.035), transparent);
  animation: terminalSweep 5s linear infinite;
}

@keyframes terminalSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.terminal-chart-wrap canvas {
  width: 100%;
  height: 100%;
}

.terminal-chart-wrap:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: -2px;
}

.terminal-crosshair {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
}

.terminal-crosshair.is-visible { opacity: 1; }

.terminal-crosshair::before,
.terminal-crosshair::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .22);
  box-shadow: 0 0 10px rgba(114, 246, 226, .08);
}

.terminal-crosshair::before {
  top: 0;
  bottom: 0;
  left: var(--cross-x, 50%);
  width: 1px;
}

.terminal-crosshair::after {
  right: 0;
  left: 0;
  top: var(--cross-y, 50%);
  height: 1px;
}

.chart-inspector {
  position: absolute;
  z-index: 4;
  width: min(230px, calc(100% - 16px));
  display: grid;
  gap: 7px;
  padding: 11px 12px;
  color: var(--white);
  background: rgba(8, 10, 24, .91);
  border: 1px solid rgba(114, 246, 226, .28);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.chart-inspector[hidden] { display: none; }
.chart-inspector strong { color: var(--mint); font: 700 12px/1 var(--mono); }
.chart-inspector span { color: rgba(255,255,255,.52); font: 400 7px/1.45 var(--mono); }

body.portal-launching [data-play-link] {
  animation: portalLaunch 720ms var(--ease) both;
}

@keyframes portalLaunch {
  35% { color: var(--ink); background: var(--mint); box-shadow: 0 0 0 7px rgba(114,246,226,.12), 0 0 46px rgba(114,246,226,.36); transform: translateY(-2px) scale(1.025); }
}

body.has-motion .harbor-core .core-heading,
body.has-motion .harbor-core .core-readout,
body.has-motion .harbor-core .core-console {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 900ms var(--ease);
}

body.has-motion .harbor-core.core-awake .core-heading,
body.has-motion .harbor-core.core-awake .core-readout,
body.has-motion .harbor-core.core-awake .core-console {
  opacity: 1;
  transform: translateY(0);
}

body.has-motion .harbor-core.core-awake .core-readout { transition-delay: 120ms; }
body.has-motion .harbor-core.core-awake .core-console { transition-delay: 220ms; }
.terminal-bottom {
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.terminal-bottom span:nth-child(2) { justify-self: center; color: var(--mint); }
.terminal-bottom span:last-child { justify-self: end; }

.how-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(55px, 7vw, 95px) 0;
}

.how h2 {
  font-size: clamp(64px, 9vw, 132px);
}

.round-buy {
  width: clamp(150px, 16vw, 210px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  background: var(--coral);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: rotate(7deg);
  transition: transform 250ms var(--ease), background 250ms ease;
}

.round-buy:hover {
  background: var(--mint);
  transform: rotate(0deg) scale(1.04);
}

.round-buy span {
  font: 400 clamp(21px, 2.5vw, 34px)/0.92 var(--display);
}

.round-buy svg { width: 25px; }

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

.steps li {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms var(--ease), color 220ms ease;
}

.steps li:hover {
  padding-inline: 18px;
  color: var(--mint);
}

.step-number {
  color: var(--coral);
  font: 700 11px/1 var(--mono);
}

.steps h3 {
  margin: 0;
  font: 400 clamp(24px, 3vw, 42px)/1 var(--display);
  letter-spacing: -0.03em;
}

.steps p {
  max-width: 650px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.step-icon {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: 700 18px/1 var(--mono);
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-top: clamp(130px, 14vw, 210px);
  padding: clamp(90px, 11vw, 150px) 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(9,10,26,.04), rgba(9,10,26,.7)),
    linear-gradient(135deg, #3c2b75, #bb506e 48%, #ffbb6a 100%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 26px;
}

.final-cta::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -25%;
  left: 4%;
  height: 40%;
  background: #0d6c83;
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -12px 0 rgba(114,246,226,.13), 0 -30px 70px rgba(114,246,226,.2);
}

.final-cta > * { position: relative; z-index: 1; }

.final-cta > p {
  margin: 0 0 28px;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.1em;
}

.final-cta h2 {
  font-size: clamp(70px, 11vw, 158px);
  line-height: 0.8;
}

.final-actions {
  justify-content: center;
  margin-top: 45px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 540px) 1fr;
  gap: 40px;
  align-items: end;
  padding: 60px 0 30px;
}

.risk-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.55;
}

.footer-meta {
  justify-self: end;
  display: grid;
  gap: 7px;
  text-align: right;
  color: rgba(255, 255, 255, 0.42);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.06em;
}

.community-rail {
  display: grid;
  grid-template-columns: minmax(270px,.72fr) minmax(420px,1.28fr);
  gap: clamp(35px,7vw,100px);
  align-items: end;
  padding: clamp(95px,12vw,170px) 0 clamp(65px,8vw,110px);
  border-bottom: 1px solid var(--line);
}

.community-rail[hidden] { display: none; }

.community-rail p {
  margin: 0 0 18px;
  color: var(--coral);
  font: 700 8px/1 var(--mono);
  letter-spacing: .1em;
}

.community-rail h2 {
  margin: 0;
  font: 400 clamp(48px,6vw,86px)/.84 var(--display);
  letter-spacing: -.055em;
}

.community-rail h2 span { color: var(--mint); }

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.social-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--white);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: 700 9px/1 var(--mono);
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.social-links a:hover { color: var(--ink); background: var(--mint); transform: translateY(-2px); }
.social-links b { color: var(--coral); font-size: 18px; }
.social-links a:hover b { color: var(--ink); }

.mobile-dock {
  display: none;
}

.buy-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: transparent;
  border: 0;
}

.buy-dialog::backdrop {
  background: rgba(4, 5, 15, 0.76);
  backdrop-filter: blur(10px);
}

.buy-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 520px);
  height: 100%;
  overflow-y: auto;
  padding: 58px clamp(25px, 5vw, 56px) 35px;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 90, 120, 0.14), transparent 19rem),
    var(--ink-soft);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.35);
  animation: panelIn 400ms var(--ease) both;
}

@keyframes panelIn {
  from { transform: translateX(100%); }
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

.dialog-close:hover { background: rgba(255, 255, 255, 0.09); }
.dialog-close svg { width: 19px; }

.buy-kicker {
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: var(--mint);
}

.buy-panel h2 {
  margin-top: 22px;
  font-size: clamp(58px, 8vw, 90px);
  line-height: 0.82;
}

.buy-description {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.buy-token-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.buy-token-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 11px;
  font: 400 22px/1 var(--display);
  box-shadow: 3px 3px 0 var(--coral);
}

.buy-token-row > div:nth-child(2) {
  display: grid;
  gap: 4px;
}

.buy-token-row strong { font: 700 13px/1 var(--mono); }
.buy-token-row span { color: var(--muted); font: 400 8px/1 var(--mono); }
.buy-price { color: var(--mint); font: 700 11px/1 var(--mono); }

.verification-grid {
  display: grid;
  gap: 1px;
  margin-top: 27px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.verification-grid > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(90px, .7fr) minmax(0, 1.3fr) auto;
  gap: 12px;
  align-items: center;
  padding: 0 15px;
  background: #0b0d1c;
}

.verification-grid span {
  color: rgba(255, 255, 255, 0.38);
  font: 700 8px/1 var(--mono);
  letter-spacing: 0.06em;
}

.verification-grid strong,
.verification-grid code {
  overflow: hidden;
  color: var(--white);
  font: 700 10px/1 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verify-light {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--mint);
}

.verify-light.is-waiting {
  background: var(--sand);
  box-shadow: 0 0 12px var(--sand);
}

.verify-light.is-error {
  background: var(--coral);
  box-shadow: 0 0 12px var(--coral);
}

.amount-label { margin-top: 28px; }

.amount-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 12px 15px;
  background: #080a16;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.amount-box:focus-within { border-color: var(--mint); }

.amount-box input {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  font: 700 28px/1 var(--mono);
}

.amount-box strong { color: var(--mint); font: 700 13px/1 var(--mono); }

.amount-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 9px;
}

.amount-presets button {
  padding: 10px 5px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: 700 9px/1 var(--mono);
}

.amount-presets button:hover,
.amount-presets button.is-active {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.buy-route {
  margin-top: 27px;
  padding: 15px 0;
  border-block: 1px solid var(--line);
}

.buy-route strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 700;
}

.buy-route i { width: 5px; height: 5px; }

.buy-continue {
  width: 100%;
  margin-top: 22px;
}

.buy-safety {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  font: 400 9px/1.5 var(--mono);
}

.toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  padding: 13px 17px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 8px;
  font: 700 10px/1 var(--mono);
  box-shadow: 5px 5px 0 var(--coral);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 200ms ease, transform 200ms var(--ease);
}

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

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms var(--ease);
}

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

@media (max-width: 1080px) {
  :root { --page: calc(100vw - 24px); }

  .site-header { padding-inline: 23px; }
  .desktop-nav { gap: 20px; }
  .hero-copy { left: 4%; width: 46%; }
  .hero h1 { font-size: clamp(40px, 5vw, 62px); }
  .hero-intro { max-width: 380px; font-size: 13px; }
  .button { min-height: 46px; padding-inline: 14px; font-size: 9px; }
  .hero-note { display: none; }
  .world-chart { top: 27.1%; }
  .scene-hud { display: none; }
  .experience-shell { width: calc(100vw - 48px); }
  .experience-card { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); }
  .experience-thumbnail { min-height: 295px; }
  .experience-details { padding: 17px 14px 4px 22px; }
  .experience-description { margin-top: 17px; }
  .experience-tags { margin-top: 13px; }
  .core-heading { gap: 42px; }
  .core-theater { grid-template-columns: minmax(420px, 1.45fr) minmax(250px, .72fr); }
  .core-readout { display: none; }
  .core-stage { height: 525px; }
  .terminal-chart-wrap { height: 340px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 20px); }

  body { padding-bottom: 82px; }

  .mobile-dock {
    position: fixed;
    z-index: 88;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 7px;
    background: rgba(9, 10, 26, .84);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 15px;
    box-shadow: 0 18px 48px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.dock-visible .mobile-dock { opacity: 1; pointer-events: auto; transform: translateY(0); }
  body.is-locked .mobile-dock { opacity: 0; pointer-events: none; transform: translateY(16px); }

  .mobile-dock a,
  .mobile-dock button {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--ink);
    background: var(--mint);
    border: 0;
    border-radius: 10px;
    cursor: pointer;
  }

  .mobile-dock button {
    color: var(--white);
    background: rgba(255,90,120,.16);
    border: 1px solid rgba(255,90,120,.42);
  }

  .mobile-dock .roblox-glyph { width: 15px; border-width: 4px; }
  .mobile-dock span:not(.roblox-glyph) { display: grid; gap: 3px; text-align: left; }
  .mobile-dock strong { font: 700 10px/1 var(--mono); }
  .mobile-dock small { font: 700 6px/1 var(--mono); opacity: .58; }
  .mobile-dock svg { width: 15px; }

  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .community-rail { grid-template-columns: 1fr; }

  .desktop-nav,
  .mini-play { display: none; }

  .menu-toggle {
    width: 42px;
    aspect-ratio: 1;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 9px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 9px;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--white);
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    top: 78px;
    right: 10px;
    left: 10px;
    display: grid;
    gap: 1px;
    padding: 8px;
    visibility: hidden;
    background: rgba(9, 10, 26, 0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }

  .mobile-nav a,
  .mobile-nav button {
    padding: 17px;
    color: var(--white);
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 9px;
    font: 700 11px/1 var(--mono);
  }

  .mobile-nav a:hover,
  .mobile-nav button:hover { background: rgba(255,255,255,.07); }

  .hero-scene {
    min-height: 790px;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .experience-shell {
    width: calc(100vw - 28px);
    margin-top: 18px;
  }

  .experience-card {
    grid-template-columns: 1fr;
    padding: 9px;
    box-shadow: 6px 7px 0 rgba(114, 246, 226, 0.62);
  }

  .experience-thumbnail {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .experience-details {
    padding: 22px 13px 10px;
  }

  .experience-description {
    max-width: 600px;
  }

  .roblox-launch {
    margin-top: 22px;
  }

  .harbor-core {
    min-height: 0;
    margin-top: 120px;
    padding-bottom: 110px;
  }

  .core-shell { width: calc(100vw - 30px); }

  .core-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .core-heading-copy { max-width: 620px; }

  .core-theater {
    grid-template-columns: 1fr;
    margin-top: 45px;
    padding: 14px;
  }

  .core-stage { height: 510px; }
  .core-console { max-width: 620px; margin: 0 auto; }
  .core-footline { grid-template-columns: 1fr 1fr; }
  .core-footline span:nth-child(2) { display: none; }
  .core-word { top: 24%; font-size: 44vw; }

  .scene-image {
    height: 52%;
    object-fit: cover;
    object-position: 63% center;
  }

  .scene-grade {
    background:
      linear-gradient(180deg, rgba(6,7,19,.26) 0, rgba(6,7,19,.2) 28%, var(--ink) 52%, var(--ink) 100%),
      linear-gradient(90deg, rgba(6,7,19,.6), transparent 55%);
  }

  .hero-copy {
    top: 92px;
    left: 24px;
    width: calc(100% - 48px);
    transform: none;
  }

  .eyebrow { font-size: 8px; }
  .hero h1 { max-width: 520px; font-size: clamp(45px, 12vw, 78px); }
  .hero-intro { max-width: 510px; margin-top: 20px; }
  .hero-actions { flex-wrap: wrap; }

  .world-chart {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    height: 285px;
    border: 1px solid rgba(114,246,226,.32);
    border-radius: 13px;
    clip-path: none;
    box-shadow: 7px 7px 0 rgba(255,90,120,.55);
  }

  .chart-head { top: 10%; }
  .chart-pair { font-size: 8px; }
  .chart-head strong { font-size: 15px; }
  .chart-change { font-size: 7px; }
  .chart-footer { font-size: 6px; }

  .world-heading,
  .live-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .world-heading { padding-bottom: 58px; }
  .world-heading p { max-width: 550px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card:first-child { min-height: 600px; grid-row: auto; }
  .feature-voice,
  .feature-sunset { min-height: 480px; }
  .live-copy > p { max-width: 600px; }
  .terminal-card { box-shadow: 8px 9px 0 rgba(255,90,120,.5); }
  .footer { grid-template-columns: 1fr 1fr; }
  .risk-copy { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 560px) {
  .section-shell { width: calc(100vw - 28px); }
  .brand-name { font-size: 16px; }
  .brand-mark { width: 30px; border-radius: 7px; box-shadow: 3px 3px 0 var(--coral); }
  .hero { padding-top: 10px; }
  .hero-scene { width: calc(100vw - 12px); min-height: 760px; border-radius: 16px; }
  .hero-copy { top: 82px; left: 18px; width: calc(100% - 36px); }
  .eyebrow-divider,
  .eyebrow span:last-child { display: none; }
  .hero h1 { font-size: clamp(41px, 13vw, 66px); }
  .hero h1 em { padding-left: .2em; }
  .hero-intro { max-width: 330px; font-size: 13px; line-height: 1.5; }
  .hero-actions { align-items: stretch; gap: 9px; }
  .hero-actions .button { flex: 1; min-width: calc(50% - 5px); padding-inline: 10px; }
  .hero-actions .button svg { display: none; }
  .world-chart { right: 12px; bottom: 12px; left: 12px; height: 268px; }
  .experience-shell { width: calc(100vw - 20px); }
  .experience-label {
    width: calc(100% - 16px);
    max-width: none;
    justify-content: flex-start;
    margin-left: 8px;
    font-size: 7px;
  }
  .experience-label-status { margin-left: auto; }
  .experience-heading { gap: 13px; }
  .experience-icon { width: 56px; border-radius: 11px; }
  .experience-icon::before { top: 14px; left: 14px; width: 28px; }
  .experience-icon-hole { top: 23px; left: 23px; width: 10px; }
  .experience-heading h2 { font-size: 21px; }
  .experience-heading p { font-size: 11px; }
  .experience-description { margin-top: 20px; }
  .experience-tags span { font-size: 7px; }
  .roblox-launch { min-height: 61px; }
  .experience-foot { align-items: flex-start; flex-direction: column; }
  .harbor-core { margin-top: 100px; padding-bottom: 90px; }
  .core-shell { width: calc(100vw - 20px); }
  .core-kicker span:first-child { max-width: 55%; }
  .core-heading { padding: 39px 4px 0; }
  .core-heading h2 { font-size: clamp(52px, 16.5vw, 76px); }
  .core-heading-copy { font-size: 14px; }
  .core-theater { padding: 8px; border-radius: 18px; }
  .core-stage { height: 400px; }
  .coin-rig { width: min(245px, 68vw); }
  .coin-r { font-size: 112px; }
  .core-beacon { width: 7px; }
  .drag-hint { bottom: 2%; }
  .core-console { width: 100%; padding: 16px; }
  .core-footline { display: flex; flex-direction: column; }
  .core-footline span:last-child { text-align: left; }
  .signal-field { opacity: .32; }
  .verification-grid > div { grid-template-columns: 82px minmax(0, 1fr) auto; padding-inline: 12px; }
  .ticker-track { font-size: 13px; padding-block: 11px; }
  .world, .live, .how { padding-top: 100px; }
  .world-heading { gap: 28px; padding-top: 40px; }
  .world h2, .live h2, .how h2 { font-size: clamp(51px, 18vw, 83px); }
  .world-heading p, .live-copy > p { font-size: 15px; }
  .feature-card, .feature-card:first-child { min-height: 500px; padding: 20px; }
  .feature-voice, .feature-sunset { min-height: 430px; }
  .feature-copy { right: 20px; bottom: 20px; left: 20px; }
  .feature-copy h3 { font-size: 34px; }
  .voice-orbit { top: 15%; right: 8%; transform: scale(.82); }
  .mini-candles { top: 14%; height: 45%; }
  .terminal-topbar { grid-template-columns: 1fr auto; }
  .terminal-topbar > span:nth-child(2) { display: none; }
  .terminal-stats { grid-template-columns: 1fr 1fr; }
  .terminal-stats > div:nth-child(2) { border-right: 0; }
  .terminal-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .terminal-chart-wrap { height: 300px; }
  .terminal-bottom span:nth-child(2) { display: none; }
  .terminal-bottom { grid-template-columns: 1fr 1fr; }
  .how-title-row { align-items: flex-start; }
  .round-buy { width: 112px; }
  .round-buy span { font-size: 19px; }
  .round-buy svg { width: 18px; }
  .steps li { grid-template-columns: 44px 1fr; gap: 15px; padding-block: 27px; }
  .step-icon { display: none; }
  .steps h3 { font-size: 27px; }
  .steps p { font-size: 13px; }
  .final-cta { width: calc(100vw - 16px); padding-block: 80px; border-radius: 18px; }
  .final-cta h2 { font-size: clamp(60px, 20vw, 95px); }
  .final-actions { flex-direction: column; }
  .final-actions .button { width: min(100%, 300px); }
  .footer { grid-template-columns: 1fr; }
  .risk-copy { grid-column: auto; grid-row: auto; }
  .footer-meta { justify-self: start; text-align: left; }
  .social-links { grid-template-columns: 1fr; }
  .buy-panel { border-left: 0; }
}

@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;
  }
}
