/* ============================================================
   TRACY PROFILE — Shared Stylesheet
   tracy-style.css
   Source: tracynew.html
   ============================================================ */

:root {
  --bg-deep:    #020b18;
  --bg-card:    #071428;
  --bg-card2:   #0a1d36;
  --electric:   #00c8ff;
  --cyan:       #00fff7;
  --accent2:    #0066ff;
  --accent3:    #7b2fff;
  --text:       #e8f4ff;
  --text-muted: #6b8db5;
  --border:     rgba(0,200,255,0.15);
  --glow:       0 0 24px rgba(0,200,255,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

/* ── CANVAS BACKGROUND ── */
#canvas-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── LAYOUT ── */
.wrapper { position: relative; z-index: 1; }

section { padding: 100px 0; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── HERO ── */
#tp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.tp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--electric);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,255,247,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(0,255,247,0); }
}

.hero-name {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-title span {
  color: var(--electric);
  font-weight: 600;
}

.hero-summary {
  font-size: 0.97rem;
  color: #9bb8d8;
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat {
  text-align: left;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--electric);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem !important;
  color: var(--text-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-top: 4px !important;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--electric), var(--accent2));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,200,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,200,255,0.45);
}

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: transparent;
  color: var(--electric);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 2px solid rgba(0,200,255,0.45);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.hero-cta-ghost:hover {
  border-color: var(--electric);
  background: rgba(0,200,255,0.07);
  transform: translateY(-2px);
}

/* ── HERO CARD (right) ── */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,200,255,0.1) 0%, transparent 70%);
}

.profile-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.profile-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background: #0d1f3c;
  padding: 0;
  box-shadow: 0 0 0 3px rgba(0,200,255,0.5), 0 0 30px rgba(0,200,255,0.3);
}

.card-name {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.card-loc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 24px;
}

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

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.info-row .label {
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

.info-row .value {
  color: var(--electric);
  font-weight: 600;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-blue   { background: rgba(0,102,255,0.15); color: #5599ff; border: 1px solid rgba(0,102,255,0.3); }
.badge-cyan   { background: rgba(0,200,255,0.1);  color: var(--electric); border: 1px solid rgba(0,200,255,0.25); }
.badge-purple { background: rgba(123,47,255,0.15); color: #b07aff; border: 1px solid rgba(123,47,255,0.3); }

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--electric);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tp-section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.tp-section-desc {
  margin-top: 12px;
  color: var(--text-muted);
  max-width: 580px;
}

/* ── ABOUT ── */
#about { background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card2) 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-text p {
  color: #9bb8d8 !important;
  margin-bottom: 16px;
  line-height: 1.85;
  font-size: 0.96rem !important;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  font-size: 0.83rem;
  color: #9bb8d8;
  transition: border-color 0.2s, transform 0.2s;
}

.service-item:hover {
  border-color: rgba(0,200,255,0.35);
  transform: translateY(-2px);
}

.service-icon { color: var(--electric); font-size: 1rem; flex-shrink: 0; }

/* ── SKILLS ── */
#skills { background: var(--bg-card2); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.skill-card:hover {
  border-color: rgba(0,200,255,0.4);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.skill-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.skill-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.skill-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Skill Bars */
.skill-bar-group { margin-top: 12px; }

.skill-bar-item {
  margin-bottom: 18px;
}

.skill-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.skill-bar-name { color: var(--text); font-weight: 500; }
.skill-bar-pct  { color: var(--electric); font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; }

.skill-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent2), var(--electric));
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  width: 0;
}

/* ── MARATHON SYSTEM ── */
#marathon { background: var(--bg-deep); border-top: none !important; border-bottom: none !important; }

.marathon-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.marathon-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.marathon-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.marathon-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--electric);
  margin-bottom: 16px;
  font-weight: 500;
}

.marathon-desc {
  font-size: 0.95rem;
  color: #9bb8d8;
  line-height: 1.8;
  max-width: 640px;
}

.marathon-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.marathon-logo-box {
  width: 100px; height: 100px;
  background: rgba(0,200,255,0.06);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}

.marathon-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--electric);
  text-decoration: none;
  letter-spacing: 0.05em;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.marathon-url:hover { opacity: 1; }

.marathon-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tp-mf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.tp-mf-card:hover {
  border-color: rgba(0,200,255,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,200,255,0.1);
}

.tp-mf-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(90deg, var(--electric), var(--accent2));
  opacity: 0;
  transition: opacity 0.2s;
}

.tp-mf-card:hover::after { opacity: 1; }

.mf-icon { font-size: 1.9rem !important; margin-bottom: 14px; }

.mf-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.mf-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.mf-highlight {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--electric) !important;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

.marathon-quote {
  background: var(--bg-card2);
  border-left: 3px solid var(--electric);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-top: 8px;
}

.marathon-quote p {
  font-size: 1rem;
  color: #c0d8f0;
  line-height: 1.8;
  font-style: italic;
}

.marathon-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 900px) {
  .marathon-features { grid-template-columns: 1fr; }
  .marathon-hero-inner { grid-template-columns: 1fr; }
  .marathon-cta-wrap { flex-direction: row; }
}

/* ── AI TOOLS ── */
#ai-tools { background: var(--bg-card2); }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ai-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,200,255,0.2);
}

.ai-card::before {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.12;
}

.ai-claude::before  { background: #ff6b35; }
.ai-gemini::before  { background: #4285f4; }
.ai-copilot::before { background: #00a4ef; }
.ai-chatgpt::before { background: #10a37f; }

.ai-logo {
  width: 64px; height: 64px;
  border-radius: 14px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.ai-claude  .ai-logo { background: linear-gradient(135deg, #cc4e1e, #ff8c5a); }
.ai-gemini  .ai-logo { background: linear-gradient(135deg, #1a73e8, #34a853); }
.ai-copilot .ai-logo { background: linear-gradient(135deg, #00a4ef, #7a43b6); }
.ai-chatgpt .ai-logo { background: linear-gradient(135deg, #10a37f, #0d8a6a); }

.ai-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ai-maker {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ai-desc {
  font-size: 0.85rem;
  color: #9bb8d8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.ai-tag {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(0,200,255,0.08);
  color: var(--electric);
  border: 1px solid rgba(0,200,255,0.2);
}

/* ── EXPERIENCE ── */
#experience { background: var(--bg-card2); }

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--electric), var(--accent3), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 32px;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--electric);
  box-shadow: 0 0 10px rgba(0,200,255,0.5);
}

.timeline-dot.active {
  background: var(--electric);
  box-shadow: 0 0 16px rgba(0,200,255,0.8);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s;
}

.timeline-card:hover { border-color: rgba(0,200,255,0.35); }

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

.timeline-company {
  font-weight: 700;
  font-size: 1rem;
  color: var(--electric);
}

.timeline-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(0,200,255,0.06);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 6px;
}

.timeline-role {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: #7a9ec0;
  line-height: 1.75;
}

/* ── EDUCATION ── */
#education { background: var(--bg-deep); }

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

.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.2s, transform 0.2s;
}

.edu-card:hover {
  border-color: rgba(0,200,255,0.35);
  transform: translateY(-2px);
}

.edu-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.edu-name   { font-weight: 700; font-size: 0.97rem; margin-bottom: 4px; }
.edu-detail { font-size: 0.82rem; color: var(--text-muted); }

/* ── CONTACT ── */
#tp-contact {
  background: linear-gradient(180deg, var(--bg-card2) 0%, var(--bg-deep) 100%);
  text-align: center;
}

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--glow);
}

.contact-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn-primary {
  background: linear-gradient(135deg, var(--electric), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,200,255,0.25);
}

.contact-btn-outline {
  background: transparent;
  color: var(--electric);
  border: 1px solid rgba(0,200,255,0.4);
}

.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,200,255,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .skills-grid, .ai-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  section { padding: 60px 0; }
  .contact-box { padding: 32px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHT MODE ── */
@media (prefers-color-scheme: light) {
  /* ── CSS VARIABLES ── */
  :root {
    --bg-deep:    #F5F7FB;
    --bg-card:    #FFFFFF;
    --bg-card2:   #EBF0FA;
    --electric:   #0055A5;
    --cyan:       #006E7A;
    --accent2:    #0044CC;
    --accent3:    #5500BB;
    --text:       #0D1117;
    --text-muted: #4A5878;
    --border:     #D0DAF0;
    --glow:       0 2px 12px rgba(0,85,165,0.08);
  }

  /* ── CANVAS ── */
  #canvas-bg { opacity: 0.4; }

  /* ── BODY & SECTIONS ── */
  body        { background: #F5F7FB !important; color: #0D1117 !important; }
  #tp-hero    { background: linear-gradient(160deg, #F0F5FF 0%, #E8EEFA 100%) !important; }
  #about      { background: #FFFFFF !important; }
  #skills     { background: #F5F7FB !important; }
  #marathon   { background: #FFFFFF !important; }
  #ai-tools   { background: #F0F5FF !important; }
  #experience { background: #FFFFFF !important; }
  #education  { background: #F5F7FB !important; }
  #tp-contact { background: #F0F5FF !important; }

  /* ── CARDS & SURFACES ── */
  .hero-card, .skill-card, .tp-mf-card, .ai-card,
  .timeline-card, .edu-card, .contact-box, .marathon-hero {
    background: #FFFFFF !important;
    border-color: #C8D8F0 !important;
    box-shadow: 0 4px 24px rgba(0,85,165,0.12) !important;
  }
  .hero-card:hover      { box-shadow: 0 8px 36px rgba(0,85,165,0.2) !important; }
  .skill-card:hover     { box-shadow: 0 8px 32px rgba(0,85,165,0.18) !important; border-color: rgba(0,85,165,0.4) !important; }
  .tp-mf-card:hover     { box-shadow: 0 8px 32px rgba(0,85,165,0.18) !important; border-color: rgba(0,85,165,0.4) !important; }
  .hero-card::before    { background: radial-gradient(circle, rgba(0,85,165,0.08) 0%, transparent 70%) !important; }
  .marathon-hero::before{ background: radial-gradient(circle, rgba(0,85,165,0.07) 0%, transparent 70%) !important; }
  .service-item {
    background: #FFFFFF !important;
    border-color: #D0DAF0 !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05) !important;
    color: #0D1117 !important;
  }
  .marathon-quote {
    background: #EBF0FA !important;
    border-left-color: #0055A5 !important;
  }

  /* ── ALL TEXT ── */
  h1, h2, h3, h4, h5, h6          { color: #0D1117 !important; -webkit-text-fill-color: #0D1117 !important; }
  p, li, span, div                 { color: inherit; }
  .hero-summary                    { color: #4A5878 !important; }
  .hero-title                      { color: #4A5878 !important; }
  .hero-title span                 { color: #0055A5 !important; }
  .tp-eyebrow                      { color: #0055A5 !important; }
  .about-text p                    { color: #2A3A5C !important; }
  .tp-section-desc                 { color: #4A5878 !important; }
  .section-eyebrow                 { color: #0055A5 !important; }
  .marathon-desc                   { color: #2A3A5C !important; }
  .marathon-tagline                { color: #0055A5 !important; }
  .marathon-quote p                { color: #1A2A4A !important; }
  .marathon-quote cite             { color: #4A5878 !important; }
  .mf-title                        { color: #0D1117 !important; }
  .mf-desc                         { color: #4A5878 !important; }
  .mf-highlight                    { color: #0055A5 !important; }
  .ai-desc                         { color: #2A3A5C !important; }
  .ai-title                        { color: #0D1117 !important; }
  .ai-maker                        { color: #4A5878 !important; }
  .timeline-company                { color: #0055A5 !important; }
  .timeline-role                   { color: #0D1117 !important; }
  .timeline-desc                   { color: #4A5878 !important; }
  .skill-card-title                { color: #0D1117 !important; }
  .skill-card-desc                 { color: #4A5878 !important; }
  .skill-bar-name                  { color: #0D1117 !important; }
  .skill-bar-pct                   { color: #0055A5 !important; }
  .card-name                       { color: #0D1117 !important; }
  .card-loc                        { color: #4A5878 !important; }
  .info-row .label                 { color: #4A5878 !important; }
  .info-row .value                 { color: #0055A5 !important; }
  .stat-value                      { color: #0055A5 !important; }
  .stat-label                      { color: #4A5878 !important; }
  .edu-name                        { color: #0D1117 !important; }
  .edu-detail                      { color: #4A5878 !important; }

  /* ── GRADIENT TEXT (name) ── */
  .gradient-text {
    background: linear-gradient(90deg, #0055A5, #006E7A) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  /* ── HERO CTA BUTTON ── */
  .hero-cta {
    background: linear-gradient(135deg, #0055A5, #0044CC) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 16px rgba(0,85,165,0.2) !important;
  }

  /* ── SKILL BARS ── */
  .skill-bar-track { background: #D0DAF0 !important; }
  .skill-bar-fill  { background: linear-gradient(90deg, #0044CC, #0055A5) !important; }

  /* ── BADGES ── */
  .badge-blue   { background: #EBF0FA !important; color: #0044CC !important; border-color: #B8CCEE !important; }
  .badge-cyan   { background: #E6F4F7 !important; color: #006E7A !important; border-color: #A8D8E0 !important; }
  .badge-purple { background: #F0EAFA !important; color: #5500BB !important; border-color: #C8B0E8 !important; }
  .ai-tag       { background: #EBF0FA !important; color: #0055A5 !important; border-color: #B8CCEE !important; }

  /* ── TIMELINE ── */
  .timeline::before    { background: linear-gradient(180deg, #0055A5, #0044CC, transparent) !important; }
  .timeline-dot        { background: #F5F7FB !important; border-color: #0055A5 !important; box-shadow: 0 0 8px rgba(0,85,165,0.3) !important; }
  .timeline-dot.active { background: #0055A5 !important; box-shadow: 0 0 14px rgba(0,85,165,0.5) !important; }
  .timeline-date       { background: #EBF0FA !important; border-color: #D0DAF0 !important; color: #4A5878 !important; }

  /* ── PROFILE CARD ── */
  .profile-logo  { background: transparent !important; box-shadow: 0 0 0 3px rgba(0,85,165,0.5), 0 0 20px rgba(0,85,165,0.2) !important; }
  .card-divider  { background: #D0DAF0 !important; }

  /* ── EDUCATION ── */
  .edu-icon { background: #EBF0FA !important; border-color: #D0DAF0 !important; }

  /* ── CONTACT ── */
  .contact-btn-primary {
    background: linear-gradient(135deg, #0055A5, #0044CC) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 16px rgba(0,85,165,0.2) !important;
  }
  .contact-btn-outline {
    color: #0055A5 !important;
    border-color: #B8CCEE !important;
    background: transparent !important;
  }

  /* ── MARATHON LOGO BOX ── */
  .marathon-logo-box { background: #EBF0FA !important; border-color: #D0DAF0 !important; }
  .marathon-url      { color: #0055A5 !important; }

  /* ── DOT PULSE ── */
  .dot-pulse { background: #006E7A !important; }

  /* ── AI CARD GLOWS ── */
  .ai-card::before  { opacity: 0.08 !important; }
  .ai-card:hover    { box-shadow: 0 10px 40px rgba(0,85,165,0.2) !important; border-color: rgba(0,85,165,0.35) !important; }
}
