/* modern design system - PM portfolio */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-dark: #090D16;
  --bg-card: rgba(19, 27, 46, 0.7);
  --bg-card-hover: rgba(28, 39, 64, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(99, 102, 241, 0.35);
  
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.25);
  --secondary: #38bdf8;
  --accent: #ec4899;
  --success: #10b981;
  --warning: #f59e0b;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-code: 'JetBrains Mono', monospace;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-bg: rgba(9, 13, 22, 0.85);
}

/* Light Theme Variables */
:root[data-theme="light"],
html[data-theme="light"],
html.light-mode {
  --bg-dark: #f8fafc !important;
  --bg-card: #ffffff !important;
  --bg-card-hover: #f1f5f9 !important;
  --border-color: #cbd5e1 !important;
  --border-highlight: rgba(79, 70, 229, 0.4) !important;
  
  --primary: #4f46e5 !important;
  --primary-hover: #4338ca !important;
  --primary-glow: rgba(79, 70, 229, 0.15) !important;
  --secondary: #0284c7 !important;
  --accent: #db2777 !important;
  --success: #059669 !important;
  --warning: #d97706 !important;
  
  --text-main: #0f172a !important;
  --text-muted: #475569 !important;
  --text-dim: #64748b !important;
  --header-bg: rgba(255, 255, 255, 0.95) !important;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  color: var(--text-main);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px var(--primary-glow);
}

.theme-toggle-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

/* Floating Theme Switcher Badge */
.theme-floating-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  color: var(--text-main);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
}

.logo-tag {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0 4rem 0;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #38bdf8 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 680px;
}

.hero-badges-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-badge-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.icon-btn-linkedin {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(10, 102, 194, 0.15);
  border: 1px solid rgba(10, 102, 194, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  text-decoration: none;
}

.hero-impact-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 0.85rem;
  text-align: center;
}

.impact-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
}

.impact-lbl {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-profile-container {
  width: 100%;
  max-width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--primary-glow);
}

.profile-avatar-frame {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  padding: 3px;
}

.profile-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}

/* ==========================================================================
   FEATURED CASE STUDY CARDS (NOTION & GOOGLE PM STYLE)
   ========================================================================== */

.pm-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin-bottom: 3.5rem;
  backdrop-filter: blur(16px);
}

.pm-case-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 35px var(--primary-glow);
}

.pm-card-banner {
  padding: 2rem 2.25rem 1.5rem 2.25rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(99,102,241,0.06) 100%);
  border-bottom: 1px solid var(--border-color);
}

.domain-pill {
  background: rgba(99, 102, 241, 0.12);
  color: var(--secondary);
  border: 1px solid rgba(99, 102, 241, 0.25);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.pm-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.pm-card-subtitle {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 600;
}

.pm-card-body {
  padding: 2rem 2.25rem;
}

.pm-exec-summary {
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 14px 14px 0;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.pm-kpi-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.15rem 1rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.pm-kpi-card:hover {
  border-color: var(--border-highlight);
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

.pm-kpi-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}

.pm-kpi-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

.pm-role-bar {
  margin-bottom: 2rem;
}

.pm-role-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pm-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.role-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  transition: all var(--transition-fast);
}

.role-pill:hover {
  border-color: var(--border-highlight);
  color: var(--text-main);
  background: rgba(99, 102, 241, 0.1);
}

/* EXECUTION JOURNEY COMPONENT */
.execution-journey-wrapper {
  margin-bottom: 2.25rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.journey-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.journey-header-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.journey-grid-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.65rem;
  align-items: stretch;
  position: relative;
}

.journey-node-card {
  background: rgba(19, 27, 46, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1rem 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.journey-node-card:hover {
  transform: translateY(-4px) scale(1.03);
  z-index: 10;
}

.journey-node-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.journey-step-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.journey-node-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.journey-node-sub {
  font-size: 0.675rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.journey-arrow-divider {
  position: absolute;
  right: -10px;
  top: 40%;
  transform: translateY(-50%);
  color: var(--border-highlight);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 5;
  pointer-events: none;
}

/* JOURNEY THEMES */
.journey-theme-pink-purple .journey-header-title { color: #FA26A0; }
.journey-theme-pink-purple .journey-node-card:hover { border-color: #FA26A0; box-shadow: 0 10px 25px rgba(250, 38, 160, 0.3); }
.journey-theme-pink-purple .journey-node-icon-box { background: linear-gradient(135deg, rgba(250, 38, 160, 0.2), rgba(168, 85, 247, 0.3)); border: 1px solid rgba(250, 38, 160, 0.4); color: #FA26A0; }
.journey-theme-pink-purple .journey-step-num { color: #c084fc; }

.journey-theme-green-blue .journey-header-title { color: #10B981; }
.journey-theme-green-blue .journey-node-card:hover { border-color: #10B981; box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); }
.journey-theme-green-blue .journey-node-icon-box { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(56, 189, 248, 0.3)); border: 1px solid rgba(16, 185, 129, 0.4); color: #10B981; }
.journey-theme-green-blue .journey-step-num { color: #38BDF8; }

.journey-theme-enterprise-blue .journey-header-title { color: #0284c7; }
.journey-theme-enterprise-blue .journey-node-card:hover { border-color: #00F0FF; box-shadow: 0 10px 25px rgba(0, 240, 255, 0.3); }
.journey-theme-enterprise-blue .journey-node-icon-box { background: linear-gradient(135deg, rgba(2, 132, 199, 0.25), rgba(0, 240, 255, 0.25)); border: 1px solid rgba(0, 240, 255, 0.4); color: #00F0FF; }
.journey-theme-enterprise-blue .journey-step-num { color: #38bdf8; }

.journey-theme-fintech-blue .journey-header-title { color: #38BDF8; }
.journey-theme-fintech-blue .journey-node-card:hover { border-color: #6366F1; box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35); }
.journey-theme-fintech-blue .journey-node-icon-box { background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(99, 102, 241, 0.3)); border: 1px solid rgba(99, 102, 241, 0.4); color: #38BDF8; }
.journey-theme-fintech-blue .journey-step-num { color: #a5b4fc; }


/* ==========================================================================
   REDESIGNED 2x2 PRODUCT THINKING GRID (NO ACCORDION, ALWAYS VISIBLE)
   ========================================================================== */

.pm-thinking-grid-section {
  margin-bottom: 2.25rem;
}

.thinking-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pm-thinking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.thinking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.thinking-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 16px 36px var(--primary-glow);
  background: var(--bg-card-hover);
}

.thinking-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.thinking-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid var(--border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
}

.thinking-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.thinking-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.thinking-field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.thinking-field-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.thinking-field-content {
  color: var(--text-main);
}

/* Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-dark);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

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

.modal-title-group h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-main);
}

.modal-title-group p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.modal-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-color);
  padding: 0 2rem;
  gap: 1.5rem;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 1rem 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-impact-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .journey-arrow-divider {
    display: none;
  }
  .pm-thinking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-impact-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .pm-card-banner, .pm-card-body {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   WHY HIRE ME / WHAT I BRING AS A PRODUCT MANAGER SECTION
   ========================================================================== */

.why-hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .why-hire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-hire-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 40px var(--primary-glow);
  background: var(--bg-card-hover);
}

.why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.15rem;
}

.why-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.why-card-badge {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--primary);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.why-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.why-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.why-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.why-card:hover .why-tag {
  border-color: rgba(99, 102, 241, 0.25);
  color: var(--text-main);
  background: rgba(99, 102, 241, 0.08);
}

/* ==========================================================================
   HOW I BUILD PRODUCTS SECTION (LINEAR / GOOGLE PM FRAMEWORK)
   ========================================================================== */

.product-framework-wrapper {
  margin-bottom: 2rem;
}

.product-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .product-framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-framework-grid {
    grid-template-columns: 1fr;
  }
}

.pm-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.pm-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 40px var(--primary-glow);
  background: var(--bg-card-hover);
}

.pm-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pm-step-num {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.pm-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pm-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.pm-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}

.pm-step-example {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-main);
  line-height: 1.45;
  margin-top: auto;
}

.pm-step-example strong {
  color: var(--secondary);
  display: block;
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

/* PREMIUM QUOTE CARD AT THE BOTTOM */
.pm-quote-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(56, 189, 248, 0.08), rgba(16, 185, 129, 0.12));
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  margin-top: 1rem;
}

.pm-quote-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.pm-quote-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 0.75rem auto;
  font-style: italic;
}

.pm-quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   PRODUCT CAPABILITY MATRIX SECTION (STRIPE / MICROSOFT EXEC DASHBOARD)
   ========================================================================== */

.capability-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1100px) {
  .capability-matrix-grid {
    grid-template-columns: 1fr;
  }
}

.matrix-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.matrix-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 40px var(--primary-glow);
  background: var(--bg-card-hover);
}

.matrix-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}

.matrix-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.matrix-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.matrix-card-subtitle {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* CARD 1: DOMAINS GRID */
.domains-badge-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
}

.domain-badge-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all var(--transition-fast);
}

.matrix-card:hover .domain-badge-item:hover {
  border-color: var(--border-highlight);
  background: rgba(99, 102, 241, 0.1);
  transform: translateX(4px);
}

.domain-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.domain-badge-item strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  margin-bottom: 0.1rem;
}

.domain-badge-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* CARD 2: SKILLS CHIPS */
.skills-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.skill-chip {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--secondary);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.skill-chip:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--secondary);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

/* CARD 3: TOOLS GRID */
.tools-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.tool-item-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.tool-item-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
  transform: translateY(-2px);
}

.tool-icon {
  font-size: 1.1rem;
}

/* BOTTOM HIGHLIGHTED CALLOUT STATEMENT CARD */
.pm-callout-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(99, 102, 241, 0.1), rgba(56, 189, 248, 0.12));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.callout-sparkle {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.callout-content {
  flex: 1;
}

.callout-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 0.35rem;
}

.callout-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--success);
  text-transform: uppercase;
}

/* ==========================================================================
   RECRUITER'S QUICK VIEW SECTION (STRIPE / GOOGLE PM EXEC DASHBOARD)
   ========================================================================== */

.quickview-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

@media (max-width: 1100px) {
  .quickview-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .quickview-stats-grid {
    grid-template-columns: 1fr;
  }
}

.quick-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.15rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.quick-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 16px 36px var(--primary-glow);
  background: var(--bg-card-hover);
}

.quick-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid var(--border-color);
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.quick-stat-number {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.quick-stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.quick-stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* CAPABILITY BADGES FLEX CHIPS */
.quickview-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.quick-chip {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  transition: all var(--transition-fast);
}

.quick-chip:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* PREMIUM INFO BANNER */
.quickview-info-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.12));
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-banner-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-banner-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}

/* ==========================================================================
   RECRUITER SNAPSHOT CARD (APPLE & NOTION MINIMALIST SPEC)
   ========================================================================== */

.recruiter-snapshot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.recruiter-snapshot-card:hover {
  border-color: var(--border-highlight);
  box-shadow: 0 20px 40px var(--primary-glow);
  transform: translateY(-3px);
}

.snapshot-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.snapshot-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--primary-glow);
  flex-shrink: 0;
}

.snapshot-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.snapshot-role {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 0.15rem;
}

.snapshot-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1.25rem 0;
}

.snapshot-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.snapshot-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.snapshot-detail-label {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.snapshot-detail-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.snapshot-status-pill {
  font-size: 0.825rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  width: fit-content;
}

.snapshot-domains-label {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
}

.snapshot-domains-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.snapshot-domain-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.recruiter-snapshot-card:hover .snapshot-domain-tag {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.08);
}

/* ==========================================================================
   FLOATING NAVIGATION EXPERIENCE (VERCEL / APPLE / LINEAR / NOTION SPEC)
   ========================================================================== */

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
}

.floating-nav-container {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 95vw;
}

.floating-nav-container.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-nav-pill {
  background: rgba(15, 22, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 0.45rem 0.75rem 0.45rem 1.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

[data-theme="light"] .floating-nav-pill {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 0 20px rgba(99, 102, 241, 0.1);
}

.floating-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.floating-nav-item {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.floating-nav-item:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.04);
}

[data-theme="light"] .floating-nav-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.floating-nav-item.active {
  color: var(--text-main);
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.35);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
}

.floating-theme-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  margin-left: 0.25rem;
  flex-shrink: 0;
}

.floating-theme-btn:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Mobile Navigation Header & Collapse */
.mobile-nav-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
}

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

.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.25s ease;
}

@media (max-width: 768px) {
  .floating-nav-pill {
    flex-direction: column;
    padding: 0.65rem 1rem;
    border-radius: 20px;
    width: 88vw;
  }
  .mobile-nav-header {
    display: flex;
  }
  .floating-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.4rem;
    padding-top: 0.65rem;
  }
  .floating-nav-links.open {
    display: flex;
  }
  .floating-nav-item {
    width: 100%;
    justify-content: center;
  }
  .theme-slider-pill {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  .floating-nav-pill {
    padding: 0.5rem 0.85rem;
  }
  .floating-nav-item {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   APPLE EXECUTIVE PROFILE RECRUITER SNAPSHOT CARD (APPLE / VERCEL SPEC)
   ========================================================================== */

.apple-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 1.65rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(99, 102, 241, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.apple-profile-card:hover {
  border-color: var(--border-highlight);
  box-shadow: 0 24px 50px var(--primary-glow);
  transform: translateY(-4px);
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}

.headshot-glow-frame {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--success));
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
  flex-shrink: 0;
}

.profile-headshot-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--bg-card);
  display: block;
}

.profile-card-titles {
  flex: 1;
}

.profile-card-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.profile-card-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

.role-org {
  color: var(--text-muted);
  font-weight: 500;
}

/* GREEN STATUS BADGE */
.status-badge-wrapper {
  margin-bottom: 1.15rem;
}

.status-badge-green {
  font-size: 0.775rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.profile-card-divider {
  height: 1px;
  background: var(--border-color);
  margin: 1rem 0;
}

/* SNAPSHOT INFO ROWS */
.snapshot-rows-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.snapshot-row-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.row-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.row-text {
  color: var(--text-main);
  line-height: 1.35;
}

.row-text strong {
  color: var(--text-main);
  font-weight: 700;
}

/* EXPERTISE BADGES */
.expertise-badges-container {
  margin-bottom: 1.15rem;
}

.expertise-section-label {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
}

.expertise-tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.expertise-tag-chip {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--text-main);
  font-size: 0.775rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.apple-profile-card:hover .expertise-tag-chip {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.16);
}

/* COMPACT ACTION CTAS */
.profile-card-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.btn-profile-primary {
  flex: 1;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-profile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, #34d399, #10b981);
}

.btn-profile-secondary {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-profile-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

/* ==========================================================================
   FEATURED PROJECT HERO VISUAL DIAGRAMS (APPLE & ADOBE DESIGN SPEC)
   ========================================================================== */

.project-hero-visual-card {
  margin: 1.25rem 1.5rem;
  background: rgba(10, 14, 24, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.visual-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}

.visual-header-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(250, 38, 160, 0.15);
  border: 1px solid rgba(250, 38, 160, 0.35);
  color: #FA26A0;
}

.visual-header-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.visual-workflow-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.visual-workflow-nodes::-webkit-scrollbar {
  height: 4px;
}
.visual-workflow-nodes::-webkit-scrollbar-thumb {
  background: var(--border-highlight);
  border-radius: 4px;
}

.visual-node-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1 1 0px;
  min-width: 95px;
  min-height: 85px;
  box-sizing: border-box;
}

.visual-node-box:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
  background: rgba(255, 255, 255, 0.08);
}

.visual-node-icon {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.visual-node-label {
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.visual-node-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.visual-flow-arrow {
  color: var(--border-highlight);
  font-size: 1.1rem;
  font-weight: 800;
  opacity: 0.75;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1px;
}

.visual-node-active {
  border-color: #FA26A0;
  background: rgba(250, 38, 160, 0.1);
  box-shadow: 0 4px 15px rgba(250, 38, 160, 0.2);
}

.visual-node-highlight {
  border-color: #7928CA;
  background: rgba(121, 40, 202, 0.15);
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.25);
}

/* THEMES FOR PROJECT HERO VISUALS */
.hero-visual-firefly {
  background: linear-gradient(135deg, rgba(250, 38, 160, 0.08), rgba(121, 40, 202, 0.08));
  border-color: rgba(250, 38, 160, 0.3);
}

.hero-visual-stanza {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(0, 223, 216, 0.08));
  border-color: rgba(16, 185, 129, 0.3);
}

.hero-visual-orient {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08), rgba(0, 240, 255, 0.08));
  border-color: rgba(2, 132, 199, 0.3);
}

.hero-visual-snapmint {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.08), rgba(56, 189, 248, 0.08));
  border-color: rgba(0, 82, 255, 0.3);
}

/* ==========================================================================
   BEYOND THE PORTFOLIO SECTION (APPLE & NOTION PRINCIPLES)
   ========================================================================== */

.beyond-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .beyond-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .beyond-insights-grid {
    grid-template-columns: 1fr;
  }
}

.beyond-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.beyond-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 40px var(--primary-glow);
  background: var(--bg-card-hover);
}

.beyond-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid var(--border-color);
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.beyond-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.beyond-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.beyond-card-tag {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  width: fit-content;
  margin-top: auto;
}

.beyond-card:hover .beyond-card-tag {
  border-color: rgba(99, 102, 241, 0.35);
  color: var(--text-main);
  background: rgba(99, 102, 241, 0.12);
}

/* BEYOND THE PORTFOLIO QUOTE CARD */
.beyond-quote-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(168, 85, 247, 0.1), rgba(16, 185, 129, 0.12));
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  margin-top: 1rem;
}

.beyond-quote-sparkle {
  font-size: 2.4rem;
  margin-bottom: 0.85rem;
}

.beyond-quote-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  max-width: 920px;
  margin: 0 auto 1rem auto;
  font-style: italic;
}

.beyond-quote-author {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   HOMEPAGE LIGHT THEME EXPLICIT OVERRIDES (APPLE & VERCEL LIGHT DESIGN SPEC)
   ========================================================================== */

[data-theme="light"] body {
  background-color: #f8fafc !important;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(2, 132, 199, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(219, 39, 119, 0.05) 0%, transparent 50%) !important;
  color: #0f172a !important;
}

/* Headers & Glass Nav */
[data-theme="light"] .top-header {
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom-color: #cbd5e1 !important;
  backdrop-filter: blur(20px) !important;
}

[data-theme="light"] .floating-nav-pill {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 0 20px rgba(99, 102, 241, 0.1) !important;
}

[data-theme="light"] .floating-nav-item {
  color: #475569 !important;
}

[data-theme="light"] .floating-nav-item:hover,
[data-theme="light"] .floating-nav-item.active {
  color: #0f172a !important;
  background: rgba(99, 102, 241, 0.12) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
}

[data-theme="light"] .theme-floating-pill {
  background: #ffffff !important;
  color: #0f172a !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Cards & Containers */
[data-theme="light"] .apple-profile-card,
[data-theme="light"] .quickview-stat-card,
[data-theme="light"] .why-hire-card,
[data-theme="light"] .framework-step-card,
[data-theme="light"] .capability-card,
[data-theme="light"] .beyond-card,
[data-theme="light"] .pm-case-card,
[data-theme="light"] .thinking-card,
[data-theme="light"] .visual-node-box,
[data-theme="light"] .skill-category-card {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .apple-profile-card:hover,
[data-theme="light"] .quickview-stat-card:hover,
[data-theme="light"] .why-hire-card:hover,
[data-theme="light"] .framework-step-card:hover,
[data-theme="light"] .capability-card:hover,
[data-theme="light"] .beyond-card:hover,
[data-theme="light"] .pm-case-card:hover {
  background: #ffffff !important;
  border-color: #6366f1 !important;
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.15) !important;
}

/* Typography & Headings */
[data-theme="light"] .hero-title,
[data-theme="light"] .section-title,
[data-theme="light"] .profile-card-name,
[data-theme="light"] .stat-card-num,
[data-theme="light"] .why-card-title,
[data-theme="light"] .framework-step-title,
[data-theme="light"] .capability-card-title,
[data-theme="light"] .beyond-card-title,
[data-theme="light"] .pm-card-title,
[data-theme="light"] .thinking-card-title,
[data-theme="light"] .logo-name {
  color: #0f172a !important;
}

[data-theme="light"] .hero-subtitle,
[data-theme="light"] .section-subtitle,
[data-theme="light"] .stat-card-desc,
[data-theme="light"] .why-card-desc,
[data-theme="light"] .framework-step-desc,
[data-theme="light"] .beyond-card-desc,
[data-theme="light"] .pm-card-subtitle,
[data-theme="light"] .logo-tag,
[data-theme="light"] .row-text {
  color: #475569 !important;
}

/* Hero Badges & Banners */
[data-theme="light"] .badge-pill {
  background: rgba(99, 102, 241, 0.1) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
  color: #4f46e5 !important;
}

[data-theme="light"] .quickview-banner,
[data-theme="light"] .beyond-quote-card,
[data-theme="light"] .capability-callout-card,
[data-theme="light"] .framework-quote-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(2, 132, 199, 0.08)) !important;
  border-color: #cbd5e1 !important;
}

[data-theme="light"] .beyond-quote-text,
[data-theme="light"] .framework-quote-text {
  color: #0f172a !important;
}

/* ==========================================================================
   APPLE / LINEAR / VERCEL SLIDING PILL SWITCH STYLING
   ========================================================================== */

.theme-slider-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  padding: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  margin-left: 0.5rem;
}

.theme-slider-pill:hover {
  border-color: var(--border-highlight);
  background: rgba(255, 255, 255, 0.12);
}

.theme-slider-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 52px;
  height: 26px;
  position: relative;
  border-radius: 9999px;
}

.theme-icon {
  font-size: 0.85rem;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.theme-slider-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  z-index: 1;
}

[data-theme="light"] .theme-slider-thumb {
  transform: translateX(26px);
  background: #4f46e5;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}

[data-theme="dark"] .sun-icon {
  opacity: 0.4;
  transform: scale(0.85);
}

[data-theme="dark"] .moon-icon {
  opacity: 1;
  transform: scale(1);
}

[data-theme="light"] .sun-icon {
  opacity: 1;
  transform: scale(1);
}

[data-theme="light"] .moon-icon {
  opacity: 0.4;
  transform: scale(0.85);
}

/* ==========================================================================
   GLOBAL SMOOTH TRANSITION FOR THEME SWITCHING (250ms - 350ms)
   ========================================================================== */

body, 
.apple-profile-card,
.quickview-stat-card,
.why-hire-card,
.framework-step-card,
.capability-card,
.beyond-card,
.pm-case-card,
.thinking-card,
.visual-node-box,
.skill-category-card,
.top-header,
.floating-nav-pill,
.quickview-banner,
.beyond-quote-card {
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}













/* ==========================================================================
   PERFECT SECOND PICTURE DESIGN SYSTEM (EXACT MATCH FOR USER SCREENSHOT 2)
   ========================================================================== */

/* Full-Width Translucent Floating Top Navigation Header */
.full-top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .full-top-header {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom-color: #cbd5e1 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.header-full-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link-item:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link-item.active {
  color: var(--text-main);
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-cv-btn {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: black !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  padding: 0.45rem 1rem !important;
  border-radius: 9999px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
  white-space: nowrap;
}

body {
  padding-top: 75px !important;
}

/* Enlarged Profile Card Top-Aligned */
.hero {
  align-items: flex-start !important;
}

.hero-visual-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 3.25rem !important;
}

.apple-profile-card {
  width: 100%;
  max-width: 470px !important;
  background: rgba(13, 19, 32, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 28px !important;
  padding: 2.85rem 2.25rem !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 45px rgba(99, 102, 241, 0.22) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.headshot-glow-frame {
  position: relative;
  width: 96px !important;
  height: 96px !important;
  border-radius: 50% !important;
  padding: 4px !important;
  background: linear-gradient(135deg, #0052FF, #00F0FF, #6366f1) !important;
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.48) !important;
  flex-shrink: 0;
}

.profile-headshot-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.profile-card-name {
  font-family: var(--font-heading);
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.2;
}

.profile-card-role {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #38bdf8 !important;
  margin-top: 0.3rem !important;
}

.status-badge-green {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem !important;
  padding: 0.55rem 1.25rem !important;
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.45) !important;
  border-radius: 9999px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #10b981 !important;
}

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

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.profile-card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 1.5rem !important;
}

.profile-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-bullet-item {
  display: flex;
  align-items: center;
  gap: 1.15rem !important;
  font-size: 1.025rem !important;
}

.bullet-icon {
  font-size: 1.35rem !important;
  width: 30px !important;
  display: inline-block;
  text-align: center;
}

.bullet-text {
  color: #94a3b8;
  font-weight: 500;
}

.bullet-text strong {
  color: #ffffff;
  font-weight: 700;
}

/* User Journey Single Line Layout */
.visual-workflow-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.visual-node-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0px;
  min-width: 95px;
  min-height: 85px;
  box-sizing: border-box;
}

/* PM Thinking 2x2 Grid */
.pm-thinking-grid-section {
  margin-bottom: 2.25rem;
}

.thinking-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pm-thinking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.thinking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.thinking-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.thinking-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid var(--border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
}

.thinking-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.thinking-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.thinking-field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.thinking-field-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.thinking-field-content {
  color: var(--text-main);
}


/* ==========================================================================
   CUSTOM PILL THEME SWITCH TOGGLE (EXACT MATCH FOR USER REFERENCE IMAGE)
   ========================================================================== */
.custom-theme-switch {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  display: inline-flex;
  align-items: center;
}

.switch-track {
  width: 66px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

[data-theme="light"] .switch-track {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1);
}

.icon-moon, .icon-sun {
  font-size: 14px;
  width: 26px;
  text-align: center;
  z-index: 1;
  user-select: none;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.icon-moon {
  margin-left: 2px;
}

.icon-sun {
  margin-right: 2px;
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.6);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
  z-index: 2;
}

/* Dark Mode State: Thumb over Moon on left */
[data-theme="dark"] .switch-thumb {
  transform: translateX(0px);
  background: #6366f1;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.7);
}

/* Light Mode State: Thumb over Sun on right */
[data-theme="light"] .switch-thumb {
  transform: translateX(32px);
  background: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
}
