/* ==========================================================================
   CuraWave Health — Modern Ambient AgeTech Design System
   ========================================================================== */

:root {
  --bg-primary: #0a0f1d;
  --bg-surface: #0f172a;
  --bg-surface-elevated: #1e293b;
  --bg-glass: rgba(15, 23, 42, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(6, 182, 212, 0.35);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-amber: #f59e0b;
  --accent-rose: #ef4444;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition-fast: 0.18s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 35px rgba(6, 182, 212, 0.15);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
}

strong {
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.mono-code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* Badges & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 18px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseAnim 2s infinite ease-in-out;
}

@keyframes pulseAnim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  color: #04121a;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--border-subtle);
  color: #f1f5f9;
}

.btn-secondary:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: #38bdf8;
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(10, 15, 29, 0.8);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.main-nav a:hover {
  color: #38bdf8;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(6, 182, 212, 0) 70%);
}

.glow-orb-2 {
  width: 450px;
  height: 450px;
  bottom: 0;
  left: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0) 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-metric {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-subtle);
}

/* Glass Card */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-card {
  overflow: hidden;
  border-color: rgba(6, 182, 212, 0.2);
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(30, 41, 59, 0.5);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  font-weight: 600;
}

.signal-indicator.live {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
}

.card-title-text {
  font-family: var(--font-mono);
  color: var(--text-primary);
  font-size: 0.8rem;
}

.badge-sub {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.radar-box {
  position: relative;
  background: #020617;
  padding: 12px;
}

#heroRadarCanvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
}

.overlay-telemetry {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.telemetry-pill {
  flex: 1;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
}

.telemetry-pill .label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.telemetry-pill .val {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
}

.telemetry-pill .val.green { color: var(--accent-emerald); }
.telemetry-pill .val.cyan { color: var(--accent-cyan); }
.telemetry-pill .val.blue { color: #60a5fa; }
.telemetry-pill .val.red { color: var(--accent-rose); }

.card-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(30, 41, 59, 0.3);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-text-action {
  background: none;
  border: none;
  color: #38bdf8;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.8rem;
}

.btn-text-action:hover {
  color: #7dd3fc;
}

/* Sections */
.section-padding {
  padding: 96px 0;
}

.bg-surface {
  background-color: var(--bg-surface);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.08rem;
}

.text-center {
  text-align: center;
}

/* Teardown Cards */
.teardown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.teardown-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform var(--transition-smooth);
}

.teardown-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.teardown-icon {
  margin-bottom: 18px;
}

.teardown-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.quote-box {
  background: rgba(239, 68, 68, 0.08);
  border-left: 3px solid var(--accent-rose);
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 0.92rem;
  color: #fca5a5;
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote-box cite {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 6px;
}

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface-elevated);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.94rem;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: #0b1329;
  font-weight: 700;
  color: var(--text-secondary);
}

.comparison-table .highlight-th {
  background: #0e2439;
  color: #38bdf8;
  border-left: 1px solid var(--border-glow);
  border-right: 1px solid var(--border-glow);
}

.comparison-table .highlight-td {
  background: rgba(6, 182, 212, 0.05);
  border-left: 1px solid var(--border-glow);
  border-right: 1px solid var(--border-glow);
  color: #fff;
}

.badge-win {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
}

.text-danger {
  color: #f87171;
  font-weight: 700;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(6, 182, 212, 0.35);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* Hardware Box */
.hardware-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  align-items: center;
}

.hw-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-emerald);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.hw-spec-col h3 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.hw-features {
  list-style: none;
  margin-top: 20px;
}

.hw-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.blueprint-card {
  background: #020617;
  border: 1px dashed rgba(6, 182, 212, 0.4);
  border-radius: var(--radius-md);
  padding: 24px;
}

.blueprint-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #38bdf8;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schematic-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.node-box {
  background: #1e293b;
  border: 1px solid #334155;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.node-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.node-sub {
  font-size: 0.75rem;
  color: #38bdf8;
  font-family: var(--font-mono);
}

.wave-bridge {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.wave-anim {
  height: 2px;
  background: linear-gradient(90deg, #06b6d4, #10b981, #06b6d4);
  background-size: 200% 100%;
  animation: waveScroll 2s linear infinite;
  margin-bottom: 6px;
}

@keyframes waveScroll {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.gateway-arrow {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #10b981;
  margin: 18px 0;
}

.gateway-box {
  background: #0f172a;
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.gw-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 8px;
}

.gw-pipeline {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #94a3b8;
}

/* Simulator Section */
.sim-wrapper {
  padding: 34px;
}

.sim-controls {
  margin-bottom: 24px;
}

.control-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.scenario-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-sim {
  background: #1e293b;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.btn-sim.active, .btn-sim:hover {
  background: rgba(6, 182, 212, 0.2);
  color: #38bdf8;
  border-color: #06b6d4;
}

.sim-display-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 28px;
}

.sim-canvas-box {
  background: #020617;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-subtle);
}

.canvas-label-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 10px;
}

#simCanvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: #050a14;
}

.sim-telemetry-box {
  background: #1e293b;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-subtle);
}

.sim-telemetry-box h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.m-label {
  color: var(--text-secondary);
}

.m-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fff;
}

.m-val.green { color: var(--accent-emerald); }
.m-val.red { color: var(--accent-rose); }

.tunstall-status-box {
  margin-top: 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.tunstall-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fca5a5;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.tunstall-res {
  font-size: 0.88rem;
  color: #fecaca;
}

/* Clinical Grid */
.clinical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.clinical-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
}

.clinic-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.clinical-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
}

.team-avatar-box {
  position: relative;
}

.avatar-placeholder {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  font-family: var(--font-mono);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.team-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-emerald);
  border: 2px solid var(--bg-surface);
}

.team-info {
  flex: 1;
}

.team-role-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.team-name {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.team-degree {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.team-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 10px;
}

.team-email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.team-email-link:hover {
  text-decoration: underline;
  color: #7dd3fc;
}

.team-role-pill {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* Pilot & Inquiry */
.pilot-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
}

.pilot-info-col h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.pilot-features {
  margin: 26px 0;
}

.p-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.94rem;
}

.contact-direct {
  padding: 16px;
  background: rgba(30, 41, 59, 0.4);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-cyan);
  font-size: 0.9rem;
}

.contact-direct h4 {
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.contact-direct a {
  color: #38bdf8;
  text-decoration: none;
}

.inquiry-form {
  background: #0f172a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
}

.inquiry-form h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.form-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* Footer */
.site-footer {
  background: #060913;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 0.9rem;
  margin: 16px 0;
  max-width: 320px;
}

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

.footer-links-col h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 10px;
}

.footer-links-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.legal-disclaimer {
  max-width: 650px;
  font-size: 0.76rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .teardown-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .clinical-grid { grid-template-columns: 1fr 1fr; }
  .hardware-box { grid-template-columns: 1fr; }
  .sim-display-grid { grid-template-columns: 1fr; }
  .pilot-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.3rem; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .clinical-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pilot-box { padding: 24px; }
}
