:root {
  --bg: #07090d;
  --bg-deep: #030507;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-hover: rgba(255, 255, 255, 0.045);
  --text: #f4f6f8;
  --text-soft: #c3c9d1;
  --muted: #808895;
  --quiet: #747d89;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --blue: #3b9cff;
  --blue-bright: #70b7ff;
  --blue-dim: rgba(59, 156, 255, 0.13);
  --green: #58d68d;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-sans: "Avenir Next", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--quiet) var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -20%, rgba(59, 156, 255, 0.08), transparent 38%),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 22%, var(--bg));
}

::selection { color: #03101c; background: var(--blue-bright); }

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

button, a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; font: inherit; }

:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #06111d;
  background: var(--blue-bright);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }

.ambient {
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  height: 1050px;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  will-change: transform;
}

.ambient__orb--one {
  top: 120px;
  right: -210px;
  width: 620px;
  height: 620px;
  opacity: .42;
  background: radial-gradient(circle at 36% 42%, rgba(112, 183, 255, .22), rgba(59, 156, 255, .035) 42%, transparent 68%);
  animation: breathe 10s ease-in-out infinite alternate;
}

.ambient__orb--two {
  top: 380px;
  left: -260px;
  width: 560px;
  height: 560px;
  opacity: .24;
  background: radial-gradient(circle, rgba(59, 156, 255, .16), transparent 66%);
  animation: breathe 13s ease-in-out -3s infinite alternate-reverse;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: .13;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(700px) rotateX(60deg) scale(1.3) translateY(-7%);
  transform-origin: 50% 0;
}

@keyframes breathe {
  from { scale: .94; opacity: .28; }
  to { scale: 1.08; opacity: .48; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, .62);
  backdrop-filter: blur(16px) saturate(120%);
  transition: border-color 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(7, 9, 13, .86);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; letter-spacing: -.01em; }
.brand__name { letter-spacing: .025em; }

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #f4f4f2;
  border-radius: 50%;
}

.brand__mark img { display: block; width: 100%; height: 100%; object-fit: cover; }

.nav__menu { display: flex; align-items: center; gap: 26px; }

.nav__menu > a:not(.nav__cta) { color: var(--muted); font-size: 13px; font-weight: 600; transition: color 180ms ease; }
.nav__menu > a:not(.nav__cta):hover { color: var(--text); }

.language-toggle {
  min-width: 62px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.language-toggle:hover { color: var(--text); border-color: rgba(255,255,255,.18); background: var(--surface-hover); }
.language-toggle__current { color: var(--text); }

.nav__cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.nav__cta { min-height: 40px; color: #06111d; background: var(--text); border-color: var(--text); }
.nav__cta:hover, .button--primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); transform: translateY(-2px); }

.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 50%; cursor: pointer; }
.nav__toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: var(--text); transition: transform 180ms ease; }

.hero {
  display: flex;
  min-height: calc(100svh - 72px);
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(72px, 10vh, 130px) 44px;
}

.hero__status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(34px, 6vh, 68px);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .02em;
}

.status-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(88, 214, 141, .08); }

.hero__layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(300px, .65fr); align-items: end; gap: clamp(50px, 8vw, 120px); }

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(3.25rem, 7.3vw, 6.9rem);
  font-weight: 530;
  letter-spacing: -.025em;
  line-height: .94;
  text-wrap: balance;
}

.hero__lede {
  max-width: 700px;
  margin: 34px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button--primary { color: #06111d; background: var(--text); border-color: var(--text); }
.button--ghost { color: var(--text-soft); background: rgba(255,255,255,.025); }
.button--ghost:hover { color: var(--text); background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }

.hero__signal {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 30px 80px rgba(0,0,0,.25);
  will-change: transform;
}

.hero__signal::after {
  content: "";
  position: absolute;
  inset: auto -20% -70% 10%;
  height: 220px;
  background: radial-gradient(circle, rgba(59, 156, 255, .14), transparent 66%);
  pointer-events: none;
}

.signal__topline, .signal__meta { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.signal__live { color: var(--green); }
.signal__headline { margin: 58px 0 28px; font-size: 24px; font-weight: 520; letter-spacing: -.035em; line-height: 1.18; }
.signal__stack { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0 0 56px; list-style: none; }
.signal__stack li, .project__tags li { padding: 6px 9px; border: 1px solid var(--line-soft); color: var(--muted); background: rgba(255,255,255,.018); border-radius: 999px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .03em; }

.hero__scroll { display: flex; align-items: center; gap: 14px; margin-top: clamp(46px, 8vh, 90px); color: var(--quiet); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.hero__scroll-line { width: 76px; height: 1px; overflow: hidden; background: var(--line); }
.hero__scroll-line::after { content: ""; display: block; width: 36px; height: 1px; background: var(--blue); animation: scroll-line 2.4s ease-in-out infinite; }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 50%, 100% { transform: translateX(220%); } }

.section { padding-block: clamp(96px, 13vw, 170px); }

.section__heading { display: grid; grid-template-columns: minmax(170px, .42fr) minmax(0, 1.3fr); column-gap: 70px; margin-bottom: clamp(50px, 8vw, 96px); }
.section__heading .eyebrow { grid-row: 1 / span 2; }
.section__heading h2, .about h2, .contact h2 { max-width: 780px; margin: 0; font-size: clamp(2.35rem, 5vw, 5rem); font-weight: 520; letter-spacing: -.055em; line-height: 1.02; text-wrap: balance; }
.section__heading h2.section__lead { max-width: 680px; color: var(--text-soft); font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 470; letter-spacing: -.025em; line-height: 1.35; text-wrap: pretty; }
.section__heading > p:last-child { max-width: 630px; margin: 25px 0 0; color: var(--muted); font-size: 17px; }

.projects { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.project {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  border-radius: var(--radius);
  transition: border-color 300ms ease, background 300ms ease, transform 300ms var(--ease);
}
.project:hover { border-color: rgba(59,156,255,.28); background: var(--surface-hover); transform: translateY(-4px); }
.project--compact { min-height: 430px; }
.project--wide { grid-column: 1 / -1; display: grid; min-height: 600px; grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr); column-gap: clamp(50px, 8vw, 110px); }
.project__index { position: absolute; top: 24px; right: 28px; color: var(--quiet); font-family: var(--font-mono); font-size: 11px; }
.project__body { position: relative; z-index: 1; align-self: end; }
.project--wide .project__body { align-self: center; }
.project__meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.project h3 { max-width: 620px; margin: 0 0 20px; font-size: clamp(1.8rem, 3.2vw, 3.2rem); font-weight: 520; letter-spacing: -.045em; line-height: 1.05; }
.project p { max-width: 660px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.project__tags { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 28px 0 0; list-style: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--blue-bright); font-size: 13px; font-weight: 600; }
.text-link:hover span:last-child { transform: translate(3px, -3px); }
.text-link span:last-child { transition: transform 180ms var(--ease); }

.project__visual { display: grid; align-self: center; place-items: center; }
.terminal { width: min(100%, 560px); overflow: hidden; border: 1px solid var(--line); background: #080b10; border-radius: 10px; box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 80px rgba(59,156,255,.055); transform: perspective(1000px) rotateY(-4deg) rotateX(2deg); }
.terminal__bar { display: flex; align-items: center; gap: 6px; min-height: 40px; padding: 0 14px; border-bottom: 1px solid var(--line-soft); color: var(--quiet); font-family: var(--font-mono); font-size: 9px; }
.terminal__bar i { display: block; width: 7px; height: 7px; background: var(--quiet); border-radius: 50%; }
.terminal__bar span { margin-left: 8px; }
.terminal__content { min-height: 280px; padding: 30px; font-family: var(--font-mono); font-size: 12px; }
.terminal__content p { color: #929cab; font-size: 12px; }
.terminal__prompt { color: var(--blue-bright); }
.terminal__content .terminal__success { margin: 8px 0 26px; color: var(--green); }
.terminal__row { display: grid; grid-template-columns: 1fr 1fr; padding: 10px 0; border-bottom: 1px solid var(--line-soft); color: var(--text-soft); }
.terminal__row span:last-child { color: var(--green); text-align: right; }

.flow { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 55px; padding: 22px 0 0; border-top: 1px solid var(--line-soft); color: var(--text-soft); font-family: var(--font-mono); font-size: 11px; }
.flow i { position: relative; height: 1px; flex: 1; overflow: hidden; background: var(--line); }
.flow i::after { content: ""; position: absolute; width: 35%; height: 100%; background: var(--blue); animation: flow 2.8s ease-in-out infinite; }
@keyframes flow { from { transform: translateX(-110%); } to { transform: translateX(310%); } }

.section--split { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 12vw, 160px); }
.section--split .section__heading { display: block; margin: 0; }
.section__heading--sticky { position: sticky; top: 130px; align-self: start; }
.section--split .section__heading h2 { font-size: clamp(2.4rem, 4vw, 4.4rem); }
.timeline { border-top: 1px solid var(--line); }
.timeline__item { position: relative; padding: 42px 0 48px 34px; border-bottom: 1px solid var(--line); }
.timeline__item::before { content: ""; position: absolute; top: 50px; left: 0; width: 7px; height: 7px; border: 1px solid var(--blue); border-radius: 50%; box-shadow: 0 0 0 6px var(--blue-dim); }
.timeline__date { margin-bottom: 24px; color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.timeline h3 { margin: 0; font-size: 25px; font-weight: 520; letter-spacing: -.035em; }
.timeline__org { margin: 5px 0 18px !important; color: var(--blue-bright) !important; font-family: var(--font-mono); font-size: 11px !important; }
.timeline p { margin: 0; color: var(--muted); line-height: 1.75; }

.capabilities { border-top: 1px solid var(--line); }
.capability { display: grid; grid-template-columns: 80px minmax(220px, .7fr) 1.3fr; align-items: start; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); transition: padding 280ms var(--ease), background 280ms ease; }
.capability:hover { padding-inline: 14px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.018), transparent); }
.capability__number { color: var(--quiet); font-family: var(--font-mono); font-size: 10px; }
.capability h3 { margin: 0; font-size: 20px; font-weight: 520; letter-spacing: -.025em; }
.capability p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.education__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; }
.education__primary, .certifications { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line-soft); background: var(--surface); border-radius: var(--radius); }
.education__label { margin: 0 0 38px; color: var(--blue-bright); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.education__primary h3 { margin: 0; font-size: clamp(2rem, 3.6vw, 3.8rem); font-weight: 520; letter-spacing: -.05em; line-height: 1.04; }
.education__primary > p:not(.education__label) { color: var(--muted); }
.education__count { display: flex; align-items: end; gap: 22px; margin-top: 90px; padding-top: 30px; border-top: 1px solid var(--line); }
.education__count strong { color: var(--blue-bright); font-size: clamp(3.4rem, 6vw, 6.4rem); font-weight: 510; letter-spacing: -.07em; line-height: .8; }
.education__count span { max-width: 260px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.certifications ul { padding: 0; margin: 0; list-style: none; }
.certifications li { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.certifications li span { font-size: 14px; }
.certifications small { flex: 0 0 auto; color: var(--muted); font-family: var(--font-mono); font-size: 9px; }
.training-note { margin: 24px 0 0; color: var(--quiet); font-size: 11px; line-height: 1.65; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 12vw, 160px); }
.about h2 { font-size: clamp(2.5rem, 4.3vw, 4.6rem); }
.about__content { padding-top: 36px; }
.about__content > p { max-width: 650px; margin: 0 0 24px; color: var(--text-soft); font-size: 18px; line-height: 1.75; }
.language-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0; margin: 58px 0 0; list-style: none; }
.language-list li { display: flex; flex-direction: column; gap: 3px; padding-top: 15px; border-top: 1px solid var(--line); }
.language-list strong { font-size: 13px; font-weight: 580; }
.language-list small { color: var(--muted); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; }

.contact { padding-block: clamp(120px, 18vw, 240px); }
.contact__inner { position: relative; overflow: hidden; padding: clamp(40px, 8vw, 92px); border: 1px solid rgba(59,156,255,.2); background: linear-gradient(145deg, rgba(59,156,255,.07), rgba(255,255,255,.018) 48%, rgba(255,255,255,.01)); border-radius: var(--radius); }
.contact__inner::after { content: ""; position: absolute; right: -170px; bottom: -260px; width: 580px; height: 580px; border: 1px solid rgba(59,156,255,.18); border-radius: 50%; box-shadow: 0 0 0 75px rgba(59,156,255,.018), 0 0 0 150px rgba(59,156,255,.012); pointer-events: none; }
.contact h2 { position: relative; z-index: 1; max-width: 900px; }
.contact__inner > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 600px; margin: 28px 0 50px; color: var(--muted); font-size: 17px; }
.contact__email { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 16px; padding-bottom: 6px; border-bottom: 1px solid var(--blue); color: var(--text); font-size: clamp(1.05rem, 2.5vw, 2rem); font-weight: 520; letter-spacing: -.03em; }
.contact__email:hover { color: var(--blue-bright); }
.contact__links { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 28px; margin-top: 60px; }
.contact__links a { color: var(--muted); font-size: 12px; font-weight: 600; }
.contact__links a:hover { color: var(--text); }

.footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; min-height: 110px; border-top: 1px solid var(--line-soft); color: var(--quiet); font-size: 10px; }
.footer a:hover { color: var(--text); }

.reveal { opacity: 1; transform: translateY(0); }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 850ms var(--ease), transform 850ms var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 760px); }
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(10, 13, 18, .98);
    border-radius: 12px;
    box-shadow: 0 28px 70px rgba(0,0,0,.5);
  }
  .nav__menu.is-open { display: flex; flex-direction: column; }
  .nav__menu > a:not(.nav__cta) { display: flex; min-height: 46px; align-items: center; padding-inline: 10px; }
  .language-toggle { width: 100%; margin: 4px 0; }
  .hero__layout, .section--split, .about { grid-template-columns: 1fr; }
  .hero__layout { align-items: start; }
  .hero__signal { max-width: 540px; }
  .project--wide { display: flex; min-height: 760px; }
  .project--wide .project__body { align-self: auto; }
  .project__visual { margin-top: 46px; }
  .section__heading--sticky { position: static; }
  .section--split .section__heading { margin-bottom: 60px; }
  .education__grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr auto; padding-block: 30px; }
  .footer p:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  .brand__name { display: none; }
  .hero { min-height: auto; padding-top: 90px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero__lede { font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero__signal { padding: 22px; }
  .section { padding-block: 100px; }
  .section__heading { display: block; }
  .section__heading .eyebrow { margin-bottom: 24px; }
  .projects { grid-template-columns: 1fr; }
  .project--wide { grid-column: auto; min-height: 700px; }
  .project { min-height: 540px; padding: 28px 22px; }
  .terminal { transform: none; }
  .terminal__content { min-height: 230px; padding: 22px 18px; }
  .capability { grid-template-columns: 40px 1fr; gap: 18px; }
  .capability p { grid-column: 2; }
  .education__primary, .certifications { padding: 28px 22px; }
  .education__count { align-items: start; flex-direction: column; margin-top: 70px; }
  .certifications li { align-items: start; flex-direction: column; gap: 4px; }
  .language-list { grid-template-columns: 1fr; }
  .contact__inner { padding: 42px 22px; }
  .contact__email { overflow-wrap: anywhere; font-size: 16px; }
  .footer { grid-template-columns: 1fr; gap: 8px; }
  .footer p:nth-child(2) { grid-column: auto; grid-row: auto; }
}

@media (hover: none), (pointer: coarse) {
  [data-parallax] { transform: none !important; }
  .project:hover, .nav__cta:hover, .button:hover { transform: none; }
}

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

@media print {
  .ambient, .site-header, .hero__scroll, .language-toggle { display: none; }
  body { color: #111; background: #fff; }
  .section, .contact { padding-block: 40px; }
  .project, .education__primary, .certifications, .contact__inner { border-color: #ccc; background: #fff; break-inside: avoid; }
  .hero { min-height: auto; }
  a { color: #111; }
}
