/* ==========================================================
   ACTION AI — Design System
   Palette aligned to v6 (2026-05-08): teal #2BD4CB · red #E2474C · navy #050B15
   This stylesheet is loaded only by privacy / terms / accessibility pages.
   The token names below (--aqua, --red, --navy) are kept for back-compat with
   the 63 downstream usages in this file, but their HEX values now match
   v6-shared.css so the two stylesheets render the same brand palette.
   Font: Inter · WCAG 2.1 AA Compliant
   ========================================================== */

:root {
  --aqua: #2BD4CB;                            /* was #00D9FF — aligned to v6 --teal */
  --aqua-dim: rgba(43, 212, 203, 0.12);
  --aqua-glow: rgba(43, 212, 203, 0.25);
  --red: #E2474C;                             /* was #FF1744 — aligned to v6 --red */
  --red-dim: rgba(226, 71, 76, 0.12);
  --red-glow: rgba(226, 71, 76, 0.25);
  --navy: #142540;                            /* lightened 2026-05-11 — aligned to v6 --navy-2 */
  --dark-navy: #0E1B2E;                       /* lightened 2026-05-11 — matches v6 --navy */
  --surface: rgba(10, 20, 36, 0.65);
  --white: #FFFFFF;
  --text: rgba(245, 247, 250, 0.88);
  --text-dim: rgba(245, 247, 250, 0.6);
  --text-muted: rgba(245, 247, 250, 0.55);
  --border: rgba(43, 212, 203, 0.1);
  --border-hover: rgba(43, 212, 203, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.4s var(--ease-smooth);
  --focus-ring: 0 0 0 3px rgba(43, 212, 203, 0.5);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark-navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ---- Accessibility ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--aqua);
  color: var(--dark-navy);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles — visible for keyboard, hidden for mouse */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================
   NAVIGATION — auto-hides, reveals on hover / scroll-up
   ========================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease-smooth), background 0.3s ease, padding 0.3s ease;
}

.nav--visible {
  transform: translateY(0);
}

.nav--scrolled {
  background: rgba(5, 11, 21, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-mark {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.nav-cta {
  background: var(--aqua-dim);
  border: 1px solid rgba(43, 212, 203, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  color: var(--aqua);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--aqua);
  color: var(--dark-navy);
}

/* Dropdowns */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 220px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown > button[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--aqua-dim);
  color: var(--white);
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.25rem;
}

.lang-flag {
  font-size: 0.9rem;
  line-height: 1;
  vertical-align: middle;
  margin-right: 0.15rem;
}

.lang-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn--active {
  color: var(--aqua);
  background: var(--aqua-dim);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 0.7rem;
  opacity: 0.3;
  user-select: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  padding: 0.85rem 2rem;
  background: var(--white);
  color: var(--dark-navy);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 212, 203, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn--ghost {
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--aqua);
  border: 1px solid rgba(43, 212, 203, 0.25);
}

.btn--ghost:hover {
  background: var(--aqua-dim);
  border-color: var(--aqua);
}

.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ==========================================================
   SECTION UTILITIES
   ========================================================== */
.section-dark { padding: 7rem 0; background: var(--dark-navy); }
.section-light { padding: 7rem 0; background: var(--navy); }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--aqua);
  background: var(--aqua-dim);
  border: 1px solid rgba(43, 212, 203, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.section-badge--red {
  color: var(--red);
  background: var(--red-dim);
  border-color: rgba(226, 71, 76, 0.2);
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 30% 50%, rgba(43, 212, 203, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(226, 71, 76, 0.04) 0%, transparent 50%),
              var(--dark-navy);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(43, 212, 203, 0.3), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(226, 71, 76, 0.2), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(43, 212, 203, 0.15), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(43, 212, 203, 0.25), transparent);
  animation: heroParticleDrift 20s linear infinite;
}

@keyframes heroParticleDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

.hero-content {
  text-align: center;
  max-width: 720px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s var(--ease-smooth);
}

.hero-logo {
  margin-bottom: 2rem;
}

.hero-logo-img {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  animation: heroLogoFloat 4s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--aqua);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--aqua) 50%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions-secondary {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn--highlight {
  padding: 0.7rem 1.6rem;
  background: rgba(43, 212, 203, 0.15);
  color: var(--aqua);
  border: 1px solid rgba(43, 212, 203, 0.4);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  animation: highlightPulse 2.5s ease-in-out infinite;
}

.btn--highlight:hover {
  background: var(--aqua);
  color: var(--dark-navy);
  border-color: var(--aqua);
  animation: none;
}

.btn--highlight-red {
  background: rgba(226, 71, 76, 0.15);
  color: var(--red);
  border-color: rgba(226, 71, 76, 0.4);
}

.btn--highlight-red:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

@keyframes highlightPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 212, 203, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(43, 212, 203, 0); }
}

/* ==========================================================
   INTERACTIVE STACK DIAGRAM — contained, not floating
   ========================================================== */
.stack-interactive {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.stack-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stack-layer {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.stack-layer:hover,
.stack-layer[aria-expanded="true"] {
  border-color: var(--aqua);
  box-shadow: 0 4px 20px rgba(43, 212, 203, 0.1);
}

.stack-layer--core:hover,
.stack-layer--core[aria-expanded="true"] {
  border-color: var(--red);
  box-shadow: 0 4px 20px var(--red-glow);
}

.stack-layer-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
}

.stack-layer-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--aqua);
  opacity: 0.5;
  letter-spacing: 0.05em;
  min-width: 24px;
}

.stack-layer--core .stack-layer-num { color: var(--red); }

.stack-layer-name {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.stack-layer-toggle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
  transition: color 0.2s ease;
  width: 24px;
  text-align: center;
}

.stack-layer:hover .stack-layer-toggle { color: var(--aqua); }
.stack-layer--core:hover .stack-layer-toggle { color: var(--red); }

.stack-layer-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
  padding: 0 1.6rem;
}

.stack-layer[aria-expanded="true"] .stack-layer-detail {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

.stack-layer-detail p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.stack-layer-detail ul {
  list-style: none;
  padding: 0;
}

.stack-layer-detail li {
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stack-layer-detail li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}

.stack-layer--core .stack-layer-detail li::before { background: var(--red); }

/* Connector lines between layers */
.stack-connector {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0;
}

.stack-connector span {
  display: block;
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom, var(--aqua), transparent);
  opacity: 0.3;
}

/* Stack sidebar */
.stack-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
}

.stack-info-card,
.stack-price-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.stack-info-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.stack-info-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.stack-price-card {
  text-align: center;
}

.stack-price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.stack-price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

.stack-price-amount small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ==========================================================
   TECH SPLIT SECTIONS (Agents, Payments)
   ========================================================== */
.tech-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-split--reverse { direction: rtl; }
.tech-split--reverse > * { direction: ltr; }

.tech-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.tech-copy p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}

/* Tech highlight cards */
.tech-highlight-inner {
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.tech-highlight-inner--red { border-color: rgba(226, 71, 76, 0.2); }

.tech-highlight-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--aqua);
}

.tech-highlight-inner--red .tech-highlight-label { color: var(--red); }

.agents-diagram-img {
  width: 100%;
  border-radius: var(--radius);
}

.tech-highlight-inner p {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Agent dots animation */
.tech-highlight-visual {
  position: relative;
  width: 120px;
  height: 120px;
}

.agent-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 12px var(--aqua-glow);
}

.agent-dot:nth-child(1) { top: 10%; left: 50%; transform: translateX(-50%); animation: agentPulse 3s ease-in-out infinite; }
.agent-dot:nth-child(2) { bottom: 20%; left: 15%; animation: agentPulse 3s ease-in-out 1s infinite; }
.agent-dot:nth-child(3) { bottom: 20%; right: 15%; animation: agentPulse 3s ease-in-out 2s infinite; }

.agent-orbit {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(43, 212, 203, 0.2);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

/* Agents diagram */
.agents-diagram {
  width: 100%;
  padding: 0.5rem 0;
}

.agents-harness {
  border: 1px dashed rgba(43, 212, 203, 0.3);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  position: relative;
}

.agents-harness-label {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--aqua);
  background: var(--surface);
  padding: 0 0.6rem;
  white-space: nowrap;
}

.agents-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1rem 0;
}

.agent-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.agent-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 12px rgba(43, 212, 203, 0.4);
  animation: agentPulse 3s ease-in-out infinite;
}

.agent-node:nth-child(1) .agent-dot { animation-delay: 0s; }
.agent-node:nth-child(3) .agent-dot { animation-delay: 1s; }
.agent-node:nth-child(5) .agent-dot { animation-delay: 2s; }

.agent-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text);
}

.agent-role {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.agent-connector {
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, var(--aqua), transparent, var(--aqua));
  opacity: 0.4;
}

.agents-rules {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.agents-rules span {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

@keyframes agentPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

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

/* Payment flow */
.payment-flow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pf-step {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  background: var(--red-dim);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(226, 71, 76, 0.15);
}

.pf-step--done { background: var(--red); color: var(--white); border-color: var(--red); }

.pf-arrow { color: var(--text-muted); font-size: 0.8rem; }

/* ==========================================================
   COMMAND CENTER
   ========================================================== */
.command-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.command-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.command-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.command-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.command-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ==========================================================
   PROFESSIONAL SERVICES
   ========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.service-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--aqua);
  opacity: 0.4;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.service-card--cta {
  background: linear-gradient(135deg, var(--aqua-dim) 0%, var(--red-dim) 100%);
  border-color: rgba(43, 212, 203, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card--cta h4 { color: var(--aqua); font-size: 1.1rem; }

/* ==========================================================
   CASE STUDIES
   ========================================================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.case-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.case-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.case-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--aqua);
  margin-bottom: 1rem;
}

.case-tag--red { color: var(--red); }

.case-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.case-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-result {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.case-metric {
  font-size: 2rem;
  font-weight: 900;
  color: var(--aqua);
  letter-spacing: -0.02em;
}

.case-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.case-card--featured {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(226, 71, 76, 0.08), var(--surface));
}

.case-card--featured:hover {
  border-color: var(--red);
  box-shadow: 0 16px 48px var(--red-glow);
}

.case-card--featured .case-metric {
  color: var(--red);
}

.case-projected {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background: rgba(245, 247, 250, 0.06);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(245, 247, 250, 0.1);
}

.case-study-waitlist {
  margin-top: 3rem;
}

.case-study-waitlist-inner {
  padding: 3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--aqua-dim), var(--red-dim));
  border: 1px solid var(--border);
  text-align: center;
}

.case-study-waitlist-inner h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.case-study-waitlist-inner p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.case-study-waitlist .inline-waitlist--row {
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

/* ==========================================================
   AURA TRAINING
   ========================================================== */
.aura-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.aura-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.aura-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.aura-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.aura-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.aura-cta-row {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--aqua-dim), var(--red-dim));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.aura-cta-row p { font-size: 1rem; color: var(--text); margin: 0; }

/* ==========================================================
   DIGITAL PRODUCTS
   ========================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.products-grid--4 { grid-template-columns: repeat(4, 1fr); }

.product-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--aqua);
  background: var(--aqua-dim);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  align-self: flex-start;
}

.product-tag--red {
  color: var(--red);
  background: var(--red-dim);
}

.product-tag--teal {
  color: #2ABBA7;
  background: rgba(42, 187, 167, 0.12);
}

.products-section-label {
  margin-bottom: 1.5rem;
}

.products-section-label h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.products-section-label p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-copy p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-copy strong { color: var(--white); }

.about-certs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cert-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--aqua);
  background: var(--aqua-dim);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(43, 212, 203, 0.15);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover { border-color: var(--border-hover); }

.value-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--aqua);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--aqua-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.15rem; }
.value-card p { font-size: 0.78rem; color: var(--text-dim); line-height: 1.4; margin: 0; }

/* ==========================================================
   SOCIAL
   ========================================================== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.social-card {
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.social-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.social-card--email:hover { border-color: var(--red); box-shadow: 0 12px 40px var(--red-glow); }

.social-icon { width: 32px; height: 32px; margin: 0 auto 1rem; color: var(--aqua); }
.social-card--email .social-icon { color: var(--red); }

.social-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.social-card p { font-size: 0.78rem; color: var(--text-dim); margin: 0; }

/* ==========================================================
   WAITLIST
   ========================================================== */
.waitlist {
  padding: 7rem 0;
  background: linear-gradient(135deg, rgba(43, 212, 203, 0.06), rgba(226, 71, 76, 0.04)), var(--dark-navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.waitlist-inner { max-width: 640px; margin: 0 auto; text-align: center; }

.waitlist-copy { margin-bottom: 2.5rem; }

.waitlist-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.waitlist-copy p { font-size: 1rem; color: var(--text-dim); line-height: 1.7; }

.waitlist-form { display: flex; flex-direction: column; gap: 1rem; align-items: center; }

.waitlist-input-group {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  flex-wrap: wrap;
}

.waitlist-input-group input,
.waitlist-input-group select {
  flex: 1;
  min-width: 160px;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.waitlist-input-group input::placeholder { color: var(--text-muted); }

.waitlist-input-group input:focus,
.waitlist-input-group select:focus {
  border-color: var(--aqua);
  box-shadow: var(--focus-ring);
}

.waitlist-input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2300D9FF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.waitlist-input-group select option { background: var(--navy); color: var(--white); }

.waitlist-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Inline waitlist forms (Enterprise, AURA, Command Center) */
.inline-waitlist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}

.inline-waitlist input[type="email"] {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* iOS Safari zooms when focused input has font-size <16px (audit fix 2026-05-08) */
  outline: none;
  transition: border-color 0.3s ease;
}

.inline-waitlist input[type="email"]::placeholder { color: var(--text-muted); }

.inline-waitlist input[type="email"]:focus {
  border-color: var(--aqua);
  box-shadow: var(--focus-ring);
}

.inline-waitlist--row {
  flex-direction: row;
  align-items: center;
}

.inline-waitlist--row input[type="email"] {
  flex: 1;
  min-width: 200px;
}

/* Command Center waitlist bar */
.command-waitlist {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--aqua-dim), var(--red-dim));
  border: 1px solid var(--border);
  text-align: center;
}

.command-waitlist p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.command-waitlist .inline-waitlist--row {
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .inline-waitlist--row { flex-direction: column; }
  .inline-waitlist--row input[type="email"] { min-width: 100%; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--dark-navy);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin-top: 0.75rem; }
.footer-legal { font-size: 0.75rem !important; color: var(--text-muted) !important; margin-top: 1rem !important; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--aqua); }

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================
   MODAL
   ========================================================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card {
  background: var(--navy);
  padding: 2.5rem;
  border-radius: var(--radius);
  width: 90%;
  max-width: 480px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .aura-grid { grid-template-columns: repeat(2, 1fr); }
  .command-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-interactive { grid-template-columns: 1fr; }
  .stack-sidebar { position: static; flex-direction: row; }
  .stack-info-card, .stack-price-card { flex: 1; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 11, 21, 0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    border-left: 1px solid var(--border);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
  }

  .nav-dropdown > button[aria-expanded="true"] + .nav-dropdown-menu { display: block; }

  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .tech-split, .tech-split--reverse { grid-template-columns: 1fr; direction: ltr; }
  .services-grid { grid-template-columns: 1fr; }
  .aura-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid--4 { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .command-features { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; }
  .waitlist-input-group { flex-direction: column; }
  .stack-sidebar { flex-direction: column; }
  .section-dark, .section-light { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
  .social-grid { grid-template-columns: 1fr; }
  .payment-flow { gap: 0.25rem; }
  .pf-arrow { display: none; }
  .pf-step { font-size: 0.65rem; padding: 0.3rem 0.5rem; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-particles { animation: none; }
  .hero-logo-img { animation: none; }
  .btn--highlight { animation: none; }
  .agent-dot { animation: none; }
  .agent-orbit { animation: none; }
  .agent-dot { animation: none; }
}

/* ==========================================================
   WHO WE SERVE — 4-TIER GRID
   ========================================================== */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tier-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(43, 212, 203, 0.08);
}

.tier-card--highlight {
  border-color: var(--aqua);
  background: linear-gradient(135deg, rgba(43, 212, 203, 0.06), rgba(43, 212, 203, 0.02));
}

.tier-card--highlight:hover {
  box-shadow: 0 16px 48px var(--aqua-glow);
}

.tier-card--muted {
  opacity: 0.65;
  border-style: dashed;
}

.tier-card--muted:hover {
  opacity: 0.85;
}

.tier-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--dark-navy);
  background: var(--aqua);
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.tier-icon {
  width: 44px;
  height: 44px;
  color: var(--aqua);
  margin-bottom: 1.5rem;
}

.tier-icon--solo { color: var(--aqua); }

.tier-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.tier-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.tier-fit {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.tier-fit li {
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-fit li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}

.tier-coming {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================
   COOKIE CONSENT BANNER
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-smooth);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner--hidden {
  transform: translateY(100%);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  flex: 1;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  min-width: 200px;
  margin: 0;
}

.cookie-banner-inner a {
  color: var(--aqua);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ==========================================================
   LEGAL PAGES
   ========================================================== */
.legal-page {
  padding: 8rem 0 5rem;
  background: var(--dark-navy);
  min-height: 100vh;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--aqua);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 720px;
}

.legal-page ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  max-width: 720px;
}

.legal-page li {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.legal-page li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--aqua);
}

.legal-page a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page strong { color: var(--white); }

.legal-page code {
  font-size: 0.82rem;
  background: var(--aqua-dim);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--aqua);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-bottom a:hover { color: var(--aqua); }

/* ==========================================================
   RESPONSIVE ADDITIONS
   ========================================================== */
@media (max-width: 1024px) {
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .cookie-banner-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* ---- High contrast mode ---- */
@media (forced-colors: active) {
  .btn--primary { border: 2px solid ButtonText; }
  .stack-layer { border: 2px solid ButtonText; }
  .nav-cta { border: 2px solid ButtonText; }
  .tier-card { border: 2px solid ButtonText; }
  .cookie-banner-inner { border: 2px solid ButtonText; }
}
