/* Aurora Aesthetic: Flowing Iridescent Gradients, Deep Cosmic Navy, Frosted Glows */
:root {
  --aurora-bg: #070814;
  --aurora-card: rgba(18, 20, 36, 0.65);
  --aurora-card-hover: rgba(26, 30, 52, 0.85);
  --aurora-text: #F3F4F8;
  --aurora-text-dim: #9DA3BA;
  --aurora-border: rgba(255, 255, 255, 0.1);
  --aurora-border-glow: rgba(139, 92, 246, 0.35);
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--aurora-bg); color: var(--aurora-text); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; position: relative; }
#aurora-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none; opacity: 0.6; }
main { position: relative; z-index: 5; }
.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* Switcher Banner */
.style-switcher-banner { position: fixed; top: 0; left: 0; right: 0; height: 34px; background: rgba(7, 8, 20, 0.95); color: #FFF; z-index: 1000; display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 11px; border-bottom: 1px solid var(--aurora-border); }
.switcher-title { font-weight: 700; color: #A78BFA; }
.switcher-links { display: flex; gap: 12px; }
.switcher-link { color: rgba(255,255,255,0.7); text-decoration: none; padding: 2px 8px; border-radius: 4px; }
.switcher-link:hover, .active-style { color: #FFF; background: rgba(139, 92, 246, 0.3); font-weight: 600; }

/* Ambient Aurora Glow Blobs */
.aurora-glow { position: fixed; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 2; opacity: 0.28; }
.glow-1 { top: -100px; left: 10%; width: 500px; height: 500px; background: radial-gradient(circle, #8B5CF6 0%, #06B6D4 100%); }
.glow-2 { bottom: -100px; right: 10%; width: 500px; height: 500px; background: radial-gradient(circle, #EC4899 0%, #3B82F6 100%); }

/* Nav */
.aurora-nav { position: fixed; top: 34px; left: 0; right: 0; height: 56px; z-index: 100; background: rgba(7, 8, 20, 0.75); backdrop-filter: blur(20px); border-bottom: 1px solid var(--aurora-border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.aurora-sparkle { color: #06B6D4; }
.nav-links { display: flex; align-items: center; gap: 20px; font-size: 13px; }
.nav-links a { color: var(--aurora-text-dim); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #FFF; }
.aurora-cta-btn { background: linear-gradient(135deg, #8B5CF6, #06B6D4) !important; color: #FFF !important; padding: 5px 14px; border-radius: 980px; font-weight: 500; }

/* Hero */
.hero-section { padding-top: 140px; padding-bottom: 80px; }
.hero-pill { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.35); padding: 5px 14px; border-radius: 980px; color: #C4B5FD; margin-bottom: 20px; }
.hero-glow-title { font-family: var(--font-display); font-size: clamp(38px, 6vw, 64px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.gradient-iridescent { display: block; background: linear-gradient(90deg, #A78BFA, #38BDF8, #34D399, #F472B6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 18px; color: var(--aurora-text-dim); max-width: 680px; line-height: 1.6; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; margin-bottom: 48px; }
.btn-aurora { background: linear-gradient(135deg, #8B5CF6, #06B6D4); color: #FFF; text-decoration: none; padding: 12px 24px; border-radius: 980px; font-size: 14px; font-weight: 500; box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35); transition: transform 0.2s; display: inline-block; }
.btn-aurora:hover { transform: translateY(-2px); }
.btn-glass { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--aurora-border); color: #FFF; text-decoration: none; padding: 12px 24px; border-radius: 980px; font-size: 14px; transition: all 0.2s; display: inline-block; }
.btn-glass:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.25); }

.aurora-stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--aurora-border); border-radius: 16px; backdrop-filter: blur(16px); }
.a-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #FFF; display: block; }
.a-lbl { font-size: 12px; color: var(--aurora-text-dim); }

/* Common */
.aurora-section { padding: 80px 0; border-top: 1px solid var(--aurora-border); }
.kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: #38BDF8; margin-bottom: 8px; display: inline-block; }
.section-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.glass-card { background: var(--aurora-card); border: 1px solid var(--aurora-border); border-radius: 16px; padding: 26px; backdrop-filter: blur(20px); position: relative; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.glass-card:hover { transform: translateY(-2px); border-color: var(--aurora-border-glow); background: var(--aurora-card-hover); }
.glass-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.glass-card p { font-size: 14px; color: var(--aurora-text-dim); line-height: 1.55; }
.card-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.date-chip { font-size: 11px; background: rgba(255, 255, 255, 0.06); padding: 2px 8px; border-radius: 980px; color: var(--aurora-text-dim); }
.aurora-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.aurora-tags span { font-size: 11px; background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.25); color: #C4B5FD; padding: 2px 8px; border-radius: 980px; }
.experience-stack { display: flex; flex-direction: column; gap: 16px; }
.text-center { text-align: center; }
.aurora-footer { padding: 36px 0; font-size: 12px; color: var(--aurora-text-dim); border-top: 1px solid var(--aurora-border); }
.footer-flex { display: flex; justify-content: space-between; }
@media(max-width: 768px) {
  .grid-3, .grid-2, .aurora-stats-strip { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
