:root {
  color-scheme: dark light;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Corporate Light Mode Default */
  --bg: #ffffff;
  --bg-highlight: #f8f9fa;
  --accent: #003366;
  --accent-hover: #0a4f91;
  --accent-glow: rgba(0, 51, 102, 0.05);
  --text-main: #1e293b;
  --text-muted: #475569;
  --border: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  --timeline-line: rgba(0, 0, 0, 0.08);

  --success: #059669;
  --error: #dc2626;
}

[data-theme="dark"] {
  --bg: #0b1120;
  --bg-highlight: #111827;
  --accent: #3b82f6; 
  --accent-hover: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(11, 17, 32, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  --timeline-line: rgba(255, 255, 255, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}


  .cursor, 
}





.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  z-index: 200;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px var(--accent-glow);
}

.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-overlay--done {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.intro-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Global Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delayed reveals for staggered children */
.reveal.active .delay-1 {
  transition-delay: 0.1s;
}

.reveal.active .delay-2 {
  transition-delay: 0.2s;
}

.reveal.active .delay-3 {
  transition-delay: 0.3s;
}

.reveal.active .delay-4 {
  transition-delay: 0.4s;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
}

/* --- Smooth Scrolling & Scroll Bar --- */
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* --- Top Navigation / Glass Header --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: var(--glass-bg);
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.nav__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

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

.btn--ghost:hover {
  background: var(--border);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn--primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.theme-toggle {
  background: transparent;
  border: none;
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}

.theme-toggle:hover {
  background: var(--border);
  transform: rotate(180deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sun-icon {
  display: none;
}

[data-theme="light"] .sun-icon {
  display: block;
}

[data-theme="light"] .moon-icon {
  display: none;
}

/* --- Hero Section --- */
.hero {
  padding: calc(70px + 6rem) clamp(1rem, 5vw, 2rem) 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}




  100% {
    transform: scale(1.1) translate(20px, 20px);
    opacity: 1;
  }
}


  100% {
    transform: scale(1.15) translate(-15px, -10px);
    opacity: 0.8;
  }
}

.hero__eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.hero__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--text-muted));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__tagline {
  margin: 0.5rem auto 2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 55ch;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
}

.stats-grid {
  display: flex;
  gap: 2rem 3rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.stat-item:hover .stat-value {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Main Content Container --- */
main {
  width: 100%;
  max-width: 1100px;
  /* Reduced width for better reading constraints */
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* --- Section Titles --- */
.section__header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.section__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--text-main);
}

.section__header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
}

.section__header h2 {
  position: relative;
}

.section__header h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section:hover .section__header h2::after {
  width: 100%;
}

.section__highlight .section__body {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 400;
  box-shadow: none;
  color: var(--text-muted);
  line-height: 1.8;
}

.differentiators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.diff-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.25);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.diff-badge:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--accent-glow);
}

/* --- Timeline Layout (Education & Experience) --- */
.timeline {
  display: grid;
  gap: 3rem;
  /* More breathing room */
  position: relative;
  /* border-left removed */
}

.timeline-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
  transition: border-color 0.4s ease, opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-20px);
}

.timeline-card.card-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--accent);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.timeline-card:hover::before {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--accent-glow);
}

.card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.card__subtitle {
  margin: 0.15rem 0 0;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card__meta {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.card__summary {
  margin: 0 0 0.75rem;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card__details summary {
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card__details summary::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card__details summary:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.card__details summary:hover::after {
  transform: translateX(3px);
}

.card__details[open] summary::after {
  content: '↓';
}

.card__details > .card__list,
.card__details > .projects-grid {
  overflow: hidden;
  animation: detailsSlideIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.card__details > .card__list li {
  opacity: 0;
  animation: detailsFadeItem 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.card__details > .card__list li:nth-child(1) { animation-delay: 0.1s; }
.card__details > .card__list li:nth-child(2) { animation-delay: 0.2s; }
.card__details > .card__list li:nth-child(3) { animation-delay: 0.3s; }
.card__details > .card__list li:nth-child(4) { animation-delay: 0.4s; }
.card__details > .card__list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes detailsSlideIn {
  from {
    opacity: 0;
    transform: translateY(-15px) scaleY(0.95);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes detailsFadeItem {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card__list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card__list li::marker {
  color: var(--border);
}

/* --- Projects Accordion (DiCP) --- */
.projects-accordion {
  margin-top: 1rem;
}

.projects-title {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.projects-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}

.project-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glassmorphism subtle inner glow */
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--accent-glow);
}

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

[data-theme="light"] .project-card {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .project-card:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 20px var(--accent-glow);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.project-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--border);
  color: var(--text-main);
}

.tag--ai {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-hover);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.tag--app {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* --- Premium Certifications Grid --- */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.issuer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(15px);
}

.issuer.card-visible {
  opacity: 1;
  transform: translateY(0);
}

a.issuer:hover {
  text-decoration: none;
  color: inherit;
}

.issuer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.4s ease;
}

[data-theme="light"] .issuer {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.issuer:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .issuer:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Dynamic underlines on hover based on issuer */
.issuer--bloomberg:hover::after {
  background: #ff9900;
  box-shadow: 0 0 10px #ff9900;
}

.issuer--goldman:hover::after {
  background: #7399C6;
  box-shadow: 0 0 10px #7399C6;
}

.issuer--jpm:hover::after {
  background: #cccccc;
  box-shadow: 0 0 10px #cccccc;
}

.issuer--citi:hover::after {
  background: #00a3e0;
  box-shadow: 0 0 10px #00a3e0;
}

.issuer--wso:hover::after {
  background: #1c3faa;
  box-shadow: 0 0 10px #1c3faa;
}

.issuer--pwc:hover::after {
  background: #d04a02;
  box-shadow: 0 0 10px #d04a02;
}

.issuer--hsf:hover::after {
  background: #1a365d;
  box-shadow: 0 0 10px #1a365d;
}

.issuer--ashurst:hover::after {
  background: #003366;
  box-shadow: 0 0 10px #003366;
}

.issuer--freshfields:hover::after {
  background: #00a651;
  box-shadow: 0 0 10px #00a651;
}

.issuer__logo-wrapper {
  flex-shrink: 0;
}

.issuer__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.05em;
  font-family: var(--font-body);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issuer:hover .issuer__logo {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.issuer__content {
  display: flex;
  flex-direction: column;
}

.issuer__provider {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.issuer__title {
  font-weight: 500;
  font-size: 0.9rem;
  white-space: normal;
  line-height: 1.3;
  color: var(--text-muted);
}

/* Colors for issuer logos */
.issuer--bloomberg .issuer__logo {
  background: #000000;
}

.issuer--citi .issuer__logo {
  background: linear-gradient(135deg, #004c97, #00a3e0);
}

.issuer--goldman .issuer__logo {
  background: #7399C6;
}

.issuer--jpm .issuer__logo {
  background: #3b3a39;
}

.issuer--wso .issuer__logo {
  background: #1c3faa;
}

.issuer--pwc .issuer__logo {
  background: #d04a02;
}

.issuer--hsf .issuer__logo {
  background: #1a365d;
}

.issuer--ashurst .issuer__logo {
  background: #003366;
}

.issuer--freshfields .issuer__logo {
  background: #00a651;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.footer p:first-child {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(70px + 2rem);
  }

  .stats-grid {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
    border-top: none;
  }

  .stat-item {
    text-align: center;
  }

  .card__header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .card__meta {
    text-align: left;
  }
}