:root {
  color-scheme: dark;
  --bg: #030707;
  --bg-2: #071212;
  --panel: rgba(13, 28, 29, 0.74);
  --panel-strong: rgba(18, 39, 40, 0.82);
  --glass: rgba(9, 22, 24, 0.58);
  --line: rgba(99, 234, 226, 0.16);
  --line-strong: rgba(99, 234, 226, 0.44);
  --text: #ecf8f6;
  --muted: #9fb8b5;
  --cyan: #66fff0;
  --ice: #9bddff;
  --teal: #17e7a8;
  --purple: #a679ff;
  --gold: #f5c96b;
  --danger: #ff5d72;
  --shadow: 0 30px 110px rgba(0, 0, 0, 0.58);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 9%, rgba(102, 255, 240, 0.16), transparent 25%),
    radial-gradient(circle at 82% 22%, rgba(166, 121, 255, 0.16), transparent 27%),
    radial-gradient(circle at 76% 72%, rgba(245, 201, 107, 0.08), transparent 24%),
    linear-gradient(140deg, #020505 0%, #071415 48%, #020407 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(102, 255, 240, 0.055) 9.1%, transparent 9.3% 90.6%, rgba(166, 121, 255, 0.04) 90.8%, transparent 91%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
  opacity: 0.42;
  mix-blend-mode: screen;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(102, 255, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 255, 240, 0.04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 24%, black, transparent 78%);
}

.particle-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.particle-field span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(102, 255, 240, 0.72);
  opacity: 0.42;
  animation: floatParticle 9s ease-in-out infinite;
}

.particle-field span:nth-child(1) { left: 13%; top: 18%; animation-delay: 0s; }
.particle-field span:nth-child(2) { left: 72%; top: 12%; animation-delay: -2s; background: var(--purple); box-shadow: 0 0 18px rgba(166, 121, 255, 0.72); }
.particle-field span:nth-child(3) { left: 86%; top: 48%; animation-delay: -4s; }
.particle-field span:nth-child(4) { left: 28%; top: 78%; animation-delay: -1s; background: var(--gold); box-shadow: 0 0 18px rgba(245, 201, 107, 0.56); }
.particle-field span:nth-child(5) { left: 55%; top: 65%; animation-delay: -5s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(0.9); opacity: 0.24; }
  50% { transform: translateY(-24px) scale(1.2); opacity: 0.68; }
}

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

.site-shell {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0 10px;
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(20, 49, 49, 0.88), rgba(4, 10, 12, 0.82)),
    rgba(5, 12, 14, 0.78);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 8px;
  padding: 3px;
  background: rgba(3, 10, 12, 0.78);
  box-shadow: 0 0 30px rgba(102, 255, 240, 0.26);
}

.brand-name,
h1,
h2,
h3,
.section-kicker,
.status-badge,
.btn,
.preview-top,
.terminal-readout strong,
.terminal-readout small {
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
}

.brand-name {
  display: block;
  font-size: 1.48rem;
  font-weight: 800;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 999px;
  color: #cce4e1;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  border-color: var(--line-strong);
  background: rgba(102, 255, 240, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  padding: 42px 0 24px;
}

.hero-copy,
.hero-visual,
.section,
.legal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 40, 40, 0.78), rgba(4, 11, 13, 0.86)),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy::before,
.hero-visual::before,
.section::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.055), transparent 24%),
    radial-gradient(circle at 12% 0%, rgba(102, 255, 240, 0.12), transparent 30%);
}

.hero-copy {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.eyebrow,
.section-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(102, 255, 240, 0.78);
}

h1,
h2,
h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 0.84;
  text-shadow: 0 0 52px rgba(102, 255, 240, 0.16);
}

h1 span {
  color: var(--teal);
  text-shadow: 0 0 30px rgba(23, 231, 168, 0.42);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

h3 {
  font-size: 1.38rem;
  line-height: 1.08;
}

.subtitle,
.hero-message,
.tagline,
.cta-note,
.section p {
  position: relative;
  z-index: 2;
}

.subtitle {
  max-width: 760px;
  margin: 22px 0 0;
  color: #dcf2ef;
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-message {
  max-width: 780px;
  margin: 18px 0 0;
  color: #bcd3cf;
  font-size: 1.05rem;
  line-height: 1.75;
}

.tagline {
  margin: 16px 0 0;
  color: var(--gold);
  font-weight: 900;
}

.status-badges,
.hero-actions,
.legal-badges,
.pillar-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-badges {
  margin-top: 26px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(102, 255, 240, 0.28);
  color: #eafffb;
  background: rgba(102, 255, 240, 0.07);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 0 24px rgba(102, 255, 240, 0.08);
}

.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px currentColor;
}

.status-badge.zeus { color: var(--ice); border-color: rgba(155, 221, 255, 0.38); }
.status-badge.arjun { color: var(--purple); border-color: rgba(166, 121, 255, 0.38); background: rgba(166, 121, 255, 0.08); }
.status-badge.apex { color: var(--gold); border-color: rgba(245, 201, 107, 0.34); background: rgba(245, 201, 107, 0.08); }
.status-badge.neutral { color: #cbd9d7; border-color: rgba(203, 217, 215, 0.22); }
.status-badge.caution { color: var(--gold); border-color: rgba(245, 201, 107, 0.34); }

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(102, 255, 240, 0.36);
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(102, 255, 240, 0.12), rgba(4, 12, 14, 0.74));
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 255, 240, 0.72);
  box-shadow: 0 0 34px rgba(102, 255, 240, 0.14);
}

.btn.primary {
  color: #031816;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 0 38px rgba(23, 231, 168, 0.25);
}

.btn.ghost {
  color: #d8ebe8;
  border-color: rgba(245, 201, 107, 0.28);
}

.cta-note {
  max-width: 780px;
  margin: 20px 0 0;
  color: #a8bfbb;
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero-visual {
  min-height: 640px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 28px;
}

.orb-stage {
  position: relative;
  z-index: 2;
  width: min(420px, 84vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.radar-ring,
.scan-wedge,
.ai-core,
.shield-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.radar-ring {
  border: 1px solid rgba(102, 255, 240, 0.24);
  box-shadow: inset 0 0 38px rgba(102, 255, 240, 0.08);
}

.ring-one { inset: 5%; animation: rotateCore 18s linear infinite; border-style: dashed; }
.ring-two { inset: 18%; animation: rotateCore 12s linear infinite reverse; border-color: rgba(166, 121, 255, 0.32); }
.ring-three { inset: 31%; animation: corePulse 4.4s ease-in-out infinite; border-color: rgba(245, 201, 107, 0.3); }

.scan-wedge {
  inset: 6%;
  background: conic-gradient(from 0deg, rgba(102, 255, 240, 0.42), transparent 34deg, transparent 360deg);
  mask-image: radial-gradient(circle, transparent 0 34%, black 35% 100%);
  animation: rotateCore 5s linear infinite;
  opacity: 0.72;
}

.ai-core {
  inset: 34%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(102, 255, 240, 0.8), rgba(23, 231, 168, 0.42) 38%, rgba(2, 8, 10, 0.88) 68%);
  box-shadow: 0 0 72px rgba(102, 255, 240, 0.24), inset 0 0 40px rgba(255, 255, 255, 0.1);
  animation: corePulse 3.6s ease-in-out infinite;
}

.ai-core img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 18px rgba(102, 255, 240, 0.5));
}

.shield-glow {
  inset: 13%;
  border: 1px solid rgba(166, 121, 255, 0.18);
  clip-path: polygon(50% 0, 88% 16%, 80% 78%, 50% 100%, 20% 78%, 12% 16%);
  border-radius: 0;
  box-shadow: 0 0 52px rgba(166, 121, 255, 0.16);
  opacity: 0.52;
}

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

@keyframes corePulse {
  0%, 100% { transform: scale(0.985); filter: saturate(0.88); }
  50% { transform: scale(1.025); filter: saturate(1.25); }
}

.terminal-readout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.terminal-readout div,
.preview-status,
.intelligence-card,
.defense-grid article,
.command-cards article,
.module-grid article,
.trader-grid article {
  border: 1px solid rgba(102, 255, 240, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 31, 33, 0.75), rgba(4, 12, 14, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.terminal-readout div {
  padding: 14px;
}

.terminal-readout small,
.preview-status small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.terminal-readout strong,
.preview-status strong {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 1.15rem;
}

.section {
  margin: 18px 0;
  padding: clamp(24px, 4vw, 38px);
  backdrop-filter: blur(18px);
}

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

.section-header {
  max-width: 880px;
  margin-bottom: 24px;
}

.section-header p,
.section-copy p,
.disciplined-section p,
.legal-panel p,
.request-section p {
  color: #bad1cd;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: center;
}

.zeus-section {
  display: block;
}

.zeus-section .section-copy {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-copy p {
  margin-bottom: 0;
}

.intelligence-stack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.intelligence-card {
  min-height: 230px;
  padding: 18px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.intelligence-card:hover,
.module-grid article:hover,
.trader-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(102, 255, 240, 0.44);
  box-shadow: 0 0 34px rgba(102, 255, 240, 0.1);
}

svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intelligence-card svg,
.module-grid svg {
  color: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(102, 255, 240, 0.36));
}

.intelligence-card h3,
.module-grid strong,
.trader-grid strong,
.defense-grid strong,
.command-cards strong {
  display: block;
  margin-top: 13px;
  color: #f0fbf9;
  font-weight: 900;
}

.intelligence-card p,
.module-grid span,
.trader-grid span,
.defense-grid span,
.command-cards span {
  display: block;
  margin-top: 9px;
  color: #9fb8b5;
  font-size: 0.92rem;
  line-height: 1.55;
}

.arjun-section {
  border-color: rgba(166, 121, 255, 0.22);
  background:
    radial-gradient(circle at 12% 28%, rgba(166, 121, 255, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(18, 40, 40, 0.78), rgba(4, 11, 13, 0.88));
}

.defense-visual {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  align-items: stretch;
}

.shield-core {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(166, 121, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle, rgba(166, 121, 255, 0.22), transparent 62%),
    rgba(6, 14, 17, 0.62);
}

.shield-core svg {
  width: 142px;
  height: 142px;
  color: var(--purple);
  filter: drop-shadow(0 0 32px rgba(166, 121, 255, 0.55));
  animation: shieldBreath 3.9s ease-in-out infinite;
}

@keyframes shieldBreath {
  0%, 100% { transform: scale(0.97); opacity: 0.78; }
  50% { transform: scale(1.04); opacity: 1; }
}

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

.defense-grid article {
  padding: 17px;
  border-color: rgba(166, 121, 255, 0.16);
}

.defense-grid article:last-child {
  grid-column: 1 / -1;
}

.apex-section {
  border-color: rgba(245, 201, 107, 0.22);
}

.core-command {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 18px;
  align-items: stretch;
}

.processor {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 201, 107, 0.24);
  background:
    radial-gradient(circle, rgba(245, 201, 107, 0.22), transparent 60%),
    rgba(5, 14, 15, 0.7);
  overflow: hidden;
}

.processor span {
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(245, 201, 107, 0.34);
  border-radius: 50%;
  animation: rotateCore 15s linear infinite;
}

.processor span:nth-child(2) {
  inset: 68px;
  border-color: rgba(102, 255, 240, 0.28);
  animation-duration: 11s;
  animation-direction: reverse;
}

.processor span:nth-child(3) {
  inset: 104px;
  border-style: solid;
  border-color: rgba(166, 121, 255, 0.25);
  animation-duration: 8s;
}

.processor strong {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-family: Rajdhani, "Segoe UI", Arial, sans-serif;
  font-size: 1.34rem;
}

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

.command-cards article {
  padding: 18px;
  border-color: rgba(245, 201, 107, 0.16);
}

.terminal-preview {
  border: 1px solid rgba(102, 255, 240, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 18%, rgba(102, 255, 240, 0.14), transparent 26%),
    radial-gradient(circle at 82% 58%, rgba(166, 121, 255, 0.14), transparent 28%),
    rgba(3, 11, 13, 0.72);
  overflow: hidden;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(102, 255, 240, 0.16);
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
}

.preview-status {
  padding: 16px;
}

.preview-status.large {
  grid-column: span 2;
}

.preview-status.wide {
  grid-column: span 2;
}

.preview-status.arjun-tone strong { color: var(--purple); }
.preview-status.apex-tone strong { color: var(--gold); }
.preview-status.danger-tone strong { color: var(--danger); }
.preview-status.caution-tone strong { color: var(--gold); }

.human-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
}

.human-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
}

.mind-shield {
  width: 190px;
  height: 210px;
  position: relative;
  clip-path: polygon(50% 0, 90% 17%, 82% 76%, 50% 100%, 18% 76%, 10% 17%);
  background:
    radial-gradient(circle at 50% 35%, rgba(102, 255, 240, 0.74), transparent 22%),
    linear-gradient(145deg, rgba(166, 121, 255, 0.55), rgba(245, 201, 107, 0.18));
  box-shadow: 0 0 62px rgba(166, 121, 255, 0.26), 0 0 44px rgba(102, 255, 240, 0.18);
}

.mind-shield::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  clip-path: inherit;
}

.pillar-row {
  margin-top: 18px;
}

.pillar-row span,
.legal-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(102, 255, 240, 0.2);
  border-radius: 999px;
  color: #dff6f2;
  background: rgba(102, 255, 240, 0.065);
  font-weight: 800;
  font-size: 0.82rem;
}

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

.module-grid article,
.trader-grid article {
  min-height: 170px;
  padding: 18px;
}

.disciplined-section .section-header,
.modules-section .section-header {
  max-width: 820px;
}

.legal-panel {
  border-color: rgba(245, 201, 107, 0.28);
}

.legal-panel h2 {
  margin-top: 8px;
}

.legal-badges {
  margin: 20px 0;
}

.legal-badges span {
  border-color: rgba(245, 201, 107, 0.22);
  color: var(--gold);
  background: rgba(245, 201, 107, 0.07);
}

.request-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer small {
  display: block;
  margin-top: 6px;
  color: #89aaa4;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: #d7eae6;
}

.legal-hero {
  padding: 40px 0 16px;
}

.legal-card {
  padding: clamp(22px, 5vw, 44px);
}

.legal-card h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.legal-card h2 {
  margin-top: 30px;
  color: var(--cyan);
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li {
  color: #c2d8d4;
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 20px;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(102, 255, 240, 0.24);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(6, 15, 16, 0.78);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-help {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero,
  .split-section,
  .core-command,
  .human-section,
  .defense-visual {
    grid-template-columns: 1fr;
  }

  .intelligence-stack,
  .module-grid,
  .trader-grid,
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy,
  .hero-visual {
    min-height: auto;
  }

  .orb-stage {
    width: min(360px, 82vw);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
  }

  .topbar {
    position: static;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .intelligence-stack,
  .module-grid,
  .trader-grid,
  .preview-grid,
  .terminal-readout,
  .command-cards,
  .defense-grid,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .preview-status.large,
  .preview-status.wide,
  .defense-grid article:last-child {
    grid-column: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero {
    padding-top: 22px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
