/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --bg:            #09090c;
  --bg-alt:        #0d0e13;
  --bg-card:       #111318;
  --border:        rgba(217, 119, 6, 0.13);
  --border-hover:  rgba(217, 119, 6, 0.38);
  --accent:        #d97706;
  --accent-2:      #0ea5e9;
  --accent-glow:   rgba(217, 119, 6, 0.22);
  --emerald:       #10b981;
  --text:          #f2ede4;
  --text-muted:    #9694a0;
  --text-faint:    #4c4a56;
  --font:          'Plus Jakarta Sans', sans-serif;
  --mono:          'JetBrains Mono', monospace;
  --radius:        12px;
  --radius-lg:     18px;
  --t:             0.3s ease;
  --shadow-glow:   0 0 40px rgba(217, 119, 6, 0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--bg); }
::-webkit-scrollbar-thumb        { background: var(--border-hover); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--t);
}

#navbar.scrolled {
  background: rgba(7, 8, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-dot { color: var(--accent); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--t);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: opacity var(--t) !important;
}

.nav-cta:hover { opacity: 0.82 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(217, 119, 6, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(14, 165, 233, 0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem;
}

.hero-greeting {
  font-size: 0.95rem;
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1rem;
  background: linear-gradient(140deg, var(--text) 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.hero-role-wrapper {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.6s forwards;
}

#typed-text {
  color: var(--accent-2);
  font-family: var(--mono);
}

.typed-cursor {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.0s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #09090c;
  box-shadow: 0 0 28px rgba(217, 119, 6, 0.32);
  font-weight: 700;
}

.btn-primary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(217, 119, 6, 0.52);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s ease 1.4s forwards;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  font-family: var(--mono);
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   SECTIONS (SHARED)
   ============================================================ */
.section { padding: 6rem 0; }
.section-alt {
  background: var(--bg-alt);
  background-image: radial-gradient(rgba(217, 119, 6, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid var(--border);
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-subtitle {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.85;
}

.about-text strong { color: var(--text); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--t);
}

.stat-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ============================================================
   SKILLS
   ============================================================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--t);
}

.skill-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.skill-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(217, 119, 6, 0.09);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.skill-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-family: var(--mono);
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  font-weight: 500;
  transition: var(--t);
}

.tag-indigo {
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent);
  border: 1px solid rgba(217, 119, 6, 0.22);
}
.tag-indigo:hover { background: rgba(217, 119, 6, 0.18); }

.tag-sky {
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-2);
  border: 1px solid rgba(14, 165, 233, 0.22);
}
.tag-sky:hover { background: rgba(14, 165, 233, 0.18); }

.tag-emerald {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald);
  border: 1px solid rgba(52, 211, 153, 0.22);
}
.tag-emerald:hover { background: rgba(52, 211, 153, 0.2); }

.tag-sm {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  background: rgba(217, 119, 6, 0.08);
  color: var(--accent);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 100px;
  font-family: var(--mono);
}

/* ============================================================
   EXPERIENCE TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 1.75rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(217, 119, 6, 0.28) 70%, transparent 100%);
}

.timeline-item {
  position: relative;
  padding-left: 2.25rem;
  padding-bottom: 2.75rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -1.125rem;
  top: 1.5rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  border: 2.5px solid var(--bg);
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.5);
  transition: transform var(--t);
}

.timeline-item:hover .timeline-dot { transform: scale(1.35); }

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--t);
}

.timeline-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.timeline-meta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.timeline-company {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}

.timeline-date {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-family: var(--mono);
  white-space: nowrap;
  background: rgba(217, 119, 6, 0.07);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.timeline-list {
  list-style: none;
  margin-bottom: 1.25rem;
}

.timeline-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.timeline-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.65rem;
  top: 0.35em;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ============================================================
   EDUCATION
   ============================================================ */
.edu-list {
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto;
}

.edu-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--t);
}

.edu-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.edu-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(217, 119, 6, 0.09);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.edu-icon-done {
  background: rgba(52, 211, 153, 0.1);
  color: var(--emerald);
  border-color: rgba(52, 211, 153, 0.22);
}

.edu-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.edu-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.edu-school {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}

.edu-year-badge {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-family: var(--mono);
  white-space: nowrap;
  background: rgba(217, 119, 6, 0.07);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.edu-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.edu-progress-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-track {
  flex: 1;
  height: 4px;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
  font-size: 0.75rem;
  color: var(--accent);
  font-family: var(--mono);
  white-space: nowrap;
}

.badge-done {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--emerald);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-weight: 600;
}

.edu-divider {
  width: 1.5px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(217, 119, 6, 0.38), rgba(217, 119, 6, 0.1));
  margin: 0 0 0 calc(1.75rem + 26px - 1px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: var(--t);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(217, 119, 6, 0.09);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 1rem;
  transition: var(--t);
}

.contact-card:hover .contact-icon {
  background: rgba(217, 119, 6, 0.18);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--mono);
}

/* ============================================================
   OPEN BADGE
   ============================================================ */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(52, 211, 153, 0.09);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.15s forwards;
}

.open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ============================================================
   EDU LINK
   ============================================================ */
.edu-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
.edu-link:hover { border-bottom-color: var(--accent); }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.25rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.project-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(217, 119, 6, 0.09);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.project-github-link {
  color: var(--text-faint);
  transition: color var(--t);
  display: flex;
  align-items: center;
}

.project-github-link:hover { color: var(--text); }

.project-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-family: var(--mono);
}

.project-subtitle {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.project-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  flex: 1;
}

.project-desc strong { color: var(--text); }

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  text-align: center;
}

footer p {
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: rgba(9, 9, 14, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.75rem;
    transition: right var(--t);
    z-index: 99;
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1.1rem; }

  .hamburger {
    display: flex;
    z-index: 101;
  }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .section { padding: 4rem 0; }

  .edu-divider { margin-left: calc(1.75rem + 26px - 1px); }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .timeline { padding-left: 1.25rem; }

  .timeline-dot { left: -0.875rem; }

  .timeline-item { padding-left: 1.75rem; }

  .edu-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .edu-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .edu-divider { margin-left: auto; margin-right: auto; }

  .hero-actions { flex-direction: column; align-items: center; }
}
