:root {
  --bg: #08080c;
  --bg-soft: #0d0d13;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.085);
  --border-bright: rgba(255, 255, 255, 0.16);
  --text: #ececf1;
  --muted: #8f8f9b;
  --faint: #5b5b66;
  --accent: #c9f24e;
  --accent-soft: rgba(201, 242, 78, 0.1);
  --accent-line: rgba(201, 242, 78, 0.35);
  --danger: #ff5f56;
  --warn: #ffbd2e;
  --ok: #27c93f;
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --radius: 20px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0a0a0a; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.spotlight {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--sx, 50%) var(--sy, 30%), rgba(201, 242, 78, 0.055), transparent 65%);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 3000;
  box-shadow: 0 0 12px var(--accent-line);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.nav-logo-dot { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

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

.nav-links a.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
  will-change: transform;
}

.btn svg { width: 16px; height: 16px; }

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

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(201, 242, 78, 0.28);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--border-bright);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 14px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) clamp(20px, 4vw, 48px) 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 8px 16px;
  width: fit-content;
  margin-bottom: 28px;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--ok);
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse.small { width: 7px; height: 7px; }

@keyframes ping {
  0% { transform: scale(0.6); opacity: 1; }
  80%, 100% { transform: scale(1.8); opacity: 0; }
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 9.5vw, 118px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.hero-name .line1 { color: var(--text); }

.hero-name .line2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(236, 236, 241, 0.55);
}

.hero-name .line2:hover {
  color: var(--accent);
  -webkit-text-stroke: 1.5px var(--accent);
  transition: color 0.4s, -webkit-text-stroke 0.4s;
}

.hero-sub {
  margin-top: 26px;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18.5px);
}

.hero-sub em {
  font-style: normal;
  color: var(--text);
  font-weight: 600;
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.social {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.social svg { width: 19px; height: 19px; }

.social:hover {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.hero-terminal {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(13, 13, 19, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  overflow: hidden;
  transform: rotate(1.2deg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-terminal:hover { transform: rotate(0deg) translateY(-4px); }

.term-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.022);
}

.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: var(--danger); }
.dot.y { background: var(--warn); }
.dot.g { background: var(--ok); }

.term-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--faint);
}

.term-body {
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.9;
  padding: 22px 24px;
  min-height: 250px;
  color: var(--muted);
}

.term-body .t-line { display: block; white-space: pre-wrap; }

.term-body .t-prompt { color: var(--accent); }
.term-body .t-cmd { color: var(--text); }
.term-body .t-out { color: var(--muted); }
.term-body .t-ok { color: var(--ok); }

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 7vh, 88px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.stat {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--border);
  transition: background 0.3s;
}

.stat:first-child { border-left: none; }

.stat:hover { background: var(--surface-hover); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scroll 36s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
}

.marquee i {
  color: var(--accent);
  font-style: normal;
  font-size: 11px;
}

@keyframes scroll { to { transform: translateX(-50%); } }

.section {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 12vh, 130px) clamp(20px, 4vw, 48px);
}

.wrap { max-width: 1120px; margin: 0 auto; }

.sec-head { margin-bottom: clamp(40px, 6vh, 64px); }

.sec-head.center { text-align: center; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 12px;
  line-height: 1.1;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  border-color: var(--border-bright);
  background: var(--surface-hover);
}

.glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 242, 78, 0.07), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.glow:hover::before { opacity: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.about-text .lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.about-text .lead mark {
  background: none;
  color: var(--accent);
}

.about-text p { color: var(--muted); margin-bottom: 16px; }

.about-text strong { color: var(--text); font-weight: 600; }

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

.about-facts .fact:first-child { grid-column: 1 / -1; }

.fact {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fact-k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
}

.fact-v {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 36px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(var(--border-bright), var(--border) 80%, transparent);
}

.tl-item { position: relative; }

.tl-dot {
  position: absolute;
  left: -33px;
  top: 28px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.tl-card { padding: 28px 32px; }

.tl-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tl-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tl-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

.date-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
}

.tl-card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }

.tl-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
}

.tl-card li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.tl-card li a { color: var(--accent); border-bottom: 1px solid var(--accent-line); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tags span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  transition: color 0.25s, border-color 0.25s;
}

.card:hover .tags span, .p-card:hover .tags span { color: var(--text); border-color: var(--border-bright); }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.p-card {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-card:hover { transform: translateY(-4px); }

.p-lg { grid-column: span 7; }

.p-alt { grid-column: span 5; }

.bento > .p-card:not(.p-lg) { grid-column: span 4; }

.p-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.p-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.p-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 12px;
}

.p-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  transition: color 0.25s;
}

.p-link:hover { color: var(--accent); }

.p-link svg { width: 13px; height: 13px; }

.p-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.p-lg h3 { font-size: 32px; }

.p-card p { color: var(--muted); font-size: 15px; }

.p-meta {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--faint);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chips span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 8px;
  padding: 5px 10px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.skill { padding: 24px 26px; }

.skill-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.skill-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}

.skill-level {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
}

.skill-level.expert { color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); }
.skill-level.advanced { color: #9fe8ff; background: rgba(159, 232, 255, 0.08); border: 1px solid rgba(159, 232, 255, 0.25); }
.skill-level.mid { color: var(--muted); background: var(--surface-hover); border: 1px solid var(--border); }

.bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(201, 242, 78, 0.5), var(--accent));
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.skill.visible .fill, .skill.in-view .fill { width: var(--lv); }

.skill-tags {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--faint);
}

.edu-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.edu-col { display: flex; flex-direction: column; gap: 18px; }

.edu-card { padding: 28px 30px; display: flex; gap: 20px; align-items: flex-start; }

.edu-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
}

.edu-icon svg { width: 22px; height: 22px; }

.edu-body h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; }

.edu-school { display: block; font-family: var(--font-mono); font-size: 12.5px; color: var(--accent); margin: 6px 0 10px; }

.edu-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }

.cert-col { padding: 28px 30px; }

.cert-title {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.cert-list { display: flex; flex-direction: column; }

.cert-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px 14px;
  align-items: center;
  padding: 15px 4px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
}

.cert-list li:first-child { border-top: none; }

.cert-name { font-weight: 500; }

.cert-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  opacity: 0.85;
}

.cert-link:hover { opacity: 1; text-decoration: underline; }

.cert-date {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--faint);
}

.contact { text-align: center; }

.contact-title { font-size: clamp(40px, 6vw, 72px); }

.contact-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}

.contact-sub {
  max-width: 52ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-actions {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.contact-mail {
  font-family: var(--font-mono);
  font-size: clamp(17px, 2.6vw, 26px);
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 6px;
}

.contact-mail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-mail:hover { color: var(--accent); }

.contact-mail:hover::after { transform: scaleX(1); }

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

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 28px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: var(--faint);
}

.foot-mono { font-family: var(--font-mono); font-size: 12px; }

.to-top { color: var(--muted); transition: color 0.25s; }

.to-top:hover { color: var(--accent); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-terminal { max-width: 560px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--border); }
  .about-grid { grid-template-columns: 1fr; }
  .p-lg, .p-alt { grid-column: span 12; }
  .bento > .p-card:not(.p-lg) { grid-column: span 12; }
  .edu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .timeline { padding-left: 26px; }
  .timeline::before { left: 4px; }
  .tl-dot { left: -25px; width: 13px; height: 13px; }
  .tl-card { padding: 22px 22px; }
  .p-card { padding: 24px 22px; }
  .about-facts { grid-template-columns: 1fr; }
  .term-body { min-height: 220px; font-size: 12.5px; }
  .cert-list li { grid-template-columns: 1fr auto; }
  .cert-date { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
