:root {
  --black: #050505;
  --black-2: #090909;
  --black-3: #10100f;
  --paper: #fff7e5;
  --muted: rgba(255, 247, 229, 0.66);
  --muted-2: rgba(255, 247, 229, 0.48);
  --line: rgba(255, 247, 229, 0.12);
  --line-strong: rgba(255, 247, 229, 0.22);
  --gold: #f4b65c;
  --orange: #ff7a4f;
  --amber: #ffd98a;
  --aqua: #69f5df;
  --rose: #ff5b8f;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.52);
  --radius: 24px;
  color-scheme: dark;
  font-family:
    Inter, Satoshi, "SF Pro Display", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  pointer-events: none;
}

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

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

figure {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
}

.mesh {
  position: absolute;
  width: 48vw;
  height: 48vw;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.28;
  transform: translate3d(0, 0, 0);
  animation: mesh-drift 18s ease-in-out infinite alternate;
}

.mesh-one {
  top: -18vw;
  right: -10vw;
  background: radial-gradient(circle, rgba(244, 182, 92, 0.78), transparent 64%);
}

.mesh-two {
  top: 16vh;
  left: -18vw;
  background: radial-gradient(circle, rgba(255, 91, 143, 0.46), transparent 62%);
  animation-delay: -5s;
}

.mesh-three {
  right: 8vw;
  bottom: -24vw;
  background: radial-gradient(circle, rgba(105, 245, 223, 0.32), transparent 66%);
  animation-delay: -9s;
}

@keyframes mesh-drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(0.94);
  }

  to {
    transform: translate3d(3%, 2%, 0) scale(1.08);
  }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(240px, max-content) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(24px);
}

.site-nav::after {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: -1px;
  left: clamp(18px, 4vw, 58px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.58), transparent);
  content: "";
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  overflow: visible;
  color: inherit;
  text-decoration: none;
}

.brand-with-logo {
  align-items: center;
  gap: 0;
}

.brand-logo {
  display: block;
  width: min(160px, 44vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(230, 80, 255, 0.18));
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 13px;
  background:
    radial-gradient(circle at 30% 16%, rgba(255, 247, 229, 0.1), transparent 36%),
    linear-gradient(180deg, #111, #050505 78%);
  color: transparent;
  font-size: 0;
  font-weight: 950;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark::before {
  background: linear-gradient(105deg, #fff5d6 0 28%, #ffd76f 32% 62%, #ff9b4a 100%);
  background-clip: text;
  color: transparent;
  content: "V";
  font-size: 1.38rem;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(244, 182, 92, 0.26);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.brand small {
  max-width: 32ch;
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 650;
}

.nav-cta {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 247, 229, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(244, 182, 92, 0.24);
  background: rgba(255, 247, 229, 0.06);
  color: var(--paper);
  outline: none;
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-color: rgba(244, 182, 92, 0.38);
  background: rgba(244, 182, 92, 0.1);
  color: #ffe7b2;
  white-space: nowrap;
}

.global-market-tape {
  position: sticky;
  top: 112px;
  z-index: 45;
  overflow: hidden;
  height: 36px;
  border-block: 1px solid rgba(244, 182, 92, 0.16);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(18, 13, 7, 0.82), rgba(5, 5, 5, 0.92)),
    rgba(5, 5, 5, 0.84);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.global-market-tape::before,
.global-market-tape::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 16vw;
  content: "";
  pointer-events: none;
}

.global-market-tape::before {
  left: 0;
  background: linear-gradient(90deg, #050505, transparent);
}

.global-market-tape::after {
  right: 0;
  background: linear-gradient(270deg, #050505, transparent);
}

.global-ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  animation: ticker-move 42s linear infinite;
}

.global-ticker-track span {
  color: rgba(255, 247, 229, 0.64);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.global-ticker-track span:nth-child(3n + 1) {
  color: rgba(244, 182, 92, 0.86);
}

main {
  position: relative;
  width: min(100%, 1580px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 48px) clamp(22px, 4vw, 64px);
}

main::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: min(980px, 76vw);
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(244, 182, 92, 0.075) 48% 48.2%, transparent 48.2% 100%),
    radial-gradient(circle at 48% 8%, rgba(244, 182, 92, 0.12), transparent 26%),
    radial-gradient(circle at 52% 42%, rgba(105, 245, 223, 0.055), transparent 18%),
    radial-gradient(circle at 50% 78%, rgba(255, 91, 143, 0.06), transparent 22%);
  content: "";
  opacity: 0.74;
  pointer-events: none;
  transform: translateX(-50%);
}

.compat-anchors {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.96fr);
  min-height: min(720px, calc(100vh - 190px));
  align-items: center;
  overflow: clip;
  gap: clamp(28px, 4.4vw, 70px);
  padding: clamp(16px, 2.5vw, 36px) 0 clamp(34px, 5vw, 72px);
}

.hero-background-media {
  position: absolute;
  top: -6%;
  right: -5%;
  bottom: -12%;
  left: 34%;
  z-index: 0;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 66% 26%, rgba(244, 182, 92, 0.18), transparent 30%),
    radial-gradient(circle at 38% 68%, rgba(255, 91, 143, 0.1), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(92, 166, 244, 0.08), transparent 26%),
    linear-gradient(125deg, rgba(255, 247, 229, 0.035), transparent 34%),
    rgba(5, 5, 5, 0.32);
  opacity: 0.74;
  pointer-events: none;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, #000 34%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 78%, transparent 100%);
  mask-composite: intersect;
}

.hero-background-media::before {
  position: absolute;
  inset: 8% 4% 14%;
  border: 1px solid rgba(255, 247, 229, 0.055);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 64% 48%, rgba(244, 182, 92, 0.14), transparent 24%),
    radial-gradient(circle at 34% 70%, rgba(255, 122, 79, 0.12), transparent 24%);
  background-size: 74px 74px, 74px 74px, auto, auto;
  box-shadow: inset 0 0 80px rgba(5, 5, 5, 0.55);
  content: "";
  transform: rotateX(58deg) rotateZ(-12deg) translateY(4%) scale(1.04);
  transform-origin: center;
  opacity: 0.74;
}

.hero-background-media::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 24%, rgba(244, 182, 92, 0.26), transparent 32%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.44) 42%, rgba(5, 5, 5, 0.82)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.94));
  content: "";
}

.hero-background-media span {
  position: absolute;
  pointer-events: none;
}

.aerial-haze {
  width: 36%;
  height: 30%;
  border-radius: 999px;
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.54;
}

.haze-a {
  right: 16%;
  top: 18%;
  background: rgba(244, 182, 92, 0.22);
}

.haze-b {
  right: 28%;
  bottom: 18%;
  background: rgba(255, 91, 143, 0.12);
}

.aerial-route {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 229, 0.18), rgba(244, 182, 92, 0.5), transparent);
  box-shadow: 0 0 24px rgba(244, 182, 92, 0.16);
  opacity: 0.58;
}

.route-a {
  top: 47%;
  right: 11%;
  width: 56%;
  transform: rotate(13deg);
}

.route-b {
  top: 58%;
  right: 22%;
  width: 42%;
  transform: rotate(-19deg);
}

.aerial-district {
  border: 1px solid rgba(244, 182, 92, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 45% 45%, rgba(244, 182, 92, 0.16), transparent 42%),
    rgba(255, 247, 229, 0.025);
  box-shadow: 0 0 36px rgba(244, 182, 92, 0.08);
}

.district-a {
  right: 18%;
  top: 38%;
  width: 18%;
  height: 12%;
  transform: rotate(-8deg);
}

.district-b {
  right: 43%;
  top: 52%;
  width: 20%;
  height: 13%;
  transform: rotate(8deg);
}

.district-c {
  right: 27%;
  bottom: 18%;
  width: 24%;
  height: 14%;
  transform: rotate(-4deg);
}

.aerial-skyline {
  right: 6%;
  bottom: 17%;
  width: 66%;
  height: 24%;
  background:
    linear-gradient(180deg, transparent 0 26%, rgba(255, 247, 229, 0.08) 26% 100%),
    linear-gradient(90deg, transparent 0 8%, rgba(244, 182, 92, 0.2) 8% 12%, transparent 12% 18%, rgba(255, 247, 229, 0.16) 18% 23%, transparent 23% 31%, rgba(244, 182, 92, 0.28) 31% 36%, transparent 36% 43%, rgba(255, 122, 79, 0.16) 43% 48%, transparent 48% 58%, rgba(244, 182, 92, 0.18) 58% 64%, transparent 64% 76%, rgba(255, 247, 229, 0.14) 76% 80%, transparent 80%);
  clip-path: polygon(0 72%, 7% 72%, 7% 50%, 13% 50%, 13% 68%, 22% 68%, 22% 38%, 29% 38%, 29% 70%, 39% 70%, 39% 26%, 46% 26%, 46% 66%, 56% 66%, 56% 42%, 63% 42%, 63% 72%, 74% 72%, 74% 55%, 80% 55%, 80% 76%, 100% 76%, 100% 100%, 0 100%);
  filter: blur(0.4px);
  opacity: 0.58;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: rgba(244, 182, 92, 0.92);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11.5ch;
  margin-bottom: 24px;
  font-size: clamp(4.1rem, 6.65vw, 8.35rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.92;
  text-wrap: balance;
  word-spacing: 0.055em;
}

.hero-subhead {
  max-width: 56ch;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.55vw, 1.34rem);
  font-weight: 520;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.25), transparent 65% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-70%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(70%);
}

.button.primary {
  border-color: rgba(244, 182, 92, 0.56);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(135deg, var(--gold), var(--orange));
  color: #120d07;
  box-shadow:
    0 20px 54px rgba(244, 182, 92, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button.secondary {
  background: rgba(255, 247, 229, 0.055);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 247, 229, 0.24);
  background: rgba(255, 247, 229, 0.085);
}

.proof-strip {
  display: flex;
  max-width: 680px;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-strip span {
  min-height: 34px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.045);
  color: rgba(255, 247, 229, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.market-signal-strip {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: minmax(220px, 0.62fr) repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(2px, 1vw, 12px) auto clamp(28px, 4.8vw, 64px);
}

.market-signal-strip a,
.signal-intro {
  min-height: 86px;
  border: 1px solid rgba(255, 247, 229, 0.085);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(7, 7, 7, 0.58);
  padding: 16px;
}

.signal-intro {
  display: grid;
  align-content: center;
}

.signal-intro .eyebrow {
  margin-bottom: 8px;
}

.signal-intro h2 {
  margin-bottom: 8px;
  color: var(--paper);
  font-size: clamp(1.35rem, 1.75vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1;
}

.market-signal-strip a {
  display: grid;
  align-content: space-between;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.market-signal-strip a:hover,
.market-signal-strip a:focus-visible {
  border-color: rgba(244, 182, 92, 0.25);
  background:
    linear-gradient(180deg, rgba(244, 182, 92, 0.08), rgba(255, 255, 255, 0.014)),
    rgba(8, 8, 8, 0.66);
  outline: none;
  transform: translateY(-2px);
}

.market-signal-strip span {
  color: rgba(244, 182, 92, 0.82);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.market-signal-strip strong {
  color: rgba(255, 247, 229, 0.9);
  font-size: 0.92rem;
  line-height: 1.2;
}

.signal-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 247, 229, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-width: 0;
  min-height: min(620px, 64vh);
  overflow: clip;
  perspective: 1400px;
}

#empireCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.visual-shell {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 74% 18%, rgba(244, 182, 92, 0.22), transparent 28%),
    radial-gradient(circle at 22% 82%, rgba(255, 91, 143, 0.13), transparent 34%),
    rgba(10, 10, 10, 0.72);
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotateX(3deg) rotateY(-5deg);
  transform-style: preserve-3d;
  backdrop-filter: blur(22px);
}

.visual-shell::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 50% 44%, transparent 0 32%, rgba(5, 5, 5, 0.28) 56%, rgba(5, 5, 5, 0.72));
  content: "";
  pointer-events: none;
}

.visual-shell::after {
  position: absolute;
  right: 10%;
  bottom: 16%;
  width: 70%;
  height: 34%;
  background:
    linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.24), transparent),
    linear-gradient(180deg, rgba(244, 182, 92, 0.16), transparent);
  clip-path: polygon(0 82%, 12% 58%, 22% 72%, 37% 34%, 52% 52%, 67% 18%, 78% 41%, 100% 12%, 100% 100%, 0 100%);
  content: "";
  filter: blur(1px);
  opacity: 0.78;
}

.terminal-topline {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.54);
  color: rgba(255, 247, 229, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  backdrop-filter: blur(20px);
}

.terminal-topline strong {
  color: var(--gold);
}

.terminal-watchlist {
  position: absolute;
  top: 74px;
  left: 24px;
  z-index: 5;
  width: min(290px, calc(100% - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.026)),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.terminal-watchlist::before {
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.7), transparent);
  content: "";
}

.watchlist-head,
.watch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.watchlist-head {
  padding: 16px 16px 14px;
}

.watchlist-head span,
.watch-row span {
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.watchlist-head strong {
  color: var(--paper);
  font-size: 2.25rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
}

.watch-row {
  min-height: 38px;
  padding: 0 16px;
  border-top: 1px solid rgba(255, 247, 229, 0.08);
}

.watch-row strong {
  color: rgba(255, 247, 229, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.watchlist-head strong .count-up,
.watch-row strong .count-up,
.floating-card strong .count-up,
.detail-index strong .count-up {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: none;
}

.promo-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 26px;
  background: rgba(5, 5, 5, 0.5);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.promo-frame img,
.promo-tile img,
.final-cta-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-frame::after,
.promo-tile::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(244, 182, 92, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.78));
  content: "";
  pointer-events: none;
}

.hero-promo-frame {
  top: 92px;
  right: 7%;
  z-index: 1;
  width: 68%;
  height: 54%;
  opacity: 0.78;
  transform: translateZ(4px);
}

.city-promo-frame {
  border-color: rgba(255, 247, 229, 0.09);
  background:
    radial-gradient(circle at 68% 34%, rgba(244, 182, 92, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.58);
}

.city-intel-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 68% 42%, rgba(244, 182, 92, 0.18), transparent 26%),
    radial-gradient(circle at 28% 72%, rgba(92, 166, 244, 0.08), transparent 28%),
    rgba(7, 8, 8, 0.72);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.city-intel-visual::before {
  position: absolute;
  z-index: 0;
  inset: 16% 5% 12%;
  border: 1px solid rgba(255, 247, 229, 0.06);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 66% 36%, rgba(255, 122, 79, 0.16), transparent 26%),
    radial-gradient(circle at 34% 58%, rgba(244, 182, 92, 0.14), transparent 26%);
  background-size: 34px 34px, 34px 34px, auto, auto;
  content: "";
  transform: rotateX(56deg) rotateZ(-14deg) translateY(12%) scale(1.08);
  transform-origin: center;
}

.city-intel-visual::after {
  position: absolute;
  z-index: 1;
  inset: 13% 7% 11%;
  border-radius: 30px;
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 247, 229, 0.07) 22px 24px),
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(255, 247, 229, 0.06) 18px 20px),
    radial-gradient(circle at 72% 34%, rgba(255, 122, 79, 0.16), transparent 26%),
    radial-gradient(circle at 34% 66%, rgba(92, 166, 244, 0.08), transparent 28%);
  content: "";
  opacity: 0.5;
  transform: rotateX(56deg) rotateZ(-14deg) translateY(12%) scale(1.04);
  transform-origin: center;
  animation: city-scan-shift 7s ease-in-out infinite;
}

.city-intel-visual span {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.city-route-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 229, 0.2), rgba(244, 182, 92, 0.72), transparent);
  box-shadow: 0 0 18px rgba(244, 182, 92, 0.22);
  opacity: 0.72;
}

.line-a {
  top: 46%;
  left: 16%;
  width: 74%;
  transform: rotate(10deg);
}

.line-b {
  top: 60%;
  left: 10%;
  width: 66%;
  transform: rotate(-18deg);
}

.line-c {
  top: 28%;
  left: 42%;
  width: 3px;
  height: 56%;
  background: linear-gradient(180deg, transparent, rgba(244, 182, 92, 0.58), transparent);
  transform: rotate(18deg);
}

.city-district-glow {
  border: 1px solid rgba(244, 182, 92, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 182, 92, 0.18), transparent 48%),
    rgba(244, 182, 92, 0.035);
  filter: blur(0.2px);
  animation: district-glow 5.5s ease-in-out infinite;
}

.glow-a {
  right: 16%;
  top: 31%;
  width: 22%;
  height: 17%;
}

.glow-b {
  left: 22%;
  bottom: 24%;
  width: 24%;
  height: 18%;
  animation-delay: -1.6s;
}

.glow-c {
  right: 26%;
  bottom: 20%;
  width: 20%;
  height: 14%;
  animation-delay: -3s;
}

.city-density-block {
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.12) 0 2px, transparent 2px 12px),
    repeating-linear-gradient(180deg, rgba(255, 247, 229, 0.09) 0 2px, transparent 2px 12px),
    rgba(244, 182, 92, 0.035);
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.18), 0 0 28px rgba(244, 182, 92, 0.08);
  opacity: 0.72;
  transform: rotate(-8deg);
}

.density-core {
  top: 33%;
  right: 30%;
  width: 19%;
  height: 18%;
}

.density-beach {
  right: 12%;
  bottom: 24%;
  width: 21%;
  height: 16%;
  transform: rotate(7deg);
}

.density-port {
  left: 14%;
  bottom: 21%;
  width: 23%;
  height: 15%;
  transform: rotate(-5deg);
}

.skyline-block {
  bottom: 18%;
  width: 7%;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 8px 8px 2px 2px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 236, 190, 0.78), rgba(244, 182, 92, 0.34) 46%, rgba(43, 33, 23, 0.78));
  box-shadow: 0 0 24px rgba(244, 182, 92, 0.14);
}

.skyline-a {
  left: 38%;
  height: 34%;
}

.skyline-b {
  left: 49%;
  height: 46%;
}

.skyline-c {
  left: 60%;
  height: 29%;
}

.skyline-d {
  left: 72%;
  height: 39%;
}

.port-silhouette {
  left: 12%;
  bottom: 17%;
  width: 24%;
  height: 18%;
  border: 1px solid rgba(244, 182, 92, 0.1);
  border-radius: 12px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.1) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(180deg, rgba(255, 247, 229, 0.08) 0 2px, transparent 2px 16px),
    rgba(244, 182, 92, 0.035);
  transform: rotate(-6deg);
}

.city-terminal-tower {
  width: 18px;
  height: var(--tower-h, 92px);
  border: 1px solid rgba(255, 247, 229, 0.13);
  border-radius: 6px 6px 2px 2px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.26), transparent 24% 70%, rgba(5, 5, 5, 0.28)),
    linear-gradient(180deg, rgba(255, 236, 190, 0.9), rgba(244, 182, 92, 0.34) 48%, rgba(28, 24, 21, 0.82));
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(244, 182, 92, 0.14);
  opacity: 0.82;
  transform: translate(-50%, -100%) skewY(-8deg);
  transform-origin: bottom center;
}

.city-terminal-tower::before {
  position: absolute;
  top: -8px;
  right: -2px;
  left: 2px;
  height: 10px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(135deg, rgba(255, 247, 229, 0.62), rgba(244, 182, 92, 0.2));
  content: "";
  transform: skewX(-34deg);
}

.city-terminal-tower::after {
  position: absolute;
  inset: 8px 5px auto;
  height: 62%;
  background: repeating-linear-gradient(180deg, rgba(5, 5, 5, 0.32) 0 3px, transparent 3px 10px);
  content: "";
  opacity: 0.42;
}

.terminal-tower-a {
  top: 52%;
  left: 54%;
  --tower-h: 112px;
}

.terminal-tower-b {
  top: 49%;
  left: 59%;
  width: 22px;
  --tower-h: 146px;
}

.terminal-tower-c {
  top: 54%;
  left: 65%;
  --tower-h: 88px;
}

.terminal-tower-d {
  top: 67%;
  left: 35%;
  width: 30px;
  --tower-h: 58px;
}

.terminal-tower-e {
  top: 69%;
  left: 42%;
  width: 26px;
  --tower-h: 70px;
}

.terminal-tower-f {
  top: 48%;
  left: 75%;
  width: 16px;
  --tower-h: 98px;
}

.city-interchange {
  width: 78px;
  height: 42px;
  border: 2px solid rgba(255, 247, 229, 0.14);
  border-radius: 999px;
  box-shadow:
    0 0 24px rgba(244, 182, 92, 0.12),
    inset 0 0 18px rgba(244, 182, 92, 0.08);
  opacity: 0.62;
  transform: rotate(-14deg);
}

.interchange-a {
  right: 24%;
  top: 44%;
}

.interchange-b {
  left: 22%;
  bottom: 30%;
  width: 62px;
  height: 34px;
  transform: rotate(18deg);
}

.city-flow-line {
  height: 3px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.7) 0 8px, transparent 8px 18px),
    linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.5), transparent);
  box-shadow: 0 0 18px rgba(244, 182, 92, 0.24);
  opacity: 0.5;
  animation: terminal-flow 5.8s linear infinite;
}

.flowline-a {
  top: 53%;
  left: 18%;
  width: 72%;
  transform: rotate(11deg);
}

.flowline-b {
  top: 68%;
  left: 14%;
  width: 58%;
  animation-delay: -2s;
  transform: rotate(-13deg);
}

.flowline-c {
  top: 34%;
  left: 44%;
  width: 42%;
  animation-delay: -3.7s;
  transform: rotate(-24deg);
}

.city-hot-zone {
  border: 1px solid rgba(255, 122, 79, 0.18);
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 122, 79, 0.22), transparent 60%);
  filter: blur(0.2px);
  opacity: 0.68;
  animation: city-hot-pulse 4.4s ease-in-out infinite;
}

.hot-zone-a {
  right: 18%;
  bottom: 25%;
  width: 23%;
  height: 13%;
}

.hot-zone-b {
  left: 32%;
  top: 38%;
  width: 21%;
  height: 12%;
  animation-delay: -2.2s;
}

@keyframes terminal-flow {
  to {
    background-position: 72px 0, 0 0;
  }
}

@keyframes city-hot-pulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.98);
  }

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

.scan-node {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 247, 229, 0.48);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.86);
  box-shadow:
    0 0 0 12px rgba(244, 182, 92, 0.07),
    0 0 28px rgba(244, 182, 92, 0.28);
  animation: node-beacon 3.2s ease-in-out infinite;
}

.scan-a {
  right: 22%;
  top: 38%;
}

.scan-b {
  left: 34%;
  bottom: 31%;
  animation-delay: -1.1s;
}

.scan-c {
  right: 36%;
  bottom: 24%;
  animation-delay: -2.3s;
}

.city-label {
  display: inline-grid;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.64);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  color: rgba(255, 236, 190, 0.9);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  padding: 0 9px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.city-label-core {
  top: 31%;
  right: 34%;
}

.city-label-beach {
  right: 12%;
  bottom: 35%;
}

.city-label-port {
  left: 16%;
  bottom: 38%;
}

.traffic-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.86);
  box-shadow: 0 0 14px rgba(244, 182, 92, 0.42);
  animation: hero-traffic-flow 4s linear infinite;
}

.traffic-dot-a {
  top: 45%;
  left: 17%;
}

.traffic-dot-b {
  top: 58%;
  left: 12%;
  animation-delay: -1.3s;
}

.traffic-dot-c {
  top: 45%;
  left: 32%;
  animation-delay: -2.6s;
}

@keyframes hero-traffic-flow {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  12%,
  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(330px);
  }
}

@keyframes city-scan-shift {
  0%,
  100% {
    opacity: 0.38;
    filter: saturate(0.85);
  }

  50% {
    opacity: 0.62;
    filter: saturate(1.2);
  }
}

@keyframes district-glow {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 0.92;
  }
}

.promo-frame figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 247, 229, 0.58);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-alert-stack,
.hero-mini-chart,
.hero-valuation-strip {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 247, 229, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.hero-alert-stack {
  right: 22px;
  top: 86px;
  display: grid;
  width: min(232px, calc(50% - 20px));
  gap: 6px;
  border-radius: 20px;
  padding: 12px;
}

.hero-alert-stack > span,
.hero-mini-chart > span {
  color: rgba(255, 247, 229, 0.5);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-alert-stack div {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 247, 229, 0.075);
  color: rgba(255, 247, 229, 0.66);
  font-size: 0.64rem;
  padding-top: 6px;
}

.hero-alert-stack b {
  font-weight: 900;
}

.hero-alert-stack strong {
  color: rgba(244, 182, 92, 0.96);
  font-weight: 950;
  text-align: right;
  animation: live-signal-flicker 3.4s ease-in-out infinite;
}

.hero-mini-chart {
  right: 28px;
  bottom: 90px;
  display: grid;
  width: 224px;
  gap: 6px;
  border-radius: 20px;
  padding: 12px;
}

.hero-mini-chart svg {
  display: block;
  width: 100%;
  height: 70px;
}

.hero-mini-chart strong {
  color: var(--paper);
  font-size: 1.32rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero-valuation-strip {
  right: 288px;
  bottom: 92px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
}

.hero-valuation-strip span {
  display: grid;
  min-height: 54px;
  align-content: center;
  gap: 4px;
  background: rgba(5, 5, 5, 0.54);
  color: rgba(255, 247, 229, 0.56);
  font-size: 0.62rem;
  font-weight: 900;
  padding: 10px 12px;
  text-transform: uppercase;
}

.hero-valuation-strip b {
  color: rgba(255, 236, 190, 0.98);
  font-size: 1.02rem;
  line-height: 1;
  text-transform: none;
}

.hero-market-feed {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 7;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(20px);
}

.floating-card {
  position: absolute;
  z-index: 5;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026)),
    rgba(9, 9, 9, 0.58);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  animation: card-float 7s ease-in-out infinite;
}

.floating-card span,
.op-card span,
.os-card span,
.why-panel span,
.sector-detail span {
  color: rgba(255, 247, 229, 0.48);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  color: var(--paper);
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.heat-card {
  top: 282px;
  left: 38px;
  width: 218px;
  padding: 16px;
}

.heat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  margin: 14px 0;
}

.heat-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 7px;
  background: rgba(255, 247, 229, 0.08);
}

.heat-grid i:nth-child(3n),
.heat-grid i:nth-child(5n) {
  background: rgba(244, 182, 92, 0.34);
  box-shadow: 0 0 18px rgba(244, 182, 92, 0.18);
}

.heat-grid i:nth-child(7),
.heat-grid i:nth-child(12),
.heat-grid i:nth-child(16) {
  background: rgba(255, 122, 79, 0.72);
  box-shadow: 0 0 22px rgba(255, 122, 79, 0.34);
}

.graph-card {
  top: 128px;
  right: 42px;
  width: 294px;
  padding: 16px;
  animation-delay: -1.5s;
}

.graph-card svg {
  display: block;
  width: 100%;
  margin: 12px 0 10px;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 247, 229, 0.08);
  stroke-width: 1;
}

.graph-fill {
  fill: rgba(244, 182, 92, 0.1);
}

.graph-line {
  fill: none;
  stroke: url("#graphGlow");
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  stroke-linecap: round;
  stroke-width: 4;
  animation: graph-draw 4s ease-in-out infinite;
}

@keyframes graph-draw {
  0% {
    stroke-dashoffset: 400;
  }

  42%,
  100% {
    stroke-dashoffset: 0;
  }
}

.supply-card {
  right: 48px;
  bottom: 132px;
  width: 360px;
  padding: 17px;
  animation-delay: -3s;
}

.chain {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.chain b {
  min-height: 30px;
  padding: 8px 10px;
  border: 1px solid rgba(244, 182, 92, 0.16);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.08);
  color: rgba(255, 247, 229, 0.78);
  font-size: 0.75rem;
}

.chain i {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.flow-card {
  bottom: 104px;
  left: 70px;
  width: 232px;
  padding: 18px;
  animation-delay: -4.4s;
}

.flow-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.78rem;
}

@keyframes card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 30px);
  }

  50% {
    transform: translate3d(0, -14px, 58px);
  }
}

.market-ticker {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 6;
  overflow: hidden;
  min-height: 44px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(20px);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  animation: ticker-move 32s linear infinite;
}

.ticker-track span {
  color: rgba(255, 247, 229, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

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

.early-cinematic-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.36fr);
  min-height: clamp(360px, 42vw, 520px);
  align-items: end;
  overflow: hidden;
  width: min(100%, 1280px);
  margin: clamp(24px, 4vw, 56px) auto clamp(38px, 6vw, 84px);
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 182, 92, 0.2), transparent 31%),
    radial-gradient(circle at 34% 72%, rgba(255, 91, 143, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(30px, 5vw, 70px);
}

.early-cinematic-cta::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.36)),
    url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_09.632112c4.jpg") center right / cover no-repeat;
  content: "";
  filter: saturate(0.86) contrast(1.08) brightness(0.62);
  transform: scale(1.025);
}

.early-cinematic-cta::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 74% 26%, rgba(244, 182, 92, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.68) 43%, rgba(5, 5, 5, 0.34) 70%, rgba(5, 5, 5, 0.76) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.78));
  content: "";
  pointer-events: none;
}

.early-city-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.78;
}

.early-city-atmosphere::before {
  position: absolute;
  right: -3%;
  bottom: 4%;
  width: 72%;
  height: 62%;
  border: 1px solid rgba(255, 247, 229, 0.055);
  border-radius: 44px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 68% 38%, rgba(244, 182, 92, 0.15), transparent 26%),
    radial-gradient(circle at 34% 66%, rgba(255, 122, 79, 0.12), transparent 25%),
    rgba(8, 9, 9, 0.4);
  background-size: 62px 62px, 62px 62px, auto, auto, auto;
  box-shadow: inset 0 0 90px rgba(5, 5, 5, 0.52);
  content: "";
  transform: rotateX(58deg) rotateZ(-12deg) translateY(18%) scale(1.08);
  transform-origin: center;
}

.early-city-atmosphere span {
  position: absolute;
  pointer-events: none;
}

.early-skyline {
  bottom: 12%;
  border: 1px solid rgba(255, 247, 229, 0.11);
  border-radius: 8px 8px 2px 2px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 236, 190, 0.74), rgba(244, 182, 92, 0.34) 45%, rgba(38, 30, 23, 0.78));
  box-shadow: 0 0 28px rgba(244, 182, 92, 0.16);
  opacity: 0.72;
}

.early-skyline-a {
  right: 30%;
  width: 8%;
  height: 42%;
}

.early-skyline-b {
  right: 18%;
  width: 10%;
  height: 30%;
}

.early-route {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 229, 0.18), rgba(244, 182, 92, 0.62), transparent);
  box-shadow: 0 0 20px rgba(244, 182, 92, 0.18);
  opacity: 0.8;
}

.early-route-a {
  right: 10%;
  top: 48%;
  width: 58%;
  transform: rotate(11deg);
}

.early-route-b {
  right: 22%;
  top: 61%;
  width: 44%;
  transform: rotate(-18deg);
}

.early-zone {
  border: 1px solid rgba(244, 182, 92, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 182, 92, 0.2), transparent 48%),
    rgba(244, 182, 92, 0.035);
  box-shadow: 0 0 46px rgba(244, 182, 92, 0.12);
  animation: district-glow 5.4s ease-in-out infinite;
}

.early-zone-a {
  right: 16%;
  top: 29%;
  width: 15%;
  height: 16%;
}

.early-zone-b {
  right: 36%;
  top: 52%;
  width: 18%;
  height: 18%;
  animation-delay: -1.8s;
}

.early-zone-c {
  right: 24%;
  bottom: 18%;
  width: 22%;
  height: 16%;
  animation-delay: -3s;
}

.early-scan {
  right: 16%;
  top: 23%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(244, 182, 92, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 0 28px rgba(244, 182, 92, 0.08), 0 0 40px rgba(244, 182, 92, 0.08);
  animation: radar-pulse 5.8s ease-out infinite;
}

.early-cinematic-copy,
.early-market-strip {
  position: relative;
  z-index: 3;
}

.early-cinematic-copy h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: clamp(2.55rem, 5vw, 6.3rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.early-cinematic-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin-bottom: 24px;
  color: rgba(255, 247, 229, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

.early-market-strip {
  display: grid;
  gap: 10px;
  align-self: end;
  justify-self: end;
  width: min(310px, 100%);
}

.early-market-strip span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.016)),
    rgba(5, 5, 5, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  color: rgba(255, 247, 229, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0 15px;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.early-market-strip b {
  color: rgba(255, 236, 190, 0.98);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.economy-signals-section,
.builder-network-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 1280px);
  margin: clamp(22px, 4vw, 58px) auto;
  border: 1px solid rgba(255, 247, 229, 0.075);
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 16%, rgba(244, 182, 92, 0.12), transparent 34%),
    radial-gradient(circle at 15% 82%, rgba(92, 166, 244, 0.055), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.01)),
    rgba(5, 5, 5, 0.58);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.economy-signals-section::before,
.builder-network-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.022) 1px, transparent 1px);
  background-size: 82px 82px;
  content: "";
  mask-image: radial-gradient(circle at 62% 30%, #000, transparent 74%);
  opacity: 0.52;
}

.economy-signals-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 44%, rgba(5, 5, 5, 0.54) 72%, rgba(5, 5, 5, 0.76) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.74)),
    radial-gradient(circle at 74% 26%, rgba(244, 182, 92, 0.24), transparent 38%),
    url("https://www.rockstargames.com/VI/_next/static/media/Port_Gellhorn_Postcard_landscape.31bacfc2.jpg") center right / cover no-repeat;
  content: "";
  filter: saturate(0.82) contrast(1.1) brightness(0.64);
  opacity: 0.86;
  pointer-events: none;
}

.economy-signals-section > *,
.builder-network-section > * {
  position: relative;
  z-index: 2;
}

.economy-signals-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3.2vw, 38px);
  align-items: start;
  padding: clamp(24px, 3.8vw, 46px);
}

.economy-signals-section h2,
.builder-network-section h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.2rem, 4.8vw, 5.25rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.economy-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.economy-signal-grid article {
  position: relative;
  display: grid;
  min-height: 172px;
  align-content: space-between;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.085);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(18px);
  padding: 16px;
}

.economy-signal-grid article::after {
  position: absolute;
  right: -24%;
  bottom: -36%;
  width: 84%;
  height: 68%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 182, 92, 0.13), transparent 62%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.economy-signal-grid span,
.builder-roster span {
  color: rgba(255, 247, 229, 0.46);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.economy-signal-grid strong {
  color: rgba(255, 236, 190, 0.98);
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.economy-signal-grid p,
.builder-network-copy p {
  margin: 0;
  color: rgba(255, 247, 229, 0.62);
  font-size: 0.92rem;
  line-height: 1.46;
}

.builder-network-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.82fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  padding: clamp(26px, 4vw, 58px);
}

.builder-network-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0.48) 72%, rgba(5, 5, 5, 0.84) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 24% 22%, rgba(244, 182, 92, 0.18), transparent 34%),
    radial-gradient(circle at 78% 30%, rgba(255, 91, 143, 0.1), transparent 32%),
    url("https://www.rockstargames.com/VI/_next/static/media/Real_Dimez_01.c74db009.jpg") center right / cover no-repeat;
  content: "";
  filter: saturate(0.78) contrast(1.08) brightness(0.62);
  opacity: 0.88;
  pointer-events: none;
}

.builder-network-copy {
  display: grid;
  gap: 18px;
}

.builder-network-copy p:not(.eyebrow) {
  max-width: 46ch;
}

.builder-network-copy .button {
  justify-self: start;
}

.builder-roster {
  display: grid;
  gap: 8px;
}

.builder-roster article {
  display: grid;
  grid-template-columns: minmax(135px, 0.34fr) minmax(0, 1fr) auto;
  min-height: 62px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 247, 229, 0.085);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.065), transparent 42%),
    rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 0 16px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.builder-roster article:hover {
  border-color: rgba(244, 182, 92, 0.24);
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.1), transparent 44%),
    rgba(8, 7, 6, 0.72);
  transform: translateY(-2px);
}

.builder-roster strong {
  color: rgba(255, 247, 229, 0.88);
  font-size: 0.98rem;
  font-weight: 850;
}

.builder-roster small {
  min-width: 68px;
  border: 1px solid rgba(244, 182, 92, 0.16);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.075);
  color: rgba(255, 236, 190, 0.86);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 7px 9px;
  text-align: center;
  text-transform: uppercase;
}

.social-proof,
.metric-ribbon,
.live-intel-band,
.signals-section,
.thesis-section,
.signals-section,
.economy-section,
.community-section,
.promo-section,
.section-heading,
.why-section,
.final-cta,
.landing-footer {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.social-proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 247, 229, 0.04);
  backdrop-filter: blur(20px);
}

.social-proof p {
  margin: 0;
  color: rgba(255, 247, 229, 0.8);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 850;
}

.proof-names {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.proof-names span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.42);
  color: rgba(255, 247, 229, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.metric-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) max-content;
  gap: 1px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(244, 182, 92, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.12), transparent 22%, rgba(255, 91, 143, 0.07) 72%, rgba(105, 245, 223, 0.06)),
    rgba(5, 5, 5, 0.7);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.metric-ribbon::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.metric-ribbon div,
.metric-ribbon small {
  position: relative;
  z-index: 1;
}

.metric-ribbon div {
  min-height: 106px;
  padding: 18px;
  background: rgba(5, 5, 5, 0.34);
}

.metric-ribbon span {
  display: block;
  color: var(--paper);
  font-size: clamp(1.75rem, 2.7vw, 3.2rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.metric-ribbon strong {
  display: block;
  max-width: 16ch;
  margin-top: 8px;
  color: rgba(255, 247, 229, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-ribbon small {
  display: grid;
  max-width: 180px;
  min-height: 106px;
  align-items: center;
  padding: 18px;
  color: rgba(255, 247, 229, 0.48);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.35;
}

.live-intel-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr) minmax(150px, 0.24fr);
  gap: 1px;
  overflow: hidden;
  margin-top: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 20%, rgba(244, 182, 92, 0.12), transparent 28%),
    rgba(5, 5, 5, 0.66);
  box-shadow: 0 24px 86px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.live-intel-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.intel-feed-head,
.intel-feed,
.intel-pulse-stack {
  position: relative;
  z-index: 1;
}

.intel-feed-head {
  padding: 20px;
  background: rgba(5, 5, 5, 0.34);
}

.intel-feed-head .eyebrow {
  margin-bottom: 10px;
}

.intel-feed-head strong {
  display: block;
  max-width: 12ch;
  color: var(--paper);
  font-size: clamp(1.5rem, 2.5vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.96;
}

.intel-feed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intel-feed article {
  position: relative;
  min-height: 154px;
  padding: 20px;
  border-left: 1px solid rgba(255, 247, 229, 0.08);
  background: rgba(255, 247, 229, 0.025);
}

.intel-feed article::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 182, 92, 0.86);
  box-shadow: 0 0 22px rgba(244, 182, 92, 0.42);
  content: "";
  animation: pulse 2.6s ease-in-out infinite;
}

.intel-feed article span {
  color: rgba(244, 182, 92, 0.8);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.intel-feed article strong {
  display: block;
  margin-top: 14px;
  color: rgba(255, 247, 229, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.18;
}

.intel-feed article i {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.08);
}

.intel-feed article i::before {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  box-shadow: 0 0 20px rgba(244, 182, 92, 0.28);
  content: "";
  transform-origin: left center;
  animation: bar-breathe 2.9s ease-in-out infinite;
}

@keyframes bar-breathe {
  0%,
  100% {
    transform: scaleX(0.86);
  }

  50% {
    transform: scaleX(1);
  }
}

.intel-pulse-stack {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px;
  border-left: 1px solid rgba(255, 247, 229, 0.08);
}

.intel-pulse-stack span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 182, 92, 0.9), rgba(255, 122, 79, 0.16));
  opacity: 0.42;
  animation: feed-pulse 2.8s ease-in-out infinite;
}

.intel-pulse-stack span:nth-child(2) {
  width: 74%;
  animation-delay: -0.6s;
}

.intel-pulse-stack span:nth-child(3) {
  width: 52%;
  animation-delay: -1.2s;
}

.intel-pulse-stack span:nth-child(4) {
  width: 88%;
  animation-delay: -1.8s;
}

@keyframes feed-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(0);
  }

  50% {
    opacity: 0.82;
    transform: translateX(8px);
  }
}

.thesis-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.82fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: start;
  overflow: hidden;
  scroll-margin-top: 104px;
  padding: clamp(78px, 9vw, 132px) 0 clamp(58px, 7vw, 104px);
}

.thesis-section::before,
.economy-section::before {
  position: absolute;
  inset: 24px -4vw;
  z-index: -1;
  border-block: 1px solid rgba(255, 247, 229, 0.07);
  background:
    radial-gradient(circle at 12% 16%, rgba(244, 182, 92, 0.18), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(105, 245, 223, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.018) 1px, transparent 1px),
    rgba(255, 247, 229, 0.018);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.thesis-copy h2,
.economy-section .section-heading h2 {
  max-width: 11ch;
}

.thesis-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(3.05rem, 6.1vw, 7.05rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.92;
  word-spacing: 0.05em;
}

.thesis-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.32vw, 1.18rem);
  line-height: 1.55;
}

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

.signals-section {
  scroll-margin-top: 104px;
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.signal-card {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.signal-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(244, 182, 92, 0.82);
  box-shadow: 0 0 24px rgba(244, 182, 92, 0.46);
  content: "";
}

.signal-card:hover,
.signal-card:focus-visible {
  border-color: rgba(244, 182, 92, 0.38);
  background:
    linear-gradient(135deg, rgba(244, 182, 92, 0.13), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 8, 0.72);
  outline: none;
  transform: translateY(-3px);
}

.signal-card span,
.economy-card span,
.tier-strip span {
  color: rgba(244, 182, 92, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card h3,
.economy-card h3 {
  margin: 16px 0 10px;
  color: var(--paper);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 950;
  letter-spacing: -0.032em;
  line-height: 1.02;
}

.signal-card p,
.economy-card p {
  margin: 0;
  color: rgba(255, 247, 229, 0.74);
  line-height: 1.5;
}

.proof-card {
  min-height: 268px;
}

.proof-card::before {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.5), transparent);
  content: "";
  opacity: 0.74;
}

.thesis-console {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.022)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.thesis-console::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(244, 182, 92, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.034) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.026) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  content: "";
  pointer-events: none;
}

.console-head,
.ledger-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
}

.console-head {
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.1);
}

.console-head span,
.ledger-row span {
  color: rgba(244, 182, 92, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-head strong {
  color: var(--paper);
  font-size: clamp(1.65rem, 2.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.96;
}

.ledger-row {
  border-bottom: 1px solid rgba(255, 247, 229, 0.075);
}

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

.ledger-row strong {
  color: rgba(255, 247, 229, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.35;
}

.economy-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 104px;
  padding: clamp(78px, 9vw, 132px) 0 clamp(64px, 7vw, 112px);
}

.economy-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.economy-card {
  position: relative;
  min-height: 294px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.024)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.economy-card::before {
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.54), transparent);
  content: "";
}

.economy-card.featured {
  border-color: rgba(244, 182, 92, 0.22);
  background:
    radial-gradient(circle at 86% 12%, rgba(244, 182, 92, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.84);
}

.priority-card {
  grid-column: span 2;
  min-height: 390px;
  padding: 24px;
}

.priority-card h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
}

.priority-card i,
.compact-card i {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 247, 229, 0.09);
  color: rgba(244, 182, 92, 0.8);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compact-card {
  grid-column: span 2;
  min-height: 214px;
}

.compact-card h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  letter-spacing: -0.025em;
}

.tier-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.tier-strip div {
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(255, 247, 229, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.024)),
    rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(18px);
}

.tier-strip strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 247, 229, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.32;
}

.community-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 104px;
  padding: clamp(54px, 7vw, 96px) 0 clamp(28px, 5vw, 58px);
}

.community-section::before {
  position: absolute;
  inset: 20px -4vw 0;
  z-index: -1;
  border-block: 1px solid rgba(255, 247, 229, 0.07);
  background:
    radial-gradient(circle at 18% 24%, rgba(244, 182, 92, 0.16), transparent 34%),
    radial-gradient(circle at 82% 56%, rgba(105, 245, 223, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.018) 1px, transparent 1px),
    rgba(255, 247, 229, 0.018);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.community-copy h2 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6.5vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.92;
  word-spacing: 0.05em;
}

.community-copy p:not(.eyebrow),
.community-callout p {
  color: var(--muted);
  font-size: clamp(1rem, 1.32vw, 1.16rem);
  line-height: 1.55;
}

.community-ledger {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.community-ledger::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.62), transparent);
  content: "";
}

.community-callout span,
.community-rows span {
  color: rgba(244, 182, 92, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-callout strong {
  display: block;
  max-width: 12ch;
  margin: 12px 0 14px;
  color: var(--paper);
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.98;
}

.community-callout p {
  margin-bottom: 24px;
}

.community-rows {
  display: grid;
}

.community-rows div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 247, 229, 0.1);
}

.community-rows div:last-child {
  padding-bottom: 0;
}

.community-rows strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 247, 229, 0.84);
  font-size: clamp(1rem, 1.36vw, 1.18rem);
  line-height: 1.34;
}

.promo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: end;
  padding-block: clamp(82px, 9vw, 132px) clamp(28px, 5vw, 62px);
}

.promo-copy h2 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 6.4vw, 7.6rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.92;
  word-spacing: 0.05em;
}

.promo-copy p:not(.eyebrow) {
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.55;
}

.promo-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(188px, 1fr));
  gap: 14px;
  min-width: 0;
}

.promo-tile {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.11);
  border-radius: 26px;
  background: rgba(9, 9, 9, 0.62);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.promo-tile.large {
  grid-row: 1 / 3;
}

.promo-tile img {
  filter: saturate(0.78) contrast(1.04) brightness(0.78);
  transform: scale(1.02);
  transition:
    filter 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-tile:hover img {
  filter: saturate(0.95) contrast(1.08) brightness(0.86);
  transform: scale(1.055);
}

.promo-tile figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 5px;
}

.promo-tile span {
  color: rgba(244, 182, 92, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-tile strong {
  max-width: 16ch;
  color: var(--paper);
  font-size: clamp(1.16rem, 1.6vw, 1.62rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.market-section,
.opportunity-section,
.os-section,
.why-section,
.final-cta {
  scroll-margin-top: 104px;
  padding-block: clamp(80px, 10vw, 150px);
}

.opportunity-section,
.os-section,
.why-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background-repeat: no-repeat;
  background-size: auto, auto, 58px 58px, 58px 58px, cover;
}

.opportunity-section > *,
.os-section > *,
.why-section > * {
  position: relative;
  z-index: 1;
}

.opportunity-section::before,
.os-section::before,
.why-section::before {
  display: none;
  content: none;
}

.opportunity-section::after,
.os-section::after,
.why-section::after {
  display: none;
  content: none;
}

.opportunity-section {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.995), rgba(5, 5, 5, 0.94) 48%, rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 72% 22%, rgba(244, 182, 92, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.02) 1px, transparent 1px),
    url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_09.632112c4.jpg");
  background-position: center, center, center, center, center right;
}

.os-section {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.995), rgba(5, 5, 5, 0.94) 48%, rgba(5, 5, 5, 0.86)),
    radial-gradient(circle at 18% 24%, rgba(105, 245, 223, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.018) 1px, transparent 1px),
    url("https://www.rockstargames.com/VI/_next/static/media/Real_Dimez_01.c74db009.jpg");
  background-position: center, center, center, center, center;
}

.why-section {
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.99), rgba(5, 5, 5, 0.9) 45%, rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(244, 182, 92, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.02) 1px, transparent 1px),
    url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_Postcard_landscape.29f034e9.jpg");
  background-position: center, center, center, center, center right;
}

.opportunity-section .section-heading,
.os-section .section-heading,
.why-copy {
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.78);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading h2,
.why-copy h2,
.final-cta h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3.05rem, 6.5vw, 7.55rem);
  font-weight: 900;
  letter-spacing: -0.034em;
  line-height: 0.92;
  word-spacing: 0.05em;
}

.section-heading p:not(.eyebrow),
.why-copy p,
.final-cta > p {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.thesis-copy h2,
.community-copy h2,
.promo-copy h2,
.section-heading h2,
.why-copy h2,
.final-cta h2 {
  text-wrap: balance;
}

.thesis-section,
.economy-section,
.community-section,
.promo-section,
.market-section,
.opportunity-section,
.os-section,
.why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 1280px);
  margin: clamp(28px, 4.4vw, 62px) auto;
  padding: clamp(34px, 5.6vw, 78px);
  border: 1px solid rgba(255, 247, 229, 0.11);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 9, 0.78);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.thesis-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_08.a5c9c85d.jpg");
  --section-position: center;
  --section-glow-x: 72%;
  --section-glow-y: 22%;
}

.signals-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_Postcard_landscape.29f034e9.jpg");
  --section-position: center;
  --section-glow-x: 76%;
  --section-glow-y: 18%;
}

.economy-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Port_Gellhorn_Postcard_landscape.31bacfc2.jpg");
  --section-position: center top;
  --section-glow-x: 82%;
  --section-glow-y: 20%;
}

.community-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Real_Dimez_01.c74db009.jpg");
  --section-position: center top;
  --section-glow-x: 18%;
  --section-glow-y: 28%;
}

.promo-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Leonida_Keys_Postcard_landscape.e3710f94.jpg");
  --section-position: center;
  --section-glow-x: 24%;
  --section-glow-y: 24%;
}

.market-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_07.c1ec0b18.jpg");
  --section-position: center right;
  --section-glow-x: 82%;
  --section-glow-y: 18%;
}

.opportunity-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_09.632112c4.jpg");
  --section-position: center right;
  --section-glow-x: 78%;
  --section-glow-y: 18%;
}

.os-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_Postcard_landscape.29f034e9.jpg");
  --section-position: center top;
  --section-glow-x: 18%;
  --section-glow-y: 24%;
}

.why-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Jason_and_Lucia_02_landscape.8aced7fd.jpg");
  --section-position: center;
  --section-glow-x: 78%;
  --section-glow-y: 18%;
}

.thesis-section::before,
.signals-section::before,
.economy-section::before,
.community-section::before,
.promo-section::before,
.market-section::before,
.opportunity-section::before,
.os-section::before,
.why-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  border: 0;
  background:
    radial-gradient(circle at var(--section-glow-x) var(--section-glow-y), rgba(244, 182, 92, 0.22), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(105, 245, 223, 0.055), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.84) 46%, rgba(5, 5, 5, 0.78)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.26), rgba(5, 5, 5, 0.95)),
    var(--section-image);
  background-position:
    center,
    center,
    center,
    center,
    var(--section-position);
  background-size: auto, auto, auto, auto, cover;
  content: "";
  filter: saturate(0.72) contrast(1.08) brightness(0.76);
  mask-image: none;
  pointer-events: none;
}

.thesis-section::after,
.signals-section::after,
.economy-section::after,
.community-section::after,
.promo-section::after,
.market-section::after,
.opportunity-section::after,
.os-section::after,
.why-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.032) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: radial-gradient(circle at 68% 22%, #000, transparent 74%);
  pointer-events: none;
}

.thesis-section > *,
.signals-section > *,
.economy-section > *,
.community-section > *,
.promo-section > *,
.market-section > *,
.opportunity-section > *,
.os-section > *,
.why-section > * {
  position: relative;
  z-index: 1;
}

.thesis-copy,
.signals-section .section-heading,
.community-copy,
.promo-copy,
.section-heading,
.why-copy {
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.82);
}

.opportunity-map-section {
  --section-image: url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_07.c1ec0b18.jpg");
}

.opportunity-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: 16px;
  align-items: stretch;
}

.opportunity-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 48% 46%, rgba(244, 182, 92, 0.18), transparent 18%),
    radial-gradient(circle at 64% 72%, rgba(105, 245, 223, 0.09), transparent 22%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.032) 1px, transparent 1px),
    rgba(5, 5, 5, 0.82);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.opportunity-stage::before,
.opportunity-stage::after,
.map-background-orbit {
  position: absolute;
  content: "";
  pointer-events: none;
}

.opportunity-stage::before {
  inset: 11%;
  border: 1px solid rgba(244, 182, 92, 0.16);
  border-radius: 42px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(244, 182, 92, 0.16) 18% 18.4%, transparent 18.4% 100%),
    linear-gradient(180deg, transparent 0 28%, rgba(244, 182, 92, 0.12) 28% 28.4%, transparent 28.4% 100%),
    radial-gradient(circle at 50% 50%, rgba(244, 182, 92, 0.12), transparent 44%);
  transform: rotate(-7deg);
}

.opportunity-stage::after {
  inset: 18% 14%;
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.18), transparent),
    linear-gradient(180deg, transparent, rgba(105, 245, 223, 0.08), transparent);
  animation: radar-spin 16s linear infinite;
  transform-origin: center;
}

.map-background-orbit {
  inset: 22%;
  border: 1px dashed rgba(255, 247, 229, 0.12);
  border-radius: 999px;
  animation: radar-spin 28s linear infinite reverse;
}

.map-link-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-link-layer path {
  fill: none;
  stroke: rgba(244, 182, 92, 0.28);
  stroke-dasharray: 10 16;
  stroke-linecap: round;
  stroke-width: 2;
  animation: map-flow 4.8s linear infinite;
  filter: drop-shadow(0 0 8px rgba(244, 182, 92, 0.28));
}

.map-link-layer path:nth-child(2n) {
  stroke: rgba(105, 245, 223, 0.18);
  animation-duration: 6.4s;
}

@keyframes map-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -52;
  }
}

.map-telemetry {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 190px;
  padding: 14px;
  border: 1px solid rgba(255, 247, 229, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.026)),
    rgba(5, 5, 5, 0.74);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.map-telemetry span,
.map-telemetry small {
  display: block;
  color: rgba(255, 247, 229, 0.5);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-telemetry strong {
  display: block;
  margin: 8px 0 5px;
  color: var(--paper);
  font-size: 2.25rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

@keyframes radar-spin {
  from {
    transform: rotate(0deg);
  }

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

.map-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 4;
  display: grid;
  width: clamp(116px, 12vw, 168px);
  min-height: 54px;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 247, 229, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.028)),
    rgba(5, 5, 5, 0.76);
  color: rgba(255, 247, 229, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  animation: node-pulse 4s ease-in-out infinite;
  animation-delay: var(--delay);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.map-node::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(244, 182, 92, 0.72);
  box-shadow:
    0 0 0 10px rgba(244, 182, 92, 0.08),
    0 0 42px rgba(244, 182, 92, 0.46);
  content: "";
  transform: translate(-50%, -50%);
}

.map-node.hot::before,
.map-node.active::before {
  background: rgba(255, 122, 79, 0.9);
  box-shadow:
    0 0 0 12px rgba(255, 122, 79, 0.1),
    0 0 52px rgba(255, 122, 79, 0.52);
}

.map-node.hot span::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 122, 79, 0.62);
  content: "";
  vertical-align: middle;
}

.map-node:hover,
.map-node:focus-visible,
.map-node.active {
  border-color: rgba(244, 182, 92, 0.48);
  background:
    linear-gradient(180deg, rgba(244, 182, 92, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.84);
  color: var(--paper);
  outline: none;
  transform: translate(-50%, -50%) translateY(-4px);
}

@keyframes node-pulse {
  0%,
  100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  }

  50% {
    box-shadow: 0 24px 76px rgba(244, 182, 92, 0.14);
  }
}

.opportunity-detail {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 182, 92, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.84);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px);
}

.opportunity-detail > span,
.detail-index span {
  color: rgba(244, 182, 92, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opportunity-detail h3 {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.opportunity-detail p {
  color: rgba(255, 247, 229, 0.72);
  line-height: 1.5;
}

.opportunity-detail dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}

.opportunity-detail dl div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 16px;
  background: rgba(255, 247, 229, 0.05);
}

.detail-index {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 229, 0.1);
}

.detail-index strong {
  color: var(--paper);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.map-tape {
  grid-column: 1 / -1;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid rgba(244, 182, 92, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.66);
  color: rgba(255, 247, 229, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.map-tape strong {
  color: rgba(255, 247, 229, 0.84);
}

.sector-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
}

.sector-orbit {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.sector {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.56);
  color: rgba(255, 247, 229, 0.74);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.sector::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 247, 229, 0.22);
  content: "";
}

.sector:hover,
.sector:focus-visible,
.sector.active {
  border-color: rgba(244, 182, 92, 0.42);
  background: rgba(244, 182, 92, 0.12);
  color: var(--paper);
  outline: none;
  transform: translateX(4px);
}

.sector.active::after {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(244, 182, 92, 0.7);
}

.map-console {
  position: relative;
  min-width: 0;
  min-height: 670px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 182, 92, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 247, 229, 0.09), rgba(255, 247, 229, 0.025)),
    rgba(5, 5, 5, 0.82);
  box-shadow: var(--shadow);
}

.map-media {
  position: absolute;
  inset: 22px;
  z-index: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.11);
  border-radius: 26px;
  background: rgba(5, 5, 5, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.36);
}

.map-media::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 44% 48%, rgba(244, 182, 92, 0.2), transparent 31%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.26) 42%, rgba(5, 5, 5, 0.78)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.72));
  content: "";
  pointer-events: none;
}

.map-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(0.84) contrast(1.08) brightness(0.84);
  transform: scale(1.04);
  transition:
    opacity 180ms ease,
    filter 420ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.map-media img.is-swapping {
  opacity: 0.12;
  transform: scale(1.08);
}

.map-media figcaption {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.032) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.city-core {
  position: absolute;
  inset: 14%;
  z-index: 2;
  border: 1px solid rgba(244, 182, 92, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 48% 52%, rgba(244, 182, 92, 0.16), transparent 8%),
    radial-gradient(circle at 32% 38%, rgba(255, 91, 143, 0.13), transparent 12%),
    radial-gradient(circle at 68% 58%, rgba(105, 245, 223, 0.09), transparent 12%);
  transform: rotate(-8deg);
}

.pulse {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(244, 182, 92, 0.08), 0 0 34px rgba(244, 182, 92, 0.48);
  animation: pulse 2.8s ease-in-out infinite;
}

.p1 {
  top: 18%;
  left: 28%;
}

.p2 {
  top: 44%;
  right: 18%;
  animation-delay: -0.9s;
}

.p3 {
  right: 46%;
  bottom: 20%;
  animation-delay: -1.7s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.84);
    opacity: 0.72;
  }

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

.route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left center;
  animation: route-glow 3.4s ease-in-out infinite;
}

.r1 {
  top: 34%;
  left: 26%;
  width: 48%;
  transform: rotate(18deg);
}

.r2 {
  right: 24%;
  bottom: 36%;
  width: 42%;
  transform: rotate(-31deg);
  animation-delay: -1.2s;
}

.r3 {
  bottom: 24%;
  left: 20%;
  width: 62%;
  transform: rotate(8deg);
  animation-delay: -2s;
}

@keyframes route-glow {
  0%,
  100% {
    opacity: 0.22;
  }

  50% {
    opacity: 0.94;
  }
}

.sector-detail {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  width: min(380px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px);
}

.sector-detail h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.sector-detail p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.45;
}

.sector-detail dl,
.op-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.sector-detail div,
.op-card dl div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 14px;
  background: rgba(255, 247, 229, 0.045);
}

dt {
  color: var(--muted-2);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 850;
}

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

.op-card,
.os-card,
.why-panel,
.final-cta {
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(5, 5, 5, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px);
}

.op-card,
.os-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 24px;
}

.op-card::before,
.os-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.54), transparent);
  content: "";
}

.op-card h3,
.os-card h3 {
  max-width: 12ch;
  margin: 16px 0 12px;
  font-size: clamp(1.72rem, 2.7vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.032em;
  line-height: 1.02;
}

.op-card p,
.os-card p {
  color: rgba(255, 247, 229, 0.74);
  line-height: 1.5;
}

.op-card dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.op-card > i {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.08);
}

.op-card > i::before {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  box-shadow: 0 0 24px rgba(244, 182, 92, 0.3);
  content: "";
}

.os-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.os-card {
  min-height: 260px;
}

.os-card h3 {
  font-size: clamp(1.28rem, 1.7vw, 1.72rem);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: center;
}

.why-copy h2 {
  max-width: 10ch;
}

.why-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.why-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 20px;
  background: rgba(255, 247, 229, 0.06);
}

.why-panel strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(1.06rem, 1.5vw, 1.3rem);
  line-height: 1.25;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 76px);
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 182, 92, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.74);
}

.final-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
  filter: saturate(0.76) contrast(1.08) brightness(0.72);
  transform: scale(1.02);
}

.section-anchor {
  position: absolute;
  top: -90px;
}

.final-cta::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.028) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: radial-gradient(circle at 70% 20%, #000, transparent 72%);
  pointer-events: none;
}

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

.final-cta > .final-cta-media {
  position: absolute;
  z-index: 0;
}

.final-cta h2 {
  max-width: 13ch;
}

.founders-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.7fr) max-content;
  gap: 10px;
  max-width: 980px;
  margin-top: 32px;
}

.founders-form label:not(.consent-row) {
  display: grid;
  gap: 8px;
}

.founders-form label span {
  color: rgba(255, 247, 229, 0.54);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founders-form input,
.founders-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.52);
  color: var(--paper);
  outline: none;
  padding: 0 14px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.founders-form input:focus,
.founders-form select:focus {
  border-color: rgba(244, 182, 92, 0.52);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 0 0 4px rgba(244, 182, 92, 0.12);
}

.founders-form .button {
  align-self: end;
  min-height: 52px;
}

.consent-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 247, 229, 0.54);
  font-size: 0.82rem;
}

.consent-row input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--gold);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: rgba(255, 247, 229, 0.58);
  font-size: 0.88rem;
}

.landing-footer {
  display: flex;
  width: min(100%, 1580px);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 30px clamp(22px, 4vw, 64px) 48px;
  color: rgba(255, 247, 229, 0.46);
  font-size: 0.82rem;
}

.landing-footer p {
  max-width: 78ch;
  margin: 0;
  line-height: 1.45;
}

.landing-footer small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 247, 229, 0.34);
  font-size: 0.72rem;
}

.landing-footer nav {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.landing-footer a {
  color: rgba(255, 247, 229, 0.68);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Professional readability pass: quieter grids, smaller scale, stronger hierarchy. */
.reveal {
  transform: translateY(16px);
  transition:
    opacity 480ms ease,
    transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

body::before {
  display: none;
  opacity: 0.14;
  mask-image: linear-gradient(180deg, #000 0%, transparent 46%);
}

body::after {
  opacity: 0.07;
}

.mesh {
  opacity: 0.18;
}

.global-market-tape {
  height: 32px;
  border-block-color: rgba(244, 182, 92, 0.1);
  background: rgba(5, 5, 5, 0.76);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.global-ticker-track span {
  color: rgba(255, 247, 229, 0.5);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

main {
  width: min(100%, 1440px);
  padding: clamp(24px, 3.5vw, 54px) clamp(24px, 5vw, 72px);
}

main::before {
  width: min(820px, 64vw);
  background:
    radial-gradient(circle at 52% 10%, rgba(244, 182, 92, 0.08), transparent 30%),
    radial-gradient(circle at 54% 48%, rgba(105, 245, 223, 0.035), transparent 22%);
  opacity: 0.5;
}

.hero-section {
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.86fr);
  min-height: min(660px, calc(100vh - 160px));
  gap: clamp(34px, 5vw, 82px);
  padding: clamp(24px, 4vw, 52px) 0 clamp(54px, 7vw, 92px);
}

h1 {
  max-width: 13.8ch;
  font-size: clamp(3.35rem, 5.25vw, 6.85rem);
  letter-spacing: -0.03em;
  line-height: 0.97;
  word-spacing: 0.02em;
}

.hero-subhead {
  max-width: 52ch;
  margin-bottom: 28px;
  font-size: clamp(1.02rem, 1.22vw, 1.18rem);
  line-height: 1.55;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.button {
  min-height: 46px;
  padding: 11px 16px;
  font-size: 0.86rem;
}

.proof-strip {
  gap: 7px;
}

.proof-strip span {
  min-height: 31px;
  padding: 8px 10px;
  font-size: 0.72rem;
}

.hero-visual {
  min-height: min(560px, 60vh);
}

#empireCanvas {
  opacity: 0.62;
}

.visual-shell {
  min-height: 540px;
  border-color: rgba(255, 247, 229, 0.09);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.012) 1px, transparent 1px),
    radial-gradient(circle at 74% 18%, rgba(244, 182, 92, 0.16), transparent 30%),
    radial-gradient(circle at 22% 82%, rgba(255, 91, 143, 0.08), transparent 35%),
    rgba(10, 10, 10, 0.74);
  background-size: 82px 82px, 82px 82px, auto, auto, auto;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.visual-shell::after {
  opacity: 0.48;
}

.terminal-topline {
  top: 16px;
  right: 16px;
  left: 16px;
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.62rem;
}

.terminal-watchlist {
  top: 68px;
  left: 20px;
  width: min(260px, calc(100% - 40px));
  border-radius: 18px;
}

.watchlist-head {
  padding: 14px;
}

.watchlist-head span,
.watch-row span {
  font-size: 0.58rem;
}

.watchlist-head strong {
  font-size: 1.9rem;
}

.watch-row {
  min-height: 34px;
  padding: 0 14px;
}

.watch-row strong {
  font-size: 0.72rem;
}

.floating-card {
  border-radius: 18px;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.floating-card span,
.op-card span,
.os-card span,
.why-panel span,
.sector-detail span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.floating-card strong {
  font-size: 1.85rem;
}

.hero-promo-frame {
  top: 82px;
  right: 4%;
  width: 76%;
  height: 58%;
  opacity: 0.68;
}

.heat-card {
  top: 256px;
  left: 28px;
  width: 188px;
  padding: 14px;
}

.graph-card {
  top: 126px;
  right: 32px;
  width: 254px;
  padding: 14px;
}

.supply-card {
  right: 34px;
  bottom: 116px;
  width: 318px;
  padding: 15px;
}

.flow-card {
  bottom: 96px;
  left: 56px;
  width: 206px;
  padding: 15px;
}

.market-ticker {
  right: 18px;
  bottom: 16px;
  left: 18px;
  min-height: 40px;
}

.ticker-track {
  min-height: 40px;
}

.ticker-track span {
  font-size: 0.7rem;
}

.signals-section,
.economy-section,
.market-section,
.os-section,
.final-cta {
  width: min(100%, 1180px);
  margin: clamp(76px, 10vw, 132px) auto;
}

.signals-section,
.economy-section,
.os-section {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.signals-section::before,
.signals-section::after,
.economy-section::before,
.economy-section::after,
.os-section::before,
.os-section::after {
  display: none;
  content: none;
}

.market-section,
.final-cta {
  padding: clamp(34px, 5vw, 58px);
  border-color: rgba(255, 247, 229, 0.09);
  border-radius: 28px;
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.market-section::after {
  opacity: 0.32;
  background-size: 96px 96px;
}

.final-cta::before {
  display: none;
  content: none;
}

.section-heading {
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

.section-heading h2,
.why-copy h2,
.final-cta h2 {
  max-width: 15ch;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.2vw, 5.25rem);
  letter-spacing: -0.03em;
  line-height: 1;
  word-spacing: 0.02em;
}

.section-heading p:not(.eyebrow),
.why-copy p,
.final-cta > p {
  max-width: 58ch;
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.55;
}

.signals-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.signal-card {
  min-height: 190px;
  padding: 18px;
  border-color: rgba(255, 247, 229, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.proof-card {
  min-height: 236px;
}

.signal-card h3,
.economy-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.18rem, 1.55vw, 1.78rem);
  line-height: 1.08;
}

.signal-card p,
.economy-card p,
.opportunity-detail p,
.os-card p {
  color: rgba(255, 247, 229, 0.68);
  font-size: 0.94rem;
  line-height: 1.48;
}

.signal-card span,
.economy-card span,
.tier-strip span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.economy-grid {
  gap: 10px;
}

.economy-card {
  min-height: 188px;
  padding: 17px;
  border-color: rgba(255, 247, 229, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.priority-card {
  min-height: 300px;
  padding: 20px;
}

.priority-card h3 {
  max-width: 13ch;
  font-size: clamp(1.62rem, 2.55vw, 3.05rem);
}

.compact-card {
  grid-column: span 1;
  min-height: 178px;
}

.compact-card h3 {
  font-size: clamp(1.06rem, 1.36vw, 1.48rem);
}

.priority-card i,
.compact-card i {
  right: 16px;
  bottom: 14px;
  left: 16px;
  font-size: 0.62rem;
}

.tier-strip {
  gap: 10px;
  margin-top: 12px;
}

.tier-strip div {
  min-height: 108px;
  padding: 16px;
  border-radius: 18px;
}

.tier-strip strong {
  font-size: clamp(0.94rem, 1.18vw, 1.08rem);
}

.opportunity-map-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 14px;
}

.opportunity-stage {
  min-height: 560px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 48% 46%, rgba(244, 182, 92, 0.14), transparent 18%),
    radial-gradient(circle at 64% 72%, rgba(105, 245, 223, 0.055), transparent 22%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.014) 1px, transparent 1px),
    rgba(5, 5, 5, 0.82);
  background-size: auto, auto, 88px 88px, 88px 88px, auto;
}

.map-node {
  width: clamp(104px, 10vw, 142px);
  min-height: 48px;
  padding: 9px 10px;
  border-radius: 14px;
  font-size: 0.7rem;
}

.map-telemetry {
  width: 170px;
  padding: 12px;
}

.map-telemetry strong {
  font-size: 1.9rem;
}

.opportunity-detail {
  min-height: 560px;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 24px;
}

.opportunity-detail h3 {
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  line-height: 0.98;
}

.opportunity-detail dl {
  gap: 7px;
  margin: 18px 0;
}

.opportunity-detail dl div {
  padding: 10px;
  border-radius: 13px;
}

.detail-index strong {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.map-tape {
  min-height: 48px;
  padding: 0 16px;
  font-size: 0.68rem;
}

.os-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.os-card {
  min-height: 218px;
  padding: 18px;
  border-color: rgba(255, 247, 229, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.os-card h3 {
  max-width: 14ch;
  margin: 12px 0 9px;
  font-size: clamp(1.18rem, 1.5vw, 1.56rem);
}

.founder-access-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.28fr);
  column-gap: clamp(22px, 4vw, 54px);
  row-gap: 14px;
  align-items: end;
}

.founder-access-section .section-heading .eyebrow,
.founder-access-section .section-heading h2,
.founder-access-section .section-heading p:not(.eyebrow) {
  grid-column: 1;
}

.founder-access-section .section-heading::after {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 3;
  min-height: 108px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(244, 182, 92, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(244, 182, 92, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.72);
  color: rgba(255, 247, 229, 0.78);
  content: "Applications reviewed for fit. Membership is built for serious early builders.";
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.membership-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.88fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: 14px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(244, 182, 92, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(244, 182, 92, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 8, 0.74);
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.membership-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.membership-copy h3 {
  max-width: 12ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2rem, 3.4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.membership-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 247, 229, 0.66);
  font-size: 1rem;
  line-height: 1.55;
}

.membership-copy .button {
  width: fit-content;
  margin-top: 6px;
}

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

.membership-tiers article {
  display: grid;
  min-height: 206px;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.58);
}

.membership-tiers article.featured {
  border-color: rgba(244, 182, 92, 0.34);
  background:
    linear-gradient(180deg, rgba(244, 182, 92, 0.11), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.68);
}

.membership-tiers span {
  color: rgba(244, 182, 92, 0.82);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-tiers strong {
  color: var(--paper);
  font-size: clamp(1.8rem, 2.8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.membership-tiers p {
  margin: 0;
  color: rgba(255, 247, 229, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.final-cta {
  padding: clamp(34px, 5vw, 62px);
}

.final-cta h2 {
  max-width: 14ch;
}

.final-cta > .button {
  margin-top: 24px;
}

.founders-form {
  max-width: 920px;
  margin-top: 26px;
}

.founders-form input,
.founders-form select,
.founders-form .button {
  min-height: 48px;
}

.landing-footer {
  width: min(100%, 1440px);
  padding-inline: clamp(24px, 5vw, 72px);
}

body.modal-open {
  overflow: hidden;
}

.application-dialog {
  width: min(980px, calc(100vw - 32px));
  max-height: min(860px, calc(100vh - 32px));
  overflow: auto;
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 28px;
  background: transparent;
  color: var(--paper);
  padding: 0;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(244, 182, 92, 0.06);
}

.application-dialog:not([open]) {
  display: none;
}

.application-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 182, 92, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.application-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(244, 182, 92, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(22, 22, 20, 0.96), rgba(5, 5, 5, 0.98));
  background-size: 88px 88px, 88px 88px, auto, auto;
}

.application-intro {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-right: clamp(0px, 2vw, 24px);
}

.application-intro h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.35rem, 4.4vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.032em;
  line-height: 0.98;
}

.application-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 247, 229, 0.66);
  font-size: 1rem;
  line-height: 1.55;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.62);
  color: rgba(255, 247, 229, 0.74);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  border-color: rgba(244, 182, 92, 0.45);
  color: var(--paper);
  outline: none;
}

.application-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

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

.application-form label:not(.consent-row) {
  display: grid;
  gap: 8px;
}

.application-form label span,
.interest-options legend {
  color: rgba(255, 247, 229, 0.56);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.interest-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  margin: 0;
  min-inline-size: 0;
  padding: 0;
}

.interest-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.interest-options label {
  position: relative;
  cursor: pointer;
}

.interest-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-options label span {
  display: grid;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.5);
  color: rgba(255, 247, 229, 0.68);
  padding: 0 11px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.interest-options input:checked + span {
  border-color: rgba(244, 182, 92, 0.46);
  background: rgba(244, 182, 92, 0.12);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.interest-options input:focus-visible + span {
  border-color: rgba(244, 182, 92, 0.58);
  box-shadow: 0 0 0 4px rgba(244, 182, 92, 0.12);
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.58);
  color: var(--paper);
  outline: none;
  padding: 0 14px;
  font: inherit;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.application-form input,
.application-form select {
  min-height: 50px;
}

.application-form textarea {
  min-height: 112px;
  padding-block: 14px;
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: rgba(244, 182, 92, 0.52);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 0 0 4px rgba(244, 182, 92, 0.12);
}

.application-form .button {
  justify-self: start;
}

.application-consent {
  margin-top: 2px;
}

/* Concise product-page pass */
h1 {
  max-width: 13.6ch;
  font-size: clamp(2.65rem, 4.15vw, 5.2rem);
  letter-spacing: -0.026em;
  line-height: 1.02;
}

body::before {
  opacity: 0.12;
}

.hero-section {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  min-height: clamp(510px, 62vh, 650px);
  gap: clamp(28px, 4vw, 60px);
  padding-top: clamp(36px, 5vh, 66px);
}

.hero-subhead {
  max-width: 56ch;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
}

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

.visual-shell {
  min-height: 450px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.012) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.01) 1px, transparent 1px),
    radial-gradient(circle at 74% 18%, rgba(244, 182, 92, 0.16), transparent 28%),
    radial-gradient(circle at 22% 82%, rgba(255, 91, 143, 0.07), transparent 34%),
    rgba(10, 10, 10, 0.72);
  background-size: 70px 70px, 70px 70px, auto, auto, auto;
}

.hero-background-media {
  opacity: 0.38;
}

.hero-background-media::before {
  opacity: 0.82;
}

.app-coming-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.42fr);
  align-items: center;
  gap: clamp(20px, 4vw, 52px);
  overflow: hidden;
  width: min(100%, 1180px);
  margin: clamp(8px, 2.4vw, 28px) auto clamp(28px, 5vw, 70px);
  padding: clamp(30px, 4.4vw, 60px);
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 91, 143, 0.24), transparent 30%),
    radial-gradient(circle at 92% 72%, rgba(244, 182, 92, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.38) 58%, rgba(5, 5, 5, 0.78)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.58);
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.app-coming-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.024) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 78%, transparent);
  opacity: 0.62;
  pointer-events: none;
}

.app-coming-copy,
.app-device,
.app-feature-strip {
  position: relative;
  z-index: 1;
}

.app-coming-copy h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.35rem, 5vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -0.046em;
  line-height: 0.96;
}

.app-coming-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 750;
  line-height: 1.5;
}

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

.app-device {
  position: relative;
  justify-self: end;
  width: min(330px, 100%);
  margin: -42px 0 -76px;
  overflow: hidden;
  border-radius: 48px;
  background: #030303;
  transform: rotate(2deg);
}

.app-device::before,
.app-device::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  filter: blur(24px);
  pointer-events: none;
}

.app-device::before {
  inset: 18% -12% 16% -18%;
  background: radial-gradient(circle, rgba(255, 91, 143, 0.24), transparent 62%);
}

.app-device::after {
  right: -8%;
  bottom: 5%;
  width: 44%;
  aspect-ratio: 1;
  background: rgba(244, 182, 92, 0.2);
}

.app-device img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 34px 70px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 34px rgba(255, 91, 143, 0.22));
  transform: translateZ(0);
  transition: transform 420ms ease, filter 420ms ease;
}

.app-coming-section:hover .app-device img {
  filter:
    drop-shadow(0 38px 86px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 48px rgba(255, 91, 143, 0.28));
  transform: translate3d(0, -8px, 0) scale(1.015);
}

.app-feature-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: -6px;
}

.app-feature-strip span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.44);
  color: rgba(255, 247, 229, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-section::after,
.visual-shell::after,
.opportunity-stage {
  background-size: 120px 120px, 120px 120px, auto;
}

.market-section,
.product-section,
.os-section,
.final-cta {
  width: min(100%, 1180px);
  margin: clamp(20px, 4vw, 54px) auto;
}

.real-estate-section {
  width: min(100%, 1460px);
  margin-top: clamp(10px, 2.4vw, 34px);
}

.product-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 56px);
  border: 1px solid rgba(255, 247, 229, 0.04);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 8%, rgba(244, 182, 92, 0.04), transparent 34%),
    linear-gradient(120deg, transparent 0%, rgba(244, 182, 92, 0.035) 42%, transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.006)),
    rgba(5, 5, 5, 0.42);
  box-shadow:
    0 42px 140px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.product-section::before {
  position: absolute;
  inset: -20% -8vw auto;
  z-index: 0;
  height: 44%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 247, 229, 0.035), transparent),
    linear-gradient(180deg, rgba(244, 182, 92, 0.05), transparent 70%);
  content: "";
  opacity: 0.68;
  pointer-events: none;
}

.product-section > * {
  position: relative;
  z-index: 1;
}

.product-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.42fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
}

.product-section .section-heading .eyebrow,
.product-section .section-heading h2 {
  grid-column: 1;
}

.product-section .section-heading p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
}

.property-heatmap-dashboard {
  display: grid;
  gap: 14px;
}

.heatmap-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.heatmap-metrics div {
  position: relative;
  display: grid;
  min-height: 74px;
  align-content: center;
  gap: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.085);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.56);
  padding: 14px;
}

.heatmap-metrics div::after {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.95);
  box-shadow: 0 0 16px rgba(244, 182, 92, 0.48);
  content: "";
  opacity: 0.74;
  animation: live-signal-dot 2.8s ease-in-out infinite;
}

.heatmap-metrics span {
  color: rgba(255, 247, 229, 0.46);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heatmap-metrics strong {
  color: var(--paper);
  font-size: clamp(1.28rem, 1.8vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
  animation: metric-volatility 5.4s ease-in-out infinite;
}

@keyframes live-signal-dot {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.82);
  }

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

@keyframes metric-volatility {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(244, 182, 92, 0);
  }

  50% {
    text-shadow: 0 0 18px rgba(244, 182, 92, 0.14);
  }
}

.heatmap-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.heatmap-toolbar span {
  display: inline-grid;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.48);
  color: rgba(255, 247, 229, 0.7);
  padding: 0 13px;
  font-size: 0.72rem;
  font-weight: 900;
}

.heatmap-stage {
  position: relative;
  min-height: clamp(760px, 74vw, 860px);
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 38px;
  background:
    radial-gradient(circle at 70% 18%, rgba(244, 182, 92, 0.16), transparent 30%),
    radial-gradient(circle at 24% 82%, rgba(92, 166, 244, 0.08), transparent 28%),
    radial-gradient(circle at 56% 62%, rgba(255, 91, 143, 0.075), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(4, 5, 5, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 90px rgba(0, 0, 0, 0.34);
  perspective: 1200px;
}

.heatmap-command-bar {
  position: absolute;
  top: 16px;
  right: 24px;
  left: 24px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  min-height: 46px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.09), transparent 38%),
    rgba(5, 5, 5, 0.68);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0 16px;
  backdrop-filter: blur(18px);
}

.heatmap-command-bar span,
.heatmap-command-bar b {
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.heatmap-command-bar strong {
  color: rgba(255, 236, 190, 0.94);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heatmap-command-bar b {
  border: 1px solid rgba(244, 182, 92, 0.18);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.075);
  color: rgba(244, 182, 92, 0.88);
  padding: 7px 10px;
}

.map-depth-haze {
  position: absolute;
  inset: -10%;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 122, 79, 0.16), transparent 28%),
    radial-gradient(circle at 34% 62%, rgba(244, 182, 92, 0.14), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.38) 100%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.66;
  pointer-events: none;
  animation: map-haze-drift 10s ease-in-out infinite;
}

@keyframes map-haze-drift {
  0%,
  100% {
    transform: translate3d(-1%, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(1.5%, -1%, 0) scale(1.03);
  }
}

.city-plane {
  position: absolute;
  z-index: 2;
  inset: 11% 4% 9%;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 70% 44%, rgba(255, 122, 79, 0.13), transparent 28%),
    radial-gradient(circle at 35% 52%, rgba(244, 182, 92, 0.14), transparent 24%),
    rgba(7, 9, 9, 0.72);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
  box-shadow:
    0 48px 90px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transform: rotateX(58deg) rotateZ(-13deg) translateY(5%) scale(1.08);
  transform-origin: center;
  animation: map-float 9s ease-in-out infinite;
}

@keyframes map-float {
  0%,
  100% {
    transform: rotateX(58deg) rotateZ(-13deg) translateY(5%) scale(1.08);
  }

  50% {
    transform: rotateX(58deg) rotateZ(-12.2deg) translateY(3.8%) scale(1.095);
  }
}

.city-plane::before,
.city-plane::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(244, 182, 92, 0.12);
  border-radius: 44% 56% 40% 60%;
  content: "";
  pointer-events: none;
}

.city-plane::after {
  inset: 22% 18%;
  border-color: rgba(92, 166, 244, 0.1);
  transform: rotate(18deg);
}

.road {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.18);
  box-shadow: 0 0 16px rgba(244, 182, 92, 0.2);
  pointer-events: none;
}

.road-a {
  top: 34%;
  left: 6%;
  width: 82%;
  transform: rotate(8deg);
}

.road-b {
  top: 58%;
  left: 10%;
  width: 74%;
  transform: rotate(-16deg);
}

.road-c {
  top: 18%;
  left: 42%;
  width: 3px;
  height: 68%;
  transform: rotate(23deg);
}

.road-d {
  top: 8%;
  left: 66%;
  width: 3px;
  height: 76%;
  transform: rotate(-18deg);
}

.road-e {
  top: 45%;
  left: 16%;
  width: 62%;
  transform: rotate(25deg);
}

.road-f {
  top: 72%;
  left: 18%;
  width: 66%;
  transform: rotate(2deg);
}

.highway,
.waterline,
.port-grid,
.port-crane,
.nightlife-strip,
.creator-district,
.district-mass,
.property-cluster {
  position: absolute;
  pointer-events: none;
}

.highway {
  z-index: 1;
  height: 9px;
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.38) 0 14px, transparent 14px 28px),
    linear-gradient(90deg, rgba(255, 247, 229, 0.11), rgba(244, 182, 92, 0.2), rgba(255, 247, 229, 0.08));
  box-shadow: 0 0 28px rgba(244, 182, 92, 0.18);
  opacity: 0.58;
  animation: route-current 6s linear infinite;
}

.highway-a {
  top: 40%;
  left: 5%;
  width: 88%;
  transform: rotate(12deg);
}

.highway-b {
  top: 22%;
  right: 15%;
  width: 58%;
  transform: rotate(-21deg);
}

.waterline {
  z-index: 0;
  right: -3%;
  bottom: 2%;
  width: 46%;
  height: 22%;
  border: 1px solid rgba(92, 166, 244, 0.11);
  border-radius: 58% 42% 30% 70%;
  background:
    radial-gradient(circle at 40% 40%, rgba(92, 166, 244, 0.16), transparent 56%),
    linear-gradient(135deg, rgba(92, 166, 244, 0.08), transparent 66%);
  box-shadow: inset 0 0 38px rgba(92, 166, 244, 0.08);
  opacity: 0.72;
}

.port-grid {
  z-index: 2;
  left: 14%;
  bottom: 22%;
  width: 25%;
  height: 17%;
  border: 1px solid rgba(244, 182, 92, 0.12);
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.1) 0 2px, transparent 2px 17px),
    repeating-linear-gradient(180deg, rgba(255, 247, 229, 0.08) 0 2px, transparent 2px 16px),
    rgba(244, 182, 92, 0.04);
  transform: rotate(-4deg);
  opacity: 0.82;
}

.port-crane {
  z-index: 4;
  width: 42px;
  height: 48px;
  border-left: 4px solid rgba(244, 182, 92, 0.56);
  border-top: 4px solid rgba(255, 221, 158, 0.62);
  filter: drop-shadow(0 0 16px rgba(244, 182, 92, 0.22));
}

.port-crane::after {
  position: absolute;
  top: 7px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: rgba(255, 221, 158, 0.62);
  content: "";
}

.crane-a {
  left: 18%;
  bottom: 31%;
}

.crane-b {
  left: 28%;
  bottom: 27%;
  transform: scale(0.82);
}

.nightlife-strip {
  z-index: 3;
  width: 21%;
  height: 7%;
  border: 1px solid rgba(255, 122, 79, 0.16);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.16) 0 6px, transparent 6px 14px),
    linear-gradient(90deg, rgba(255, 122, 79, 0.22), rgba(244, 182, 92, 0.2));
  box-shadow: 0 0 38px rgba(255, 122, 79, 0.18);
  animation: strip-glow 4s ease-in-out infinite;
}

.nightlife-a {
  right: 28%;
  bottom: 22%;
  transform: rotate(8deg);
}

.nightlife-b {
  right: 18%;
  bottom: 30%;
  width: 15%;
  animation-delay: -1.7s;
  transform: rotate(-10deg);
}

.creator-district {
  z-index: 3;
  width: 18%;
  height: 13%;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 247, 229, 0.16), transparent 22%),
    radial-gradient(circle at 62% 66%, rgba(244, 182, 92, 0.18), transparent 24%),
    rgba(244, 182, 92, 0.045);
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.16), 0 0 30px rgba(244, 182, 92, 0.12);
  animation: district-breathe 5.4s ease-in-out infinite;
}

.creator-a {
  top: 34%;
  left: 29%;
  --tilt: -7deg;
  transform: rotate(-7deg);
}

.creator-b {
  top: 27%;
  left: 42%;
  width: 13%;
  height: 10%;
  --tilt: 10deg;
  animation-delay: -2s;
  transform: rotate(10deg);
}

.district-mass {
  z-index: 2;
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 16px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.1) 0 3px, transparent 3px 16px),
    repeating-linear-gradient(180deg, rgba(255, 247, 229, 0.075) 0 3px, transparent 3px 18px),
    radial-gradient(circle at 55% 48%, rgba(244, 182, 92, 0.13), transparent 50%),
    rgba(255, 247, 229, 0.02);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.18),
    0 0 32px rgba(244, 182, 92, 0.08);
  opacity: 0.7;
  animation: mass-live-shift 6.8s ease-in-out infinite;
}

.mass-downtown {
  top: 25%;
  left: 45%;
  width: 19%;
  height: 20%;
  transform: rotate(4deg);
}

.mass-beach {
  top: 39%;
  right: 9%;
  width: 22%;
  height: 19%;
  animation-delay: -1.8s;
  transform: rotate(-7deg);
}

.mass-port {
  bottom: 22%;
  left: 15%;
  width: 24%;
  height: 17%;
  animation-delay: -3s;
  transform: rotate(-5deg);
}

.mass-creator {
  top: 36%;
  left: 30%;
  width: 16%;
  height: 15%;
  animation-delay: -4.2s;
  transform: rotate(10deg);
}

@keyframes route-current {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 84px 0, 0 0;
  }
}

@keyframes mass-live-shift {
  0%,
  100% {
    opacity: 0.5;
    filter: saturate(0.9);
  }

  50% {
    opacity: 0.9;
    filter: saturate(1.18);
  }
}

.property-cluster {
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 4px;
}

.property-cluster::before,
.property-cluster::after {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 236, 190, 0.76);
  box-shadow: 12px 0 rgba(244, 182, 92, 0.58), 24px 0 rgba(255, 122, 79, 0.42), 0 12px rgba(244, 182, 92, 0.5), 12px 12px rgba(255, 236, 190, 0.62);
  content: "";
}

.property-cluster::after {
  opacity: 0.58;
  transform: translate(8px, 18px);
}

.cluster-a {
  top: 24%;
  left: 49%;
}

.cluster-b {
  right: 18%;
  top: 38%;
  transform: scale(0.86);
}

@keyframes strip-glow {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes district-breathe {
  0%,
  100% {
    opacity: 0.54;
    transform: translateY(0) rotate(var(--tilt, 0deg));
  }

  50% {
    opacity: 0.94;
    transform: translateY(-4px) rotate(var(--tilt, 0deg));
  }
}

.parcel-boundary,
.building {
  position: absolute;
  pointer-events: none;
}

.parcel-boundary {
  z-index: 0;
  border: 1px solid rgba(255, 247, 229, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(244, 182, 92, 0.075), transparent 70%),
    rgba(255, 255, 255, 0.018);
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.22);
}

.boundary-downtown {
  top: 20%;
  left: 38%;
  width: 26%;
  height: 22%;
  transform: rotate(4deg);
}

.boundary-beach {
  top: 35%;
  right: 10%;
  width: 28%;
  height: 22%;
  transform: rotate(-7deg);
}

.boundary-port {
  bottom: 25%;
  left: 14%;
  width: 27%;
  height: 20%;
  transform: rotate(-4deg);
}

.boundary-nightlife {
  right: 25%;
  bottom: 17%;
  width: 23%;
  height: 20%;
  transform: rotate(8deg);
}

.building {
  top: var(--y);
  left: var(--x);
  z-index: 3;
  width: 22px;
  height: var(--h);
  border: 1px solid rgba(255, 247, 229, 0.16);
  border-radius: 5px 5px 2px 2px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.28), transparent 18% 72%, rgba(5, 5, 5, 0.2)),
    linear-gradient(180deg, rgba(255, 236, 190, 0.9), rgba(244, 182, 92, 0.42) 42%, rgba(57, 44, 28, 0.72));
  box-shadow:
    0 calc(var(--h) * 0.12) calc(var(--h) * 0.32) rgba(0, 0, 0, 0.36),
    0 0 22px rgba(244, 182, 92, 0.16);
  transform: translate(-50%, -100%) skewY(-12deg);
  transform-origin: bottom center;
  animation: building-market-glow 5.8s ease-in-out infinite;
}

.building::after {
  position: absolute;
  inset: 5px 5px auto;
  height: 58%;
  background: repeating-linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0 3px, transparent 3px 9px);
  content: "";
  opacity: 0.45;
}

.building.block-a,
.building.block-b,
.building.block-c,
.building.block-d,
.building.block-e,
.building.block-f,
.building.lowrise-a,
.building.lowrise-b,
.building.lowrise-c,
.building.lowrise-d {
  width: 34px;
}

.building.lowrise-a,
.building.lowrise-b,
.building.lowrise-c,
.building.lowrise-d {
  border-radius: 8px 8px 2px 2px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.2), transparent 22% 76%, rgba(5, 5, 5, 0.16)),
    linear-gradient(180deg, rgba(255, 122, 79, 0.6), rgba(64, 41, 30, 0.82));
}

.building.warehouse-a,
.building.warehouse-b,
.building.warehouse-c {
  width: 58px;
  border-radius: 8px 8px 2px 2px;
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.16), transparent 66%),
    linear-gradient(180deg, rgba(244, 182, 92, 0.58), rgba(41, 33, 24, 0.8));
}

.building.warehouse-b {
  width: 74px;
  opacity: 0.78;
}

.building.warehouse-c {
  width: 68px;
  opacity: 0.82;
}

@keyframes building-market-glow {
  0%,
  100% {
    filter: brightness(0.92);
  }

  50% {
    filter: brightness(1.12);
  }
}

.district {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: grid;
  width: var(--w);
  height: var(--h);
  place-items: center;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 18px;
  background: rgba(244, 182, 92, 0.11);
  color: rgba(255, 247, 229, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.district::before {
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(244, 182, 92, 0.18);
  content: "";
  filter: blur(18px);
  animation: heat-pulse 3.8s ease-in-out infinite;
  pointer-events: none;
}

.district.hottest::before {
  background: rgba(255, 122, 79, 0.28);
}

.district.hot::before,
.district.luxury::before {
  background: rgba(244, 182, 92, 0.24);
}

.district.cool::before {
  background: rgba(92, 166, 244, 0.16);
}

.district.soft::before {
  background: rgba(255, 247, 229, 0.06);
}

.district:hover,
.district:focus-visible,
.district.is-active {
  border-color: rgba(244, 182, 92, 0.46);
  background: rgba(244, 182, 92, 0.2);
  color: var(--paper);
  outline: none;
  box-shadow: 0 0 0 5px rgba(244, 182, 92, 0.08);
  transform: translate(-50%, -50%) scale(1.04);
}

.district.is-active::before {
  opacity: 1;
  filter: blur(22px);
  animation-duration: 2.4s;
}

@keyframes heat-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.96);
  }

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

.property-label {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 4px;
  min-width: 148px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 15px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 11px 12px;
  text-align: left;
  backdrop-filter: blur(12px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.property-label strong {
  color: var(--paper);
  font-size: 0.82rem;
}

.property-label span {
  color: rgba(255, 247, 229, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
}

.property-label b {
  color: rgba(244, 182, 92, 0.95);
}

.property-label.down b {
  color: rgba(120, 188, 255, 0.95);
}

.property-label:hover,
.property-label:focus-visible,
.property-label.is-active {
  border-color: rgba(244, 182, 92, 0.36);
  background: rgba(12, 10, 8, 0.84);
  outline: none;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.38),
    0 0 0 5px rgba(244, 182, 92, 0.08);
  transform: translateY(-2px);
}

.label-downtown {
  top: 16%;
  left: 42%;
}

.label-beach {
  top: 31%;
  right: 28%;
}

.label-port {
  bottom: 23%;
  left: 10%;
}

.label-nightlife {
  right: 31%;
  bottom: 16%;
}

.label-creator {
  top: 34%;
  left: 23%;
}

.label-luxury {
  top: 8%;
  right: 32%;
}

.heatmap-card {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 150px;
  border: 1px solid rgba(255, 247, 229, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.76);
  padding: 14px;
}

.heatmap-card span {
  color: rgba(255, 247, 229, 0.54);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.heatmap-card strong {
  color: var(--paper);
  font-size: 1.5rem;
  font-weight: 900;
}

.card-traffic {
  left: 24px;
  bottom: 24px;
}

.card-roi {
  left: 24px;
  top: 78px;
}

.trend-vector,
.creator-hotspot,
.density-band {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.trend-vector {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.7), rgba(255, 122, 79, 0.72));
  box-shadow: 0 0 16px rgba(244, 182, 92, 0.22);
  animation: trend-scan 4.8s ease-in-out infinite;
}

.trend-vector::after {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(255, 210, 136, 0.9);
  border-right: 2px solid rgba(255, 210, 136, 0.9);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.trend-a {
  right: 26%;
  bottom: 38%;
  width: 210px;
  transform: rotate(-14deg);
}

.trend-b {
  right: 16%;
  top: 38%;
  width: 150px;
  animation-delay: -1.5s;
  transform: rotate(8deg);
}

.trend-c {
  left: 24%;
  bottom: 28%;
  width: 180px;
  animation-delay: -2.6s;
  transform: rotate(-7deg);
}

@keyframes trend-scan {
  0%,
  100% {
    opacity: 0.28;
    transform-origin: center;
  }

  50% {
    opacity: 0.9;
  }
}

.creator-hotspot {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 247, 229, 0.54);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.88);
  box-shadow:
    0 0 0 10px rgba(244, 182, 92, 0.09),
    0 0 28px rgba(244, 182, 92, 0.36);
  animation: hotspot-pulse 2.8s ease-in-out infinite, hotspot-drift 8s ease-in-out infinite;
}

.hotspot-a {
  top: 49%;
  left: 39%;
}

.hotspot-b {
  right: 22%;
  bottom: 34%;
  animation-delay: -1.2s;
}

@keyframes hotspot-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.9);
  }

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

@keyframes hotspot-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 8px -6px;
  }
}

.density-band {
  width: 190px;
  height: 72px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 122, 79, 0.18), transparent 64%),
    radial-gradient(circle at 70% 45%, rgba(244, 182, 92, 0.12), transparent 58%);
  filter: blur(4px);
  mix-blend-mode: screen;
  animation: density-drift 7s ease-in-out infinite;
}

.density-a {
  right: 22%;
  bottom: 29%;
  transform: rotate(-12deg);
}

.density-b {
  left: 30%;
  top: 47%;
  animation-delay: -2.4s;
  transform: rotate(9deg);
}

@keyframes density-drift {
  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.82;
  }
}

.heatmap-sweep,
.traffic-stream,
.appreciation-arrow,
.ownership-density-panel {
  position: absolute;
  z-index: 5;
}

.heatmap-sweep {
  inset: 11% 4% 9%;
  border-radius: 38px;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(244, 182, 92, 0.13) 32deg, transparent 68deg);
  mix-blend-mode: screen;
  opacity: 0.62;
  pointer-events: none;
  transform: rotateX(58deg) rotateZ(-13deg) translateY(5%) scale(1.08);
  animation: heatmap-sweep 8s linear infinite;
}

@keyframes heatmap-sweep {
  to {
    transform: rotateX(58deg) rotateZ(347deg) translateY(5%) scale(1.08);
  }
}

.traffic-stream {
  width: 220px;
  height: 16px;
  pointer-events: none;
  transform-origin: center;
}

.traffic-stream i {
  position: absolute;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.84);
  box-shadow: 0 0 14px rgba(244, 182, 92, 0.42);
  animation: traffic-flow 3.5s linear infinite;
}

.traffic-stream i:nth-child(2) {
  animation-delay: -1.1s;
}

.traffic-stream i:nth-child(3) {
  animation-delay: -2.2s;
}

.stream-a {
  top: 42%;
  left: 24%;
  transform: rotate(8deg);
}

.stream-b {
  right: 18%;
  top: 48%;
  transform: rotate(-16deg);
}

.stream-c {
  left: 43%;
  bottom: 30%;
  transform: rotate(23deg);
}

@keyframes traffic-flow {
  from {
    opacity: 0;
    transform: translateX(0);
  }

  12%,
  82% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(220px);
  }
}

.appreciation-arrow {
  display: inline-grid;
  min-width: 58px;
  min-height: 30px;
  place-items: center;
  border: 1px solid rgba(244, 182, 92, 0.22);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.66);
  color: rgba(255, 221, 158, 0.96);
  font-size: 0.76rem;
  font-weight: 950;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(244, 182, 92, 0.14);
  animation: appreciation-float 4.4s ease-in-out infinite;
  pointer-events: none;
}

.arrow-a {
  top: 25%;
  right: 23%;
}

.arrow-b {
  right: 31%;
  bottom: 30%;
  animation-delay: -1.4s;
}

.arrow-c {
  top: 38%;
  left: 26%;
  animation-delay: -2.8s;
}

.arrow-d {
  left: 18%;
  bottom: 38%;
  animation-delay: -3.4s;
}

@keyframes appreciation-float {
  0%,
  100% {
    opacity: 0.64;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-6px);
  }
}

.map-node-pulse {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 247, 229, 0.46);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.8);
  box-shadow:
    0 0 0 12px rgba(244, 182, 92, 0.07),
    0 0 36px rgba(244, 182, 92, 0.38);
  animation: node-beacon 2.6s ease-in-out infinite;
  pointer-events: none;
}

.pulse-a {
  top: 29%;
  left: 54%;
}

.pulse-b {
  right: 29%;
  bottom: 35%;
  animation-delay: -0.9s;
}

.pulse-c {
  left: 33%;
  bottom: 44%;
  animation-delay: -1.8s;
}

.pulse-d {
  right: 20%;
  top: 40%;
  animation-delay: -2.2s;
}

@keyframes node-beacon {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.78);
  }

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

.demand-radar,
.territory-flow,
.district-metric {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.demand-radar {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(244, 182, 92, 0.18);
  border-radius: 999px;
  box-shadow:
    inset 0 0 24px rgba(244, 182, 92, 0.08),
    0 0 36px rgba(244, 182, 92, 0.1);
  animation: radar-pulse 4.8s ease-out infinite;
}

.demand-radar::before,
.demand-radar::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: inherit;
  content: "";
}

.demand-radar::after {
  inset: 35%;
}

.radar-a {
  top: 24%;
  right: 22%;
}

.radar-b {
  left: 30%;
  bottom: 30%;
  animation-delay: -2.2s;
}

@keyframes radar-pulse {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  28%,
  62% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

.territory-flow {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 229, 0.18), rgba(244, 182, 92, 0.62), transparent);
  box-shadow: 0 0 18px rgba(244, 182, 92, 0.18);
  animation: territory-flow 5.6s ease-in-out infinite;
}

.flow-a {
  top: 39%;
  left: 31%;
  width: 420px;
  transform: rotate(13deg);
}

.flow-b {
  right: 24%;
  bottom: 38%;
  width: 340px;
  animation-delay: -1.8s;
  transform: rotate(-19deg);
}

.flow-c {
  left: 22%;
  bottom: 25%;
  width: 310px;
  animation-delay: -3.4s;
  transform: rotate(5deg);
}

@keyframes territory-flow {
  0%,
  100% {
    opacity: 0.16;
    filter: blur(0);
  }

  50% {
    opacity: 0.84;
    filter: blur(0.3px);
  }
}

.district-metric {
  display: grid;
  min-width: 104px;
  gap: 2px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.64);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  padding: 10px 11px;
  backdrop-filter: blur(14px);
  animation: metric-drift 6.4s ease-in-out infinite;
}

.district-metric span,
.district-metric small {
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.district-metric strong {
  color: var(--paper);
  font-size: 1.42rem;
  line-height: 0.95;
}

.metric-beach {
  top: 49%;
  right: 12%;
}

.metric-nightlife {
  right: 24%;
  bottom: 25%;
  animation-delay: -1.8s;
}

.metric-creator {
  left: 30%;
  top: 47%;
  animation-delay: -3.2s;
}

@keyframes metric-drift {
  0%,
  100% {
    transform: translateY(0);
  }

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

.district-ranking-panel,
.mini-property-card {
  position: absolute;
  z-index: 7;
  border: 1px solid rgba(255, 247, 229, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.7);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.district-ranking-panel {
  top: 350px;
  left: 24px;
  display: grid;
  width: 248px;
  gap: 8px;
  border-radius: 22px;
  padding: 14px;
}

.district-ranking-panel > span,
.mini-property-card span {
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.district-ranking-panel div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 247, 229, 0.075);
  padding-top: 8px;
}

.district-ranking-panel b {
  color: rgba(244, 182, 92, 0.88);
  font-size: 0.72rem;
}

.district-ranking-panel strong {
  color: rgba(255, 247, 229, 0.86);
  font-size: 0.78rem;
  line-height: 1.05;
}

.district-ranking-panel em {
  color: rgba(255, 221, 158, 0.96);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
}

.mini-property-card {
  display: grid;
  width: 188px;
  gap: 4px;
  border-radius: 18px;
  padding: 12px;
  pointer-events: none;
}

.mini-property-card strong {
  color: var(--paper);
  font-size: 1.24rem;
  line-height: 0.95;
}

.mini-property-card small {
  color: rgba(255, 247, 229, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
}

.mini-card-beach {
  right: clamp(300px, 38vw, 500px);
  bottom: 260px;
}

.mini-card-port {
  left: 294px;
  bottom: 80px;
}

.ownership-density-panel {
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 260px;
  gap: 11px;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.76);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  padding: 16px;
  backdrop-filter: blur(18px);
}

.live-signal-stack {
  position: absolute;
  left: 190px;
  top: 78px;
  z-index: 6;
  display: grid;
  width: 236px;
  gap: 8px;
  border: 1px solid rgba(255, 247, 229, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  padding: 14px;
  backdrop-filter: blur(18px);
}

.live-signal-stack > span {
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-signal-stack div {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 247, 229, 0.075);
  color: rgba(255, 247, 229, 0.68);
  font-size: 0.72rem;
  padding-top: 8px;
}

.live-signal-stack b,
.live-signal-stack strong {
  font-weight: 900;
}

.live-signal-stack strong {
  color: rgba(244, 182, 92, 0.96);
  text-align: right;
  animation: live-signal-flicker 3.8s ease-in-out infinite;
}

@keyframes live-signal-flicker {
  0%,
  100% {
    opacity: 0.68;
  }

  48%,
  56% {
    opacity: 1;
  }
}

.ownership-density-panel > span {
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ownership-density-panel div {
  display: grid;
  gap: 6px;
}

.ownership-density-panel b {
  color: rgba(255, 247, 229, 0.82);
  font-size: 0.74rem;
}

.ownership-density-panel i {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.08);
}

.ownership-density-panel i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244, 182, 92, 0.42), rgba(255, 122, 79, 0.88));
  box-shadow: 0 0 18px rgba(244, 182, 92, 0.2);
  content: "";
}

.heatmap-inspector {
  position: absolute;
  top: 142px;
  right: 24px;
  z-index: 8;
  display: grid;
  width: 220px;
  gap: 10px;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  padding: 16px;
  backdrop-filter: blur(18px);
}

.heatmap-inspector > span,
.heatmap-inspector dt {
  color: rgba(255, 247, 229, 0.54);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.heatmap-inspector h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.18rem;
  line-height: 1.04;
}

.heatmap-inspector strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--paper);
  font-size: 1.75rem;
  line-height: 1;
}

.heatmap-inspector em {
  color: var(--gold);
  font-size: 0.94rem;
  font-style: normal;
}

.heatmap-inspector dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.heatmap-inspector dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 247, 229, 0.08);
  padding-top: 7px;
}

.heatmap-inspector dd {
  margin: 0;
  color: rgba(255, 247, 229, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.heatmap-disclaimer {
  display: none;
}

.map-intel-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: flex;
  width: max-content;
  gap: 24px;
  border-top: 1px solid rgba(255, 247, 229, 0.08);
  background: rgba(5, 5, 5, 0.68);
  color: rgba(255, 247, 229, 0.6);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 12px 18px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  animation: map-intel-ticker 24s linear infinite;
}

@keyframes map-intel-ticker {
  to {
    transform: translateX(-42%);
  }
}

.property-intel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 12px;
}

.property-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 64% 22%, rgba(244, 182, 92, 0.24), transparent 16%),
    radial-gradient(circle at 34% 44%, rgba(92, 166, 244, 0.13), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(255, 122, 79, 0.16), transparent 20%),
    linear-gradient(90deg, rgba(255, 247, 229, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 247, 229, 0.022) 1px, transparent 1px),
    rgba(7, 8, 8, 0.78);
  background-size: auto, auto, auto, 88px 88px, 88px 88px, auto;
}

.property-map::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(244, 182, 92, 0.18);
  border-radius: 36% 64% 48% 52%;
  content: "";
  transform: rotate(-10deg);
}

.zone {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: grid;
  min-width: 96px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  color: rgba(255, 247, 229, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.zone::before {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(244, 182, 92, 0.12);
  content: "";
  filter: blur(10px);
}

.zone-hot::before {
  background: rgba(255, 122, 79, 0.2);
}

.zone-warm::before {
  background: rgba(244, 182, 92, 0.18);
}

.zone-cool::before {
  background: rgba(92, 166, 244, 0.14);
}

.property-panel,
.collectible-chart,
.scarcity-chart {
  display: grid;
  gap: 12px;
  align-content: stretch;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.58);
  padding: 18px;
}

.property-panel div {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  gap: 14px;
}

.property-panel span,
.collectible-chart span,
.scarcity-chart span,
.business-grid dt,
.revenue-grid dt,
.asset-board dt {
  color: rgba(255, 247, 229, 0.64);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-panel strong,
.collectible-chart strong,
.scarcity-chart strong {
  color: var(--paper);
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  font-weight: 900;
}

.property-panel svg,
.collectible-chart svg,
.scarcity-chart svg {
  width: 100%;
  min-height: 130px;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 247, 229, 0.08);
  stroke-width: 1;
}

.chart-fill {
  fill: rgba(244, 182, 92, 0.12);
}

.chart-line {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 4;
}

.chart-line-muted {
  stroke: rgba(255, 247, 229, 0.22);
  stroke-width: 2;
}

.market-systems-section,
.scarcity-section {
  width: min(100%, 1240px);
}

.sector-terminal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 182, 92, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.76);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.sector-terminal::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255, 247, 229, 0.045) 44%, transparent 54%),
    linear-gradient(180deg, transparent, rgba(244, 182, 92, 0.035));
  content: "";
  opacity: 0.52;
  pointer-events: none;
  transform: translateX(-18%);
  animation: terminal-scan 8s ease-in-out infinite;
}

.sector-terminal > * {
  position: relative;
  z-index: 1;
}

@keyframes terminal-scan {
  0%,
  100% {
    transform: translateX(-24%);
  }

  50% {
    transform: translateX(18%);
  }
}

.sector-terminal-head {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  padding: 0 18px;
}

.sector-terminal-head span,
.sector-terminal-head strong {
  color: rgba(255, 247, 229, 0.55);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sector-terminal-head strong {
  color: rgba(244, 182, 92, 0.86);
}

.market-depth-rail {
  display: flex;
  width: max-content;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.08), transparent 42%),
    rgba(5, 5, 5, 0.72);
  padding: 10px 14px;
  animation: depth-rail 30s linear infinite;
}

.market-depth-rail span {
  display: inline-grid;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 247, 229, 0.7);
  padding: 0 10px;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.market-pressure-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1px;
  height: 68px;
  align-items: end;
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.04), transparent 60%),
    rgba(5, 5, 5, 0.8);
  padding: 12px 14px;
}

.market-pressure-grid i {
  display: block;
  height: var(--p);
  min-height: 12px;
  border: 1px solid rgba(255, 247, 229, 0.06);
  border-radius: 999px 999px 5px 5px;
  background:
    linear-gradient(180deg, rgba(255, 236, 190, 0.96), rgba(244, 182, 92, 0.68) 42%, rgba(255, 122, 79, 0.28)),
    rgba(244, 182, 92, 0.16);
  box-shadow:
    0 0 22px rgba(244, 182, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  opacity: 0.74;
  transform-origin: bottom;
  animation: pressure-lift 4.6s ease-in-out infinite;
}

.market-pressure-grid i:nth-child(2n) {
  animation-delay: -1.1s;
}

.market-pressure-grid i:nth-child(3n) {
  animation-delay: -2.3s;
}

@keyframes pressure-lift {
  0%,
  100% {
    opacity: 0.62;
    transform: scaleY(0.84);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes depth-rail {
  to {
    transform: translateX(-34%);
  }
}

.sector-live-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  background: rgba(255, 247, 229, 0.055);
}

.sector-live-strip div {
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 6px;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 182, 92, 0.1), transparent 44%),
    rgba(5, 5, 5, 0.82);
  padding: 14px 16px;
}

.sector-live-strip span {
  color: rgba(255, 247, 229, 0.45);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sector-live-strip strong {
  color: rgba(255, 247, 229, 0.9);
  font-size: 0.92rem;
  line-height: 1.08;
}

.recent-change-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  background: rgba(244, 182, 92, 0.06);
}

.recent-change-rail span {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.76);
  color: rgba(255, 247, 229, 0.64);
  font-size: 0.66rem;
  font-weight: 850;
  padding: 0 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-change-rail b {
  color: rgba(244, 182, 92, 0.92);
  font-size: 0.62rem;
  font-weight: 950;
}

.sector-rows {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
}

.sector-column-head,
.asset-column-head {
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 247, 229, 0.075);
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.055), transparent 62%),
    rgba(5, 5, 5, 0.72);
  color: rgba(255, 247, 229, 0.44);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  padding: 10px 18px;
  text-transform: uppercase;
}

.sector-column-head {
  grid-template-columns: 8px minmax(190px, 1.35fr) 58px 54px minmax(112px, 0.68fr) 82px 88px 76px 64px;
  gap: 12px;
}

.sector-row {
  display: grid;
  grid-template-columns: 8px minmax(190px, 1.35fr) 58px 54px minmax(112px, 0.68fr) 82px 88px 76px 64px;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.07);
  padding: 10px 18px;
  animation: market-row-glow 7s ease-in-out infinite;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.sector-row > *,
.asset-exchange-row > * {
  min-width: 0;
}

.sector-row::before,
.asset-exchange-row::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.75);
  box-shadow: 0 0 14px rgba(244, 182, 92, 0.4);
  content: "";
  opacity: 0.38;
  animation: terminal-dot 3s ease-in-out infinite;
}

.sector-row.is-live::before,
.asset-exchange-row.is-live::before {
  opacity: 1;
  background: rgba(255, 221, 158, 0.95);
}

.sector-row:hover {
  border-color: rgba(244, 182, 92, 0.2);
  background: rgba(244, 182, 92, 0.045);
  transform: translateX(2px);
}

.sector-row div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px;
  gap: 4px;
  align-items: center;
}

.sector-row div span,
.sector-row div small {
  grid-column: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sector-row div::after {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 66px;
  height: 24px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.08);
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.2), rgba(255, 122, 79, 0.72)),
    linear-gradient(180deg, rgba(255, 247, 229, 0.04), transparent);
  clip-path: polygon(0 70%, 18% 58%, 34% 62%, 52% 32%, 68% 46%, 84% 18%, 100% 24%, 100% 100%, 0 100%);
  content: "";
  filter: drop-shadow(0 0 10px rgba(244, 182, 92, 0.18));
  opacity: 0.66;
  animation: sparkline-shift 5s ease-in-out infinite;
}

.sector-row > em {
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 247, 229, 0.52);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sector-row div span,
.asset-exchange-row div span {
  color: var(--paper);
  font-size: 0.96rem;
  font-weight: 900;
}

.sector-row small,
.asset-exchange-row small {
  color: rgba(255, 247, 229, 0.48);
  font-size: 0.72rem;
  font-weight: 750;
}

.sector-row b,
.asset-exchange-row b {
  color: rgba(255, 236, 190, 0.96);
  font-size: 1.18rem;
  font-weight: 950;
}

.sector-row i,
.asset-exchange-row i {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 247, 229, 0.075);
}

.sector-row i em,
.asset-exchange-row i em {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--heat, var(--rarity));
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(244, 182, 92, 0.38), rgba(255, 122, 79, 0.9));
  box-shadow: 0 0 22px rgba(244, 182, 92, 0.24);
  animation: signal-breathe 3.5s ease-in-out infinite;
}

.sector-row > span,
.asset-exchange-row > span {
  overflow: hidden;
  color: rgba(255, 247, 229, 0.66);
  font-size: 0.74rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sector-row > strong,
.asset-exchange-row > strong {
  overflow: hidden;
  color: rgba(244, 182, 92, 0.96);
  font-size: 0.82rem;
  font-weight: 950;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes sparkline-shift {
  0%,
  100% {
    opacity: 0.48;
    transform: translateY(2px);
  }

  50% {
    opacity: 0.92;
    transform: translateY(-1px);
  }
}

.sector-row.is-hot {
  background: linear-gradient(90deg, rgba(244, 182, 92, 0.07), transparent 66%);
}

.sector-row.is-live,
.asset-exchange-row.is-live {
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.085), transparent 58%),
    rgba(255, 255, 255, 0.012);
}

.sector-row.is-live > strong,
.asset-exchange-row.is-live > strong {
  color: rgba(255, 236, 190, 1);
  text-shadow: 0 0 18px rgba(244, 182, 92, 0.22);
}

@keyframes market-row-glow {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(244, 182, 92, 0);
  }

  50% {
    box-shadow: inset 4px 0 0 rgba(244, 182, 92, 0.18);
  }
}

@keyframes terminal-dot {
  0%,
  100% {
    transform: scale(0.82);
  }

  50% {
    transform: scale(1.18);
  }
}

@keyframes signal-breathe {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

.sector-tape {
  display: flex;
  width: max-content;
  gap: 22px;
  border-top: 1px solid rgba(255, 247, 229, 0.08);
  color: rgba(255, 247, 229, 0.56);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 14px 18px;
  text-transform: uppercase;
  animation: sector-tape 28s linear infinite;
}

@keyframes sector-tape {
  to {
    transform: translateX(-42%);
  }
}

.business-grid,
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.business-grid article,
.revenue-grid article,
.collectible-watchlist article,
.asset-board article {
  border: 1px solid rgba(255, 247, 229, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 10, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  padding: 16px;
}

.business-grid h3,
.revenue-grid h3 {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: clamp(1.05rem, 1.25vw, 1.36rem);
  font-weight: 900;
  line-height: 1.04;
}

.revenue-grid p {
  min-height: 44px;
  margin-bottom: 14px;
  color: rgba(255, 247, 229, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.business-grid dl,
.revenue-grid dl,
.asset-board dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.business-grid dl div,
.revenue-grid dl div,
.asset-board dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 247, 229, 0.08);
  padding-top: 7px;
}

.business-grid dd,
.revenue-grid dd,
.asset-board dd {
  margin: 0;
  color: rgba(255, 247, 229, 0.96);
  font-size: 0.82rem;
  font-weight: 900;
}

.collectible-shell,
.scarcity-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: 12px;
}

.collectible-watchlist,
.asset-board {
  display: grid;
  gap: 8px;
}

.collectible-watchlist article,
.asset-board article {
  display: grid;
  grid-template-columns: minmax(150px, 0.52fr) minmax(0, 1fr);
  min-height: 72px;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  padding: 13px 14px;
}

.collectible-watchlist span,
.asset-board > article > span {
  color: rgba(244, 182, 92, 0.94);
  font-size: 0.78rem;
  font-weight: 900;
}

.asset-board dl {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.asset-board dl div {
  display: grid;
  gap: 3px;
  border-top: 0;
  border-left: 1px solid rgba(255, 247, 229, 0.08);
  padding-top: 0;
  padding-left: 9px;
}

.asset-board dt,
.asset-board dd {
  line-height: 1.15;
}

.collectible-watchlist strong {
  color: var(--paper);
  font-size: clamp(1.1rem, 1.35vw, 1.42rem);
}

.collectible-watchlist small,
.collectible-chart p,
.scarcity-chart p {
  color: rgba(255, 247, 229, 0.6);
  line-height: 1.45;
}

.collectible-chart p,
.scarcity-chart p {
  margin: 0;
  font-size: 0.92rem;
}

.scarcity-exchange {
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 1fr);
  gap: 12px;
}

.exchange-spotlight,
.asset-exchange-board {
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 247, 229, 0.08), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(244, 182, 92, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.014)),
    rgba(5, 5, 5, 0.74);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.exchange-spotlight {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 470px;
  gap: 18px;
  overflow: hidden;
  padding: 22px;
}

.exchange-spotlight::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 182, 92, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(120deg, transparent, rgba(255, 247, 229, 0.045), transparent),
    linear-gradient(180deg, rgba(255, 247, 229, 0.02), transparent 58%);
  content: "";
  opacity: 0.62;
  pointer-events: none;
}

.rarity-orb {
  position: absolute;
  top: -42px;
  right: -52px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 247, 229, 0.2), transparent 18%),
    radial-gradient(circle, rgba(244, 182, 92, 0.24), transparent 52%);
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
  animation: rarity-orb 7s ease-in-out infinite;
}

@keyframes rarity-orb {
  0%,
  100% {
    transform: scale(0.96);
  }

  50% {
    transform: scale(1.06) translate(-8px, 8px);
  }
}

.exchange-spotlight > span {
  display: block;
  max-width: 100%;
  color: rgba(255, 247, 229, 0.54);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.exchange-spotlight > strong {
  display: block;
  max-width: 100%;
  color: var(--paper);
  font-size: clamp(3.45rem, 6.4vw, 5.55rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.86;
  white-space: nowrap;
}

.lot-spotlight {
  position: relative;
  z-index: 2;
  display: grid;
  justify-self: end;
  width: min(184px, 52%);
  gap: 5px;
  border: 1px solid rgba(255, 247, 229, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 247, 229, 0.08), rgba(255, 247, 229, 0.018)),
    rgba(5, 5, 5, 0.68);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 12px;
  backdrop-filter: blur(16px);
}

.lot-spotlight::before {
  width: 48px;
  height: 28px;
  justify-self: end;
  border-radius: 999px 999px 70% 70%;
  background:
    linear-gradient(135deg, rgba(255, 247, 229, 0.9), rgba(244, 182, 92, 0.36)),
    rgba(244, 182, 92, 0.16);
  box-shadow:
    0 0 34px rgba(244, 182, 92, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  content: "";
}

.lot-spotlight span,
.lot-spotlight small {
  color: rgba(255, 247, 229, 0.5);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lot-spotlight b {
  color: rgba(255, 236, 190, 0.96);
  font-size: 0.94rem;
  line-height: 1.02;
}

.exchange-spotlight svg {
  width: 100%;
  min-height: 170px;
}

.exchange-spotlight .chart-line {
  stroke-dasharray: 620;
  stroke-dashoffset: 0;
  animation: exchange-line 6s ease-in-out infinite;
}

@keyframes exchange-line {
  0%,
  100% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 34;
  }
}

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

.exchange-metrics span {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 247, 229, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 247, 229, 0.48);
  padding: 10px;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.exchange-metrics b {
  color: rgba(255, 236, 190, 0.95);
  font-size: 0.84rem;
  text-transform: none;
}

.auction-rail {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 247, 229, 0.08);
  padding-top: 12px;
}

.auction-rail b {
  color: rgba(255, 247, 229, 0.5);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.auction-rail span {
  display: flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(244, 182, 92, 0.12);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.055);
  color: rgba(255, 247, 229, 0.78);
  font-size: 0.74rem;
  font-weight: 850;
  padding: 0 10px;
}

.asset-exchange-board {
  display: grid;
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.035), transparent 42%),
    rgba(5, 5, 5, 0.72);
}

.asset-column-head {
  grid-template-columns: 8px minmax(150px, 1fr) 60px minmax(82px, 0.58fr) 74px 84px 72px;
  gap: 10px;
  padding: 12px 16px;
}

.asset-exchange-row {
  position: relative;
  display: grid;
  grid-template-columns: 8px minmax(150px, 1fr) 60px minmax(82px, 0.58fr) 74px 84px 72px;
  min-height: 72px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 247, 229, 0.075);
  padding: 12px 16px;
  transition:
    background 180ms ease,
    transform 180ms ease;
  animation: asset-row-pulse 8s ease-in-out infinite;
}

.asset-exchange-row::after {
  position: absolute;
  top: 16px;
  right: 14px;
  bottom: 16px;
  width: 30%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 68% 50%, rgba(255, 236, 190, 0.12), transparent 42%),
    linear-gradient(90deg, transparent, rgba(244, 182, 92, 0.075));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.asset-exchange-row:hover::after,
.asset-exchange-row.is-live::after {
  opacity: 1;
}

.asset-exchange-row:last-child {
  border-bottom: 0;
}

.asset-exchange-row:hover {
  background: rgba(255, 247, 229, 0.04);
  transform: translateX(2px);
}

.asset-exchange-row div {
  display: grid;
  gap: 4px;
}

@keyframes asset-row-pulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(244, 182, 92, 0);
  }

  50% {
    box-shadow: inset 3px 0 0 rgba(244, 182, 92, 0.12);
  }
}

.collaboration-section {
  width: min(100%, 1180px);
}

.collaboration-shell {
  display: grid;
  gap: 14px;
}

.collaboration-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collaboration-roles span {
  display: inline-grid;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 247, 229, 0.66);
  padding: 0 11px;
  font-size: 0.72rem;
  font-weight: 900;
}

.collaborator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.collaborator-grid article {
  display: grid;
  min-height: 260px;
  align-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 247, 229, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 0%, rgba(244, 182, 92, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 10, 0.84);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 16px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.collaborator-grid article:hover {
  border-color: rgba(244, 182, 92, 0.28);
  background:
    radial-gradient(circle at 78% 0%, rgba(244, 182, 92, 0.17), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.02)),
    rgba(12, 10, 8, 0.88);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.collaborator-grid article > span {
  width: max-content;
  border: 1px solid rgba(244, 182, 92, 0.2);
  border-radius: 999px;
  background: rgba(244, 182, 92, 0.08);
  color: rgba(244, 182, 92, 0.95);
  padding: 6px 9px;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.collaborator-grid h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.12rem, 1.35vw, 1.45rem);
  line-height: 1.04;
}

.collaborator-grid p {
  margin: -4px 0 0;
  color: rgba(255, 247, 229, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.collaborator-grid dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.collaborator-grid dl div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 247, 229, 0.08);
  padding-top: 8px;
}

.collaborator-grid dt {
  color: rgba(255, 247, 229, 0.5);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collaborator-grid dd {
  margin: 0;
  color: rgba(255, 247, 229, 0.9);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.28;
}

.founder-access-section .section-heading::after {
  content: "Private beta for people tracking property, revenue markets, collectibles, and market signals.";
}

/* Product immersion pass: turn mockups into one live city terminal. */
.visual-shell {
  background:
    radial-gradient(circle at 72% 22%, rgba(244, 182, 92, 0.16), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(255, 91, 143, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(6, 7, 7, 0.78);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.visual-shell::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.76)),
    radial-gradient(circle at 60% 45%, transparent 0 30%, rgba(5, 5, 5, 0.24) 58%, rgba(5, 5, 5, 0.66));
}

.visual-shell::after {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 38%;
  opacity: 0.36;
  filter: blur(2px);
}

.hero-promo-frame {
  inset: 66px 16px 76px;
  width: auto;
  height: auto;
  border-radius: 24px;
  opacity: 0.76;
}

.city-promo-frame {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -36px 72px rgba(0, 0, 0, 0.4);
}

.terminal-watchlist,
.hero-alert-stack,
.hero-mini-chart,
.hero-valuation-strip {
  border-color: rgba(255, 247, 229, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.54);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.terminal-watchlist {
  top: 78px;
  left: 24px;
  width: min(232px, calc(50% - 34px));
  border-radius: 16px;
}

.hero-alert-stack {
  top: 78px;
  right: 24px;
  width: min(226px, calc(50% - 34px));
  border-radius: 16px;
}

.hero-mini-chart {
  right: 24px;
  bottom: 98px;
  width: min(220px, calc(50% - 34px));
  border-radius: 16px;
}

.hero-valuation-strip {
  right: 268px;
  bottom: 100px;
  left: 24px;
  border-radius: 16px;
}

.hero-market-feed {
  right: 22px;
  bottom: 18px;
  left: 22px;
}

.city-plane {
  transform-style: preserve-3d;
}

.district-mass::after {
  position: absolute;
  inset: 10px 12px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.12) 0 5px, transparent 5px 13px),
    linear-gradient(180deg, rgba(255, 236, 190, 0.12), transparent);
  content: "";
  filter: drop-shadow(0 0 18px rgba(244, 182, 92, 0.1));
  opacity: 0.58;
  animation: district-massing-scan 5.8s ease-in-out infinite;
}

.building {
  width: 24px;
  height: calc(var(--h) * 1.28);
  border-color: rgba(255, 247, 229, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 247, 229, 0.34), transparent 20% 70%, rgba(5, 5, 5, 0.24)),
    linear-gradient(180deg, rgba(255, 236, 190, 0.92), rgba(244, 182, 92, 0.4) 38%, rgba(30, 26, 22, 0.88));
  box-shadow:
    0 calc(var(--h) * 0.22) calc(var(--h) * 0.5) rgba(0, 0, 0, 0.48),
    0 0 30px rgba(244, 182, 92, 0.16);
  transform: translate(-50%, -100%) rotate(-3deg) skewY(-8deg);
}

.building::before {
  position: absolute;
  top: -10px;
  right: -3px;
  left: 3px;
  height: 12px;
  border-radius: 5px 5px 0 0;
  background:
    linear-gradient(135deg, rgba(255, 247, 229, 0.68), rgba(244, 182, 92, 0.2)),
    rgba(255, 247, 229, 0.06);
  box-shadow: 0 0 18px rgba(244, 182, 92, 0.16);
  content: "";
  transform: skewX(-34deg);
}

.building.tower-b,
.building.tower-c,
.building.tower-d {
  width: 28px;
}

.building.warehouse-a,
.building.warehouse-b,
.building.warehouse-c {
  height: calc(var(--h) * 0.92);
}

.building:nth-of-type(2n) {
  animation-delay: -1.4s;
}

.building:nth-of-type(3n) {
  animation-delay: -2.8s;
}

@keyframes district-massing-scan {
  0%,
  100% {
    opacity: 0.36;
    transform: translateY(0);
  }

  50% {
    opacity: 0.72;
    transform: translateY(-3px);
  }
}

/* City minimap pass: building footprints sit on the map plane instead of flipping upward. */
.city-plane {
  background:
    linear-gradient(28deg, transparent 0 47%, rgba(255, 247, 229, 0.075) 48% 50%, transparent 51%),
    linear-gradient(102deg, transparent 0 48%, rgba(255, 247, 229, 0.058) 49% 51%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.028) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(180deg, rgba(255, 247, 229, 0.022) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(35deg, transparent 0 70px, rgba(244, 182, 92, 0.038) 71px 73px, transparent 74px 132px),
    radial-gradient(circle at 70% 44%, rgba(255, 122, 79, 0.13), transparent 28%),
    radial-gradient(circle at 35% 52%, rgba(244, 182, 92, 0.14), transparent 24%),
    rgba(7, 9, 9, 0.74);
  background-size: 180px 180px, 156px 156px, auto, auto, auto, auto, auto, auto;
  transform: rotateX(49deg) rotateZ(-10deg) translateY(3%) scale(1.05);
}

.city-plane::before {
  inset: 6%;
  border: 0;
  border-radius: 28px;
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(5, 5, 5, 0.44) 28px 34px, transparent 34px 88px),
    repeating-linear-gradient(180deg, transparent 0 24px, rgba(5, 5, 5, 0.4) 24px 30px, transparent 30px 82px),
    linear-gradient(90deg, transparent 0 45%, rgba(255, 247, 229, 0.09) 46% 48%, transparent 49%),
    linear-gradient(180deg, transparent 0 58%, rgba(255, 247, 229, 0.07) 59% 61%, transparent 62%);
  opacity: 0.54;
  transform: none;
}

.city-plane::after {
  inset: auto -4% -5% 55%;
  width: 50%;
  height: 30%;
  border: 1px solid rgba(92, 166, 244, 0.1);
  border-radius: 58% 42% 28% 72%;
  background:
    radial-gradient(circle at 36% 42%, rgba(92, 166, 244, 0.16), transparent 58%),
    linear-gradient(135deg, rgba(92, 166, 244, 0.08), transparent 66%);
  box-shadow: inset 0 0 42px rgba(92, 166, 244, 0.08);
  opacity: 0.62;
  transform: rotate(-8deg);
}

@keyframes map-float {
  0%,
  100% {
    transform: rotateX(49deg) rotateZ(-10deg) translateY(3%) scale(1.05);
  }

  50% {
    transform: rotateX(49deg) rotateZ(-9.4deg) translateY(2%) scale(1.065);
  }
}

.heatmap-sweep {
  transform: rotateX(49deg) rotateZ(-10deg) translateY(3%) scale(1.05);
}

@keyframes heatmap-sweep {
  to {
    transform: rotateX(49deg) rotateZ(350deg) translateY(3%) scale(1.05);
  }
}

.road {
  height: 5px;
  border: 1px solid rgba(255, 247, 229, 0.08);
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.42) 0 9px, transparent 9px 20px),
    rgba(255, 247, 229, 0.08);
  opacity: 0.62;
}

.road-c,
.road-d {
  width: 5px;
}

.highway {
  height: 13px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.48) 0 16px, transparent 16px 32px),
    linear-gradient(90deg, rgba(255, 247, 229, 0.12), rgba(244, 182, 92, 0.24), rgba(255, 247, 229, 0.1));
  opacity: 0.7;
}

.bridge,
.shore-pier,
.map-block,
.map-district-name,
.active-district-marker {
  position: absolute;
  pointer-events: none;
}

.bridge {
  z-index: 4;
  height: 9px;
  border: 1px solid rgba(255, 247, 229, 0.13);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.44) 0 8px, transparent 8px 16px),
    rgba(10, 10, 9, 0.66);
  box-shadow:
    0 0 22px rgba(244, 182, 92, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.72;
}

.bridge-a {
  right: 4%;
  bottom: 22%;
  width: 25%;
  transform: rotate(-19deg);
}

.bridge-b {
  right: 28%;
  bottom: 15%;
  width: 19%;
  transform: rotate(12deg);
}

.shore-pier {
  z-index: 4;
  width: 64px;
  height: 12px;
  border: 1px solid rgba(244, 182, 92, 0.14);
  border-radius: 999px 8px 8px 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.18) 0 4px, transparent 4px 10px),
    rgba(244, 182, 92, 0.09);
  box-shadow: 0 0 22px rgba(244, 182, 92, 0.12);
  opacity: 0.68;
}

.pier-a {
  right: 12%;
  bottom: 28%;
  transform: rotate(-10deg);
}

.pier-b {
  right: 19%;
  bottom: 19%;
  width: 78px;
  transform: rotate(7deg);
}

.map-block {
  z-index: 2;
  border: 1px solid rgba(255, 247, 229, 0.08);
  border-radius: 9px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.12) 0 5px, transparent 5px 12px),
    repeating-linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0 4px, transparent 4px 13px),
    rgba(255, 247, 229, 0.018);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.16),
    0 0 24px rgba(244, 182, 92, 0.045);
  opacity: 0.48;
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    opacity 240ms ease,
    filter 240ms ease;
}

.block-downtown {
  top: 24%;
  left: 46%;
  width: 18%;
  height: 16%;
  transform: rotate(4deg);
}

.block-beach {
  top: 40%;
  right: 11%;
  width: 23%;
  height: 15%;
  transform: rotate(-7deg);
}

.block-port {
  bottom: 24%;
  left: 14%;
  width: 25%;
  height: 15%;
  transform: rotate(-4deg);
}

.block-creator {
  top: 36%;
  left: 30%;
  width: 16%;
  height: 13%;
  transform: rotate(10deg);
}

.block-nightlife {
  right: 27%;
  bottom: 18%;
  width: 22%;
  height: 14%;
  transform: rotate(8deg);
}

.map-district-name {
  z-index: 6;
  color: rgba(255, 247, 229, 0.62);
  font-size: 0.5rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-shadow:
    0 1px 10px rgba(0, 0, 0, 0.72),
    0 0 18px rgba(244, 182, 92, 0.22);
  text-transform: uppercase;
  white-space: nowrap;
}

.name-downtown {
  top: 31%;
  left: 51%;
  transform: translate(-50%, -50%) rotate(9deg);
}

.name-beach {
  top: 45%;
  right: 18%;
  transform: translate(50%, -50%) rotate(9deg);
}

.name-port {
  bottom: 30%;
  left: 25%;
  transform: translate(-50%, 50%) rotate(9deg);
}

.name-nightlife {
  right: 33%;
  bottom: 22%;
  transform: translate(50%, 50%) rotate(9deg);
}

.name-creator {
  top: 44%;
  left: 37%;
  transform: translate(-50%, -50%) rotate(9deg);
}

.name-luxury {
  top: 24%;
  right: 14%;
  transform: translate(50%, -50%) rotate(9deg);
}

.active-district-marker {
  top: var(--active-y, 30%);
  left: var(--active-x, 48%);
  z-index: 5;
  width: var(--active-w, 24%);
  height: var(--active-h, 18%);
  border: 1px solid rgba(255, 236, 190, 0.52);
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.14),
    0 0 26px rgba(244, 182, 92, 0.3);
  opacity: 0.74;
  transform: translate(-50%, -50%);
  transition:
    top 360ms ease,
    left 360ms ease,
    width 360ms ease,
    height 360ms ease;
}

.active-district-marker::before,
.active-district-marker::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.active-district-marker::before {
  inset: -14px;
  border: 1px solid rgba(244, 182, 92, 0.2);
  border-radius: inherit;
  animation: active-district-scan 2.8s ease-in-out infinite;
}

.active-district-marker::after {
  inset: 50% -16px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 190, 0.74), transparent);
  opacity: 0.66;
}

.property-heatmap-dashboard[data-active-district="downtown-core"] .block-downtown,
.property-heatmap-dashboard[data-active-district="beach-strip"] .block-beach,
.property-heatmap-dashboard[data-active-district="port-district"] .block-port,
.property-heatmap-dashboard[data-active-district="creator-row"] .block-creator,
.property-heatmap-dashboard[data-active-district="nightlife-zone"] .block-nightlife,
.property-heatmap-dashboard[data-active-district="luxury-island"] .block-beach {
  border-color: rgba(255, 236, 190, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.16),
    0 0 34px rgba(244, 182, 92, 0.14);
  filter: saturate(1.18) brightness(1.08);
  opacity: 0.88;
}

@keyframes active-district-scan {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.08);
  }
}

.parcel-boundary {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(244, 182, 92, 0.07), transparent 70%),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    inset 0 0 0 1px rgba(5, 5, 5, 0.18),
    0 0 20px rgba(244, 182, 92, 0.04);
}

.district-mass {
  border-radius: 12px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.075) 0 2px, transparent 2px 15px),
    repeating-linear-gradient(180deg, rgba(255, 247, 229, 0.052) 0 2px, transparent 2px 15px),
    radial-gradient(circle at 55% 48%, rgba(244, 182, 92, 0.12), transparent 50%),
    rgba(255, 247, 229, 0.018);
}

.district-mass::before,
.district-mass::after {
  position: absolute;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 229, 0.16) 0 6px, transparent 6px 13px),
    repeating-linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0 4px, transparent 4px 12px);
  content: "";
  opacity: 0.5;
}

.district-mass::before {
  inset: 18% 16% 28% 12%;
}

.district-mass::after {
  inset: 48% 18% 14% 28%;
  opacity: 0.34;
}

.building {
  width: var(--bw, 30px);
  height: var(--bh, clamp(12px, calc(var(--h) * 0.2), 30px));
  border: 1px solid rgba(255, 247, 229, 0.19);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 247, 229, 0.32), transparent 18% 68%, rgba(5, 5, 5, 0.32)),
    linear-gradient(180deg, rgba(255, 236, 190, 0.52), rgba(244, 182, 92, 0.18)),
    rgba(30, 27, 23, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.32),
    0 0 16px rgba(244, 182, 92, 0.1);
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: footprint-market-glow 5.8s ease-in-out infinite;
}

.building::before {
  position: absolute;
  inset: 3px 4px;
  height: auto;
  border: 1px solid rgba(5, 5, 5, 0.2);
  border-radius: 3px;
  background:
    repeating-linear-gradient(90deg, rgba(5, 5, 5, 0.34) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(180deg, rgba(255, 247, 229, 0.09) 0 2px, transparent 2px 7px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  content: "";
  opacity: 0.68;
  transform: none;
}

.building::after {
  position: absolute;
  inset: auto -3px -5px 4px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  content: "";
  filter: blur(4px);
  opacity: 0.34;
  transform: none;
}

.building.tower-a,
.building.tower-b,
.building.tower-c,
.building.tower-d,
.building.tower-e {
  --bw: 24px;
  --bh: 30px;
}

.building.tower-b {
  --bw: 28px;
  --bh: 36px;
}

.building.tower-c {
  --bh: 32px;
}

.building.block-a,
.building.block-b,
.building.block-c,
.building.block-d,
.building.block-e,
.building.block-f {
  --bw: 46px;
  --bh: 22px;
}

.building.lowrise-a,
.building.lowrise-b,
.building.lowrise-c,
.building.lowrise-d {
  --bw: 36px;
  --bh: 22px;
  background:
    linear-gradient(135deg, rgba(255, 247, 229, 0.22), transparent 30% 72%, rgba(5, 5, 5, 0.22)),
    linear-gradient(180deg, rgba(255, 122, 79, 0.46), rgba(64, 41, 30, 0.72));
}

.building.warehouse-a,
.building.warehouse-b,
.building.warehouse-c {
  --bw: 72px;
  --bh: 28px;
  background:
    linear-gradient(135deg, rgba(255, 247, 229, 0.18), transparent 64%),
    linear-gradient(180deg, rgba(244, 182, 92, 0.42), rgba(41, 33, 24, 0.78));
}

.building.warehouse-b {
  --bw: 86px;
}

.building.warehouse-c {
  --bw: 78px;
}

@keyframes footprint-market-glow {
  0%,
  100% {
    filter: brightness(0.92);
  }

  50% {
    filter: brightness(1.14);
  }
}

.exchange-spotlight {
  background:
    radial-gradient(circle at 70% 14%, rgba(255, 247, 229, 0.12), transparent 23%),
    radial-gradient(circle at 26% 36%, rgba(244, 182, 92, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(5, 5, 5, 0.78);
}

.exchange-spotlight::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 46%, rgba(255, 247, 229, 0.08) 50%, transparent 55%),
    radial-gradient(circle at 66% 20%, rgba(244, 182, 92, 0.12), transparent 34%);
  content: "";
  opacity: 0.54;
  pointer-events: none;
  animation: exchange-glint 9s ease-in-out infinite;
}

.exchange-spotlight > span:not(.rarity-orb),
.exchange-spotlight > strong,
.exchange-spotlight svg,
.prestige-market-band,
.exchange-metrics,
.auction-rail {
  position: relative;
  z-index: 1;
}

.rarity-orb {
  position: absolute;
  z-index: 0;
  background:
    radial-gradient(circle, rgba(255, 247, 229, 0.26), transparent 18%),
    radial-gradient(circle, rgba(244, 182, 92, 0.34), transparent 52%);
  filter: blur(1px);
}

.prestige-market-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.prestige-market-band span {
  display: grid;
  min-height: 70px;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 247, 229, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 247, 229, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.034);
  padding: 12px;
}

.prestige-market-band b {
  color: rgba(255, 236, 190, 0.96);
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1;
}

.prestige-market-band small {
  color: rgba(255, 247, 229, 0.5);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.asset-exchange-row.is-live {
  background:
    linear-gradient(90deg, rgba(244, 182, 92, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.012);
}

.asset-exchange-row.is-live b,
.asset-exchange-row.is-live strong {
  color: rgba(255, 236, 190, 1);
  text-shadow: 0 0 18px rgba(244, 182, 92, 0.22);
}

@keyframes exchange-glint {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.24;
  }

  50% {
    transform: translateX(18%);
    opacity: 0.6;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    grid-template-columns: minmax(220px, max-content) 1fr;
  }

  .nav-links {
    display: none;
  }

  .thesis-section,
  .community-section,
  .sector-board,
  .opportunity-map-shell,
  .why-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
    gap: clamp(22px, 3.2vw, 38px);
    min-height: auto;
  }

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

  .early-cinematic-cta {
    grid-template-columns: 1fr;
    min-height: 460px;
  }

  .early-market-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
  }

  .economy-signals-section,
  .builder-network-section {
    grid-template-columns: 1fr;
  }

  .app-coming-section {
    grid-template-columns: 1fr;
  }

  .app-device {
    justify-self: center;
    width: min(300px, 78vw);
    margin: 4px 0 20px;
    transform: none;
  }

  .economy-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-shell {
    min-height: 500px;
    transform: none;
  }

  .terminal-topline {
    right: 14px;
    left: 14px;
    font-size: 0.62rem;
  }

  .terminal-watchlist {
    top: 66px;
    left: 14px;
    width: min(248px, calc(100% - 28px));
  }

  .watchlist-head {
    padding: 14px;
  }

  .watch-row {
    padding: 0 14px;
  }

  .hero-promo-frame {
    inset: 76px 14px 66px;
    width: auto;
    height: auto;
  }

  .hero-alert-stack {
    top: 76px;
    right: 16px;
    bottom: auto;
    width: min(220px, calc(52% - 18px));
    padding: 12px;
  }

  .hero-alert-stack div {
    min-height: 28px;
    font-size: 0.64rem;
  }

  .hero-mini-chart {
    right: 16px;
    bottom: 76px;
    width: min(220px, calc(52% - 18px));
    padding: 12px;
  }

  .hero-valuation-strip {
    display: none;
  }

  .hero-market-feed {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .heat-card {
    top: 270px;
    left: 16px;
    width: min(178px, calc(52% - 18px));
  }

  .graph-card {
    top: 202px;
    right: 16px;
    width: min(226px, calc(58% - 18px));
  }

  .supply-card {
    right: 16px;
    bottom: 88px;
    width: min(318px, calc(100% - 32px));
  }

  .flow-card {
    bottom: 88px;
    left: 16px;
    width: min(192px, calc(54% - 18px));
  }

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

  .live-intel-band {
    grid-template-columns: 1fr;
  }

  .intel-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intel-pulse-stack {
    display: none;
  }

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

  .market-signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-intro {
    grid-column: 1 / -1;
  }

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

  .priority-card,
  .compact-card {
    grid-column: auto;
  }

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

  .membership-panel,
  .application-shell {
    grid-template-columns: 1fr;
  }

  .membership-tiers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-section .section-heading,
  .property-intel,
  .collectible-shell,
  .scarcity-shell,
  .scarcity-exchange {
    grid-template-columns: 1fr;
  }

  .heatmap-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-section .section-heading .eyebrow,
  .product-section .section-heading h2,
  .product-section .section-heading p:not(.eyebrow) {
    grid-column: 1;
  }

  .business-grid,
  .revenue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-exchange-row {
    grid-template-columns: 8px minmax(150px, 1fr) 54px minmax(78px, 0.62fr) 68px 78px 70px;
  }

  .asset-column-head {
    grid-template-columns: 8px minmax(150px, 1fr) 54px minmax(78px, 0.62fr) 68px 78px 70px;
  }

  .sector-row {
    grid-template-columns: 8px minmax(160px, 1fr) 58px 48px minmax(110px, 0.65fr) repeat(3, minmax(62px, 0.5fr)) 58px;
  }

  .sector-column-head {
    grid-template-columns: 8px minmax(160px, 1fr) 58px 48px minmax(110px, 0.65fr) repeat(3, minmax(62px, 0.5fr)) 58px;
  }

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

  .heatmap-stage {
    min-height: 650px;
  }

  .property-label {
    min-width: 132px;
  }

  .card-roi,
  .live-signal-stack {
    top: 74px;
  }

  .heatmap-inspector {
    top: 134px;
  }

  .founder-access-section .section-heading {
    grid-template-columns: 1fr;
  }

  .founder-access-section .section-heading .eyebrow,
  .founder-access-section .section-heading h2,
  .founder-access-section .section-heading p:not(.eyebrow),
  .founder-access-section .section-heading::after {
    grid-column: 1;
    grid-row: auto;
  }

  .proof-names {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .community-copy h2 {
    max-width: 12ch;
  }

  .thesis-copy h2 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .global-market-tape {
    top: 98px;
    height: 32px;
  }

  .global-ticker-track span {
    font-size: 0.62rem;
  }

  main {
    padding: 18px;
  }

  .site-nav {
    grid-template-columns: 1fr max-content;
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding-inline: 11px;
    font-size: 0.74rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 18px;
  }

  .app-coming-section {
    padding: 24px;
    border-radius: 26px;
  }

  .app-coming-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }

  .app-coming-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .app-coming-actions .button {
    width: 100%;
  }

  .app-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  h1 {
    max-width: 12.4ch;
    margin-bottom: 18px;
    font-size: clamp(2.58rem, 11vw, 3.75rem);
    letter-spacing: -0.026em;
    line-height: 1;
  }

  .hero-subhead {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .button {
    width: 100%;
  }

  .proof-strip span {
    flex: 1 1 140px;
    text-align: center;
  }

  .hero-copy .proof-strip {
    display: none;
  }

  .hero-background-media {
    left: 0;
    opacity: 0.3;
  }

  .early-cinematic-cta {
    min-height: 430px;
    padding: 24px;
    border-radius: 26px;
  }

  .early-cinematic-copy h2 {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  .early-market-strip {
    grid-template-columns: 1fr;
  }

  .early-city-atmosphere::before {
    right: -42%;
    width: 118%;
    opacity: 0.72;
  }

  .market-signal-strip {
    grid-template-columns: 1fr;
    margin: 18px auto 28px;
  }

  .economy-signals-section,
  .builder-network-section {
    margin: 18px auto;
    padding: 22px;
    border-radius: 24px;
  }

  .economy-signals-section h2,
  .builder-network-section h2 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }

  .economy-signal-grid {
    grid-template-columns: 1fr;
  }

  .economy-signal-grid article {
    min-height: 132px;
  }

  .builder-network-section::after {
    right: -32%;
    width: 112%;
    opacity: 0.42;
  }

  .builder-roster article {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 7px;
    padding: 14px;
  }

  .builder-roster small {
    justify-self: start;
  }

  .market-signal-strip a,
  .signal-intro {
    min-height: auto;
  }

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

  .visual-shell {
    min-height: 430px;
    border-radius: 24px;
  }

  .terminal-topline {
    right: 12px;
    left: 12px;
    font-size: 0.62rem;
  }

  .terminal-watchlist {
    top: 66px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .watchlist-head {
    min-height: 58px;
    padding: 10px 12px;
  }

  .watchlist-head strong {
    font-size: 1.8rem;
  }

  .watch-row {
    min-height: 32px;
    padding: 0 12px;
  }

  .hero-promo-frame {
    top: 186px;
    right: 12px;
    bottom: auto;
    left: 12px;
    width: auto;
    height: 210px;
    border-radius: 20px;
    opacity: 0.4;
  }

  .promo-frame figcaption {
    display: none;
  }

  .city-density-block,
  .city-label {
    opacity: 0.62;
  }

  .hero-alert-stack,
  .hero-mini-chart,
  .hero-valuation-strip {
    display: none;
  }

  .hero-market-feed {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 38px;
  }

  .heat-card {
    display: none;
    top: 70px;
    left: 12px;
    width: 138px;
    padding: 10px;
  }

  .heat-card strong {
    font-size: 1.8rem;
  }

  .graph-card {
    display: none;
  }

  .supply-card {
    right: 12px;
    bottom: 24px;
    left: 12px;
    width: auto;
    padding: 12px;
  }

  .flow-card {
    display: none;
  }

  .chain {
    flex-wrap: wrap;
  }

  .chain i {
    display: none;
  }

  .social-proof {
    grid-template-columns: 1fr;
  }

  .metric-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .metric-ribbon div {
    min-height: 92px;
    padding: 14px;
  }

  .metric-ribbon small {
    grid-column: 1 / -1;
    max-width: none;
    min-height: auto;
    padding: 14px;
  }

  .live-intel-band {
    border-radius: 24px;
  }

  .intel-feed-head {
    padding: 18px;
  }

  .intel-feed {
    grid-template-columns: 1fr;
  }

  .intel-feed article {
    min-height: 126px;
    border-top: 1px solid rgba(255, 247, 229, 0.08);
    border-left: 0;
    padding: 18px;
  }

  .proof-names {
    grid-template-columns: 1fr 1fr;
  }

  .proof-names span {
    min-height: 42px;
  }

  .thesis-section,
  .signals-section,
  .economy-section,
  .community-section,
  .promo-section,
  .market-section,
  .opportunity-section,
  .os-section,
  .why-section {
    margin: 18px auto;
    padding: 24px;
    border-radius: 26px;
  }

  .thesis-section::before,
  .signals-section::before,
  .economy-section::before,
  .community-section::before,
  .promo-section::before,
  .market-section::before,
  .opportunity-section::before,
  .os-section::before,
  .why-section::before {
    inset: 0;
  }

  .thesis-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .signal-card,
  .economy-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

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

  .economy-grid,
  .tier-strip,
  .business-grid,
  .revenue-grid,
  .collaborator-grid,
  .property-intel,
  .collectible-shell,
  .scarcity-shell,
  .scarcity-exchange,
  .asset-board,
  .collectible-watchlist,
  .product-section .section-heading {
    grid-template-columns: 1fr;
  }

  .asset-board article {
    grid-template-columns: 1fr;
  }

  .asset-board dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-section {
    padding: 24px;
    border-radius: 26px;
  }

  .product-section .section-heading .eyebrow,
  .product-section .section-heading h2,
  .product-section .section-heading p:not(.eyebrow) {
    grid-column: 1;
  }

  .property-map {
    min-height: 330px;
  }

  .heatmap-toolbar span {
    flex: 1 1 120px;
    justify-content: center;
  }

  .heatmap-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .heatmap-stage {
    min-height: 560px;
    border-radius: 24px;
  }

  .heatmap-command-bar {
    top: 12px;
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    min-height: 40px;
    border-radius: 16px;
    padding: 0 12px;
  }

  .heatmap-command-bar strong,
  .heatmap-command-bar b {
    display: none;
  }

  .city-plane {
    inset: 18% -5% 18%;
    transform: rotateX(49deg) rotateZ(-10deg) translateY(7%) scale(0.92);
    animation: none;
  }

  .heatmap-sweep {
    inset: 18% -5% 18%;
    transform: rotateX(49deg) rotateZ(-10deg) translateY(7%) scale(0.92);
    animation: none;
  }

  .property-label {
    min-width: 112px;
    padding: 9px;
  }

  .property-label strong {
    font-size: 0.72rem;
  }

  .property-label span {
    font-size: 0.68rem;
  }

  .label-port,
  .label-luxury {
    display: none;
  }

  .label-downtown {
    top: 13%;
    left: 34%;
  }

  .label-beach {
    top: 31%;
    right: 4%;
  }

  .label-nightlife {
    right: 6%;
    bottom: 23%;
  }

  .label-creator {
    top: 36%;
    left: 6%;
  }

  .label-luxury {
    top: 9%;
    right: 5%;
  }

  .heatmap-card {
    display: none;
  }

  .traffic-stream,
  .ownership-density-panel,
  .live-signal-stack,
  .district-metric,
  .district-ranking-panel,
  .mini-property-card,
  .demand-radar,
  .territory-flow,
  .map-intel-ticker {
    display: none;
  }

  .appreciation-arrow {
    min-width: 48px;
    min-height: 26px;
    font-size: 0.68rem;
  }

  .arrow-a {
    top: 24%;
    right: 12%;
  }

  .arrow-b {
    right: 12%;
    bottom: 32%;
  }

  .arrow-c {
    top: 43%;
    left: 10%;
  }

  .heatmap-inspector {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 13px;
  }

  .heatmap-disclaimer {
    display: none;
  }

  .sector-terminal-head {
    display: grid;
    gap: 6px;
    min-height: auto;
    padding: 14px;
  }

  .sector-live-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .recent-change-rail span:nth-child(n+2) {
    display: none;
  }

  .market-pressure-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 54px;
  }

  .sector-column-head,
  .asset-column-head {
    display: none;
  }

  .sector-row {
    grid-template-columns: 8px minmax(0, 1fr) 44px 56px;
    gap: 10px;
    min-height: auto;
    padding: 13px 14px;
  }

  .sector-row i {
    grid-column: 1 / -1;
  }

  .sector-row div {
    grid-template-columns: minmax(0, 1fr);
  }

  .sector-row div::after {
    display: none;
  }

  .sector-row > span {
    display: none;
  }

  .sector-row > em {
    display: none;
  }

  .sector-row > strong {
    text-align: left;
  }

  .scarcity-exchange {
    gap: 10px;
  }

  .exchange-spotlight {
    min-height: 330px;
    padding: 18px;
  }

  .lot-spotlight {
    position: static;
    width: auto;
    margin-top: -8px;
  }

  .exchange-metrics {
    grid-template-columns: 1fr;
  }

  .asset-exchange-row {
    grid-template-columns: 8px minmax(0, 1fr) 44px 56px;
    gap: 10px;
    min-height: auto;
    padding: 13px 14px;
  }

  .asset-exchange-row i {
    grid-column: 1 / -1;
  }

  .asset-exchange-row > span {
    display: none;
  }

  .priority-card,
  .compact-card {
    grid-column: auto;
  }

  .tier-strip div {
    min-height: auto;
  }

  .community-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .community-ledger {
    padding: 18px;
    border-radius: 22px;
  }

  .community-callout strong {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .promo-section {
    grid-template-columns: 1fr;
  }

  .promo-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4.45rem);
  }

  .promo-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .promo-tile,
  .promo-tile.large {
    grid-row: auto;
    min-height: 224px;
  }

  .section-heading h2,
  .why-copy h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 11vw, 4.45rem);
    letter-spacing: -0.028em;
    line-height: 0.94;
  }

  .final-cta h2 {
    font-size: clamp(2.35rem, 11vw, 4.6rem);
  }

  .map-console {
    min-height: 560px;
  }

  .opportunity-stage {
    min-height: 560px;
    border-radius: 24px;
  }

  .map-telemetry {
    right: 12px;
    left: 12px;
    width: auto;
    padding: 10px 12px;
  }

  .map-telemetry strong {
    font-size: 1.7rem;
  }

  .map-node {
    width: 94px;
    min-height: 48px;
    padding: 8px;
    border-radius: 15px;
    font-size: 0.68rem;
  }

  .opportunity-detail {
    border-radius: 24px;
  }

  .opportunity-detail dl {
    grid-template-columns: 1fr;
  }

  .map-tape {
    display: grid;
    min-height: auto;
    border-radius: 22px;
    padding: 14px;
  }

  .map-media {
    inset: 14px;
    border-radius: 22px;
  }

  .map-media figcaption {
    top: 12px;
    left: 14px;
    max-width: 22ch;
    font-size: 0.58rem;
  }

  .sector-detail {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .sector-detail dl {
    grid-template-columns: 1fr;
  }

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

  .membership-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 22px;
  }

  .membership-copy .button {
    width: 100%;
  }

  .membership-tiers,
  .application-grid,
  .interest-options {
    grid-template-columns: 1fr;
  }

  .membership-tiers article {
    min-height: auto;
  }

  .application-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .application-shell {
    grid-template-columns: 1fr;
    padding: 22px;
    background-size: 110px 110px, 110px 110px, auto, auto;
  }

  .application-intro h2 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .application-form .button {
    width: 100%;
  }

  .op-card,
  .os-card {
    min-height: auto;
  }

  .founders-form {
    grid-template-columns: 1fr;
  }

  .landing-footer {
    display: grid;
  }

  .landing-footer nav {
    flex-wrap: wrap;
  }
}

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

  #empireCanvas {
    display: none;
  }
}
