/* ═══════════════════════════════════════════════════════════════
   NOZA — Health Through Any Lens
   Design System: Enterprise Navy Intelligence
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Backgrounds — derived from brand navy #0F1542 */
  --bg-base:        #05091c;
  --bg-surface:     #08102a;
  --bg-card:        rgba(15,21,66,0.38);
  --bg-card-hover:  rgba(15,21,66,0.62);
  --border:         rgba(56,139,235,0.13);
  --border-glow:    rgba(56,189,248,0.38);

  /* Brand palette */
  --navy:           #0f1542;
  --blue:           #1a56db;
  --blue-bright:    #3b82f6;
  --sky:            #38bdf8;
  --indigo:         #1e40af;
  --indigo-bright:  #60a5fa;
  --gold:           #f59e0b;
  --green:          #10b981;
  --red:            #ef4444;
  --orange:         #f97316;

  /* Aliases kept for backward-compat with older HTML inline styles */
  --cyan:           #38bdf8;
  --purple:         #1e40af;
  --purple-bright:  #60a5fa;

  --text-primary:   #e4eaf5;
  --text-secondary: #7e99b8;
  --text-muted:     #3d5278;

  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-accent:  'Rajdhani', sans-serif;

  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-glow-blue:   0 0 30px rgba(26,86,219,0.28), 0 0 60px rgba(26,86,219,0.1);
  --shadow-glow-indigo: 0 0 30px rgba(30,64,175,0.25), 0 0 60px rgba(30,64,175,0.1);
  --shadow-card:        0 8px 32px rgba(0,0,0,0.45);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html[data-theme="red"] {
  --bg-base:        #070202;
  --bg-surface:     #150506;
  --bg-card:        rgba(69,10,10,0.42);
  --bg-card-hover:  rgba(127,29,29,0.56);
  --border:         rgba(248,113,113,0.18);
  --border-glow:    rgba(248,113,113,0.48);
  --navy:           #1f0505;
  --blue:           #b91c1c;
  --blue-bright:    #ef4444;
  --sky:            #f87171;
  --indigo:         #7f1d1d;
  --indigo-bright:  #fca5a5;
  --gold:           #f59e0b;
  --green:          #22c55e;
  --text-primary:   #fff1f2;
  --text-secondary: #c7a0a3;
  --text-muted:     #735052;
  --cyan:           #f87171;
  --purple:         #7f1d1d;
  --purple-bright:  #fca5a5;
  --shadow-glow-blue:   0 0 30px rgba(239,68,68,0.28), 0 0 60px rgba(185,28,28,0.12);
  --shadow-glow-indigo: 0 0 30px rgba(127,29,29,0.28), 0 0 60px rgba(239,68,68,0.1);
}

html[data-theme="deep-black"] {
  --bg-base:        #000000;
  --bg-surface:     #050505;
  --bg-card:        rgba(8,8,8,0.72);
  --bg-card-hover:  rgba(16,16,16,0.9);
  --border:         rgba(255,255,255,0.1);
  --border-glow:    rgba(56,189,248,0.4);
  --navy:           #000000;
  --blue:           #0ea5e9;
  --blue-bright:    #38bdf8;
  --sky:            #67e8f9;
  --indigo:         #111827;
  --indigo-bright:  #a5f3fc;
  --gold:           #fbbf24;
  --green:          #34d399;
  --text-primary:   #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;
  --cyan:           #67e8f9;
  --purple:         #111827;
  --purple-bright:  #a5f3fc;
  --shadow-glow-blue:   0 0 30px rgba(56,189,248,0.24), 0 0 72px rgba(103,232,249,0.08);
  --shadow-glow-indigo: 0 0 30px rgba(15,23,42,0.45), 0 0 60px rgba(56,189,248,0.08);
}

html[data-theme="carbon"] {
  --bg-base:        #090a0b;
  --bg-surface:     #101214;
  --bg-card:        rgba(31,35,38,0.58);
  --bg-card-hover:  rgba(47,52,56,0.76);
  --border:         rgba(148,163,184,0.16);
  --border-glow:    rgba(203,213,225,0.36);
  --navy:           #111315;
  --blue:           #334155;
  --blue-bright:    #94a3b8;
  --sky:            #e2e8f0;
  --indigo:         #27272a;
  --indigo-bright:  #cbd5e1;
  --gold:           #f59e0b;
  --green:          #2dd4bf;
  --text-primary:   #f1f5f9;
  --text-secondary: #a8b0ba;
  --text-muted:     #64707d;
  --cyan:           #e2e8f0;
  --purple:         #27272a;
  --purple-bright:  #cbd5e1;
  --shadow-glow-blue:   0 0 30px rgba(148,163,184,0.18), 0 0 70px rgba(226,232,240,0.06);
  --shadow-glow-indigo: 0 0 30px rgba(39,39,42,0.42), 0 0 60px rgba(203,213,225,0.06);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Neural Canvas Background ──────────────────────────────── */
#neural-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.38;
}

.page-content {
  position: relative;
  z-index: 1;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue-bright) 40%, var(--indigo-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,9,28,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

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

.nav-logo {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: var(--shadow-glow-blue);
  flex-shrink: 0;
}

.nav-logo svg {
  width: 100%;
  height: 100%;
}

.nav-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

.nav-tagline {
  font-size: 0.62rem;
  color: var(--text-secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.nav-links a.active {
  color: var(--sky);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--navy)) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  box-shadow: 0 0 20px rgba(26,86,219,0.25);
}

.nav-cta:hover {
  box-shadow: var(--shadow-glow-blue) !important;
  transform: translateY(-1px);
}

.theme-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover,
.theme-switcher.open .theme-toggle {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  color: var(--sky);
}

.theme-toggle-swatch,
.theme-option-swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.theme-toggle-caret {
  color: var(--text-secondary);
  font-size: 0.7rem;
  line-height: 1;
}

.theme-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  min-width: 190px;
  padding: 8px;
  display: grid;
  gap: 4px;
  background: rgba(5,9,28,0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.theme-switcher.open .theme-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.theme-option:hover,
.theme-option.active {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.theme-option.active::after {
  content: '✓';
  margin-left: auto;
  color: var(--sky);
}

.theme-swatch-blue { background: linear-gradient(135deg, #38bdf8, #1a56db 55%, #0f1542); }
.theme-swatch-red { background: linear-gradient(135deg, #fca5a5, #ef4444 55%, #450a0a); }
.theme-swatch-deep-black { background: linear-gradient(135deg, #67e8f9, #111827 45%, #000); }
.theme-swatch-carbon { background: linear-gradient(135deg, #e2e8f0, #64748b 48%, #090a0b); }

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover,
.lang-switcher.open .lang-toggle {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  color: var(--sky);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 120;
  min-width: 154px;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: rgba(5,9,28,0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.lang-option:hover,
.lang-option.active {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.lang-option.active::after {
  content: '✓';
  float: right;
  color: var(--sky);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 34px;
  background: linear-gradient(90deg,
    rgba(26,86,219,0.12),
    rgba(56,189,248,0.22),
    rgba(30,64,175,0.16),
    rgba(26,86,219,0.12));
  background-size: 240% 100%;
  border: 1px solid rgba(56,189,248,0.22);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  animation: fadeInDown 0.6s ease forwards, badge-pan 7s linear infinite;
}

.hero-badge-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  height: 100%;
  white-space: nowrap;
  animation: badge-marquee 18s linear infinite;
}

.hero-badge-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 3rem;
  line-height: 34px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.7s ease 0.3s both;
}

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

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.7s ease 0.5s both;
}

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

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.925rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26,86,219,0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,86,219,0.48);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  color: var(--sky);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ef8c00);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(245,158,11,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.45);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), var(--shadow-glow-blue);
}

.card-glow-indigo:hover {
  border-color: rgba(30,64,175,0.35);
  box-shadow: var(--shadow-card), var(--shadow-glow-indigo);
}

/* ─── Sections ──────────────────────────────────────────────── */
.section {
  padding: 100px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

/* ─── Features Grid ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-icon.blue   { background: rgba(26,86,219,0.15); }
.feature-icon.purple { background: rgba(30,64,175,0.15); }
.feature-icon.cyan   { background: rgba(56,189,248,0.15); }
.feature-icon.gold   { background: rgba(245,158,11,0.15); }
.feature-icon.green  { background: rgba(16,185,129,0.15); }

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── Services Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.badge-blue   { background: rgba(26,86,219,0.15);  color: var(--blue-bright);  border: 1px solid rgba(26,86,219,0.2); }
.badge-purple { background: rgba(30,64,175,0.15);  color: var(--indigo-bright); border: 1px solid rgba(30,64,175,0.2); }
.badge-green  { background: rgba(16,185,129,0.15); color: #34d399;              border: 1px solid rgba(16,185,129,0.2); }
.badge-gold   { background: rgba(245,158,11,0.15); color: var(--gold);          border: 1px solid rgba(245,158,11,0.2); }
.badge-cyan   { background: rgba(56,189,248,0.15); color: var(--sky);           border: 1px solid rgba(56,189,248,0.2); }

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 5px 0;
}

.service-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Analyze Page ──────────────────────────────────────────── */
.analyze-hero {
  padding-top: 100px;
  padding-bottom: 2rem;
  text-align: center;
}

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

.capture-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.capture-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 2.5rem 1.5rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  color: var(--text-secondary);
  text-align: center;
}

.capture-btn:hover,
.capture-btn.active {
  background: var(--bg-card-hover);
  border-color: var(--blue);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(26,86,219,0.22);
}

.capture-btn-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.capture-btn-label {
  font-size: 1.05rem;
  font-weight: 600;
}

.capture-btn-hint {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Webcam Panel */
.webcam-panel {
  display: none;
  margin-bottom: 2rem;
}

.webcam-panel.active {
  display: block;
}

.webcam-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  background: #000;
  aspect-ratio: 16/9;
  max-height: 440px;
}

.webcam-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.webcam-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.face-guide {
  width: 200px;
  height: 240px;
  border: 2px dashed rgba(56,189,248,0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.3);
}

.webcam-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

/* Upload Panel */
.upload-panel {
  display: none;
  margin-bottom: 2rem;
}

.upload-panel.active {
  display: block;
}

.upload-drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.upload-drop-zone:hover,
.upload-drop-zone.drag-over {
  border-color: var(--blue);
  background: rgba(26,86,219,0.04);
}

.upload-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon  { font-size: 3rem; margin-bottom: 1rem; }
.upload-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.upload-hint  { color: var(--text-muted); font-size: 0.85rem; }

/* Preview */
.preview-panel {
  display: none;
  margin-bottom: 2rem;
}

.preview-panel.active {
  display: block;
}

.preview-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-glow);
  background: #000;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-wrapper img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.preview-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.preview-remove:hover {
  background: rgba(239,68,68,0.3);
  border-color: var(--red);
}

.analyze-action {
  text-align: center;
  margin-bottom: 3rem;
}

/* Processing Overlay */
.processing-overlay {
  display: none;
  padding: 3rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
}

.processing-overlay.active {
  display: block;
}

.processing-spinner {
  width: 64px;
  height: 64px;
  border: 3px solid var(--border);
  border-top-color: var(--sky);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: spin 1s linear infinite;
}

.processing-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.processing-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.processing-step.active { color: var(--sky); }
.processing-step.done   { color: var(--green); }

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ─── Results Section ───────────────────────────────────────── */
.results-section {
  display: none;
}

.results-section.active {
  display: block;
  animation: fadeInUp 0.5s ease both;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.results-title {
  font-size: 1.4rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.metric-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.metric-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* Life Expectancy Card */
.life-expectancy-card {
  padding: 2.5rem;
  margin-bottom: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.le-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}

.le-gauge-wrapper {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}

.le-gauge-wrapper canvas {
  display: block;
}

.le-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.le-years-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.le-years-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.le-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.le-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(15,21,66,0.25);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.le-detail-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.le-detail-value {
  font-weight: 700;
  font-size: 0.95rem;
}

/* Risk Score */
.risk-card {
  padding: 2rem;
  margin-bottom: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.risk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.risk-score-badge {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: var(--radius);
  background: rgba(15,21,66,0.4);
}

.risk-bar-container {
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.risk-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
  width: 0;
}

.risk-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.risk-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.risk-factor-tag {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
}

.tag-good   { color: var(--green); background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); }
.tag-warn   { color: var(--gold);  background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); }
.tag-danger { color: var(--red);   background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.2); }

/* Recommendations */
.recommendations-section {
  margin-top: 2rem;
}

.rec-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.rec-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.rec-card.recommended {
  border-color: rgba(26,86,219,0.38);
  background: rgba(26,86,219,0.06);
}

.rec-card.recommended::after {
  content: 'Recommended';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--sky);
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 100px;
  padding: 2px 10px;
}

.rec-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.rec-card-icon  { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.rec-card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.rec-card-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 1.25rem; }
.rec-card-price { font-size: 0.8rem; color: var(--text-muted); }
.rec-card-price span { font-weight: 700; color: var(--sky); font-size: 1rem; }

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: rgba(5,9,28,0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 320px;
}

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--sky); }

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ─── Error / Alert ─────────────────────────────────────────── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5;
  flex-direction: column;
  align-items: flex-start;
}

.alert-error .error-suggestions {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1.25rem;
  list-style: disc;
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.7;
}

.alert-warning {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: #fcd34d;
}

.alert-info {
  background: rgba(26,86,219,0.1);
  border: 1px solid rgba(26,86,219,0.25);
  color: var(--sky);
}

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(26,86,219,0.09) 0%, rgba(15,21,66,0.25) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.1), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes badge-pan {
  0%   { background-position: 0% 50%; }
  100% { background-position: 240% 50%; }
}

@keyframes badge-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(26,86,219,0.2); }
  50%       { box-shadow: 0 0 40px rgba(26,86,219,0.45), 0 0 80px rgba(56,189,248,0.15); }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .metrics-grid      { grid-template-columns: repeat(2, 1fr); }
  .le-content        { grid-template-columns: 1fr; }
  .le-gauge-wrapper  { margin: 0 auto; }
  .footer-inner      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .navbar { padding: 0 1rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(5,9,28,0.97); padding: 1rem; border-bottom: 1px solid var(--border); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .lang-switcher { width: 100%; align-items: stretch; }
  .lang-toggle { width: 100%; justify-content: center; }
  .lang-menu { display: none; position: static; width: 100%; margin-top: 8px; opacity: 1; pointer-events: auto; transform: none; }
  .lang-switcher.open .lang-menu { display: grid; transform: none; }
  .theme-switcher { width: 100%; align-items: stretch; }
  .theme-toggle { width: 100%; justify-content: center; }
  .theme-menu { display: none; position: static; width: 100%; margin-top: 8px; opacity: 1; pointer-events: auto; transform: none; }
  .theme-switcher.open .theme-menu { display: grid; transform: none; }
  .hero-badge { width: 100vw; }
  .hero-badge-track { animation-duration: 14s; }
  .hero-badge-track span { padding: 0 1.75rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 360px; white-space: normal; }
  .capture-options { grid-template-columns: 1fr; }
  .metrics-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero-stats      { gap: 2rem; }
  .footer-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section         { padding: 60px 1.25rem; }
  .cta-section     { padding: 2.5rem 1.5rem; }
}


/* ===== Deep Scan vs Smartwatches promo (added 2026-07-03) ===== */
/* ===== Deep Scan comparison (promo-) ===== */
.promo-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;
}

.promo-table-wrap {
    max-width: 980px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 48px rgba(26, 86, 219, 0.08);
}

.promo-table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--font-body), sans-serif;
    font-size: 0.92rem;
}

.promo-table th,
.promo-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    white-space: nowrap;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.promo-table thead th {
    padding: 1.15rem 1.25rem;
    font-family: var(--font-heading), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(15, 21, 66, 0.5);
}

.promo-table tbody th[scope="row"] {
    text-align: left;
    font-weight: 500;
}

/* Sticky feature column so labels stay visible while scrolling on mobile */
.promo-table th:first-child,
.promo-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--bg-surface);
}

.promo-table tbody tr:last-child th,
.promo-table tbody tr:last-child td {
    border-bottom: none;
}

.promo-table tbody tr:hover td:not(.promo-col-hero) {
    background: rgba(56, 139, 235, 0.04);
}

/* Highlighted Deep Scan column */
.promo-table td.promo-col-hero,
.promo-table thead th.promo-col-hero {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(26, 86, 219, 0.05));
    border-left: 1px solid var(--border-glow);
    border-right: 1px solid var(--border-glow);
    color: var(--text-primary);
    font-weight: 600;
}

.promo-table thead th.promo-col-hero {
    border-top: 2px solid var(--sky);
    box-shadow: inset 0 14px 28px -18px rgba(56, 189, 248, 0.45);
}

.promo-badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.14rem 0.55rem;
    font-family: var(--font-body), sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--bg-base);
    background: linear-gradient(135deg, var(--sky), var(--blue-bright));
    border-radius: 999px;
    vertical-align: middle;
}

.promo-yes { color: var(--green); font-weight: 700; }
.promo-no  { color: var(--red);   font-weight: 700; }

.promo-free {
    font-family: var(--font-heading), sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green);
}

.promo-note {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
}

.promo-meta {
    margin-top: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
}

.promo-footnote {
    max-width: 560px;
    margin: 1.5rem auto 0;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .promo-table { min-width: 640px; font-size: 0.85rem; }
    .promo-table th,
    .promo-table td { padding: 0.8rem 0.9rem; }
    .promo-table thead th { font-size: 0.85rem; }
}


/* ===== Investor pitch hero + access model (2026-07-03) ===== */
/* ── Pitch: hero manifesto ──────────────────────────────── */
.pitch-manifesto {
  font-size: clamp(2.6rem, 7.5vw, 4.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f3f6ff;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}
.pitch-hero .hero-title,
.pitch-hero .hero-subtitle,
.pitch-hero .hero-actions,
.pitch-hero .hero-stats {
  animation: none;
  opacity: 1;
  transform: none;
}
.pitch-hero .hero-badge {
  animation: badge-pan 7s linear infinite;
  opacity: 1;
  transform: none;
}
.pitch-subline {
  max-width: 660px;
  color: #a9bdd8;
}
.pitch-price-em {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}
.pitch-hero .hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 48%, var(--indigo) 100%);
  box-shadow: 0 12px 34px rgba(26,86,219,0.36), 0 0 22px rgba(56,189,248,0.16);
}
.pitch-hero .hero-actions .btn-outline {
  background: rgba(8,16,42,0.72);
  border-color: rgba(126,153,184,0.22);
  color: #d9e4f4;
}
.pitch-hero-footnote {
  margin-top: 1.6rem;
  font-size: 0.75rem;
  color: #6f8db2;
}

/* ── Hero: brand tagline + trust strip + CTA note (NOZA) ── */
.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: 0.01em;
  margin: -0.5rem auto 1.4rem;
  max-width: 720px;
}
.hero-trust-strip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.9rem;
  margin: 0 auto 2rem;
  padding: 0.6rem 1.25rem;
  max-width: 720px;
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  background: rgba(8, 16, 42, 0.55);
  box-shadow: inset 0 0 24px rgba(56, 189, 248, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  color: #cddbf0;
}
.hero-trust-strip .hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.hero-trust-strip .hero-trust-item strong {
  color: var(--sky);
  font-weight: 700;
}
.hero-trust-strip .hero-trust-sep {
  color: var(--text-muted);
  font-weight: 400;
}
.hero-cta-note {
  margin: 0.9rem auto 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.hero-cta-note strong { color: var(--gold); font-weight: 700; }

/* ── "How Deep Scan works in 3 taps" confidence band ── */
.taps-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}
.tap-step {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  text-align: left;
}
.tap-step .tap-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 8px 22px rgba(26, 86, 219, 0.32);
  margin-bottom: 1rem;
}
.tap-step .tap-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.tap-step .tap-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── Pitch: access model ────────────────────────────────── */
.pitch-business { scroll-margin-top: 90px; }
.pitch-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}
.pitch-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 1.75rem 1.75rem;
  text-align: center;
}
.pitch-price-card--featured {
  border-color: var(--border-glow);
  box-shadow: 0 0 42px rgba(56, 189, 248, 0.12), inset 0 0 30px rgba(56, 189, 248, 0.04);
}
@media (min-width: 900px) {
  .pitch-price-card--featured { transform: translateY(-6px); }
}
.pitch-price-tag {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.22rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-base);
  background: linear-gradient(135deg, var(--sky), var(--blue-bright));
  border-radius: 999px;
  white-space: nowrap;
}
.pitch-price-tag--alt {
  color: var(--sky);
  background: var(--navy);
  border: 1px solid var(--border-glow);
}
.pitch-price-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.pitch-price-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
}
.pitch-price-value {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.1rem;
}
.pitch-price-unit {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}
.pitch-price-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  flex: 1;
}
.pitch-price-list li {
  position: relative;
  padding-left: 1.35rem;
  text-align: left;
}
.pitch-price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pitch-price-card .btn { align-self: center; }

/* money-flow strip */
.pitch-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.9rem;
  max-width: 1040px;
  margin: 2.75rem auto 0;
  padding: 1.4rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.pitch-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 150px;
  text-align: center;
  color: var(--text-primary);
}
.pitch-flow-ico { font-size: 1.4rem; }
.pitch-flow-step strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
}
.pitch-flow-step em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-secondary);
  max-width: 190px;
}
.pitch-flow-arrow {
  align-self: center;
  color: var(--sky);
  font-size: 1.3rem;
  font-weight: 700;
}
.pitch-footnote {
  max-width: 760px;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .pitch-flow { flex-direction: column; align-items: center; }
  .pitch-flow-arrow { transform: rotate(90deg); }
}

/* ===== Future Smart Health City ===== */
.future-page {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.future-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 3rem;
  align-items: center;
  padding: 116px 2rem 70px;
  max-width: 1280px;
  margin: 0 auto;
}

.future-copy {
  max-width: 580px;
}

.future-title {
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.35rem;
}

.future-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.future-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.future-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.future-city-scene {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(56,189,248,0.06), transparent 34%),
    linear-gradient(135deg, rgba(15,21,66,0.72), rgba(5,9,28,0.9));
  box-shadow: var(--shadow-card), var(--shadow-glow-blue);
}

.future-skyline {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 9%;
  height: 48%;
  display: flex;
  align-items: flex-end;
  gap: 2.2%;
}

.building {
  flex: 1;
  display: block;
  min-width: 52px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.12) 0 6px, transparent 6px 18px),
    linear-gradient(180deg, rgba(56,189,248,0.14), rgba(15,21,66,0.62));
  box-shadow: inset 0 0 26px rgba(56,189,248,0.08);
}
.b1 { height: 62%; }
.b2 { height: 88%; }
.b3 { height: 72%; }
.b4 { height: 95%; }
.b5 { height: 58%; }

.city-grid-lines {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(56,189,248,0.12) 12.4% 12.6%, transparent 13% 25%, rgba(56,189,248,0.12) 25.4% 25.6%, transparent 26% 48%, rgba(56,189,248,0.12) 48.4% 48.6%, transparent 49% 74%, rgba(56,189,248,0.12) 74.4% 74.6%, transparent 75%),
    linear-gradient(0deg, transparent 0 23%, rgba(56,189,248,0.1) 23.4% 23.8%, transparent 24% 58%, rgba(56,189,248,0.1) 58.4% 58.8%, transparent 59%);
  transform: skewY(-8deg);
  transform-origin: bottom left;
  opacity: 0.7;
}

.camera-node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  background: rgba(5,9,28,0.88);
  box-shadow: 0 0 22px rgba(56,189,248,0.24);
  animation: future-pulse 2.8s ease-in-out infinite;
}
.camera-node span {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 14px var(--sky);
}
.cam-a { top: 18%; left: 16%; }
.cam-b { top: 25%; right: 18%; animation-delay: 0.7s; }
.cam-c { top: 49%; left: 46%; animation-delay: 1.2s; }

.scan-sector {
  position: absolute;
  width: 180px;
  height: 110px;
  border: 1px solid rgba(56,189,248,0.22);
  background: linear-gradient(90deg, rgba(56,189,248,0.13), transparent);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  opacity: 0.65;
  animation: scan-sweep 4s ease-in-out infinite;
}
.sector-a { top: 23%; left: 20%; transform-origin: left center; }
.sector-b { top: 32%; right: 22%; transform: scaleX(-1); transform-origin: right center; animation-delay: 1.4s; }

.citizen-dot {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,185,129,0.55);
  background: rgba(16,185,129,0.12);
  color: #a7f3d0;
  font-size: 0.68rem;
  font-weight: 800;
  animation: citizen-breathe 3.2s ease-in-out infinite;
}
.citizen-dot.unstable {
  border-color: rgba(239,68,68,0.8);
  background: rgba(239,68,68,0.14);
  color: #fecaca;
  animation: alert-breathe 1.15s ease-in-out infinite;
}
.p1 { left: 28%; bottom: 25%; }
.p2 { right: 31%; bottom: 29%; }
.p3 { left: 51%; bottom: 17%; animation-delay: 0.5s; }
.p4 { right: 16%; bottom: 18%; animation-delay: 1s; }

.alert-route {
  position: absolute;
  right: 27%;
  bottom: 33%;
  width: 32%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239,68,68,0), rgba(239,68,68,0.95), rgba(56,189,248,0));
  transform: rotate(-22deg);
  transform-origin: right center;
  animation: packet-flow 1.6s linear infinite;
}

.health-center {
  position: absolute;
  right: 9%;
  top: 12%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
}
.health-center-core {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(5,9,28,0.95);
  border: 1px solid var(--border-glow);
  color: var(--sky);
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 0 28px rgba(56,189,248,0.24);
}
.health-rings,
.health-rings::before,
.health-rings::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 28px;
  inset: 22px;
  animation: command-ring 3s linear infinite;
}
.health-rings::before { inset: 10px; animation-delay: 0.7s; }
.health-rings::after { inset: 0; animation-delay: 1.2s; }

.future-alert-card {
  position: absolute;
  right: 9%;
  top: 37%;
  width: 210px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(239,68,68,0.34);
  background: rgba(69,10,10,0.72);
  box-shadow: 0 0 28px rgba(239,68,68,0.14);
  animation: alert-card 1.7s ease-in-out infinite;
}
.future-alert-card strong,
.future-alert-card span { display: block; }
.future-alert-card strong { color: #fecaca; font-size: 0.86rem; }
.future-alert-card span { color: rgba(255,255,255,0.72); font-size: 0.72rem; margin-top: 0.24rem; }

.future-command-strip {
  max-width: 1180px;
  margin: -22px auto 80px;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.future-command-strip > div {
  min-height: 96px;
  padding: 1.15rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.future-command-strip strong,
.future-command-strip span { display: block; }
.future-command-strip strong { font-family: var(--font-heading); margin-bottom: 0.35rem; }
.future-command-strip span { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.55; }

.future-slides {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.future-slide {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: 3rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
.future-slide h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  line-height: 1.12;
  margin: 0.8rem 0 1rem;
}
.future-slide p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}
.future-slide-visual {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15,21,66,0.58), rgba(5,9,28,0.92));
  box-shadow: var(--shadow-card);
}
.policy-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  color: var(--sky);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.animated-camera {
  position: absolute;
  left: 46%;
  top: 28%;
  width: 74px;
  height: 46px;
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  background: rgba(5,9,28,0.8);
  box-shadow: 0 0 24px rgba(56,189,248,0.2);
}
.animated-camera::before {
  content: '';
  position: absolute;
  right: -34px;
  top: 15px;
  width: 32px;
  height: 16px;
  border: 1px solid var(--border-glow);
  border-left: 0;
}
.animated-camera::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 18px var(--sky);
}
.moving-people {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 18%;
  height: 80px;
  border-top: 1px solid rgba(56,189,248,0.12);
}
.moving-people span {
  position: absolute;
  bottom: 0;
  width: 32px;
  height: 56px;
  border-radius: 18px 18px 10px 10px;
  background: rgba(56,189,248,0.16);
  border: 1px solid rgba(56,189,248,0.28);
  animation: people-walk 6s linear infinite;
}
.moving-people span:nth-child(2) { animation-delay: 1.8s; }
.moving-people span:nth-child(3) { animation-delay: 3.4s; }

.signal-wave {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 45%;
  height: 72px;
  background:
    linear-gradient(90deg, transparent, rgba(56,189,248,0.8), transparent),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(56,189,248,0.18) 18px 22px, transparent 22px 44px);
  clip-path: polygon(0 58%, 8% 58%, 12% 25%, 18% 84%, 23% 58%, 35% 58%, 39% 34%, 44% 70%, 50% 58%, 62% 58%, 66% 20%, 72% 88%, 76% 58%, 100% 58%, 100% 64%, 0 64%);
  animation: signal-slide 2.2s linear infinite;
}
.vital-stack {
  position: absolute;
  right: 8%;
  top: 16%;
  display: grid;
  gap: 0.65rem;
}
.vital-stack span,
.alert-packet,
.dash-row {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  font-size: 0.82rem;
}
.alert-person {
  position: absolute;
  left: 42%;
  top: 30%;
  width: 72px;
  height: 112px;
  border-radius: 36px 36px 18px 18px;
  border: 1px solid rgba(239,68,68,0.46);
  background: rgba(239,68,68,0.12);
}
.alert-pulse {
  position: absolute;
  left: calc(42% - 30px);
  top: calc(30% - 30px);
  width: 132px;
  height: 172px;
  border: 1px solid rgba(239,68,68,0.46);
  border-radius: 70px 70px 28px 28px;
  animation: alert-breathe 1.1s ease-in-out infinite;
}
.alert-packet {
  position: absolute;
  right: 8%;
  bottom: 12%;
  color: #fecaca;
  border-color: rgba(239,68,68,0.36);
}
.command-dashboard {
  position: absolute;
  inset: 12%;
  display: grid;
  align-content: center;
  gap: 0.75rem;
}
.dash-row.active { border-color: rgba(239,68,68,0.38); color: #fecaca; animation: alert-card 1.6s ease-in-out infinite; }
.dash-row.warn { border-color: rgba(245,158,11,0.4); color: #fcd34d; }
.route-map {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(56,189,248,0.12);
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(56,189,248,0.12) 20.3% 20.8%, transparent 21% 62%, rgba(56,189,248,0.12) 62.3% 62.8%, transparent 63%),
    linear-gradient(0deg, transparent 0 28%, rgba(56,189,248,0.12) 28.3% 28.8%, transparent 29% 72%, rgba(56,189,248,0.12) 72.3% 72.8%, transparent 73%);
}
.route-map::after {
  content: '';
  position: absolute;
  left: 18%;
  top: 58%;
  width: 64%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--sky), var(--red));
  transform: rotate(-22deg);
  animation: packet-flow 1.2s linear infinite;
}
.response-unit {
  position: absolute;
  right: 18%;
  top: 28%;
  width: 64px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(16,185,129,0.18);
  border: 1px solid rgba(16,185,129,0.45);
  color: #a7f3d0;
  font-family: var(--font-heading);
  font-weight: 800;
  animation: response-drive 4s ease-in-out infinite;
}

.future-realism {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 2rem 120px;
}
.future-guardrails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.future-guardrails .card {
  padding: 1.45rem;
}
.future-guardrails strong,
.future-guardrails span {
  display: block;
}
.future-guardrails strong {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}
.future-guardrails span {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.88rem;
}

@keyframes future-pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes scan-sweep {
  0%, 100% { opacity: 0.34; filter: brightness(0.9); }
  50% { opacity: 0.8; filter: brightness(1.35); }
}
@keyframes citizen-breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes alert-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(239,68,68,0); }
  50% { transform: scale(1.08); box-shadow: 0 0 28px rgba(239,68,68,0.28); }
}
@keyframes packet-flow {
  0% { background-position: 0 0; opacity: 0.45; }
  50% { opacity: 1; }
  100% { background-position: 180px 0; opacity: 0.45; }
}
@keyframes command-ring {
  0% { transform: scale(0.86); opacity: 0.9; }
  100% { transform: scale(1.2); opacity: 0; }
}
@keyframes alert-card {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.28); }
}
@keyframes people-walk {
  0% { left: -5%; opacity: 0; }
  10%, 90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes signal-slide {
  0% { transform: translateX(-10px); }
  100% { transform: translateX(10px); }
}
@keyframes response-drive {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-76px, 46px); }
}

@media (max-width: 900px) {
  .future-hero,
  .future-slide {
    grid-template-columns: 1fr;
  }
  .future-city-scene { min-height: 500px; }
  .future-command-strip { grid-template-columns: 1fr; margin-top: 0; }
}

@media (max-width: 600px) {
  .future-hero { padding: 102px 1rem 48px; }
  .future-city-scene { min-height: 420px; border-radius: var(--radius-lg); }
  .future-slides { padding: 0 1rem; }
  .future-slide { gap: 1.5rem; padding: 48px 0; min-height: auto; }
  .future-slide-visual { min-height: 260px; }
  .future-command-strip,
  .future-realism { padding-left: 1rem; padding-right: 1rem; }
  .future-actions .btn { width: 100%; justify-content: center; white-space: normal; }
}

/* ============================================================
   POWER MOTION LAYER v2 (2026-07-04) — bold site-wide animation
   ============================================================ */
/* Seamless, always-filled hero marquee (fixes blank gaps) */
.hero-badge-track { width: max-content; min-width: 0; }
.hero-badge-seq { display:flex; align-items:center; flex:0 0 auto; min-width:100vw; justify-content:space-around; height:100%; }

@media (prefers-reduced-motion: no-preference) {
  /* --- Dynamic complex logo --- */
  .hl-logo-scan,.hl-logo-iris,.hl-logo-core { transform-box:view-box; transform-origin:26px 26px; }
  .hl-logo-scan { animation: hl-l-scan 7s linear infinite; }
  @keyframes hl-l-scan { to { transform: rotate(360deg); } }
  .hl-logo-iris { animation: hl-l-iris 18s linear infinite; }
  @keyframes hl-l-iris { to { transform: rotate(-360deg); } }
  .hl-logo-ring { animation: hl-l-ring 3s ease-in-out infinite; }
  @keyframes hl-l-ring { 0%,100%{opacity:1} 50%{opacity:.68} }
  .hl-logo-ecg { stroke-dasharray:48; animation: hl-l-ecg 2.6s ease-in-out infinite; }
  @keyframes hl-l-ecg { 0%{stroke-dashoffset:48} 45%{stroke-dashoffset:0} 68%{stroke-dashoffset:0} 100%{stroke-dashoffset:-48} }
  .hl-logo-core { animation: hl-l-core 1.4s ease-in-out infinite; }
  @keyframes hl-l-core { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.55);opacity:.8} }
  .nav-logo { animation: hl-logo-box 4.5s ease-in-out infinite; }
  @keyframes hl-logo-box { 0%,100%{box-shadow:var(--shadow-glow-blue)} 50%{box-shadow:0 0 26px rgba(56,189,248,.7)} }
  .nav-brand:hover .hl-logo-scan { animation-duration:2.2s; }
  .nav-brand:hover .hl-logo-core { animation-duration:.6s; }

  /* --- Hero background: aurora + scan sweep --- */
  .hero { overflow:hidden; }
  .hero > * { position:relative; z-index:1; }
  .hero::before { content:''; position:absolute; inset:-25% -15%; z-index:0; pointer-events:none;
    background:radial-gradient(38% 42% at 24% 30%, rgba(26,86,219,.42), transparent 70%),
              radial-gradient(34% 38% at 80% 38%, rgba(56,189,248,.32), transparent 70%),
              radial-gradient(42% 40% at 56% 82%, rgba(30,64,175,.36), transparent 70%);
    filter:blur(34px); animation: hl-aurora 15s ease-in-out infinite alternate; }
  @keyframes hl-aurora { 0%{transform:translate3d(0,0,0) scale(1)} 50%{transform:translate3d(2.5%,-2%,0) scale(1.1)} 100%{transform:translate3d(-2.5%,2%,0) scale(1.05)} }
  .hero::after { content:''; position:absolute; left:0; right:0; top:0; height:170px; z-index:0; pointer-events:none;
    background:linear-gradient(180deg, rgba(56,189,248,.16), rgba(56,189,248,.04) 60%, transparent);
    animation: hl-scan-sweep 7s ease-in-out infinite; }
  @keyframes hl-scan-sweep { 0%{transform:translateY(-30%);opacity:0} 15%{opacity:1} 85%{opacity:.85} 100%{transform:translateY(105vh);opacity:0} }

  /* --- Glowing animated gradient title --- */
  .gradient-text { background-size:250% auto; animation: hl-shimmer 5s ease-in-out infinite; }
  @keyframes hl-shimmer { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
  .hero-title .gradient-text { animation: hl-shimmer 5s ease-in-out infinite, hl-title-glow 4s ease-in-out infinite; }
  @keyframes hl-title-glow { 0%,100%{filter:drop-shadow(0 0 14px rgba(56,189,248,.28))} 50%{filter:drop-shadow(0 0 32px rgba(56,189,248,.6))} }

  /* --- Primary CTA: pulse + travelling shine --- */
  .btn { transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, background .22s, border-color .22s; }
  .btn:hover { transform: translateY(-3px) scale(1.02); }
  .btn-primary { position:relative; overflow:hidden; animation: hl-cta 3s ease-in-out infinite; }
  @keyframes hl-cta { 0%,100%{box-shadow:0 6px 22px rgba(26,86,219,.35)} 50%{box-shadow:0 10px 36px rgba(56,189,248,.55)} }
  .btn-primary::after { content:''; position:absolute; top:0; left:-75%; width:50%; height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.38),transparent); transform:skewX(-18deg); animation: hl-shine 3.6s ease-in-out infinite; }
  @keyframes hl-shine { 0%,55%{left:-75%} 100%{left:150%} }

  /* --- Cards, icons, stats, dividers --- */
  .card { transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, border-color .4s; }
  .card:hover { transform: translateY(-8px); box-shadow: 0 18px 50px rgba(0,0,0,.5), var(--shadow-glow-blue); border-color: var(--border-glow); }
  .feature-icon { animation: hl-float 5s ease-in-out infinite; }
  @keyframes hl-float { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-8px) rotate(3deg)} }
  .hero-stat-value { animation: hl-stat 4s ease-in-out infinite; }
  @keyframes hl-stat { 0%,100%{text-shadow:0 0 0 transparent} 50%{text-shadow:0 0 22px rgba(56,189,248,.5)} }
  .hero-stat { transition: transform .3s; } .hero-stat:hover { transform: translateY(-4px) scale(1.04); }
  .divider { position:relative; overflow:hidden; }
  .divider::after { content:''; position:absolute; top:0; left:-30%; width:30%; height:100%;
    background:linear-gradient(90deg,transparent,var(--sky),transparent); opacity:.5; animation: hl-sweep 5s linear infinite; }
  @keyframes hl-sweep { from{left:-30%} to{left:130%} }
  .promo-col-hero { animation: hl-col 3.5s ease-in-out infinite; }
  @keyframes hl-col { 0%,100%{background:rgba(26,86,219,.07)} 50%{background:rgba(56,189,248,.15)} }
  .pitch-price-card--featured { animation: hl-feat 4s ease-in-out infinite; }
  @keyframes hl-feat { 0%,100%{box-shadow:0 0 0 1px var(--border-glow)} 50%{box-shadow:0 0 34px rgba(56,189,248,.3)} }
  .section-label { position:relative; }
  .section-label::after { content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px;
    background:linear-gradient(90deg, var(--sky), transparent); transform-origin:left; animation: hl-label 3s ease-in-out infinite; }
  @keyframes hl-label { 0%,100%{transform:scaleX(.3);opacity:.5} 50%{transform:scaleX(1);opacity:1} }
}
