/* ==========================================================================
   VIGNESHWAR BALAMURUGAN — CAMPAIGN SITE STYLESHEET
   Engineered for high readability, modern industrial aesthetics, and instant impact.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN TOKENS
   Easily customize the theme variables below.
   -------------------------------------------------------------------------- */
:root {
  /* Fonts */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* --- DARK THEME (Default) --- */
[data-theme="dark"] {
  --bg: #0d0f12;
  --bg-subtle: #14171d;
  --card-bg: #181c24;
  --card-hover: #1e232d;
  --card-border: #262c38;
  --card-border-focus: #3b82f6;

  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  --accent-primary: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-bg: rgba(59, 130, 246, 0.12);
  --accent-border: rgba(59, 130, 246, 0.25);

  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.12);
  --success-border: rgba(16, 185, 129, 0.25);

  --nav-bg: rgba(13, 15, 18, 0.85);
  --border-divider: #202632;
  --stat-bg: #131720;
}

/* --- LIGHT THEME --- */
[data-theme="light"] {
  --bg: #f8fafc;
  --bg-subtle: #f1f5f9;
  --card-bg: #ffffff;
  --card-hover: #fcfdfe;
  --card-border: #e2e8f0;
  --card-border-focus: #2563eb;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --accent-primary: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-bg: rgba(37, 99, 235, 0.08);
  --accent-border: rgba(37, 99, 235, 0.2);

  --success: #059669;
  --success-bg: rgba(5, 150, 105, 0.08);
  --success-border: rgba(5, 150, 105, 0.2);

  --nav-bg: rgba(248, 250, 252, 0.88);
  --border-divider: #e2e8f0;
  --stat-bg: #ffffff;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & TYPOGRAPHY
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* --------------------------------------------------------------------------
   3. LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
.content-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-wrapper {
  padding-top: 80px; /* Space for fixed header */
  padding-bottom: 60px;
}

.content-section {
  margin-top: 64px;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-divider);
  transition: background var(--transition-normal), border-color var(--transition-normal);
}

.nav-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-monogram {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--accent-bg);
  color: var(--accent-primary);
  border: 1px solid var(--accent-border);
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-divider);
  background: var(--card-bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

/* Theme toggle icons */
[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

/* --------------------------------------------------------------------------
   5. BUTTONS & PILLS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
  background: var(--card-bg);
  color: var(--text-primary);
  border-color: var(--card-border);
}

.btn-secondary:hover {
  background: var(--card-hover);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--card-hover);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 36px 0 24px;
  text-align: left;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1px solid var(--border-divider);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.05); 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); }
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 24px;
}

.highlight-company {
  color: var(--text-primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent-primary);
  text-underline-offset: 4px;
}

.badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.badge {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--border-divider);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.badge:hover {
  border-color: var(--accent-border);
  color: var(--text-primary);
}

.badge-accent {
  background: var(--accent-bg);
  border-color: var(--accent-border);
  color: var(--accent-primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

/* Stats Strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-divider);
}

.stat-card {
  padding: 14px;
  background: var(--stat-bg);
  border: 1px solid var(--border-divider);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   7. GENERIC CARDS & SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 20px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.section-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

/* --------------------------------------------------------------------------
   8. SECTION 2: WHY GE VERNOVA & NARRATIVE
   -------------------------------------------------------------------------- */
.narrative-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.narrative-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.narrative-col p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.quote-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border-left: 3px solid var(--accent-primary);
}

.quote-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent-primary);
  margin-top: 2px;
}

.quote-banner p {
  font-size: 13.5px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. SECTION 3: ROLE MATCH MATRIX
   -------------------------------------------------------------------------- */
.match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.match-column {
  padding: 22px;
}

.column-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 12px;
}

.col-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.col-tag-success {
  color: var(--success);
}

.column-header h3 {
  font-size: 17px;
  font-weight: 700;
}

.matrix-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
}

.matrix-item:last-child {
  margin-bottom: 0;
}

.matrix-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-divider);
  color: var(--text-secondary);
  white-space: nowrap;
  margin-top: 2px;
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.matrix-content strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.matrix-content p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   10. SECTION 4: EXPERIENCE TIMELINE
   -------------------------------------------------------------------------- */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-card {
  padding: 24px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.role-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.company-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-primary);
}

.time-location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-text {
  font-size: 12px;
  color: var(--text-muted);
}

.role-summary {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.role-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.role-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.role-bullets li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--accent-primary);
  font-size: 16px;
}

.role-bullets strong {
  color: var(--text-primary);
}

.tech-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--bg-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border-divider);
}

/* --------------------------------------------------------------------------
   11. SECTION 5: FEATURED PROJECTS & FILTERING
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-btn {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--card-bg);
  border: 1px solid var(--border-divider);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-primary);
  border-color: var(--accent-primary);
}

.filter-btn.active {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.project-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-hover);
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.project-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
}

.project-status {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

.project-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.project-description {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.project-highlights {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight-item {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.highlight-key {
  font-weight: 600;
  color: var(--text-primary);
}

.project-card {
  cursor: pointer;
}

.project-title-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.project-title-link:hover {
  color: var(--accent-primary);
}

.project-action-row {
  margin-top: 14px;
  display: flex;
}

.project-code-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  background: var(--bg-subtle);
  border: 1px solid var(--border-divider);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.project-code-link:hover {
  background: var(--accent-bg);
  border-color: var(--accent-border);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   12. SECTION 6: 90-DAY ONBOARDING PLAN
   -------------------------------------------------------------------------- */
.plan-cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.plan-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.plan-objective {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-checklist li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.plan-checklist li::before {
  content: '→';
  position: absolute;
  left: 2px;
  color: var(--accent-primary);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   13. SECTION 7: TECHNICAL SKILLS ARSENAL
   -------------------------------------------------------------------------- */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.skill-category-card {
  padding: 20px;
}

.skill-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 10px;
}

.skill-cat-icon {
  font-size: 18px;
}

.skill-cat-header h3 {
  font-size: 15px;
  font-weight: 700;
}

.skill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.skill-list strong {
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   14. SECTION 8: CONTACT & CLOSING
   -------------------------------------------------------------------------- */
.contact-card {
  text-align: center;
  padding: 36px 28px;
}

.contact-header {
  max-width: 580px;
  margin: 0 auto 28px;
}

.contact-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6px 0 10px;
}

.contact-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-divider);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.contact-method-item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-1px);
}

.method-icon {
  font-size: 20px;
}

.method-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.method-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.method-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.copy-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: var(--card-bg);
  border: 1px solid var(--border-divider);
  color: var(--accent-primary);
}

.contact-action-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. FOOTER & TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border-divider);
  padding: 28px 20px;
  background: var(--bg);
}

.footer-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.separator {
  margin: 0 6px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text-primary);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE DESIGN (TABLET & MOBILE)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Keep header compact on mobile */
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

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

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

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

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

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