:root {
  --bg: #f4f6f8;
  --bg-soft: #ffffff;
  --silver: #eef1f5;
  --ink: #0f1c2e;
  --navy: #0f2744;
  --navy-deep: #0a1628;
  --muted: #64748b;
  --line: rgba(15, 28, 46, 0.1);
  --blue: #2563eb;
  --blue-soft: rgba(37, 99, 235, 0.08);
  --blue-glow: rgba(37, 99, 235, 0.18);
  --violet: #7c3aed;
  --violet-soft: rgba(124, 58, 237, 0.1);
  --cyan: #06b6d4;
  --emerald: #10b981;
  --shadow: 0 20px 60px rgba(15, 28, 46, 0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --cmd-bg: #141c28;
  --cmd-panel: #1a2433;
  --cmd-border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 40%, var(--silver) 100%);
  color: var(--ink);
  overflow-x: hidden;
}

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

.subtle-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15, 39, 68, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 39, 68, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 10%, transparent 70%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}

header.header-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(15, 28, 46, 0.06);
}

body[data-page="home"] header:not(.header-scrolled) {
  background: rgba(10, 22, 40, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-page="home"] header:not(.header-scrolled) .brand,
body[data-page="home"] header:not(.header-scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

body[data-page="home"] header:not(.header-scrolled) .nav-links a:hover,
body[data-page="home"] header:not(.header-scrolled) .nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

body[data-page="home"] header:not(.header-scrolled) .mobile-toggle span {
  background: white;
}

body[data-page="home"] header:not(.header-scrolled) .language-select {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

body[data-page="home"] header:not(.header-scrolled) .language-wrap::after {
  color: var(--muted);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--violet), var(--blue), var(--cyan));
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
  position: relative;
}

.mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 150ms, background 150ms;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--blue-soft);
}

.nav-links .nav-app {
  color: var(--violet);
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: var(--violet-soft);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--blue); }

.language-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 38px;
  max-width: 190px;
  padding: 0 32px 0 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
}

.language-select option {
  color: var(--ink);
  background: #ffffff;
}

.language-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

.language-wrap::after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-54%);
  color: var(--muted);
  pointer-events: none;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: 180ms ease;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-menu-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 22px;
  display: grid;
  gap: 8px;
}

.mobile-menu a,
.mobile-menu label {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  font-weight: 600;
  color: var(--ink);
}

.mobile-menu label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-menu .language-select {
  width: 100%;
  max-width: none;
}

body.menu-open .mobile-menu { display: block; }
body.menu-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .mobile-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
}

.hero-cinematic {
  background: linear-gradient(165deg, #0a1628 0%, #0f2744 42%, #1a365d 100%);
  color: white;
  padding: 100px 0 88px;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
}

.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(124, 58, 237, 0.16), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(6, 182, 212, 0.1), transparent);
  pointer-events: none;
}

.hero-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
}

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

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

.hero-copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy.hero-entered {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual-wrap {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.hero-grid:has(.hero-entered) .hero-visual-wrap {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.2);
}

.hero-cinematic h1 {
  margin: 20px 0 10px;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: white;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #c4b5fd;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0;
}

.home-supporting {
  display: block;
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(148, 163, 184, 0.95);
  letter-spacing: 0.02em;
}

.disclosure {
  margin-top: 18px;
  max-width: 580px;
  padding: 12px 14px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.08);
  color: #ddd6fe;
  font-size: 0.84rem;
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid var(--line);
  transition: transform 150ms, box-shadow 150ms, background 150ms;
}

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

.btn.primary {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
}

.btn.primary:hover { background: #1d4ed8; border-color: #1d4ed8; }

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn.app-btn {
  background: rgba(124, 58, 237, 0.15);
  color: #ddd6fe;
  border-color: rgba(124, 58, 237, 0.35);
}

.btn.app-btn:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.55);
}

.cmd-center {
  background: var(--cmd-bg);
  border: 1px solid var(--cmd-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  animation: cmd-float 6s ease-in-out infinite;
}

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

.cmd-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--cmd-border);
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cmd-live {
  color: #a78bfa;
  font-size: 0.72rem;
}

.cmd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}

.cmd-panel {
  padding: 12px;
  border-radius: 10px;
  background: var(--cmd-panel);
  border: 1px solid var(--cmd-border);
}

.cmd-panel.wide { grid-column: 1 / -1; }

.cmd-panel h4 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cmd-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cmd-node {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid var(--cmd-border);
}

.cmd-node.warn {
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.25);
}

.cmd-node.risk {
  background: rgba(124, 58, 237, 0.15);
  color: #c4b5fd;
  border-color: rgba(124, 58, 237, 0.3);
}

.cmd-map {
  position: relative;
  height: 72px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.cmd-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.3), transparent 50%),
    radial-gradient(circle at 70% 40%, rgba(6, 182, 212, 0.25), transparent 45%);
}

.cmd-timeline {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}

.cmd-timeline span {
  flex: 1;
  background: linear-gradient(180deg, var(--violet), var(--blue));
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
}

.cmd-timeline span:nth-child(1) { height: 35%; }
.cmd-timeline span:nth-child(2) { height: 55%; }
.cmd-timeline span:nth-child(3) { height: 42%; }
.cmd-timeline span:nth-child(4) { height: 70%; }
.cmd-timeline span:nth-child(5) { height: 50%; }
.cmd-timeline span:nth-child(6) { height: 85%; }

.stage-notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.stage-notice strong {
  color: var(--violet);
  font-size: 0.88rem;
}

.stage-notice span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}

.section-text {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.band-silver {
  background: var(--silver);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 8px 32px rgba(15, 28, 46, 0.06);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--violet-soft);
  color: var(--violet);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.statement {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.statement.featured {
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--blue), var(--cyan));
  border: none;
}

.statement h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.statement p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.statement.featured p { color: rgba(255, 255, 255, 0.88); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-step {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(15, 28, 46, 0.06);
}

.process-step strong {
  display: block;
  color: var(--violet);
  margin-bottom: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.dark-band {
  padding: 52px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.18), transparent 34rem),
    var(--navy-deep);
  box-shadow: var(--shadow);
}

.dark-band .kicker { color: #a78bfa; }
.dark-band h2 { color: white; }
.dark-band .section-text { color: #94a3b8; }

.stack-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.layers {
  display: grid;
  gap: 10px;
}

.layer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, transform 0.2s;
}

.layer:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateX(4px);
}

.layer span:first-child { font-weight: 700; }
.layer span:last-child {
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 8px 28px rgba(15, 28, 46, 0.06);
}

.timeline-step strong {
  color: var(--violet);
  font-size: 0.88rem;
}

.timeline-step h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 28px;
  padding: 48px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 25rem),
    linear-gradient(135deg, var(--navy-deep), #312e81 52%, #155e75);
  box-shadow: var(--shadow);
}

.cta-band .kicker { color: #a78bfa; }
.cta-band h2 { color: white; margin: 0 0 10px; }
.cta-band p { color: #94a3b8; margin: 0; line-height: 1.7; }

.app-promo-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #0a1628, #0f2744);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.app-promo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.app-promo .kicker { color: #a78bfa; }
.app-promo h2 { color: white; margin: 0 0 12px; }
.app-promo p { color: #94a3b8; line-height: 1.6; margin: 0; }

.app-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.app-promo-actions .btn.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.app-promo-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.app-promo-steps {
  display: grid;
  gap: 10px;
}

.install-step {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.install-step h3 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: #a78bfa;
}

.install-step p {
  margin: 0;
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
}

footer {
  padding: 40px 0 56px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 8px 28px rgba(15, 28, 46, 0.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
  display: inline;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.breadcrumb {
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumb a { color: var(--blue); }

.article-page h1 { margin-bottom: 16px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.legal-page .updated {
  color: var(--muted);
  margin-bottom: 32px;
}

.legal-page h2 {
  margin: 32px 0 12px;
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .stack-layout,
  .cta-band,
  .app-promo { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .dark-band { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero-cinematic { padding: 72px 0 64px; min-height: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .timeline-step { grid-template-columns: 1fr; }
  .cta-band { padding: 32px; }
  .cta-band .actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero-copy, .hero-visual-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .cmd-center { animation: none; }
}
