:root {

  --ink:        #0A0F1F;
  --ink-2:      #111A30;
  --ink-3:      #1B2640;
  --surface:    #FFFFFF;
  --surface-2:  #F5F7FC;
  --surface-3:  #ECF1F9;
  --text:       #101728;
  --text-soft:  #3C465C;
  --text-muted: #6B7689;
  --border:     #E3E9F4;
  --border-2:   #D5DEEC;

  --accent:     #4F46E5;
  --accent-2:   #06B6D4;
  --accent-3:   #818CF8;
  --grad:       linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
  --grad-soft:  linear-gradient(135deg, rgba(99,102,241,.16), rgba(6,182,212,.16));

  --green: #10B981;
  --amber: #F59E0B;
  --blue:  #3B82F6;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Space Grotesk", var(--font-sans);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(16,23,40,.06), 0 1px 3px rgba(16,23,40,.05);
  --shadow:    0 10px 30px -12px rgba(16,23,40,.18);
  --shadow-lg: 0 30px 60px -20px rgba(16,23,40,.30);

  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }
strong { font-weight: 600; color: var(--text); }

svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

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

.skip-link {
  position: absolute; left: 16px; top: -56px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt  { background: var(--surface-2); }
.section--dark { background: var(--ink); color: #C7D0E0; }
.section--cta  { background: var(--ink); color: #fff; padding-block: clamp(72px, 10vw, 130px); }

.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section__eyebrow--light { color: var(--accent-3); }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); color: var(--text); }
.section--dark .section__title, .section--cta .section__title { color: #fff; }
.section__sub { margin-top: 16px; color: var(--text-muted); font-size: 1.08rem; max-width: 640px; }
.section__head--center .section__sub { margin-inline: auto; }
.section__sub--light { color: #9AA7BE; }

.btn {
  --b: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 17px 28px; font-size: 1.02rem; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 28px -10px rgba(79,70,229,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(79,70,229,.75); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag {
  font-size: .86rem; font-weight: 500; color: var(--text-soft);
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px;
}
.section--alt .tag { background: #fff; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 600; letter-spacing: .01em;
  padding: 6px 12px; border-radius: 999px; width: fit-content;
}
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pill--done      { color: #047857; background: rgba(16,185,129,.13); }
.pill--progress  { color: #B45309; background: rgba(245,158,11,.15); }
.pill--scheduled { color: #1D4ED8; background: rgba(59,130,246,.13); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; }
.brand__name { font-size: 1.06rem; color: var(--text); }

.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__menu a { font-size: .96rem; font-weight: 500; color: var(--text-soft); transition: color .18s ease; position: relative; }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .25s ease;
}
.nav__menu a:not(.nav__cta):hover, .nav__menu a.is-active { color: var(--text); }
.nav__menu a.is-active::after { width: 100%; }
.nav__cta {
  background: var(--ink); color: #fff !important; padding: 10px 18px; border-radius: 999px;
  transition: transform .18s ease, background .2s ease;
}
.nav__cta:hover { transform: translateY(-1px); background: var(--accent); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.nav__toggle span { height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }

.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding-top: clamp(56px, 8vw, 90px); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; opacity: .9;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(99,102,241,.40), transparent 60%),
    radial-gradient(50% 50% at 12% 88%, rgba(6,182,212,.28), transparent 60%),
    linear-gradient(180deg, #0A0F1F 0%, #0B1228 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent 75%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 80px);
  align-items: center; padding-block: clamp(40px, 6vw, 76px) clamp(70px, 9vw, 110px);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: #C7D0E0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,.22); }
.hero__title { font-size: clamp(2.8rem, 7vw, 4.6rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.hero__lead { margin-top: 22px; font-size: clamp(1.05rem, 1.8vw, 1.22rem); color: #B9C3D6; max-width: 560px; }
.hero__lead strong { color: #fff; }

.hero__facts { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 28px; }
.hero__facts li { display: inline-flex; align-items: center; gap: 9px; font-size: .94rem; color: #9FAAC0; }
.hero__facts svg { width: 17px; height: 17px; fill: var(--accent-3); stroke: none; flex: none; }

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

.hero__media { position: relative; justify-self: center; width: 100%; max-width: 420px; }
.hero__photo-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04) inset;
  aspect-ratio: 4 / 5; background: var(--ink-2);
}
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero__glow {
  position: absolute; inset: -40% -20% auto auto; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(99,102,241,.5), transparent 70%);
  filter: blur(20px); z-index: -1;
}
.chip {
  position: absolute; display: flex; flex-direction: column; gap: 2px;
  background: rgba(255,255,255,.92); color: var(--ink); backdrop-filter: blur(8px);
  padding: 11px 16px; border-radius: 14px; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.chip__k { font-family: var(--font-head); font-weight: 700; font-size: .92rem; letter-spacing: -.01em; }
.chip__v { font-size: .74rem; color: var(--text-muted); font-weight: 500; }
.chip--1 { top: 16%; left: -28px; animation: float 6s ease-in-out infinite; }
.chip--2 { bottom: 16%; right: -26px; animation: float 6s ease-in-out infinite .9s; }
.chip--3 { bottom: -22px; left: 34px; animation: float 6s ease-in-out infinite 1.8s; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-9px); } }

.hero__marquee {
  position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero__marquee-track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: marquee 34s linear infinite; }
.hero__marquee-track span { font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: rgba(255,255,255,.55); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.profil { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.profil__text .lead { font-size: 1.28rem; color: var(--text); margin-bottom: 20px; font-weight: 500; }
.profil__text p { color: var(--text-soft); margin-bottom: 16px; }
.profil__card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow); position: sticky; top: 96px;
}
.profil__card-title {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
  margin-bottom: 18px;
}
.facts { display: grid; gap: 2px; }
.facts > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.facts > div:last-child { border-bottom: 0; }
.facts dt { color: var(--text-muted); font-size: .9rem; }
.facts dd { font-weight: 600; text-align: right; font-size: .94rem; }

.grid { display: grid; gap: 22px; }
.grid--cards { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; transition: transform .22s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-2); }
.card--accent { background: linear-gradient(180deg, #fff, #FBFCFF); border-color: var(--border-2); }
.card__icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px;
  background: var(--grad-soft); color: var(--accent); margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.18rem; color: var(--text); margin-bottom: 10px; }
.card__text { color: var(--text-muted); font-size: .98rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.card__tags span {
  font-size: .76rem; font-weight: 600; color: var(--text-soft);
  background: var(--surface-3); padding: 5px 11px; border-radius: 8px;
}

[data-brand="salesforce"].card__icon { background: rgba(0,161,224,.12); color: #0091CC; }
[data-brand="revops"].card__icon     { background: rgba(99,102,241,.12); color: #4F46E5; }
[data-brand="data"].card__icon       { background: rgba(14,165,233,.12); color: #0284C7; }
[data-brand="make"].card__icon       { background: rgba(109,91,208,.13); color: #6D5BD0; }
[data-brand="webflow"].card__icon    { background: rgba(67,83,255,.12); color: #4353FF; }
[data-brand="growth"].card__icon     { background: rgba(249,115,22,.13); color: #EA6A12; }

.timeline { position: relative; max-width: 820px; margin-left: 6px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--accent), var(--accent-2)); border-radius: 2px; }
.timeline__item { position: relative; padding-left: 44px; padding-bottom: 38px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent); box-shadow: 0 0 0 5px rgba(79,70,229,.12);
}
.timeline__period {
  display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .05em; text-transform: uppercase; color: var(--accent);
  background: var(--surface-3); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.section--alt .timeline__period { background: #fff; }
.timeline__role { font-size: 1.24rem; color: var(--text); }
.timeline__org { color: var(--accent); font-weight: 600; font-size: .98rem; margin: 4px 0 10px; }
.timeline__desc { color: var(--text-soft); max-width: 640px; }
.timeline__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.timeline__tags span { font-size: .78rem; font-weight: 600; color: var(--text-soft); background: var(--surface-2); border: 1px solid var(--border); padding: 5px 11px; border-radius: 8px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.stat {
  text-align: center; padding: 30px 18px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
}
.stat__num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.1rem);
  line-height: 1; letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff, #A5B4FC); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block;
}
.stat__label { display: block; margin-top: 14px; color: #9AA7BE; font-size: .94rem; line-height: 1.45; }

.achievements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.achievement { padding: 28px; border-radius: var(--r-lg); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); }
.achievement h3 { color: #fff; font-size: 1.12rem; margin-bottom: 10px; }
.achievement p { color: #94A1B8; font-size: .96rem; }

.cert-group { margin-bottom: 44px; }
.cert-group:last-of-type { margin-bottom: 0; }
.cert-group__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cert-group__title { font-size: 1.3rem; color: var(--text); }
.cert-group__src { font-size: .84rem; font-weight: 600; color: var(--text-muted); margin-left: auto; }

.grid--certs { grid-template-columns: repeat(2, 1fr); }

.cert {
  --brand: var(--accent);
  display: flex; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px; transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.cert:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border-2); }
.cert[data-brand="salesforce"] { --brand: #00A1E0; }
.cert[data-brand="hubspot"]    { --brand: #FF7A59; }
.cert[data-brand="make"]       { --brand: #6D5BD0; }
.cert[data-brand="lewagon"]    { --brand: #EE3D5C; }

.cert__badge {
  position: relative; flex: none; width: 84px; height: 84px; border-radius: 18px;
  display: grid; place-items: center; overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--brand) 85%, #fff), var(--brand));
  box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--brand) 70%, transparent);
}
.cert__medallion { display: grid; place-items: center; color: #fff; }
.cert__medallion svg { width: 38px; height: 38px; stroke-width: 1.7; }
.cert__badge::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  border: 1.5px solid rgba(255,255,255,.35); pointer-events: none;
}
.cert__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #fff; padding: 6px; display: none; }
.cert__img.is-loaded { display: block; }
.cert__img.is-loaded + .cert__medallion,
.cert__badge.has-img .cert__medallion { display: none; }

.cert__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cert__title { font-size: 1.06rem; color: var(--text); line-height: 1.25; }
.cert__level { font-size: .72rem; font-weight: 700; color: var(--brand); border: 1px solid currentColor; padding: 1px 7px; border-radius: 6px; vertical-align: middle; margin-left: 4px; }
.cert__issuer { color: var(--text-muted); font-size: .9rem; }
.cert__link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 4px;
  font-size: .85rem; font-weight: 600; color: var(--accent); width: fit-content;
}
.cert__link svg { width: 14px; height: 14px; }
.cert__link:hover { text-decoration: underline; }

.cert-note {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 36px;
  background: #fff; border: 1px dashed var(--border-2); border-radius: var(--r);
  padding: 18px 20px; color: var(--text-muted); font-size: .92rem;
}
.cert-note svg { width: 20px; height: 20px; color: var(--amber); flex: none; margin-top: 1px; }
.cert-note code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .86em; background: var(--surface-3); padding: 2px 7px; border-radius: 6px; color: var(--text-soft); }

.section--cta { text-align: center; position: relative; overflow: hidden; }
.section--cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(99,102,241,.4), transparent 60%);
}
.cta { position: relative; max-width: 640px; margin-inline: auto; }
.cta__title { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-top: 8px; }
.cta__sub { color: #AEB9CF; margin-top: 16px; font-size: 1.1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

.site-footer { background: #070B16; color: #8C97AD; padding: 48px 0; }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: space-between; }
.site-footer__brand { display: flex; align-items: center; gap: 14px; }
.site-footer__name { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.05rem; }
.site-footer__role { font-size: .86rem; color: #6B7689; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer__nav a { font-size: .92rem; transition: color .18s ease; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__copy { font-size: .86rem; color: #5A6478; width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; margin-top: 8px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 60px; }
  .hero__eyebrow, .hero__actions, .hero__facts { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .hero__media { order: -1; max-width: 320px; margin-bottom: 8px; }
  .chip--1 { left: -10px; } .chip--2 { right: -10px; } .chip--3 { left: 20px; }
  .profil { grid-template-columns: 1fr; }
  .profil__card { position: static; }
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .achievements { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__toggle { display: flex; z-index: 120; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    background: var(--surface); padding: 40px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 110;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu li { width: 100%; }
  .nav__menu a { font-size: 1.15rem; display: block; padding: 10px 0; }
  .nav__cta { display: inline-block; margin-top: 10px; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(8,12,22,.5); z-index: 105; backdrop-filter: blur(2px); }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .grid--cards, .grid--certs { grid-template-columns: 1fr; }
  .chip { padding: 9px 13px; }
  .cert { flex-direction: row; }
  .site-footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .cert { flex-direction: column; text-align: center; align-items: center; }
  .cert__body { align-items: center; }
}

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

@media print {
  .site-header, .hero__marquee, .nav__toggle, .hero__actions, .cta__actions { display: none; }
  .hero, .section--dark, .section--cta { background: #fff !important; color: #000 !important; }
  * { box-shadow: none !important; }
}
