/* ══════════════════════════════════════════════════════════════
   SKILLBRIDGE — EMERALD & SLATE DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand Colors — Fuchsia + Violet + Emerald */
  --emerald:        #10B981;
  --emerald-dark:   #059669;
  --emerald-light:  rgba(16,185,129,0.12);
  --fuchsia:        #D946EF;
  --fuchsia-dim:    rgba(217,70,239,0.15);
  --fuchsia-glow:   rgba(217,70,239,0.4);
  --violet:         #7C3AED;
  --violet-dim:     rgba(124,58,237,0.15);
  --mint:           #34D399;
  --gold:           #D4A843;
  --amber:          #F59E0B;
  --red:            #EF4444;

  /* Surfaces & Core Palette */
  --bg-base:        #08011A;
  --bg-surface:     #0D0520;
  --bg-card:        rgba(255,255,255,0.04);
  --bg-card-hover:  rgba(255,255,255,0.07);
  --bg-glass:       rgba(13,5,32,0.7);
  --cream:          #08011A;
  --cream-2:        #0D0520;
  --cream-3:        rgba(255,255,255,0.02);
  --white-warm:     rgba(255,255,255,0.04);
  --black:          #08011A;
  --black-2:        #0D0520;
  --black-3:        rgba(255,255,255,0.04);

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #A0AEC0;
  --text-muted:     rgba(255,255,255,0.35);
  --text-light:     rgba(255,255,255,0.5);
  --text-white:     #FFFFFF;

  /* Borders */
  --border:         rgba(255,255,255,0.08);
  --border-strong:  rgba(255,255,255,0.15);
  --border-white:   rgba(255,255,255,0.08);
  --border-bright:  rgba(217,70,239,0.35);

  /* Gradients */
  --grad-brand:     linear-gradient(135deg, #D946EF 0%, #7C3AED 100%);
  --grad-card:      linear-gradient(145deg, rgba(217,70,239,0.05) 0%, rgba(124,58,237,0.05) 100%);
  --grad-glow-top:  radial-gradient(ellipse 60% 40% at 50% 0%, rgba(217,70,239,0.2) 0%, transparent 70%);
  --grad-glow-btm:  radial-gradient(ellipse 40% 30% at 80% 100%, rgba(124,58,237,0.15) 0%, transparent 60%);

  /* Shapes & Shadows */
  --radius:         12px;
  --radius-lg:      16px;
  --radius-xl:      20px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.5);
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-base);
  background-image: var(--grad-glow-top), var(--grad-glow-btm);
  background-attachment: fixed;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fuchsia); border-radius: 10px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; }


/* ── Scroll Progress ──────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: var(--fuchsia);
  z-index: 2000; width: 0;
  transition: width 0.1s linear;
}

/* ── Layout Containers ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ── Typography ───────────────────────────────────────────── */
.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.section-heading.white { color: #fff; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.section-sub.slate-400 { color: var(--slate-400); }

.text-emerald { color: var(--fuchsia); }
.text-center  { text-align: center; }
.text-sm      { font-size: 0.875rem; }
.mt-8         { margin-top: 2rem; }


/* ── Pills / Badges ───────────────────────────────────────── */
.section-pill, .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pill-emerald {
  background: rgba(217,70,239,0.1);
  color: var(--fuchsia);
  border: 1px solid rgba(217,70,239,0.2);
}

.pill-emerald-dark {
  background: rgba(217,70,239,0.15);
  color: var(--fuchsia);
  border: 1px solid rgba(217,70,239,0.25);
}

.pill-white-outline {
  background: rgba(255,255,255,0.06);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.15);
}

.pill-slate {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 0 16px var(--fuchsia-glow);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--fuchsia-glow);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta-primary {
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  box-shadow: 0 0 20px var(--fuchsia-glow);
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 24px var(--fuchsia-glow);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  border-radius: var(--radius);
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: scale(0);
  animation: ripple-anim 0.45s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(6); opacity: 0; }
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; width: 100%;
  height: 72px; z-index: 1000;
  background: rgba(8, 1, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}

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

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

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.nav-logo span {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--fuchsia);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--fuchsia); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-brand) !important;
  color: white !important;
  padding: 9px 20px !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  box-shadow: 0 0 12px var(--fuchsia-glow) !important;
}
.nav-cta:hover {
  filter: brightness(1.1) !important;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-orbs {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 0;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  position: absolute; top: -100px; right: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  position: absolute; bottom: 0; left: -50px;
  animation: orbFloat2 25s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  position: absolute; top: 40%; left: 40%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) }
  33% { transform: translate(-20px, 30px) }
  66% { transform: translate(25px, -20px) }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) }
  50% { transform: translate(30px, -25px) }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0) }
  40% { transform: translate(-15px, 20px) }
  80% { transform: translate(20px, -15px) }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {}

.pill-emerald { margin-bottom: 1.5rem; }

.hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--slate-500);
  flex-wrap: wrap;
}
.dot-sep { color: var(--slate-300); }

/* Hero Card */
.hero-card-wrap {
  position: relative;
}

.hero-badge-top {
  position: absolute;
  top: -14px; right: 20px;
  background: var(--emerald);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
  white-space: nowrap;
}

.hero-badge-bottom {
  position: absolute;
  bottom: -12px; left: 24px;
  background: #fff;
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--border-accent);
  z-index: 2;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.hero-dashboard-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 4px 16px rgba(217,70,239,0.06);
  border: 1px solid var(--border);
}

.float-card {
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hdc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.hdc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.hdc-progress-badge {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Skill bars */
.skill-bars { display: flex; flex-direction: column; gap: 12px; }
.skill-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.skill-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  width: 110px;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 7px;
  background: var(--cream-2);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 100px;
  width: var(--w);
  transition: width 1.2s ease;
}
.bar-fill.emerald { background: var(--fuchsia); }
.bar-fill.amber   { background: var(--amber); }
.bar-fill.slate   { background: var(--slate-400); }
.skill-pct {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.hdc-next {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 600;
}
.hdc-next-icon { font-style: normal; }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-section {
  background: var(--cream-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.marquee-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-content {
  display: inline-flex;
  gap: 10px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.co-pill {
  display: inline-flex;
  padding: 7px 18px;
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.co-pill:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

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

/* ── PROBLEM SECTION (dark) ───────────────────────────────── */
#problem {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 100px 0;
}

#problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217,70,239,0.5) 30%,
    rgba(124,58,237,0.7) 50%,
    rgba(217,70,239,0.5) 70%,
    transparent
  );
  z-index: 1;
}

.problem-solution-section {
  position: relative;
}

.dot-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}

#problem .section-heading {
  color: var(--text-primary);
}

#problem .section-sub {
  color: var(--text-secondary);
}

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

.dark-section {
  background: var(--black);
  padding: 100px 0;
}

.problem-bg-layer {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.layer-emerald {
  top: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(
    circle,
    rgba(217, 70, 239, 0.15) 0%,
    transparent 70%
  );
  filter: blur(60px);
}

.layer-mint {
  bottom: -60px; right: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 65%
  );
  filter: blur(80px);
}

.layer-dots {
  inset: 0;
  background-image: radial-gradient(
    circle, 
    rgba(52,211,153,0.12) 1px, 
    transparent 1px
  );
  background-size: 32px 32px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.before-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  transition: transform 0.3s, border-color 0.3s;
}
.before-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-4px);
}
.after-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(217, 70, 239, 0.25);
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(217, 70, 239, 0.08);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.after-card:hover {
  border-color: var(--fuchsia);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(217, 70, 239, 0.18);
}

/* ── FEATURES TABS ────────────────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  position: relative;
}

.tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--emerald); }
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: var(--emerald);
  border-radius: 2px 2px 0 0;
}

.tab-ink {
  position: absolute;
  bottom: -1px; height: 3px;
  background: var(--emerald);
  border-radius: 2px 2px 0 0;
  transition: left 0.3s cubic-bezier(0.16,1,0.3,1), width 0.3s cubic-bezier(0.16,1,0.3,1);
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tab-pane.active {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.tab-pane.tab-visible {
  opacity: 1;
  transform: translateX(0);
}

.tab-left { padding-top: 8px; }

.tab-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.chk {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Skill Tree */
.skill-tree-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-md);
}
.st-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.st-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.st-badge {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.skill-tree-svg {
  width: 100%;
  height: 440px;
  overflow: visible;
}

/* SVG node styles */
.node-done       { fill: var(--emerald); }
.node-active     { fill: #fff; stroke: var(--emerald); stroke-width: 2; }
.node-locked     { fill: var(--slate-100); stroke: var(--slate-300); stroke-width: 1.5; }
.node-pulse-ring { fill: none; stroke: var(--emerald); stroke-width: 2; opacity: 0.3;
                   animation: pulseRing 2s ease-in-out infinite; }
@keyframes pulseRing {
  0%, 100% { opacity: 0.3; stroke-width: 2; }
  50%       { opacity: 0.6; stroke-width: 4; }
}
.node-text-done   { fill: #fff; font-size: 11px; font-family: 'Inter', sans-serif; font-weight: 600; }
.node-text-active { fill: var(--emerald); font-size: 11px; font-family: 'Inter', sans-serif; font-weight: 700; }
.node-text-locked { fill: var(--slate-400); font-size: 11px; font-family: 'Inter', sans-serif; font-weight: 500; }
.conn-done   { stroke: var(--emerald); stroke-width: 2; fill: none; }
.conn-active { stroke: var(--emerald); stroke-width: 2; fill: none;
               animation: dashMove 1.5s linear infinite; }
.conn-future { stroke: var(--slate-300); stroke-width: 1.5; fill: none; }
@keyframes dashMove {
  to { stroke-dashoffset: -18; }
}

.st-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.leg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.leg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.leg-dot.emerald { background: var(--emerald); }
.leg-dot.amber   { background: var(--amber); }
.leg-dot.slate   { background: var(--slate-300); }

/* Projects Tab */
.projects-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.pc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.pc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.pc-company {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin-bottom: 10px;
}
.tech-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tech {
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.pc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-reward {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--emerald);
}
.badge-diff {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.amber-badge  { background: #FEF3C7; color: #D97706; }
.emerald-badge { background: var(--emerald-light); color: var(--emerald-dark); }
.slate-badge  { background: var(--slate-100); color: var(--slate-600); }

/* Mentors Tab */
.mentors-stack { display: flex; flex-direction: column; gap: 16px; }
.mentor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.mentor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald);
}
.mentor-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.mentor-info { flex: 1; }
.mentor-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.mentor-role { font-size: 0.8rem; color: var(--emerald); font-weight: 600; margin-bottom: 6px; }
.mentor-skills { display: flex; gap: 6px; flex-wrap: wrap; }
.skill-tag {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.mentor-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  flex-shrink: 0;
}
.mentor-rating { font-size: 0.82rem; color: var(--text-primary); font-weight: 600; }
.rating-sub { color: var(--slate-400); font-weight: 400; }
.avail {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: var(--success); font-weight: 600;
}
.avail-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.amber-dot { background: var(--amber); animation: none; }
.avail-filling { color: var(--amber); }

/* Portfolio Tab */
.portfolio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.port-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.port-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}
.port-info { flex: 1; }
.port-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.port-college { font-size: 0.78rem; color: var(--slate-500); }
.port-badge {
  background: var(--emerald);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.port-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.port-bars { margin-bottom: 18px; }
.port-stats-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.port-stat {
  background: var(--slate-100);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* GitHub heatmap */
.github-heatmap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  margin-bottom: 18px;
}
.heat-cell {
  aspect-ratio: 1;
  border-radius: 2px;
  transition: transform 0.15s;
}
.heat-cell:hover { transform: scale(1.4); }
.heat-0 { background: var(--slate-100); }
.heat-1 { background: #A7F3D0; }
.heat-2 { background: var(--mint); }
.heat-3 { background: var(--emerald); }
.heat-4 { background: var(--emerald-dark); }

.port-download-btn { width: 100%; justify-content: center; }

/* ── INNOVATION SECTION ───────────────────────────────────── */
.innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.inno-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.inno-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald);
}

.inno-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.amber-badge-top { background: var(--amber); color: #fff; }
.emerald-badge-top { background: var(--emerald); color: #fff; }
.slate-badge-top { background: var(--slate-700); color: #fff; }

.inno-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.emerald-icon { background: var(--emerald-light); }
.slate-icon   { background: var(--slate-100); }

.inno-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.inno-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Mini chat */
.mini-chat { margin-bottom: 1.25rem; }
.chat-user {
  background: var(--slate-100);
  color: var(--text-secondary);
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 12px 12px 12px 4px;
  margin-bottom: 6px;
  display: inline-block;
}
.chat-bot {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 12px 12px 4px 12px;
  display: inline-block;
}

/* Mini stats */
.mini-stats-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.25rem; }
.mini-stat {
  background: var(--emerald-light);
  color: var(--emerald-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
}

/* ── HOW IT WORKS (Timeline) ──────────────────────────────── */
.timeline {
  position: relative;
  padding: 40px 0;
}

.tl-line-svg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  overflow: visible;
}

.tl-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}
.tl-step:last-child { margin-bottom: 0; }

.tl-reverse .tl-content { order: 3; }
.tl-reverse .tl-num     { order: 2; }
.tl-reverse .tl-visual  { order: 1; text-align: right; }

.tl-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  background: var(--emerald);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--emerald-light);
  flex-shrink: 0;
}

.tl-content { position: relative; }

.tl-bg-num {
  position: absolute;
  top: -20px; left: -16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--slate-100);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

.tl-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.tl-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.tl-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tl-visual img { width: 100%; height: 160px; object-fit: cover; }

/* Code mock visual */
.tl-code-mock { padding: 0; }
.code-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--border);
}
.cd { width: 10px; height: 10px; border-radius: 50%; }
.cd.r { background: #FF5F57; }
.cd.y { background: #FFCC00; }
.cd.g { background: #28C840; }
.code-file { font-size: 0.72rem; color: var(--slate-500); font-family: 'JetBrains Mono', monospace; margin-left: 6px; }
.code-body {
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--text-secondary);
  background: #fff;
}
.code-cursor {
  color: var(--emerald);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Mentor mock visual */
.tl-mentor-mock {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tl-mentor-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}
.tl-mentor-name { font-weight: 700; font-size: 0.88rem; color: var(--text-primary); }
.tl-mentor-role { font-size: 0.75rem; color: var(--emerald); font-weight: 600; }
.tl-mentor-avail {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.73rem; color: var(--success); margin-top: 4px;
}

/* Offer mock visual */
.tl-offer-mock {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.offer-logo {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.offer-role { font-weight: 700; font-size: 0.88rem; color: var(--text-primary); }
.offer-ctc { font-size: 1.1rem; font-weight: 900; color: var(--emerald); }
.offer-check { font-size: 0.75rem; color: var(--success); font-weight: 600; margin-top: 4px; }

/* ── STATS SECTION (dark) ─────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(217, 70, 239, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 70, 239, 0.5);
  box-shadow: 0 8px 32px rgba(217, 70, 239, 0.15);
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--fuchsia);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.stat-sub {
  font-size: 0.78rem;
  color: var(--slate-400);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(217, 70, 239, 0.12);
  border-color: var(--fuchsia);
}
.testi-stars { font-size: 0.9rem; margin-bottom: 12px; }
.testi-quote {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.testi-college { font-size: 0.75rem; color: var(--slate-500); }
.testi-company {
  margin-left: auto;
  background: rgba(217, 70, 239, 0.1);
  color: var(--fuchsia);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 3rem;
}

/* ═══════════════════════════════════════════════════════════
   NEW SECTION STYLES — REDESIGNED LANDING PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── HERO — Redesigned Card ───────────────────────────────── */
.pill-slate {
  background: rgba(13,13,13,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-weekly-badge {
  position: absolute;
  top: -14px; right: 20px;
  background: var(--fuchsia);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(217,70,239,0.35);
}

.hdc-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hdc-live-badge {
  background: var(--fuchsia);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  animation: pulse 2s infinite;
}

/* Circular readiness ring */
.readiness-ring-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 6px;
}

.readiness-ring {
  width: 130px;
  height: 130px;
}

.ring-fill {
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
}

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

.ring-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--fuchsia);
  line-height: 1;
}

.ring-label-inner {
  font-size: 0.65rem;
  color: var(--slate-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ring-sublabel {
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hdc-skills { margin-bottom: 1rem; }

.bar-fill.red { background: #EF4444; }

.hdc-next-task {
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--fuchsia);
  padding: 10px 12px;
  margin-top: 0.75rem;
  border-radius: 0 8px 8px 0;
  background: rgba(217,70,239,0.04);
}

.hdc-next-pin {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fuchsia);
  margin-bottom: 3px;
}

.hdc-next-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.hdc-next-meta {
  font-size: 0.72rem;
  color: var(--slate-500);
}

/* ── PROBLEM → SOLUTION ───────────────────────────────────── */
.problem-vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 3rem;
}

.before-card, .after-card {
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.before-card {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.15);
  box-shadow: var(--shadow-sm);
}

.after-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-bright);
  box-shadow: 0 8px 32px rgba(217, 70, 239, 0.15);
}

.vs-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0 0 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.red-header { color: #EF4444; }
.emerald-header { color: var(--fuchsia); border-bottom-color: var(--border); }

.vs-header-icon { font-size: 1.1rem; }

.pain-item, .win-item {
  padding: 14px 0 14px 16px;
  border-left: 3px solid;
  margin-bottom: 14px;
}

.pain-item { border-color: #EF4444; }
.win-item  { border-color: var(--fuchsia); }

.pain-label, .win-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pain-label { color: #F87171; }
.win-label  { color: var(--text-primary); }

.pain-x { flex-shrink: 0; }
.win-check { flex-shrink: 0; }

.pain-desc, .win-desc {
  font-size: 0.8rem;
  line-height: 1.55;
}

.pain-desc { color: var(--text-secondary); }
.win-desc  { color: var(--text-secondary); }

.vs-card-footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

.vs-readiness-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-brand);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 0 16px var(--fuchsia-glow);
}

.vr-label { opacity: 0.85; }
.vr-score { font-size: 1rem; font-weight: 900; }

.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  gap: 8px;
  padding: 20px 0;
}

.vs-line {
  flex: 1;
  width: 2px;
  background: var(--border);
}

.vs-badge {
  background: var(--bg-surface);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: 1px solid var(--border-bright);
}


/* ── STEPS / HOW IT WORKS ─────────────────────────────────── */
.steps-row {
  display: flex;
  gap: 16px;
  margin-top: 3rem;
  position: relative;
  align-items: stretch;
}

.steps-connector {
  position: absolute;
  top: 48px;
  left: 64px;
  right: 64px;
  height: 2px;
  z-index: 0;
  pointer-events: none;
}

.steps-line {
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--fuchsia) 0px,
    var(--fuchsia) 8px,
    transparent 8px,
    transparent 16px
  );
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.steps-line.animated { width: 100%; }

.step-card {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 12px var(--fuchsia-glow);
  border-color: var(--fuchsia);
}

.step-card.step-active {
  background: var(--bg-surface);
  border-color: var(--fuchsia);
  box-shadow: 0 0 24px var(--fuchsia-glow);
}

.step-card.step-active .step-title,
.step-card.step-active .step-desc {
  color: var(--text-primary);
}

.step-card.step-active .step-tag {
  background: var(--fuchsia);
  color: #fff;
}

.step-num-badge {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-base);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.step-num-badge.active {
  background: var(--fuchsia);
  color: #fff;
  border-color: var(--fuchsia);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.step-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--fuchsia-dim);
  color: var(--fuchsia);
  margin-top: auto;
  white-space: nowrap;
}

/* ── FEATURE CARDS ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 16px var(--fuchsia-glow);
  border-color: var(--fuchsia);
}

.feature-card-wide {
  grid-column: 3 / 5;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.feature-card-wide .fc-desc { flex: 1; }

.fc-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.07em;
}

/* Per-tag colour specs */
.fc-tag-core    { background: var(--bg-base);   color: var(--text-primary); border: 1px solid var(--border); }   /* CORE ENGINE */
.fc-tag-ai      { background: var(--fuchsia-dim); color: var(--fuchsia); border: 1px solid rgba(217, 70, 239, 0.3); }   /* AI POWERED */
.fc-tag-amber   { background: rgba(245, 158, 11, 0.15); color: var(--amber); border: 1px solid rgba(245, 158, 11, 0.3); }   /* PRODUCTIVITY */
.fc-tag-trust   { background: var(--violet-dim); color: var(--violet); border: 1px solid rgba(124, 58, 237, 0.3); } /* TRUST SIGNAL */
.fc-tag-dark    { background: var(--bg-base);   color: var(--text-primary); border: 1px solid var(--border); }   /* CAREER PROOF */
/* Legacy aliases (keep for safety) */
.fc-tag-emerald { background: var(--black);   color: var(--cream); }

.fc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.emerald-circle { background: var(--emerald-light); }
.amber-circle   { background: #FEF3C7; }
.dark-circle    { background: var(--black); }

.fc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.fc-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.fc-stat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}

/* ── LIVE DASHBOARD PREVIEW ───────────────────────────────── */
.dashboard-preview-section {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dp-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.dp-orb-1 {
  width: 500px; height: 500px;
  background: rgba(5,150,105,0.18);
  top: -100px; left: -100px;
  animation: orbDrift1 20s ease-in-out infinite alternate;
}

.dp-orb-2 {
  width: 350px; height: 350px;
  background: rgba(16,185,129,0.1);
  bottom: -80px; right: -80px;
  animation: orbDrift2 25s ease-in-out infinite alternate;
}

.dp-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(245,240,232,0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

/* Mock dashboard card */
.mock-dashboard {
  background: var(--bg-surface);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 8px 24px rgba(0,0,0,0.4);
  overflow: hidden;
  max-width: 960px;
  margin: 3rem auto 0;
  border: 1px solid var(--border);
}

.mdb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-base);
}

.mdb-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
}

.mdb-logo span { color: var(--fuchsia); }

.mdb-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mdb-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; justify-content: center;
}

.mdb-username {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mdb-last-updated {
  font-size: 0.7rem;
  color: var(--slate-400);
}

.mdb-body {
  display: grid;
  grid-template-columns: 140px 1fr;
}

.mdb-sidebar {
  background: rgba(255,255,255,0.01);
  border-right: 1px solid var(--border);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mdb-nav-item {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: default;
  transition: background 0.15s, color 0.15s;
}

.mdb-nav-item.active {
  background: var(--fuchsia-dim);
  color: var(--fuchsia);
}

.mdb-main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mdb-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mdb-stat-card {
  background: var(--bg-base);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.mdb-stat-card.emerald-stat {
  background: var(--fuchsia-dim);
  border-color: rgba(217,70,239,0.25);
}

.mdb-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.emerald-stat .mdb-stat-val { color: var(--fuchsia); }
.emerald-val { color: var(--fuchsia) !important; }
.amber-val   { color: var(--amber) !important; }
.slate-val   { color: var(--text-secondary) !important; }

.mdb-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mdb-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mdb-skills-panel, .mdb-weak-panel {
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--border);
}

.mdb-panel-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mdb-weak-panel {
  background: rgba(239, 68, 68, 0.02);
  border-color: rgba(239,68,68,0.15);
}

.weak-list { display: flex; flex-direction: column; gap: 10px; }

.weak-item {}

.weak-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.weak-skill {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.red-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: #EF4444;
}

.mdb-next-task {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fuchsia);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mdb-nt-pin {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mdb-nt-why {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.mdb-nt-impact {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fuchsia);
}

.mdb-nt-btn { flex-shrink: 0; }

/* ── UPDATED COMPARE TABLE ───────────────────────────────── */
.compare-table th.sb-col {
  background: var(--bg-surface);
  color: var(--fuchsia);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--fuchsia);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(
    135deg,
    #08011A 0%,
    #0D0520 40%,
    #25053D 100%
  );
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,70,239,0.25) 0%, transparent 70%);
  pointer-events: none;
}


.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100%) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 1rem 0 0.75rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SCROLL REVEAL & PAGE ENTRANCE ANIMATIONS ───────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Default / fade-up */
[data-reveal], [data-reveal="fade-up"] {
  transform: translateY(40px);
}
[data-reveal].revealed, [data-reveal="fade-up"].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* fade-down */
[data-reveal="fade-down"] {
  transform: translateY(-40px);
}
[data-reveal="fade-down"].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* fade-left */
[data-reveal="fade-left"] {
  transform: translateX(-50px);
}
[data-reveal="fade-left"].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* fade-right */
[data-reveal="fade-right"] {
  transform: translateX(50px);
}
[data-reveal="fade-right"].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* scale-up */
[data-reveal="scale-up"] {
  transform: scale(0.9);
}
[data-reveal="scale-up"].revealed {
  opacity: 1;
  transform: scale(1);
}

/* flip-x */
[data-reveal="flip-x"] {
  transform: perspective(1000px) rotateX(12deg) translateY(20px);
}
[data-reveal="flip-x"].revealed {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0);
}

/* zoom-in */
[data-reveal="zoom-in"] {
  transform: scale(1.08);
  filter: blur(8px);
}
[data-reveal="zoom-in"].revealed {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Page entrance animations */
@keyframes slideDownNav {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

@keyframes heroCardIn {
  from { opacity: 0; transform: scale(0.9) rotate(2deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.navbar {
  animation: slideDownNav 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-text {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-card-wrap {
  animation: heroCardIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* ── PULSE ANIMATION ──────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.3); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: 1 / 3; flex-direction: column; }
  .steps-row { flex-wrap: wrap; }
  .step-card { flex: 1 1 calc(50% - 8px); }
  .steps-connector { display: none; }
  .mdb-stats-row { grid-template-columns: repeat(2,1fr); }
  .mdb-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-wrap { max-width: 480px; margin: 0 auto; }
  .problem-vs-grid { grid-template-columns: 1fr; }
  .vs-divider { flex-direction: row; width: 100%; height: 40px; }
  .vs-line { flex: 1; width: auto; height: 2px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .mdb-body { grid-template-columns: 1fr; }
  .mdb-sidebar { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-heading { font-size: 1.75rem; }
  .hero { padding: 120px 0 64px; }
  .hero-heading { font-size: 2.4rem; }
  .hero-trust { gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .step-card { flex: 1 1 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: 1; flex-direction: column; }
  .mdb-stats-row { grid-template-columns: 1fr 1fr; }
  .problem-vs-grid { grid-template-columns: 1fr; }
}


.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table thead {
  background: var(--bg-surface);
}
.compare-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.compare-table .sb-col {
  background: var(--fuchsia-dim);
  color: var(--fuchsia);
}
.compare-table .feat-col {
  color: var(--text-primary);
}
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .trow:hover td { background: rgba(255,255,255,0.02); }
.compare-table .trow td.sb-col { color: var(--fuchsia); font-weight: 600; }

/* ── FAQ SECTION ──────────────────────────────────────────── */
.faq-list { margin-top: 3rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
  background: var(--bg-surface);
}
.faq-item.open {
  border-left: 3px solid var(--fuchsia);
  border-color: rgba(217, 70, 239, 0.4);
  background: var(--fuchsia-dim);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 12px;
  cursor: pointer;
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--slate-400);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--fuchsia); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FINAL CTA (Styles defined in main CTA section block) ── */

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--fuchsia); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 8px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fuchsia); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
}

.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--slate-400);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icon:hover {
  background: var(--fuchsia);
  color: #fff;
  border-color: var(--fuchsia);
}


/* ── PULSE ANIMATION ──────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.3); }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-wrap { max-width: 480px; margin: 0 auto; }
  .problem-cards, .innovation-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-pane.active { grid-template-columns: 1fr; }
  .tl-step { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .tl-line-svg { display: none; }
  .tl-num { margin: 0 auto; }
  .tl-reverse .tl-content, .tl-reverse .tl-num, .tl-reverse .tl-visual { order: unset; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-heading { font-size: 1.75rem; }
  .hero { padding: 120px 0 64px; }
  .hero-heading { font-size: 2.4rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════════════
   DAY MODE (LIGHT BLUISH THEME) OVERRIDES
   ══════════════════════════════════════════════════════════════ */
:root[data-theme="day"] {
  /* Brand Colors — Royal Blue / Cobalt blue accent for day theme */
  --emerald:        #2563eb;
  --emerald-dark:   #1d4ed8;
  --emerald-light:  rgba(37,99,235,0.08);
  --fuchsia:        #4f46e5;
  --fuchsia-dim:    rgba(79,70,229,0.08);
  --fuchsia-glow:   rgba(79,70,229,0.25);
  --violet:         #6366f1;
  --violet-dim:     rgba(99,102,241,0.08);
  --mint:           #3b82f6;
  --gold:           #d97706;
  --amber:          #d97706;
  --red:            #ef4444;

  /* Surfaces & Core Palette - Light bluish tone */
  --bg-base:        #f0f4f8;
  --bg-surface:     rgba(255, 255, 255, 0.7);
  --bg-card:        rgba(255, 255, 255, 0.85);
  --bg-card-hover:  rgba(255, 255, 255, 0.95);
  --bg-glass:       rgba(240, 244, 248, 0.8);
  --cream:          #f0f4f8;
  --cream-2:        #e2e8f0;
  --cream-3:        rgba(37,99,235,0.02);
  --white-warm:     rgba(255,255,255,0.85);
  --black:          #1e293b;
  --black-2:        #334155;
  --black-3:        rgba(255,255,255,0.85);

  /* Text - Slate colors for premium contrast */
  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;
  --text-light:     #8b9ebb;
  --text-white:     #ffffff;

  /* Borders */
  --border:         rgba(37, 99, 235, 0.08);
  --border-strong:  rgba(37, 99, 235, 0.15);
  --border-white:   rgba(37, 99, 235, 0.08);
  --border-bright:  rgba(37, 99, 235, 0.2);

  /* Gradients */
  --grad-brand:     linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --grad-card:      linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 244, 248, 0.9) 100%);
  --grad-glow-top:  radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  --grad-glow-btm:  radial-gradient(ellipse 40% 30% at 80% 100%, rgba(79, 70, 229, 0.08) 0%, transparent 60%);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(37, 99, 235, 0.04);
  --shadow-md:      0 4px 16px rgba(37, 99, 235, 0.06);
  --shadow-lg:      0 12px 40px rgba(37, 99, 235, 0.1);
}

/* ── Landing Page (index.html) Day Overrides ── */
html[data-theme="day"] body {
  background-color: var(--bg-base) !important;
  color: var(--text-primary) !important;
}

html[data-theme="day"] .navbar {
  background: rgba(240, 244, 248, 0.85) !important;
  border-bottom: 1px solid var(--border) !important;
}

html[data-theme="day"] .btn-primary,
html[data-theme="day"] .btn-cta-primary,
html[data-theme="day"] .nav-cta {
  color: #ffffff !important;
  background: var(--grad-brand) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25) !important;
}

html[data-theme="day"] .btn-primary:hover,
html[data-theme="day"] .btn-cta-primary:hover,
html[data-theme="day"] .nav-cta:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35) !important;
  filter: brightness(1.05);
}

html[data-theme="day"] .btn-outline {
  border-color: rgba(37, 99, 235, 0.4) !important;
  color: #2563eb !important;
}
html[data-theme="day"] .btn-outline:hover {
  background: rgba(37, 99, 235, 0.06) !important;
  border-color: #2563eb !important;
}

html[data-theme="day"] .btn-cta-outline {
  border-color: rgba(37, 99, 235, 0.4) !important;
  color: #2563eb !important;
}
html[data-theme="day"] .btn-cta-outline:hover {
  border-color: #2563eb !important;
  background: rgba(37, 99, 235, 0.06) !important;
}

html[data-theme="day"] .data-stripes {
  background-image: 
    linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.02) 2px, transparent 2px) !important;
}

html[data-theme="day"] .scan-line {
  background: linear-gradient(to bottom, transparent 50%, rgba(37, 99, 235, 0.02) 51%) !important;
}

html[data-theme="day"] .tech-glow-1 {
  background: rgba(37, 99, 235, 0.05) !important;
}
html[data-theme="day"] .tech-glow-2 {
  background: rgba(79, 70, 229, 0.04) !important;
}

html[data-theme="day"] .hero-heading {
  color: #0f172a !important;
}
html[data-theme="day"] .hero-heading span.text-emerald {
  color: #2563eb !important;
  text-shadow: none !important;
}

html[data-theme="day"] .hero-weekly-badge {
  background: #EFF6FF !important;
  color: #1D4ED8 !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

html[data-theme="day"] .ring-bg {
  stroke: rgba(37, 99, 235, 0.08) !important;
}

html[data-theme="day"] .ring-pct {
  color: #0f172a !important;
}

html[data-theme="day"] .ring-label-inner {
  color: #475569 !important;
}

html[data-theme="day"] .ring-sublabel {
  color: #475569 !important;
}

html[data-theme="day"] .hdc-next-task {
  background: #f8fafc !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
}

html[data-theme="day"] .hdc-next-title {
  color: #0f172a !important;
}

html[data-theme="day"] .hdc-next-meta {
  color: #64748b !important;
}

html[data-theme="day"] .before-card {
  background: #ffffff !important;
  border: 1px solid rgba(239, 68, 68, 0.15) !important;
}

html[data-theme="day"] .before-card:hover {
  border-color: rgba(239, 68, 68, 0.4) !important;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.06) !important;
}

html[data-theme="day"] .after-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.04) !important;
}

html[data-theme="day"] .after-card:hover {
  border-color: #2563eb !important;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.12) !important;
}

html[data-theme="day"] .problem-vs-grid p {
  color: #475569 !important;
}

html[data-theme="day"] .vs-card-header {
  color: #0f172a !important;
}

html[data-theme="day"] .step-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
}

html[data-theme="day"] .step-card p {
  color: #475569 !important;
}

html[data-theme="day"] .step-card:hover {
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.06) !important;
}

html[data-theme="day"] .step-card.step-active {
  border-color: #2563eb !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1) !important;
}

html[data-theme="day"] .step-num-badge {
  background: #f1f5f9 !important;
  color: #64748b !important;
}

html[data-theme="day"] .step-num-badge.active {
  background: #2563eb !important;
  color: #ffffff !important;
}

html[data-theme="day"] .feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
}
html[data-theme="day"] .feature-card:hover {
  border-color: #2563eb !important;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08) !important;
}

html[data-theme="day"] .fc-title {
  color: #0f172a !important;
}
html[data-theme="day"] .fc-desc {
  color: #475569 !important;
}
html[data-theme="day"] .fc-stat {
  color: #2563eb !important;
  border-top: 1px solid rgba(37, 99, 235, 0.08) !important;
}

html[data-theme="day"] .mock-dashboard {
  background: #f8fafc !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08) !important;
}

html[data-theme="day"] .mdb-topbar {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08) !important;
}
html[data-theme="day"] .mdb-logo {
  color: #0f172a !important;
}
html[data-theme="day"] .mdb-username {
  color: #0f172a !important;
}
html[data-theme="day"] .mdb-last-updated {
  color: #64748b !important;
}

html[data-theme="day"] .mdb-sidebar {
  background: #f1f5f9 !important;
  border-right: 1px solid rgba(37, 99, 235, 0.08) !important;
}

html[data-theme="day"] .mdb-nav-item {
  color: #475569 !important;
}

html[data-theme="day"] .mdb-nav-item.active {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
}

html[data-theme="day"] .mdb-stat-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.02) !important;
}
html[data-theme="day"] .mdb-stat-card .mdb-stat-label {
  color: #64748b !important;
}

html[data-theme="day"] .mdb-panel-title {
  color: #0f172a !important;
}

html[data-theme="day"] .weak-skill {
  color: #334155 !important;
}

html[data-theme="day"] .mdb-next-task {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
}
html[data-theme="day"] .mdb-nt-why {
  color: #475569 !important;
}

html[data-theme="day"] .compare-table {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
}
html[data-theme="day"] .compare-table th {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  border-bottom: 2px solid rgba(37, 99, 235, 0.1) !important;
}
html[data-theme="day"] .compare-table td {
  color: #334155 !important;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06) !important;
}
html[data-theme="day"] .compare-table .sb-col {
  background: rgba(37, 99, 235, 0.03) !important;
}
html[data-theme="day"] .compare-table tr:hover td {
  background: rgba(37, 99, 235, 0.02) !important;
}

html[data-theme="day"] .faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
}
html[data-theme="day"] .faq-q {
  color: #0f172a !important;
}
html[data-theme="day"] .faq-a p {
  color: #475569 !important;
}

html[data-theme="day"] .footer {
  background: #f8fafc !important;
  border-top: 1px solid rgba(37, 99, 235, 0.08) !important;
  color: #334155 !important;
}
html[data-theme="day"] .footer-logo {
  color: #0f172a !important;
}
html[data-theme="day"] .footer-col h5 {
  color: #0f172a !important;
}
html[data-theme="day"] .footer-col a {
  color: #475569 !important;
}
html[data-theme="day"] .footer-col a:hover {
  color: #2563eb !important;
}
html[data-theme="day"] .footer-bottom {
  border-top: 1px solid rgba(37, 99, 235, 0.06) !important;
  color: #64748b !important;
}


/* ── Auth Page (auth.html) Day Overrides ── */
html[data-theme="day"] .left-panel {
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 50%, #dbeafe 100%) !important;
}
html[data-theme="day"] .left-panel .brand-logo {
  color: #0f172a !important;
}
html[data-theme="day"] .left-panel .brand-tagline {
  color: #475569 !important;
}
html[data-theme="day"] .left-panel .dot-grid-overlay {
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.08) 1px, transparent 1px) !important;
}

html[data-theme="day"] .left-panel .f-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  color: #0f172a !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.05) !important;
}
html[data-theme="day"] .left-panel .f-card p {
  color: #334155 !important;
}
html[data-theme="day"] .left-panel .f-card span {
  color: #2563eb !important;
}
html[data-theme="day"] .left-panel .card-a {
  border-left: 4px solid #2563eb !important;
}

html[data-theme="day"] .left-panel .terminal-widget {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.06) !important;
}
html[data-theme="day"] .left-panel .term-header {
  background: #f1f5f9 !important;
}
html[data-theme="day"] .left-panel .term-body {
  color: #2563eb !important;
}

html[data-theme="day"] .left-panel .skill-badge {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  color: #334155 !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.03) !important;
}

html[data-theme="day"] .right-panel {
  background: #f8fafc !important;
}
html[data-theme="day"] .welcome-text h1 {
  color: #0f172a !important;
}
html[data-theme="day"] .welcome-text p {
  color: #475569 !important;
}

html[data-theme="day"] .tab-switcher {
  background: #f1f5f9 !important;
}
html[data-theme="day"] .tab-btn {
  color: #64748b !important;
}
html[data-theme="day"] .tab-btn.active {
  background: #ffffff !important;
  color: #2563eb !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.05) !important;
}

html[data-theme="day"] .auth-form label {
  color: #334155 !important;
}
html[data-theme="day"] .auth-form input,
html[data-theme="day"] .auth-form select {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
}
html[data-theme="day"] .auth-form input:focus,
html[data-theme="day"] .auth-form select:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
}
html[data-theme="day"] .auth-form select option {
  background: #ffffff !important;
  color: #0f172a !important;
}

html[data-theme="day"] .submit-btn {
  background: var(--grad-brand) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2) !important;
}
html[data-theme="day"] .submit-btn:hover {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3) !important;
}

html[data-theme="day"] .divider {
  color: #64748b !important;
}
html[data-theme="day"] .divider::before,
html[data-theme="day"] .divider::after {
  background: #e2e8f0 !important;
}

html[data-theme="day"] .google-btn,
html[data-theme="day"] .github-btn {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
}
html[data-theme="day"] .google-btn:hover,
html[data-theme="day"] .github-btn:hover {
  background: #f8fafc !important;
  border-color: #2563eb !important;
}
