/* ============================================================
   AURIA MEDICAL — PREMIUM DESIGN SYSTEM
   World-class health-tech CSS for physician care management
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
  /* ── Core Color Palette ── */
  --color-midnight:        #0a0e1a;
  --color-midnight-deep:   #060810;
  --color-midnight-mid:    #0d1221;
  --color-midnight-light:  #111827;
  --color-sapphire:        #1a3a6b;
  --color-sapphire-light:  #1e4080;
  --color-sapphire-dark:   #122850;
  --color-teal:            #00d4d8;
  --color-teal-dim:        #00b0b4;
  --color-teal-muted:      rgba(0, 212, 216, 0.15);
  --color-cyan:            #00f5ff;
  --color-cyan-dim:        #00c8d4;
  --color-cyan-muted:      rgba(0, 245, 255, 0.12);
  --color-violet:          #7c3aed;
  --color-violet-light:    #9d5cf6;
  --color-violet-muted:    rgba(124, 58, 237, 0.15);
  --color-coral:           #ff6b6b;
  --color-coral-light:     #ff8c8c;
  --color-coral-muted:     rgba(255, 107, 107, 0.15);
  --color-emerald:         #00c896;
  --color-amber:           #f59e0b;
  --color-rose:            #f43f5e;

  /* ── White / Neutral Scale ── */
  --color-white:           #ffffff;
  --color-white-90:        rgba(255, 255, 255, 0.90);
  --color-white-80:        rgba(255, 255, 255, 0.80);
  --color-white-70:        rgba(255, 255, 255, 0.70);
  --color-white-60:        rgba(255, 255, 255, 0.60);
  --color-white-40:        rgba(255, 255, 255, 0.40);
  --color-white-20:        rgba(255, 255, 255, 0.20);
  --color-white-10:        rgba(255, 255, 255, 0.10);
  --color-white-06:        rgba(255, 255, 255, 0.06);
  --color-white-04:        rgba(255, 255, 255, 0.04);

  /* ── Frosted Glass ── */
  --glass-bg:              rgba(255, 255, 255, 0.05);
  --glass-bg-hover:        rgba(255, 255, 255, 0.09);
  --glass-bg-strong:       rgba(255, 255, 255, 0.10);
  --glass-border:          rgba(255, 255, 255, 0.12);
  --glass-border-hover:    rgba(0, 212, 216, 0.40);
  --glass-border-active:   rgba(0, 245, 255, 0.60);
  --glass-blur:            blur(20px);
  --glass-blur-heavy:      blur(40px);
  --glass-blur-light:      blur(10px);

  /* ── Gradients ── */
  --gradient-primary:      linear-gradient(135deg, var(--color-teal) 0%, var(--color-cyan) 50%, var(--color-violet-light) 100%);
  --gradient-hero:         linear-gradient(135deg, #0a0e1a 0%, #0d1a2e 30%, #0a1628 60%, #0e0a1e 100%);
  --gradient-card:         linear-gradient(135deg, rgba(26,58,107,0.40) 0%, rgba(10,14,26,0.80) 100%);
  --gradient-teal-violet:  linear-gradient(135deg, var(--color-teal) 0%, var(--color-violet) 100%);
  --gradient-cyan-teal:    linear-gradient(135deg, var(--color-cyan) 0%, var(--color-teal) 100%);
  --gradient-coral-violet: linear-gradient(135deg, var(--color-coral) 0%, var(--color-violet) 100%);
  --gradient-mesh:         radial-gradient(at 20% 50%, rgba(0,212,216,0.18) 0px, transparent 50%),
                           radial-gradient(at 80% 20%, rgba(124,58,237,0.18) 0px, transparent 50%),
                           radial-gradient(at 50% 80%, rgba(0,245,255,0.12) 0px, transparent 50%),
                           radial-gradient(at 90% 80%, rgba(255,107,107,0.10) 0px, transparent 50%);
  --gradient-footer:       linear-gradient(180deg, var(--color-midnight) 0%, var(--color-midnight-deep) 100%);
  --gradient-text:         linear-gradient(135deg, var(--color-teal) 0%, var(--color-cyan) 40%, var(--color-violet-light) 100%);
  --gradient-border:       linear-gradient(135deg, var(--color-teal), var(--color-violet));

  /* ── Typography ── */
  --font-primary:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:          'Space Grotesk', 'Inter', sans-serif;
  --font-body:             'DM Sans', 'Inter', sans-serif;
  --font-mono:             'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  --text-xs:               0.75rem;
  --text-sm:               0.875rem;
  --text-base:             1rem;
  --text-lg:               1.125rem;
  --text-xl:               1.25rem;
  --text-2xl:              1.5rem;
  --text-3xl:              1.875rem;
  --text-4xl:              2.25rem;
  --text-5xl:              3rem;
  --text-6xl:              3.75rem;
  --text-7xl:              4.5rem;
  --text-8xl:              6rem;
  --text-9xl:              8rem;

  --leading-none:          1;
  --leading-tight:         1.15;
  --leading-snug:          1.375;
  --leading-normal:        1.5;
  --leading-relaxed:       1.625;
  --leading-loose:         2;

  --tracking-tight:        -0.04em;
  --tracking-snug:         -0.02em;
  --tracking-normal:       0em;
  --tracking-wide:         0.04em;
  --tracking-wider:        0.08em;
  --tracking-widest:       0.16em;

  /* ── Spacing Scale ── */
  --space-1:    0.25rem;
  --space-2:    0.5rem;
  --space-3:    0.75rem;
  --space-4:    1rem;
  --space-5:    1.25rem;
  --space-6:    1.5rem;
  --space-8:    2rem;
  --space-10:   2.5rem;
  --space-12:   3rem;
  --space-16:   4rem;
  --space-20:   5rem;
  --space-24:   6rem;
  --space-32:   8rem;
  --space-40:   10rem;
  --space-48:   12rem;
  --space-64:   16rem;

  /* ── Border Radius ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  20px;
  --radius-3xl:  28px;
  --radius-4xl:  40px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg:    0 10px 30px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-2xl:   0 40px 100px rgba(0,0,0,0.7), 0 16px 40px rgba(0,0,0,0.5);
  --shadow-teal:  0 0 30px rgba(0, 212, 216, 0.30), 0 0 60px rgba(0, 212, 216, 0.12);
  --shadow-cyan:  0 0 30px rgba(0, 245, 255, 0.30), 0 0 60px rgba(0, 245, 255, 0.12);
  --shadow-violet:0 0 30px rgba(124, 58, 237, 0.30), 0 0 60px rgba(124, 58, 237, 0.12);
  --shadow-coral: 0 0 30px rgba(255, 107, 107, 0.25), 0 0 60px rgba(255, 107, 107, 0.10);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.50), 0 0 0 1px var(--glass-border);
  --shadow-float: 0 20px 60px rgba(0,0,0,0.60), 0 0 30px rgba(0,212,216,0.10);

  /* ── Transitions ── */
  --ease-out:       cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:        cubic-bezier(0.4, 0.0, 1, 1);
  --ease-in-out:    cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce:    cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast:  150ms;
  --duration-base:  250ms;
  --duration-slow:  400ms;
  --duration-slower:600ms;

  /* ── Layout ── */
  --container-xs:   480px;
  --container-sm:   640px;
  --container-md:   768px;
  --container-lg:   1024px;
  --container-xl:   1280px;
  --container-2xl:  1440px;
  --container-3xl:  1600px;

  --nav-height:     80px;
  --nav-height-scrolled: 64px;

  /* ── Z-Index Scale ── */
  --z-below:    -1;
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
  --z-tooltip:  600;
  --z-top:      9999;
}

/* ============================================================
   3. CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-white-80);
  background-color: var(--color-midnight);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-snug);
  color: var(--color-white);
}

input, textarea, select {
  font-family: inherit;
}

::selection {
  background-color: rgba(0, 212, 216, 0.30);
  color: var(--color-white);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-midnight-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 216, 0.35);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 216, 0.55);
}

/* ============================================================
   4. ANIMATION KEYFRAMES
   ============================================================ */

/* Float */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(1deg); }
  66%       { transform: translateY(-8px) rotate(-1deg); }
}

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

@keyframes float-reverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(16px) rotate(-1deg); }
}

/* Pulse Glow */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 216, 0.3), 0 0 40px rgba(0, 212, 216, 0.1);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 216, 0.6), 0 0 80px rgba(0, 212, 216, 0.25);
    opacity: 0.9;
  }
}

@keyframes pulse-glow-violet {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
  50%       { box-shadow: 0 0 50px rgba(124, 58, 237, 0.6), 0 0 80px rgba(124, 58, 237, 0.2); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.03); }
}

/* Shimmer */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes shimmer-sweep {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Gradient Shift */
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradient-rotate {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 100% 0%; }
  50%  { background-position: 100% 100%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

/* Fade In Up */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Slide In */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Spin Slow */
@keyframes spin-slow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0%   { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Scale In */
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Orbit */
@keyframes orbit {
  0%   { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* Typing cursor blink */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Number count up visual pulse */
@keyframes countPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

/* Dot pulse for loading */
@keyframes dot-pulse {
  0%, 80%, 100% { transform: scale(0); opacity: 0; }
  40%            { transform: scale(1); opacity: 1; }
}

/* Border rotate */
@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mesh animate */
@keyframes mesh-move {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 30px) scale(0.95); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* Particle float */
@keyframes particle-float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}

/* ============================================================
   5. UTILITY CLASSES — REVEAL / ANIMATION STATES
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-spring);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0ms; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 160ms; }
.stagger-children.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 240ms; }
.stagger-children.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 320ms; }
.stagger-children.visible > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay: 400ms; }
.stagger-children.visible > *:nth-child(n+7) { opacity:1; transform:translateY(0); transition-delay: 480ms; }

/* Delay helpers */
.delay-100  { transition-delay: 100ms !important; }
.delay-200  { transition-delay: 200ms !important; }
.delay-300  { transition-delay: 300ms !important; }
.delay-400  { transition-delay: 400ms !important; }
.delay-500  { transition-delay: 500ms !important; }
.delay-600  { transition-delay: 600ms !important; }
.delay-800  { transition-delay: 800ms !important; }

/* ============================================================
   6. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-8);
}

.container--wide {
  max-width: var(--container-2xl);
  padding-inline: var(--space-8);
  margin-inline: auto;
  width: 100%;
}

.container--narrow {
  max-width: var(--container-md);
  padding-inline: var(--space-8);
  margin-inline: auto;
  width: 100%;
}

.section {
  padding-block: var(--space-32);
  position: relative;
  overflow: hidden;
}

.section--lg {
  padding-block: var(--space-48);
}

.section--sm {
  padding-block: var(--space-20);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2  { gap: var(--space-2); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

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

/* ============================================================
   7. TYPOGRAPHY SYSTEM
   ============================================================ */

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
  background: var(--gradient-cyan-teal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-violet {
  background: linear-gradient(135deg, var(--color-violet-light), var(--color-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-coral {
  background: var(--gradient-coral-violet);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--color-teal) 0%,
    var(--color-cyan) 30%,
    var(--color-white) 50%,
    var(--color-cyan) 70%,
    var(--color-teal) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, var(--text-9xl));
  font-weight: 800;
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tight);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, var(--text-8xl));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
}

.display-3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, var(--text-7xl));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--tracking-snug);
}

.heading-1 {
  font-size: clamp(1.75rem, 3.5vw, var(--text-6xl));
  font-weight: 700;
  letter-spacing: var(--tracking-snug);
}

.heading-2 {
  font-size: clamp(1.5rem, 2.5vw, var(--text-5xl));
  font-weight: 700;
  letter-spacing: var(--tracking-snug);
}

.heading-3 {
  font-size: clamp(1.25rem, 2vw, var(--text-4xl));
  font-weight: 600;
  letter-spacing: var(--tracking-snug);
}

.heading-4 {
  font-size: clamp(1.1rem, 1.5vw, var(--text-3xl));
  font-weight: 600;
}

.subheading {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-white-60);
  line-height: var(--leading-relaxed);
}

.overline {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-teal);
}

.caption {
  font-size: var(--text-sm);
  color: var(--color-white-40);
  line-height: var(--leading-relaxed);
}

.body-lg {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-white-70);
}

.body-md {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-white-70);
}

/* Section label — small pill before headings */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--color-teal-muted);
  border: 1px solid rgba(0, 212, 216, 0.25);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-6);
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: pulse-soft 2s ease-in-out infinite;
}

/* ============================================================
   8. BUTTON COMPONENTS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
  border: none;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::before {
  opacity: 1;
}

/* Primary — gradient */
.btn-primary {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  color: var(--color-midnight);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 212, 216, 0.35), 0 2px 8px rgba(0, 212, 216, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 216, 0.50), 0 4px 15px rgba(0, 212, 216, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary — outline */
.btn-secondary {
  background: transparent;
  color: var(--color-teal);
  border: 1.5px solid rgba(0, 212, 216, 0.50);
}

.btn-secondary:hover {
  background: var(--color-teal-muted);
  border-color: var(--color-teal);
  color: var(--color-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

/* Ghost */
.btn-ghost {
  background: var(--glass-bg);
  color: var(--color-white-80);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur-light);
}

.btn-ghost:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(0, 212, 216, 0.30);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Violet variant */
.btn-violet {
  background: linear-gradient(135deg, var(--color-violet) 0%, #9d5cf6 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn-violet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.55);
}

/* Coral variant */
.btn-coral {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-violet) 100%);
  color: var(--color-white);
  font-weight: 700;
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.40);
}

/* Sizes */
.btn-sm {
  padding: 10px 22px;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 18px 42px;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
}

.btn-xl {
  padding: 22px 52px;
  font-size: var(--text-lg);
}

/* Icon button */
.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

/* ============================================================
   9. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-slow) var(--ease-out);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: all var(--duration-slow) var(--ease-out);
}

.nav.scrolled::before {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--glass-border);
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
}

.nav__inner {
  width: 100%;
  max-width: var(--container-2xl);
  margin-inline: auto;
  padding-inline: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--text-lg);
  color: var(--color-midnight);
  box-shadow: var(--shadow-teal);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.nav__logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.nav__logo:hover .nav__logo-mark {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: var(--shadow-teal), 0 0 0 2px rgba(0, 245, 255, 0.3);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.nav__logo-text span {
  color: var(--color-teal);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  position: relative;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white-70);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-cyan-teal);
  border-radius: var(--radius-full);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
  background: var(--color-white-06);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
}

/* Nav CTA */
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: var(--z-top);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white-80);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 8, 16, 0.97);
  backdrop-filter: blur(24px);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  transform: translateY(-20px);
  transition: all var(--duration-slow) var(--ease-out);
  pointer-events: none;
}

.nav__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mobile .nav__link {
  font-size: var(--text-2xl);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
}

/* ============================================================
   10. HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Animated background canvas */
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Mesh gradient background */
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  z-index: 1;
  animation: mesh-move 20s ease-in-out infinite;
}

/* Decorative orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-slow 12s ease-in-out infinite;
  pointer-events: none;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 216, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: -4s;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  bottom: 50px;
  left: -100px;
  animation-delay: -8s;
  animation-duration: 16s;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.10) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-duration: 10s;
}

/* Floating decorative elements */
.hero__float {
  position: absolute;
  border-radius: var(--radius-2xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero__float--1 {
  width: 200px;
  height: 120px;
  top: 20%;
  right: 8%;
  animation-delay: 0s;
  animation-duration: 9s;
}

.hero__float--2 {
  width: 160px;
  height: 160px;
  bottom: 25%;
  right: 20%;
  border-radius: 50%;
  animation-delay: -3s;
  animation-duration: 11s;
}

.hero__float--3 {
  width: 120px;
  height: 80px;
  top: 60%;
  left: 5%;
  animation-delay: -6s;
  border-radius: var(--radius-xl);
}

/* Geometric ring */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 216, 0.12);
  pointer-events: none;
}

.hero__ring--1 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  animation: spin-slow 60s linear infinite;
}

.hero__ring--2 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%);
  border-color: rgba(124, 58, 237, 0.10);
  animation: spin-reverse 45s linear infinite;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: var(--z-raised);
  width: 100%;
  max-width: var(--container-2xl);
  margin-inline: auto;
  padding-inline: var(--space-8);
  padding-block: var(--space-24);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__left {}

.hero__eyebrow {
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-8);
  color: var(--color-white);
}

.hero__title .accent {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}

.hero__title .cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--color-cyan);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: var(--leading-relaxed);
  color: var(--color-white-60);
  max-width: 520px;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--glass-border);
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-white-40);
}

/* Hero right — visual panel */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__visual {
  width: 100%;
  max-width: 540px;
  position: relative;
}

/* Dashboard mockup panel */
.hero__panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-2xl), var(--shadow-teal);
  animation: float 10s ease-in-out infinite;
}

.hero__panel-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--glass-border);
}

.hero__panel-dots {
  display: flex;
  gap: var(--space-2);
}

.hero__panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__panel-dot--red   { background: #ff5f57; }
.hero__panel-dot--amber { background: #febc2e; }
.hero__panel-dot--green { background: #28c840; }

.hero__panel-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white-60);
  flex: 1;
  text-align: center;
}

/* Metric rows inside panel */
.hero__metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--glass-border);
}

.hero__metric-row:last-child {
  border-bottom: none;
}

.hero__metric-label {
  font-size: var(--text-sm);
  color: var(--color-white-50);
}

.hero__metric-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-teal);
}

.hero__metric-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(0, 200, 150, 0.15);
  color: var(--color-emerald);
}

/* Floating mini-cards */
.hero__badge-float {
  position: absolute;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-hover);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-4);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}

.hero__badge-float--1 {
  top: -20px;
  left: -30px;
  animation: float 9s ease-in-out infinite;
  animation-delay: -2s;
}

.hero__badge-float--2 {
  bottom: -10px;
  right: -20px;
  animation: float 11s ease-in-out infinite;
  animation-delay: -5s;
}

.hero__badge-float-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
}

.hero__badge-float-text {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-white);
}

.hero__badge-float-sub {
  font-size: 10px;
  color: var(--color-white-50);
}

/* ============================================================
   11. SECTION HEADER COMPONENT
   ============================================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-header--left {
  text-align: left;
  margin-inline: 0;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  line-height: 1.1;
}

.section-header__subtitle {
  font-size: var(--text-lg);
  color: var(--color-white-60);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin-inline: auto;
}

.section-header--left .section-header__subtitle {
  margin-inline: 0;
}

/* ============================================================
   12. CARD COMPONENTS
   ============================================================ */

/* Base glass card */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 216, 0.40), transparent);
  opacity: 0;
  transition: opacity var(--duration-slow);
}

.card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--shadow-teal);
}

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

/* Program cards */
.program-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration-slow) var(--ease-out);
}

.program-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

.program-card:hover {
  border-color: rgba(0, 212, 216, 0.35);
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-2xl), 0 0 60px rgba(0, 212, 216, 0.12);
  background: var(--glass-bg-hover);
}

.program-card:hover::after {
  transform: scaleX(1);
}

.program-card.active {
  border-color: rgba(0, 212, 216, 0.50);
  background: rgba(0, 212, 216, 0.06);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 216, 0.15);
}

/* Program card icon */
.program-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-6);
  position: relative;
  transition: all var(--duration-base) var(--ease-out);
}

.program-card__icon--teal {
  background: var(--color-teal-muted);
  box-shadow: 0 0 20px rgba(0, 212, 216, 0.20);
}
.program-card__icon--violet {
  background: var(--color-violet-muted);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.20);
}
.program-card__icon--coral {
  background: var(--color-coral-muted);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.20);
}
.program-card__icon--cyan {
  background: var(--color-cyan-muted);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.20);
}
.program-card__icon--emerald {
  background: rgba(0, 200, 150, 0.12);
  box-shadow: 0 0 20px rgba(0, 200, 150, 0.18);
}
.program-card__icon--amber {
  background: rgba(245, 158, 11, 0.12);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.18);
}

.program-card:hover .program-card__icon {
  transform: scale(1.1) rotate(-3deg);
}

.program-card__acronym {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-3);
}

.program-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.program-card__desc {
  font-size: var(--text-sm);
  color: var(--color-white-50);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.program-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  border-top: 1px solid var(--glass-border);
}

.program-card__revenue {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.program-card__revenue-amount {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-teal);
}

.program-card__revenue-label {
  font-size: var(--text-xs);
  color: var(--color-white-40);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

/* Stat card */
.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--duration-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.4;
}

.stat-card:hover {
  border-color: rgba(0, 212, 216, 0.30);
  transform: translateY(-4px);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-3);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white-50);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.stat-card__sub {
  font-size: var(--text-xs);
  color: var(--color-white-30);
  margin-top: var(--space-1);
}

/* Feature card */
.feature-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  transition: all var(--duration-base) var(--ease-out);
  border: 1px solid transparent;
}

.feature-card:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-card__body {
  flex: 1;
}

.feature-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--color-white-50);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   13. BADGE / CHIP COMPONENTS
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.badge--teal {
  background: var(--color-teal-muted);
  color: var(--color-teal);
  border: 1px solid rgba(0, 212, 216, 0.20);
}

.badge--cyan {
  background: var(--color-cyan-muted);
  color: var(--color-cyan);
  border: 1px solid rgba(0, 245, 255, 0.20);
}

.badge--violet {
  background: var(--color-violet-muted);
  color: var(--color-violet-light);
  border: 1px solid rgba(124, 58, 237, 0.20);
}

.badge--coral {
  background: var(--color-coral-muted);
  color: var(--color-coral-light);
  border: 1px solid rgba(255, 107, 107, 0.20);
}

.badge--emerald {
  background: rgba(0, 200, 150, 0.10);
  color: var(--color-emerald);
  border: 1px solid rgba(0, 200, 150, 0.20);
}

.badge--amber {
  background: rgba(245, 158, 11, 0.10);
  color: var(--color-amber);
  border: 1px solid rgba(245, 158, 11, 0.20);
}

.badge--glass {
  background: var(--glass-bg);
  color: var(--color-white-60);
  border: 1px solid var(--glass-border);
}

/* Condition tags */
.condition-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white-70);
  transition: all var(--duration-base) var(--ease-out);
  cursor: default;
}

.condition-chip:hover {
  background: var(--color-teal-muted);
  border-color: rgba(0, 212, 216, 0.35);
  color: var(--color-teal);
  transform: scale(1.03);
}

.condition-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

/* Tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================================================
   14. STATS / METRICS SECTION
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stats-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.metric-display {
  text-align: center;
  padding: var(--space-8);
}

.metric-display__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  position: relative;
  display: inline-block;
}

.metric-display__number .prefix,
.metric-display__number .suffix {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: top;
  line-height: 1.4;
}

.metric-display__label {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-white-40);
}

.metric-display__sub {
  font-size: var(--text-xs);
  color: var(--color-white-30);
  margin-top: var(--space-1);
}

/* Revenue highlight bar */
.revenue-bar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  padding: var(--space-12) var(--space-16);
  position: relative;
  overflow: hidden;
}

.revenue-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
}

.revenue-bar__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.revenue-bar__label {
  font-size: var(--text-lg);
  color: var(--color-white-60);
  max-width: 300px;
  line-height: var(--leading-snug);
}

.revenue-bar__amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  animation: pulse-soft 3s ease-in-out infinite;
}

/* ============================================================
   15. TIMELINE / STEPS COMPONENT
   ============================================================ */

.timeline {
  position: relative;
  padding-left: var(--space-12);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-teal), var(--color-violet), transparent);
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-10);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-midnight);
  border: 2px solid var(--color-teal);
  box-shadow: var(--shadow-teal);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--color-teal);
  z-index: 1;
  transition: all var(--duration-base) var(--ease-out);
}

.timeline__item:hover .timeline__marker {
  background: var(--color-teal);
  color: var(--color-midnight);
  transform: scale(1.15);
}

.timeline__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.timeline__text {
  font-size: var(--text-base);
  color: var(--color-white-50);
  line-height: var(--leading-relaxed);
  max-width: 480px;
}

/* Steps — horizontal */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-violet));
  opacity: 0.3;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-teal);
  margin-bottom: var(--space-4);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-teal);
}

.step:hover .step__number {
  background: var(--color-teal);
  color: var(--color-midnight);
  transform: scale(1.1);
}

.step__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--color-white-50);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   16. CPT CODE TABLE STYLES
   ============================================================ */

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.table thead {
  background: rgba(0, 212, 216, 0.08);
  border-bottom: 1px solid var(--glass-border);
}

.table th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-teal);
  white-space: nowrap;
}

.table td {
  padding: var(--space-4) var(--space-5);
  color: var(--color-white-70);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: var(--leading-relaxed);
}

.table tbody tr {
  transition: background var(--duration-fast);
}

.table tbody tr:hover {
  background: rgba(0, 212, 216, 0.04);
}

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

.table__cpt-code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-cyan);
  background: var(--color-cyan-muted);
  padding: 3px 10px;
  border-radius: var(--radius-md);
  display: inline-block;
}

.table__rate {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-teal);
}

.table__minutes {
  color: var(--color-white-50);
  font-size: var(--text-xs);
}

/* CPT card grid */
.cpt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

.cpt-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cpt-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  opacity: 0;
  transition: opacity var(--duration-base);
}

.cpt-card:hover {
  border-color: rgba(0, 212, 216, 0.30);
  transform: translateY(-3px);
  background: var(--glass-bg-hover);
}

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

.cpt-card__code {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: var(--space-2);
}

.cpt-card__desc {
  font-size: var(--text-sm);
  color: var(--color-white-50);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.cpt-card__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--glass-border);
}

.cpt-card__rate {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-teal);
}

.cpt-card__minutes {
  font-size: var(--text-xs);
  color: var(--color-white-40);
  text-align: right;
}

/* ============================================================
   17. REVENUE CALCULATOR
   ============================================================ */

.calculator {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  padding: var(--space-12);
  backdrop-filter: var(--glass-blur-heavy);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0, 212, 216, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.calculator__header {
  margin-bottom: var(--space-10);
}

.calculator__controls {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.calculator__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.calculator__label-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white-70);
}

.calculator__value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-teal);
}

/* Range slider */
.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--glass-bg-strong);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
  position: relative;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 212, 216, 0.50);
  transition: transform var(--duration-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(0, 212, 216, 0.50);
}

.calculator__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.calc-result {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calc-result--primary {
  background: linear-gradient(135deg, rgba(0, 212, 216, 0.10) 0%, rgba(0, 245, 255, 0.06) 100%);
  border-color: rgba(0, 212, 216, 0.30);
  box-shadow: 0 0 30px rgba(0, 212, 216, 0.10);
}

.calc-result__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-white-40);
  margin-bottom: var(--space-3);
}

.calc-result__amount {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  animation: countPulse 0.3s ease-out;
}

.calc-result__sub {
  font-size: var(--text-xs);
  color: var(--color-white-30);
  margin-top: var(--space-2);
}

/* ============================================================
   18. SPLIT SECTION LAYOUT (Alternating)
   ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split-section--reversed {
  direction: rtl;
}

.split-section--reversed > * {
  direction: ltr;
}

.split-section__text { }

.split-section__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.split-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  z-index: 0;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-white-70);
}

.checklist__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-teal-muted);
  border: 1px solid rgba(0, 212, 216, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 11px;
  color: var(--color-teal);
}

/* ============================================================
   19. PROGRAMS OVERVIEW SECTION
   ============================================================ */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.programs-tabs {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.programs-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  border: 1px solid var(--glass-border);
  color: var(--color-white-60);
  background: transparent;
}

.programs-tab:hover {
  background: var(--glass-bg);
  color: var(--color-white);
  border-color: rgba(0, 212, 216, 0.25);
}

.programs-tab.active {
  background: var(--color-teal-muted);
  border-color: rgba(0, 212, 216, 0.40);
  color: var(--color-teal);
  box-shadow: 0 0 20px rgba(0, 212, 216, 0.10);
}

/* Program detail panel */
.program-detail {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  display: none;
}

.program-detail.active {
  display: block;
  animation: fadeIn var(--duration-slow) var(--ease-out);
}

/* ============================================================
   20. TESTIMONIALS / SOCIAL PROOF
   ============================================================ */

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--duration-slow) var(--ease-out);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0, 212, 216, 0.10);
  font-weight: 900;
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 216, 0.25);
  transform: translateY(-4px);
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-white-70);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-midnight);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-white);
}

.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-white-40);
}

/* Stars */
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.star {
  width: 16px;
  height: 16px;
  color: var(--color-amber);
  fill: currentColor;
}

/* ============================================================
   21. FAQ / ACCORDION
   ============================================================ */

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq__item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--duration-base);
}

.faq__item.open {
  border-color: rgba(0, 212, 216, 0.30);
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: var(--space-4);
}

.faq__trigger-text {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  line-height: var(--leading-snug);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: all var(--duration-base) var(--ease-out);
  font-size: var(--text-lg);
  line-height: 1;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--color-teal-muted);
  border-color: rgba(0, 212, 216, 0.30);
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq__item.open .faq__content {
  max-height: 400px;
}

.faq__body {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--color-white-50);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   22. SECTION BACKGROUNDS
   ============================================================ */

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

.bg-darker {
  background-color: var(--color-midnight-deep);
}

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

.bg-gradient {
  background: var(--gradient-hero);
}

.bg-mesh {
  position: relative;
}
.bg-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
  z-index: 0;
}
.bg-mesh > * {
  position: relative;
  z-index: 1;
}

/* Divider line */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin-block: var(--space-24);
}

.divider--teal {
  background: linear-gradient(90deg, transparent, rgba(0, 212, 216, 0.30), transparent);
}

/* Section glow */
.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 212, 216, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   23. CTA SECTION
   ============================================================ */

.cta-block {
  text-align: center;
  padding: var(--space-24) var(--space-8);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-4xl);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.cta-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
  pointer-events: none;
}

.cta-block__content {
  position: relative;
  z-index: 1;
}

.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.cta-block__subtitle {
  font-size: var(--text-lg);
  color: var(--color-white-60);
  max-width: 500px;
  margin: 0 auto var(--space-10);
  line-height: var(--leading-relaxed);
}

.cta-block__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   24. FOOTER
   ============================================================ */

.footer {
  background: var(--gradient-footer);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.footer__top {
  padding: var(--space-24) var(--space-8);
  max-width: var(--container-2xl);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer__brand {
  max-width: 320px;
}

.footer__brand .nav__logo {
  margin-bottom: var(--space-5);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-white-40);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-50);
  transition: all var(--duration-base) var(--ease-out);
  font-size: var(--text-sm);
  text-decoration: none;
}

.footer__social:hover {
  background: var(--color-teal-muted);
  border-color: rgba(0, 212, 216, 0.35);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-white-40);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--color-teal);
}

.footer__bottom {
  border-top: 1px solid var(--glass-border);
  padding: var(--space-6) var(--space-8);
  max-width: var(--container-2xl);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-white-30);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--color-white-30);
  transition: color var(--duration-fast);
}

.footer__legal a:hover {
  color: var(--color-teal);
}

/* ============================================================
   25. FORM ELEMENTS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white-70);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  outline: none;
  transition: all var(--duration-base) var(--ease-out);
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--color-white-30);
}

.form-input:focus {
  border-color: rgba(0, 212, 216, 0.50);
  background: var(--glass-bg-hover);
  box-shadow: 0 0 0 3px rgba(0, 212, 216, 0.10);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   26. LOADING / SKELETON STATES
   ============================================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: var(--radius-md);
}

.skeleton--text {
  height: 1em;
  margin-bottom: 0.5em;
}

.skeleton--title {
  height: 1.5em;
  width: 60%;
}

.skeleton--card {
  height: 200px;
}

/* ============================================================
   27. NOTIFICATION / TOAST
   ============================================================ */

.toast {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-toast);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 380px;
  animation: slideInRight var(--duration-slow) var(--ease-spring) forwards;
  font-size: var(--text-sm);
  color: var(--color-white-80);
}

.toast--success {
  border-color: rgba(0, 200, 150, 0.30);
}

.toast--error {
  border-color: rgba(255, 107, 107, 0.30);
}

/* ============================================================
   28. HIGHLIGHT / CALLOUT BLOCKS
   ============================================================ */

.callout {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-xl);
  border-left: 3px solid var(--color-teal);
  background: var(--color-teal-muted);
}

.callout--violet {
  border-color: var(--color-violet);
  background: var(--color-violet-muted);
}

.callout--coral {
  border-color: var(--color-coral);
  background: var(--color-coral-muted);
}

.callout__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.callout__content {
  flex: 1;
}

.callout__title {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.callout__text {
  font-size: var(--text-sm);
  color: var(--color-white-60);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   29. FLOATING ANIMATED ELEMENTS
   ============================================================ */

.floating-element {
  animation: float 8s ease-in-out infinite;
}

.floating-element--slow { animation-duration: 12s; }
.floating-element--fast { animation-duration: 5s; }
.floating-element--reverse { animation-name: float-reverse; }

/* Decorative plus signs / grid dots */
.grid-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ============================================================
   30. ICON UTILITIES
   ============================================================ */

.icon-teal   { color: var(--color-teal); }
.icon-cyan   { color: var(--color-cyan); }
.icon-violet { color: var(--color-violet-light); }
.icon-coral  { color: var(--color-coral); }
.icon-white  { color: var(--color-white); }
.icon-muted  { color: var(--color-white-40); }

.icon-lg { font-size: 1.5rem; }
.icon-xl { font-size: 2rem; }
.icon-2xl { font-size: 2.5rem; }

/* Animated arrow */
.arrow-right {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--duration-base) var(--ease-out);
}

.arrow-right:hover {
  gap: var(--space-3);
}

/* ============================================================
   31. PARALLAX
   ============================================================ */

.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-layer {
  will-change: transform;
}

/* ============================================================
   32. TRUST BADGES / COMPLIANCE
   ============================================================ */

.trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-white-50);
}

.trust-badge__icon {
  color: var(--color-teal);
}

/* ============================================================
   33. LOGO MARQUEE / PARTNER STRIP
   ============================================================ */

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: var(--space-8);
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.marquee-item {
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  opacity: 0.35;
  filter: grayscale(1);
  transition: all var(--duration-base);
}

.marquee-item:hover {
  opacity: 0.7;
  filter: grayscale(0);
}

/* ============================================================
   34. HIGHLIGHT NUMBERS INLINE
   ============================================================ */

.num-highlight {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-teal);
}

.text-teal   { color: var(--color-teal) !important; }
.text-cyan   { color: var(--color-cyan) !important; }
.text-violet { color: var(--color-violet-light) !important; }
.text-coral  { color: var(--color-coral) !important; }
.text-white  { color: var(--color-white) !important; }
.text-muted  { color: var(--color-white-40) !important; }

/* ============================================================
   35. DARK FROSTED OVERLAY
   ============================================================ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 16, 0.80);
  backdrop-filter: blur(8px);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow);
}

.overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   36. RESPONSIVE — BREAKPOINTS
   ============================================================ */

/* ── Tablet ── 1024px */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 600px;
    margin-inline: auto;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__right {
    display: none;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section--reversed {
    direction: ltr;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .footer__brand {
    grid-column: span 2;
    max-width: none;
  }

  .nav__links {
    display: none;
  }

  .nav__cta .btn {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .calculator__results {
    grid-template-columns: 1fr;
  }
}

/* ── Phablet ── 768px */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .container,
  .container--wide,
  .container--narrow {
    padding-inline: var(--space-5);
  }

  .section {
    padding-block: var(--space-20);
  }

  .section--lg {
    padding-block: var(--space-32);
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .cpt-grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .section-header__title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .revenue-bar__content {
    flex-direction: column;
    text-align: center;
  }

  .cta-block {
    padding: var(--space-12) var(--space-5);
    border-radius: var(--radius-3xl);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .steps::before {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__panel {
    display: none;
  }

  .calculator {
    padding: var(--space-8) var(--space-5);
  }
}

/* ── Mobile ── 480px */
@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: var(--space-5);
    align-items: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .programs-tabs {
    gap: var(--space-2);
  }

  .programs-tab {
    font-size: var(--text-xs);
    padding: 8px 16px;
  }

  .table th,
  .table td {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-xs);
  }

  .btn-xl {
    padding: 16px 32px;
    font-size: var(--text-base);
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: var(--text-sm);
  }
}

/* ── Large Desktop ── 1440px+ */
@media (min-width: 1440px) {
  .hero__title {
    font-size: 5.5rem;
  }

  .section-header__title {
    font-size: 3.75rem;
  }

  .container {
    max-width: var(--container-2xl);
  }
}

/* ── 4K ── 1920px+ */
@media (min-width: 1920px) {
  :root {
    font-size: 18px;
  }

  .hero__title {
    font-size: 7rem;
  }
}

/* ============================================================
   37. ACCESSIBILITY & FOCUS
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.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;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   38. PRINT
   ============================================================ */

@media print {
  .nav,
  .hero__canvas,
  .hero__orb,
  .hero__ring,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .card,
  .program-card,
  .stat-card {
    border: 1px solid #ccc;
    box-shadow: none;
    background: white;
  }
}

/* ============================================================
   39. SPECIAL EFFECTS — GLOW BORDERS
   ============================================================ */

.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-border);
  background-size: 200% 200%;
  animation: border-rotate 4s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--duration-slow);
}

.glow-border:hover::before {
  opacity: 1;
}

/* Animated teal ring */
.ring-teal {
  position: relative;
}

.ring-teal::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid transparent;
  background: var(--gradient-primary) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--duration-slow);
}

.ring-teal:hover::after {
  opacity: 1;
}

/* ============================================================
   40. PAGE-SPECIFIC OVERRIDES
   ============================================================ */

/* About page */
.about-hero {
  min-height: 60vh;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-8);
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--duration-slow) var(--ease-out);
}

.team-card:hover {
  border-color: rgba(0, 212, 216, 0.25);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--space-5);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-midnight);
  box-shadow: var(--shadow-teal);
}

.team-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.team-card__title {
  font-size: var(--text-sm);
  color: var(--color-teal);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.team-card__bio {
  font-size: var(--text-sm);
  color: var(--color-white-50);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   END OF AURIA MEDICAL DESIGN SYSTEM v1.0
   ============================================================ */

/* ============================================================
   CLASS ALIAS BRIDGE — maps index.html classes → design system
   ============================================================ */

/* Hero aliases */
.hero__inner        { position: relative; z-index: var(--z-raised); width: 100%; max-width: var(--container-2xl); margin-inline: auto; padding-inline: var(--space-8); padding-block: var(--space-24); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.hero__copy         { position: relative; z-index: 2; }
.hero__heading      { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: var(--space-8); color: var(--color-white); }
.hero__heading .text-gradient { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__badge        { display: inline-flex; align-items: center; gap: var(--space-2); background: rgba(0,212,216,0.10); border: 1px solid rgba(0,212,216,0.30); border-radius: 100px; padding: 6px 16px; margin-bottom: var(--space-6); }
.hero__badge-dot    { width: 8px; height: 8px; border-radius: 50%; background: var(--color-teal); animation: pulse-dot 2s infinite; }
.hero__badge-text   { font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--color-teal); }
.hero__subtitle     { font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: var(--leading-relaxed); color: var(--color-white-60); max-width: 520px; margin-bottom: var(--space-6); }
.hero__body         { font-size: var(--text-base); color: var(--color-white-50); line-height: var(--leading-relaxed); max-width: 500px; margin-bottom: var(--space-10); }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* Nav aliases */
.nav__inner         { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--container-2xl); margin-inline: auto; padding-inline: var(--space-8); height: 100%; }
.nav__logo          { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.nav__logo-icon     { flex-shrink: 0; }
.nav__logo-text     { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; letter-spacing: -0.02em; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* nav__links stretches to full nav height so li bottom = nav bottom = dropdown top → zero dead zone */
.nav__links         { display: flex; align-items: stretch; gap: var(--space-1); list-style: none; }
.nav__link          { font-size: var(--text-sm); font-weight: 500; color: var(--color-white-60); text-decoration: none; padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm); transition: color 0.2s, background 0.2s; cursor: pointer; background: none; border: none; font-family: inherit; }
.nav__link:hover, .nav__link--active { color: var(--color-white); background: var(--glass-bg); }
.nav__link--btn     { display: inline-flex; align-items: center; gap: 4px; }
.nav__cta           { display: inline-flex; align-items: center; gap: var(--space-2); background: var(--gradient-primary); color: var(--color-midnight) !important; font-weight: 700; font-size: var(--text-sm); padding: var(--space-2) var(--space-5); border-radius: var(--radius-full); text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; -webkit-text-fill-color: var(--color-midnight); }
.nav__cta:hover     { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,212,216,0.4); }
.nav__mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: var(--space-2); color: var(--color-white); }
.nav__mobile-menu   { display: none; position: fixed; top: 72px; inset-inline: 0; background: rgba(10,14,26,0.97); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--glass-border); padding: var(--space-6); z-index: var(--z-overlay); flex-direction: column; gap: var(--space-2); }
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-link   { display: block; padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); color: var(--color-white-60); text-decoration: none; font-size: var(--text-sm); font-weight: 500; transition: all 0.2s; }
.nav__mobile-link:hover { color: var(--color-white); background: var(--glass-bg); }
/* dropdown: li is full nav height, so top:100% = nav bottom, no dead-zone gap */
.nav__dropdown      { position: relative; display: flex; align-items: center; }
/* invisible bridge covers any sub-pixel rounding gap */
.nav__dropdown::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px; z-index: var(--z-dropdown); }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: rgba(10,14,26,0.97);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: var(--space-2); padding-top: 12px;
  backdrop-filter: var(--glass-blur); z-index: var(--z-overlay); list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease 0.2s, transform 0.18s ease 0.2s, visibility 0s 0.38s;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity 0.18s ease 0s, transform 0.18s ease 0s, visibility 0s 0s;
}
.nav__dropdown-item { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); color: var(--color-white-70); text-decoration: none; font-size: var(--text-sm); font-weight: 500; transition: all 0.2s; }
.nav__dropdown-item:hover { color: var(--color-white); background: var(--glass-bg); }
.nav__dropdown-icon { width: 28px; height: 28px; border-radius: 8px; background: var(--glass-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Section & container aliases */
.section            { padding-block: var(--space-32); }
.section--alt       { background: rgba(255,255,255,0.02); }
.section__header    { text-align: center; max-width: 700px; margin-inline: auto; margin-bottom: var(--space-16); }
.section__eyebrow   { display: inline-flex; align-items: center; gap: var(--space-2); background: rgba(0,212,216,0.1); border: 1px solid rgba(0,212,216,0.25); padding: 4px 14px; border-radius: 100px; font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--color-teal); margin-bottom: var(--space-5); }
.section__title     { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--color-white); margin-bottom: var(--space-5); }
.section__body      { font-size: var(--text-lg); color: var(--color-white-60); line-height: var(--leading-relaxed); }
.divider            { height: 1px; background: var(--glass-border); border: none; }

/* AOS fallback — make data-aos elements visible */
[data-aos]          { opacity: 1 !important; transform: none !important; }

/* Hero visual aliases */
.hero__visual       { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__dashboard    { position: relative; z-index: 2; }

/* Footer aliases */
.footer__inner      { max-width: var(--container-2xl); margin-inline: auto; }
.footer__logo       { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; margin-bottom: var(--space-8); }
.footer__logo-text  { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer__grid       { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: var(--space-12); margin-bottom: var(--space-16); }
.footer__col-title  { font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--color-white-40); margin-bottom: var(--space-5); }
.footer__links      { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__link       { font-size: var(--text-sm); color: var(--color-white-50); text-decoration: none; transition: color 0.2s; }
.footer__link:hover { color: var(--color-teal); }
.footer__bottom     { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-8); border-top: 1px solid var(--glass-border); }
.footer__copy       { font-size: var(--text-sm); color: var(--color-white-30); }

/* Program card aliases */
.program-card       { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-2xl); padding: var(--space-8); transition: all 0.3s; cursor: pointer; }
.program-card:hover { border-color: var(--glass-border-hover); background: var(--glass-bg-hover); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.program-card__tag  { display: inline-block; font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wider); text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: var(--space-5); }
.program-card__tag--teal   { background: rgba(0,212,216,0.15); color: var(--color-teal); }
.program-card__tag--violet { background: rgba(124,58,237,0.15); color: var(--color-violet-light); }
.program-card__tag--coral  { background: rgba(255,107,107,0.15); color: var(--color-coral); }
.program-card__tag--cyan   { background: rgba(0,245,255,0.15); color: var(--color-cyan); }
.program-card__tag--pink   { background: rgba(244,63,94,0.15); color: var(--color-rose); }
.program-card__tag--amber  { background: rgba(245,158,11,0.15); color: var(--color-amber); }
.program-card__icon { width: 52px; height: 52px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-5); }
.program-card__name { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-white); margin-bottom: var(--space-3); }
.program-card__desc { font-size: var(--text-sm); color: var(--color-white-60); line-height: var(--leading-relaxed); margin-bottom: var(--space-6); }
.program-card__link { display: inline-flex; align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: 600; color: var(--color-teal); text-decoration: none; transition: gap 0.2s; }
.program-card__link:hover { gap: var(--space-3); }

/* Step aliases for How It Works */
.step               { display: flex; gap: var(--space-8); padding-block: var(--space-12); border-bottom: 1px solid var(--glass-border); }
.step:last-child    { border-bottom: none; }
.step__number       { font-family: var(--font-display); font-size: 4rem; font-weight: 900; background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; flex-shrink: 0; width: 80px; }
.step__content      { flex: 1; }
.step__title        { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-white); margin-bottom: var(--space-4); }
.step__body         { font-size: var(--text-base); color: var(--color-white-60); line-height: var(--leading-relaxed); margin-bottom: var(--space-6); }
.step__conditions   { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.step__tag          { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 100px; font-size: var(--text-xs); font-weight: 500; color: var(--color-white-60); padding: 4px 12px; }

/* Hero tag */
.hero__tag          { display: inline-flex; align-items: center; gap: var(--space-2); background: rgba(0,212,216,0.1); border: 1px solid rgba(0,212,216,0.25); border-radius: 100px; font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--color-teal); padding: 4px 12px; }

/* Responsive overrides for aliases */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero__heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .nav__mobile-toggle { display: flex; }
  .nav__links { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
}
