* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #040711;
  --bg2: #070d1d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f8fbff;
  --muted: rgba(235, 242, 255, 0.68);
  --dark-text: #0c1324;
  --blue: #55a2ff;
  --cyan: #5df1ff;
  --violet: #9c6bff;
  --gold: #ffe7a3;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  --radius: 30px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(85, 162, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 80% 15%, rgba(156, 107, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(93, 241, 255, 0.1), transparent 38rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

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

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

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

#constellation {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
}

.page-shell {
  position: relative;
  z-index: 2;
}

.cursor-glow {
  position: fixed;
  width: 32rem;
  height: 32rem;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85, 162, 255, 0.18), transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(12px);
  opacity: 0.82;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #040711;
  animation: preloadOut 1s ease 1.45s forwards;
}

.loader-mark {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
}

.loader-mark span {
  font-size: 46px;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 28px rgba(85, 162, 255, 0.8);
}

.loader-ring,
.loader-ring::before,
.loader-ring::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 999px;
  border: 1px solid rgba(85, 162, 255, 0.38);
}

.loader-ring {
  animation: spin 1.2s linear infinite;
  border-top-color: var(--cyan);
}

.loader-ring::before {
  inset: 13px;
  animation: spin 1.8s linear infinite reverse;
  border-left-color: var(--violet);
}

.loader-ring::after {
  inset: 27px;
  animation: spin 1s linear infinite;
  border-bottom-color: var(--gold);
}

.topbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 8, 18, 0.62);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #06101f;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 0 32px rgba(85, 162, 255, 0.46);
}

.brand-word {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 6px;
}

.nav {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.topbar-cta {
  padding: 12px 18px;
  color: #08111f;
  background: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.14);
  transition: 0.25s ease;
}

.topbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(85, 162, 255, 0.24);
}

.section {
  position: relative;
  padding: 110px 7vw;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 68% 50%, rgba(85, 162, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 24% 52%, rgba(156, 107, 255, 0.15), transparent 28rem);
}

.hero-grid {
  width: min(1300px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 60px;
  align-items: center;
}

.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(211, 229, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.micro-label span {
  width: 42px;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.micro-label.centered {
  justify-content: center;
}

.hero h1 {
  margin: 22px 0;
  max-width: 780px;
  font-size: clamp(4.2rem, 10vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.hero h1 .line {
  display: block;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #ffffff, var(--cyan), var(--blue), var(--violet), #ffffff);
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientMove 6s ease-in-out infinite;
}

.hero-subtitle {
  max-width: 680px;
  color: rgba(243, 247, 255, 0.82);
  font-size: clamp(1.18rem, 2vw, 1.58rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  overflow: hidden;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet), var(--cyan));
  background-size: 200% 100%;
  transition: opacity 0.25s ease;
  animation: gradientMove 4s linear infinite;
}

.button.primary {
  color: #03101f;
  background: linear-gradient(135deg, #ffffff, #cde7ff 42%, #7dbbff);
  box-shadow: 0 22px 54px rgba(85, 162, 255, 0.26);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.button.large {
  min-height: 68px;
  padding: 0 36px;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 62px rgba(85, 162, 255, 0.34);
}

.button:hover::before {
  opacity: 0.25;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 44px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 24px;
  line-height: 1;
}

.trust-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 600px;
}

.orbital-card {
  position: relative;
  width: min(560px, 90vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  perspective: 1000px;
}

.orbital-card::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(93, 241, 255, 0.24), transparent 56%),
    radial-gradient(circle at 30% 20%, rgba(156, 107, 255, 0.22), transparent 40%);
  filter: blur(18px);
  animation: breathe 5s ease-in-out infinite;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform-style: preserve-3d;
}

.ring-one {
  inset: 8%;
  animation: orbitTilt 12s linear infinite;
}

.ring-two {
  inset: 18%;
  border-color: rgba(93, 241, 255, 0.3);
  animation: orbitTilt 9s linear infinite reverse;
}

.ring-three {
  inset: 29%;
  border-color: rgba(156, 107, 255, 0.28);
  animation: orbitTilt2 11s linear infinite;
}

.domain-core {
  position: relative;
  z-index: 3;
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(6, 12, 26, 0.82);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 0 60px rgba(93, 241, 255, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.42);
}

.domain-pulse {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(93, 241, 255, 0.26);
  animation: pulse 2.8s ease-out infinite;
}

.domain-core p {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 5px;
}

.domain-core span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.chip-a { top: 17%; left: 14%; animation: float 4.6s ease-in-out infinite; }
.chip-b { top: 20%; right: 7%; animation: float 5.2s ease-in-out infinite 0.3s; }
.chip-c { bottom: 23%; left: 4%; animation: float 4.9s ease-in-out infinite 0.6s; }
.chip-d { bottom: 14%; right: 16%; animation: float 5.5s ease-in-out infinite 0.9s; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator div {
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-indicator div::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: white;
  animation: scrollLine 1.5s ease-in-out infinite;
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: ticker 32s linear infinite;
}

.ticker span {
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading h2,
.value-copy h2,
.acquisition-card h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.section-heading p:last-child,
.value-copy p,
.acquisition-card p {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.story-layout {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 22px;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.glass-panel.large {
  grid-row: span 2;
  min-height: 544px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.glass-panel::before,
.market-card::before,
.acquisition-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(93, 241, 255, 0.16), transparent 24rem);
  transition: opacity 0.25s ease;
}

.glass-panel:hover::before,
.market-card:hover::before,
.acquisition-card:hover::before {
  opacity: 1;
}

.panel-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
}

.glass-panel h3,
.market-card h3 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  font-size: clamp(1.5rem, 2.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.glass-panel p,
.market-card p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
}

.market-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.market-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.market-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(93, 241, 255, 0.26);
}

.market-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #07111f;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  border-radius: 22px;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(85, 162, 255, 0.22);
}

.market-card span {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.value-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 34px;
  align-items: center;
}

.value-copy {
  padding-right: 2vw;
}

.value-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.value-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.value-list strong {
  color: var(--cyan);
  font-size: 15px;
  letter-spacing: 2px;
}

.value-list span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.value-terminal {
  overflow: hidden;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(93, 241, 255, 0.12), transparent 22rem),
    rgba(4, 8, 18, 0.86);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.terminal-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.terminal-top span:nth-child(1) { background: #ff6b6b; }
.terminal-top span:nth-child(2) { background: #ffd166; }
.terminal-top span:nth-child(3) { background: #5df1ff; }

pre {
  padding: 30px;
  white-space: pre-wrap;
  color: #d7ecff;
  font-size: clamp(0.95rem, 1.24vw, 1.18rem);
  line-height: 1.75;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.acquisition {
  padding-bottom: 130px;
}

.acquisition-card {
  position: relative;
  overflow: hidden;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 88px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 241, 255, 0.18), transparent 34rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.acquisition-card h2 {
  font-size: clamp(3rem, 7.4vw, 8rem);
}

.acquisition-card > p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,0.12) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: shine 6s ease-in-out infinite;
}

.offer-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 42px auto;
}

.offer-box div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.offer-box span,
.offer-box strong {
  display: block;
}

.offer-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.offer-box strong {
  margin-top: 8px;
  color: white;
  font-size: 22px;
}

.email-note {
  margin-top: 22px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 7vw;
  color: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.19,1,.22,1);
}

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

@keyframes preloadOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

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

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes orbitTilt {
  from { transform: rotateX(66deg) rotateZ(0deg); }
  to { transform: rotateX(66deg) rotateZ(360deg); }
}

@keyframes orbitTilt2 {
  from { transform: rotateY(62deg) rotateZ(0deg); }
  to { transform: rotateY(62deg) rotateZ(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.76; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(0.88); opacity: 0.75; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes scrollLine {
  from { transform: translateY(-18px); }
  to { transform: translateY(54px); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shine {
  0%, 58% { transform: translateX(-120%); }
  82%, 100% { transform: translateX(120%); }
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .value-wrap {
    grid-template-columns: 1fr;
  }

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

  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .glass-panel.large {
    min-height: 360px;
  }
}

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

  .topbar {
    top: 12px;
    width: calc(100% - 24px);
    padding: 12px;
  }

  .brand-word {
    display: none;
  }

  .nav {
    display: none;
  }

  .topbar-cta {
    padding: 11px 14px;
    font-size: 12px;
  }

  .section {
    padding: 82px 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(4rem, 21vw, 6.8rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-row,
  .offer-box {
    grid-template-columns: 1fr;
  }

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

  .orbital-card {
    width: min(430px, 100vw);
  }

  .domain-core {
    width: 210px;
    height: 210px;
  }

  .domain-core p {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }

  .value-terminal {
    min-height: 420px;
  }

  pre {
    padding: 24px;
  }

  .footer {
    flex-direction: column;
  }
}
