:root {
  --bg-deep: #050816;
  --bg-midnight: #081329;
  --cyan: #00d9ff;
  --cloud: #3b82f6;
  --violet: #7c3aed;
  --white: #f4f8ff;
  --muted: #8291ac;
  --glass: rgba(8, 19, 41, 0.62);
  --glass-border: rgba(0, 217, 255, 0.16);
  --line: rgba(130, 145, 172, 0.18);
  --radius: 18px;
  --header-h: 76px;
  --font-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --font-body: Inter, "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--bg-deep);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(0, 217, 255, 0.28);
  color: var(--white);
}

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

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

.svg-sprite {
  position: absolute;
  width: 48px;
  height: 48px;
  left: -100vw;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cyan);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

#network-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(800px 520px at 92% 8%, rgba(0, 217, 255, 0.12), transparent 58%),
    radial-gradient(700px 420px at 50% 108%, rgba(59, 130, 246, 0.1), transparent 55%);
}

main,
.site-header,
.site-footer,
.contact-overlay {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 800;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.headline-accent {
  background: linear-gradient(90deg, var(--white) 10%, var(--cyan) 55%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}

.section-head {
  margin-bottom: 48px;
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #1ea8ff 55%, var(--cloud));
  color: #031018;
  box-shadow: 0 8px 28px rgba(0, 217, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(0, 217, 255, 0.34);
}

.btn-ghost,
.btn-contact {
  background: rgba(8, 19, 41, 0.55);
  border-color: var(--glass-border);
  color: var(--white);
}

.btn-ghost:hover,
.btn-contact:hover {
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 0 22px rgba(0, 217, 255, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 8, 22, 0.28);
  backdrop-filter: blur(12px);
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 22, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.28));
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}

.brand-cloud {
  color: var(--cyan);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
  box-shadow: 0 0 8px var(--cyan);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-stage {
  position: relative;
  min-height: 520px;
}

.viz-glow {
  position: absolute;
  inset: 8% 10%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.16), rgba(124, 58, 237, 0.08) 45%, transparent 70%);
  filter: blur(8px);
  animation: breathe 7s ease-in-out infinite;
}

.infra-viz {
  width: 100%;
  height: auto;
  overflow: visible;
}

.orbit-a,
.orbit-c {
  transform-box: fill-box;
  transform-origin: center;
}

.orbit-a {
  animation: spin 28s linear infinite;
}

.orbit-c {
  animation: spin 36s linear infinite reverse;
}

.sat-node text {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  fill: var(--white);
  letter-spacing: 0.04em;
}

.status-card {
  position: absolute;
  padding: 14px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-glow);
  min-width: 180px;
  animation: floaty 6s ease-in-out infinite;
}

.status-core {
  top: 18px;
  left: 0;
}

.status-global {
  right: 0;
  bottom: 28px;
  animation-delay: -2.4s;
}

.status-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.status-live,
.status-metric {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

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

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: ping 1.8s ease-out infinite;
}

.metrics {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 19, 41, 0.45), rgba(5, 8, 22, 0.2));
}

.metrics-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 42px 0;
}

.metric {
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  text-shadow: 0 0 18px rgba(0, 217, 255, 0.35);
}

.metric-label {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

.platform,
.architecture,
.security,
.why,
.resources,
.cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

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

.platform-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 250px;
  background: linear-gradient(180deg, rgba(8, 19, 41, 0.78), rgba(5, 8, 22, 0.55));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.card-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.18) 0 1px, transparent 1.6px),
    linear-gradient(rgba(0, 217, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
  background-size: 18px 18px, 28px 28px, 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
  animation: meshShift 18s linear infinite;
}

.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 32px rgba(0, 217, 255, 0.12);
}

.card-icon {
  color: var(--cyan);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.35));
}

.platform-card h3 {
  margin-bottom: 10px;
}

.platform-card p {
  color: var(--muted);
}

.card-more {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.35s, margin-top 0.35s;
}

.platform-card:hover .card-more,
.platform-card:focus-within .card-more {
  max-height: 90px;
  opacity: 1;
  margin-top: 12px;
  color: #c5d4ea;
}

.arch-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 36px;
}

.arch-stage {
  background: rgba(8, 19, 41, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 14px;
}

.arch-stage strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin: 8px 0 4px;
}

.arch-stage span:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.arch-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.arch-arrow {
  width: 18px;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  position: relative;
}

.arch-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--cyan);
}

.arch-diagram {
  background: rgba(8, 19, 41, 0.55);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 12px 8px;
  overflow: hidden;
}

.arch-diagram svg {
  width: 100%;
  height: auto;
}

.arch-node text {
  font-family: var(--font-display);
  font-size: 11px;
  fill: var(--muted);
  text-anchor: middle;
  font-weight: 600;
}

.arch-backbone {
  stroke-dasharray: 8 10;
  animation: dash 12s linear infinite;
}

.arch-diagram figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 4px 18px 14px;
}

.security {
  width: 100%;
  max-width: none;
  padding: 0;
  background:
    radial-gradient(700px 360px at 18% 50%, rgba(124, 58, 237, 0.16), transparent 60%),
    linear-gradient(180deg, #040614, #070b1c 50%, #050816);
  border-block: 1px solid var(--line);
}

.security-layout {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.shield-svg {
  width: min(100%, 420px);
  margin: 0 auto;
  overflow: visible;
}

.scan-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 22s linear infinite;
}

.scan-line {
  transform-box: fill-box;
  transform-origin: center;
  animation: scan 3.4s ease-in-out infinite;
}

.security-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 10px;
}

.security-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 19, 41, 0.45);
  font-weight: 600;
}

.security-list span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.why-intro h2 {
  max-width: 12ch;
}

.why-blocks {
  display: grid;
  gap: 16px;
}

.why-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(8, 19, 41, 0.8), rgba(5, 8, 22, 0.4));
}

.why-block:nth-child(2) {
  margin-left: 28px;
}

.why-block:nth-child(3) {
  margin-left: 56px;
}

.why-index {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0, 217, 255, 0.35);
}

.why-block h3 {
  margin-bottom: 8px;
}

.why-block p:last-child {
  color: var(--muted);
}

.resources {
  padding-top: 0;
}

.resource-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.resource-link {
  display: block;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(8, 19, 41, 0.5);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.resource-link span {
  display: block;
  color: var(--cyan);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.resource-link:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 217, 255, 0.4);
}

.cta {
  width: 100%;
  max-width: none;
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.18), transparent 36%),
    conic-gradient(from 120deg, rgba(0, 217, 255, 0.08), rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.08), rgba(0, 217, 255, 0.08));
  border-radius: 50%;
  filter: blur(2px);
  animation: spin 48s linear infinite;
}

.cta-orb::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(124, 58, 237, 0.2);
}

.cta-inner {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.cta-inner p {
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 38rem;
}

.cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040614;
  padding: 64px 0 28px;
}

.footer-top,
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 16px;
  max-width: 22rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-cols h3 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-cols a,
.footer-cols button {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  margin-bottom: 10px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-cols a:hover,
.footer-cols button:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(2, 4, 12, 0.72);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-overlay[hidden] {
  display: none;
}

.contact-dialog {
  width: min(520px, 100%);
  background: linear-gradient(180deg, #0b1730, #07101f);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(5, 8, 22, 0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px;
  color: var(--white);
}

.form-status {
  min-height: 1.2em;
  color: var(--cyan);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  animation: rise 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

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

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

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

@keyframes ping {
  70%, 100% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
}

@keyframes meshShift {
  to { background-position: 18px 18px, 28px 0, 0 28px; }
}

@keyframes dash {
  to { stroke-dashoffset: -180; }
}

@keyframes scan {
  0%, 100% { transform: translateY(-36px); opacity: 0.15; }
  50% { transform: translateY(48px); opacity: 0.9; }
}

@media (max-width: 980px) {
  .hero-grid,
  .security-layout,
  .why-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
  }

  .metrics-strip,
  .platform-grid,
  .resource-row {
    grid-template-columns: 1fr 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0 18px;
  }

  .arch-flow {
    grid-template-columns: 1fr;
  }

  .arch-arrow {
    width: 1px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  }

  .arch-arrow::after {
    right: -3px;
    top: auto;
    bottom: -2px;
    border-left-color: transparent;
    border-top-color: var(--cyan);
  }

  .why-intro h2 {
    max-width: none;
  }

  .why-block:nth-child(2),
  .why-block:nth-child(3) {
    margin-left: 0;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(5, 8, 22, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-word {
    display: none;
  }

  .status-card {
    min-width: 150px;
  }
}

@media (max-width: 640px) {
  .metrics-strip,
  .platform-grid,
  .resource-row,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .status-global {
    display: none;
  }

  .btn-contact {
    display: none;
  }

  .platform,
  .architecture,
  .why,
  .resources {
    padding: 72px 0;
  }

  .cta {
    padding: 88px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.reduce-motion .packet,
.reduce-motion .arch-pulse {
  display: none;
}
