:root {
  --bg: #030305;
  --surface: rgba(255,255,255,.035);
  --surface-2: rgba(255,255,255,.065);
  --line: rgba(255,255,255,.075);
  --line-strong: rgba(255,255,255,.14);
  --text: #fff;
  --muted: rgba(255,255,255,.68);
  --muted-soft: rgba(255,255,255,.48);
  --blue: #007cff;
  --blue-strong: #0254be;
  --cyan: #0099ff;
  --green: #00ff00;
  --max: 1180px;
  --radius: 14px;
  --header: 112px;
  --grid-opacity: .035;
  --timeline-gap: 36px;
  --section-fade: linear-gradient(90deg, transparent, rgba(0,124,255,.18), rgba(255,255,255,.08), transparent);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
  background: var(--bg);
  text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 6%, rgba(0,124,255,.14), transparent 28%),
    radial-gradient(circle at 96% 74%, rgba(0,10,255,.1), transparent 24%),
    linear-gradient(rgba(255,255,255,var(--grid-opacity)) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,var(--grid-opacity)) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
}
body > * {
  position: relative;
  z-index: 1;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { padding: 0; }
h1, h2, h3, p { margin-top: 0; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.container {
  width: min(calc(100% - 28px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  color: #07101b;
  background: white;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(3,3,5,.84);
}
.nav {
  min-height: var(--header);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 750;
}
.brand__mark {
  color: var(--blue);
  font-family: Consolas, ui-monospace, monospace;
  font-weight: 800;
  transition: transform .2s ease, text-shadow .2s ease;
}
.brand__text { font-size: .94rem; }
.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  transform: translateY(-1px);
  text-shadow: 0 0 16px rgba(0,124,255,.75);
}
.nav__toggle,
.nav__close {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  background: rgba(255,255,255,.045);
  font: inherit;
  cursor: pointer;
}
.nav__toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  grid-template-rows: repeat(3, 2px);
  align-content: center;
  gap: 6px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 10px 26px rgba(0,0,0,.18);
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-open .nav__toggle {
  opacity: 0;
  pointer-events: none;
}
.nav-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 51;
  background: rgba(0,0,0,.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.nav-open .nav__overlay {
  opacity: 1;
  pointer-events: auto;
}
.nav__links {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 52;
  width: min(82vw, 320px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: rgba(255,255,255,.62);
  background:
    radial-gradient(circle at 84% 8%, rgba(0,124,255,.18), transparent 34%),
    rgb(0, 0, 0);
  border-left: 1px solid rgba(0,124,255,.2);
  box-shadow: -22px 0 70px rgba(0,0,0,.34);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(104%);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}
.nav-open .nav__links { transform: translateX(0); }
.nav__menu-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.nav__close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 1.35rem;
  line-height: 1;
}
.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 178px);
  min-height: 42px;
  padding: 13px 14px;
  margin-top: 1px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
  text-align: center;
}
.nav__links a:hover,
.nav__links a:focus-visible {
  color: white;
  border-color: rgba(0,124,255,.42);
  background: rgba(0, 122, 252, 0.12);
  transform: translateY(-1px);
}
.nav__links .nav__drawer-cta {
  margin-top: 22px;
  color: white !important;
  text-transform: none;
  border-color: rgba(0,124,255,.36) !important;
  background: linear-gradient(180deg, rgba(0,124,255,.95), var(--blue-strong)) !important;
  box-shadow: 0 16px 34px rgba(0,124,255,.18);
}
body.nav-open { overflow: hidden; }
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(0,124,255,.36);
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, rgba(0,124,255,.95), var(--blue-strong));
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.22), transparent 56%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,124,255,.26);
}
.button:hover::after,
.button:focus-visible::after { transform: translateX(120%); }
.button--small { min-height: 40px; padding-inline: 16px; font-size: .84rem; }
.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.button--outline-light { border-color: rgba(255,255,255,.48); background: transparent; }
.button--contact-primary { border-color: #07101b; background: #07101b; }
.button--copy { appearance: none; }
.button__icon { flex: 0 0 18px; width: 18px; height: 18px; fill: currentColor; }
.site-header .nav__cta { display: none; }
.hero {
  position: relative;
  overflow: clip;
  min-height: 100svh;
  padding: calc(var(--header) + 44px) 0 68px;
  display: grid;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 76% 26%, rgba(35,136,245,.16), transparent 28%);
}
.hero__glow {
  position: fixed;
  z-index: 0;
  width: 250px;
  height: 250px;
  right: -90px;
  top: 180px;
  pointer-events: none;
  border: 1px solid rgba(92,169,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(35,136,245,.09);
  animation: glow-breathe 5s ease-in-out infinite;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: 44px;
}
.eyebrow,
.section-kicker {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .65rem;
  font-weight: 850;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 11vw, 4.8rem);
  line-height: 1.12;
  font-weight: 650;
}
h1 span,
h1 strong {
  display: block;
  max-width: 100%;
  line-height: inherit;
  overflow-wrap: break-word;
}
h1 strong {
  margin-bottom: -.14em;
  padding-bottom: .14em;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), #93c5fd, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  max-width: 680px;
  color: #c3cedd;
  font-size: clamp(1rem, 4.4vw, 1.22rem);
}
.hero__actions,
.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 30px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 42px 0 0;
}
.hero__stats div {
  min-width: 0;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}
.hero__stats dt {
  color: white;
  font-size: 1.24rem;
  font-weight: 850;
}
.hero__stats dd {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
}

.profile-card {
  width: min(100%, 360px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.profile-card:hover {
  border-color: rgba(0,124,255,.32);
  box-shadow: 0 30px 80px rgba(0,0,0,.38), 0 0 38px rgba(0,124,255,.08);
}
.profile-card__visual {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(35,136,245,.13), transparent);
}
.profile-card__visual::before,
.profile-card__visual::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 1px;
  background: var(--line);
}
.profile-card__visual::before { top: 0; left: -25%; }
.profile-card__visual::after { bottom: 0; right: -25%; }
.profile-card__orbit {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(113,227,212,.25);
  border-radius: 50%;
  animation: orbit-spin 16s linear infinite;
}
.profile-card__orbit::before,
.profile-card__orbit::after,
.profile-card__orbit span {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0,124,255,.8);
}
.profile-card__orbit::before { transform: translate(-50%, -50%) rotate(-90deg) translateX(115px); }
.profile-card__orbit::after {
  transform: translate(-50%, -50%) rotate(30deg) translateX(115px);
  background: var(--green);
}
.profile-card__orbit span {
  transform: translate(-50%, -50%) rotate(150deg) translateX(115px);
}
.avatar {
  position: relative;
  z-index: 2;
  width: 172px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--bg);
  border-radius: 50%;
  background: #0d1622;
  box-shadow: 0 0 0 1px var(--blue);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transition: transform .45s ease;
}
.profile-card:hover .avatar img { transform: scale(1.045); }
.profile-card__status {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border: 1px solid rgba(113,227,212,.32);
  border-radius: 999px;
  color: var(--green);
  background: rgba(8,11,18,.84);
  font-size: .7rem;
  font-weight: 750;
}
.profile-card__status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(147,197,253,.55);
  animation: status-pulse 1.2s ease-out infinite;
}
.profile-card__body {
  padding: 24px;
  color: #dce5f2;
  font-size: .9rem;
}
.profile-card__label {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.profile-card__line {
  height: 1px;
  margin: 18px 0;
  background: var(--line);
}

.section {
  position: relative;
  padding: 72px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.section + .section::before,
.contact::before {
  content: "";
  position: absolute;
  left: max(14px, calc((100% - var(--max)) / 2));
  right: max(14px, calc((100% - var(--max)) / 2));
  top: 0;
  height: 1px;
  background: var(--section-fade);
  opacity: .48;
  pointer-events: none;
}
.section--panel {
  border-block: 1px solid var(--line);
  background: rgba(14,19,29,.72);
}
.section__split,
.consultancy__grid,
.education-grid,
.ambitions__grid,
.section__heading,
.timeline__item,
.experience-note,
.linkedin-window,
.achievement {
  display: grid;
  gap: 32px;
}
.section h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 11vw, 3.45rem);
  line-height: 1.08;
  font-weight: 650;
}
.section h2 span,
.contact h2 span { color: var(--blue); }
.about-copy,
.section__heading > p,
.consultancy__intro > p:not(.section-kicker),
.timeline__content > p:not(.tag),
.experience-note p,
.skill-card p,
.linkedin-window__copy > p:not(.section-kicker),
.education-grid__intro,
.education-grid__description p,
.achievement p,
.ambition-list p {
  color: var(--muted);
}
.about-copy { font-size: 1rem; }
.about-copy > p { margin-bottom: 22px; }
.principle {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  background: rgba(92,169,255,.04);
}
.principle p { margin: 0; color: var(--muted); }
.principle strong { display: block; color: white; }

.consultancy {
  border-block: 1px solid var(--line);
  background: transparent;
}
.consultancy__intro h2 + p {
  margin-top: 16px;
}
.consultancy__services,
.ambition-list,
.credentials,
.timeline {
  border-top: 1px solid var(--line);
}
.timeline {
  display: grid;
  gap: var(--timeline-gap);
  padding-top: var(--timeline-gap);
  border-top-color: rgba(0,124,255,.18);
}
.consultancy__services article,
.ambition-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.consultancy__services article > span,
.ambition-list article > span {
  color: var(--blue);
  font: .72rem Consolas, ui-monospace, monospace;
}
.consultancy__services h3,
.ambition-list h3 {
  margin-bottom: 5px;
}
.consultancy__services p,
.ambition-list p { margin: 0; font-size: .9rem; }

.timeline__item { padding: 40px 0; border-bottom: 1px solid var(--line); }
.timeline__item--featured {
  width: min(100%, 920px);
  margin-inline: auto;
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: var(--radius);
  background: radial-gradient(circle at 8% 18%, rgba(0,124,255,.08), transparent 30%), rgba(255,255,255,.02);
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
}
.timeline__item--featured .timeline__meta {
  align-items: center;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}
.timeline__item--featured .timeline__content {
  max-width: 680px;
  margin-inline: auto;
}
.timeline__item--featured .company-emblem {
  margin-inline: auto;
}
.timeline__item--link {
  position: relative;
  color: inherit;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.timeline__item--link::after {
  content: "Visitar site ↗";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(147,197,253,.78);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}
.timeline__item--link:hover,
.timeline__item--link:focus-visible {
  border-color: rgba(0,124,255,.62);
  background:
    radial-gradient(circle at 8% 18%, rgba(0,124,255,.16), transparent 32%),
    rgba(255,255,255,.035);
  box-shadow: 0 24px 64px rgba(0,0,0,.26), 0 0 34px rgba(0,124,255,.08);
  transform: translateY(-2px);
}
.timeline__item--link:hover::after,
.timeline__item--link:focus-visible::after {
  color: #bfdbfe;
  opacity: 1;
  transform: translateX(2px);
}
.timeline__item--current {
  position: relative;
  border: 2px solid rgba(0,124,255,.55);
  background:
    radial-gradient(circle at 8% 18%, rgba(0,124,255,.18), transparent 32%),
    linear-gradient(135deg, rgba(0,124,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 24px 68px rgba(0,0,0,.28), 0 0 38px rgba(0,124,255,.08);
}
.timeline__item--current::before {
  content: "Atual";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(0,124,255,.38);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(0,124,255,.14);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.timeline__meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: .85rem;
}
.timeline__meta > span:first-of-type {
  color: var(--blue);
  font-family: Consolas, ui-monospace, monospace;
}
.company-emblem { 
  width: 150px; 
  height: 150px; 
  margin: -18px 0 24px; 
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; 
  object-fit: cover; 
  object-position: center; 
  box-shadow: 0 18px 45px rgba(0,0,0,.28); }

.company-emblem.company-emblem--ocb {
  width: 150px;
  height: 150px;
  padding: 05px;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  object-fit: contain;
  object-position: center; 
  box-shadow: 0 18px 45px rgba(0,0,0,.28); 
  background: #fff;
  box-shadow: none;
}

.company-name {
  margin: 8px 0 4px;
  color: white;
  font-size: clamp(1.35rem, 6vw, 2rem);
  line-height: 1.1;
}
.tag {
  margin-bottom: 8px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  font-weight: 850;
}
.timeline h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 6vw, 2rem);
  line-height: 1.2;
}
.org-mini-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 310px);
  margin: 12px 0 0;
}
.org-mini-logos__item {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 10px 12px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: transparent;
}
.org-mini-logos img {
  justify-self: center;
  width: 100%;
  max-width: 122px;
  height: 34px;
  object-fit: contain;
  opacity: .9;
}
.org-mini-logos small {
  color: rgba(255,255,255,.62);
  font-size: 0.65rem;
  line-height: 1.35;
  text-align: justify;
  overflow-wrap: normal;
  hyphens: none;
}

.impact-list {
  margin: 24px 0;
  list-style: none;
  color: #c5d0df;
  font-size: .92rem;
}
.impact-list li {
  position: relative;
  padding: 7px 0 7px 23px;
}
.impact-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--blue);
}
.chips,
.skill-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  list-style: none;
}
.chips li,
.skill-card__tags li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b8c5d6;
  font-size: .7rem;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}
.chips li:hover,
.skill-card__tags li:hover {
  transform: translateY(-2px);
  border-color: rgba(0,124,255,.42);
  color: white;
  background: rgba(0,124,255,.08);
}
.experience-note {
  margin-top: 16px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.018);
}
.experience-note__header {
  display: grid;
  align-content: start;
  gap: 6px;
}
.experience-note__label {
  color: var(--blue);
  font: 700 .68rem Consolas, ui-monospace, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.experience-note__subtitle {
  margin: 0;
  color: #d7e4f5;
  font-size: .95rem;
  font-weight: 700;
}
.experience-note__content {
  min-width: 0;
}
.experience-note h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.skill-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.skill-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,124,255,.4);
  background: var(--surface-2);
  box-shadow: 0 16px 34px rgba(0,124,255,.09);
}
.skill-card__number {
  color: var(--blue);
  font-family: Consolas, ui-monospace, monospace;
  font-size: .72rem;
}
.skill-card h3 {
  margin: 42px 0 12px;
  font-size: 1.18rem;
}
.skill-card p { font-size: .88rem; }
.skill-card__tags li {
  border-color: rgba(0,124,255,.18);
  background: rgba(0,124,255,.05);
}

.linkedin-section { padding-top: 20px; }
.linkedin-window {
  padding: 26px 18px;
  border: 1px solid rgba(0,124,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  box-shadow: 0 22px 64px rgba(0,0,0,.22);
}
.linkedin-window__copy > p:not(.section-kicker) {
  margin-top: 16px;
}
.social-profiles { display: grid; gap: 12px; }
.social-profile {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0d13;
  transition: transform .2s ease, border-color .2s ease;
}
.social-profile:hover,
.social-profile:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0,124,255,.4);
}
.social-profile--linkedin-card {
  align-items: center;
}
.social-profile__main {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.linkedin-badge-slot {
  --linkedin-badge-scale: 1;
  display: grid;
  justify-items: center;
  justify-self: center;
  width: calc(340px * var(--linkedin-badge-scale));
  max-width: 100%;
  height: calc(310px * var(--linkedin-badge-scale));
  min-width: 0;
  overflow: hidden;
}
.linkedin-badge-slot .badge-base,
.linkedin-badge-slot .LI-profile-badge {
  width: 340px;
  max-width: none;
  transform: scale(var(--linkedin-badge-scale));
  transform-origin: top left;
}
.linkedin-badge-slot .LI-simple-link {
  display: none;
}
.social-profile__link--linkedin-mobile {
  justify-self: center;
}
.social-profile__link--linkedin-desktop {
  display: none;
}
.social-profile__icon {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
}
.social-profile__icon svg { width: 28px; height: 28px; fill: currentColor; }
.social-profile__icon svg { transition: transform .22s ease; }
.social-profile:hover .social-profile__icon svg,
.social-profile:focus-visible .social-profile__icon svg { transform: scale(1.08) rotate(-3deg); }
.social-profile__icon--linkedin { background: #0a66c2; }
.social-profile__icon--github { border: 1px solid var(--line-strong); background: #171b22; }
.linkedin-card__eyebrow {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.social-profile h3 { margin-bottom: 5px; font-size: 1.08rem; line-height: 1.25; }
.social-profile p:not(.linkedin-card__eyebrow) {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: .84rem;
}
.social-profile__link { color: var(--blue); font-size: .82rem; font-weight: 800; }
.social-profile--github {
  align-items: start;
}
.social-profile--github .github-chart,
.social-profile--github .social-profile__link--github {
  grid-column: 1 / -1;
}
.github-chart {
  justify-self: center;
  display: block;
  width: min(100%, 760px);
  min-height: 82px;
  margin: 4px auto 14px;
  padding: 10px;
  border-radius: 12px;
  background: transparent;
  object-fit: contain;
}
.social-profile__link--github { justify-self: start; }

.education-grid { display: grid; grid-template-columns: 1fr; gap: 42px; }
.education-grid__intro { max-width: 430px; margin-top: 22px; color: var(--muted); }
.education-grid__description { max-width: 560px; }
.education-grid__description p { margin-bottom: 16px; color: var(--muted-soft); font-size: .84rem; line-height: 1.65; }
.education-grid__description p:last-child { margin-bottom: 0; color: var(--muted-soft); }
.credentials { border-top: 1px solid var(--line); }
.credential { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 16px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.credential--featured { border-bottom: 0; }
.credential--linked {
  align-items: start;
  padding: 24px 22px;
  border-radius: var(--radius);
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.credential--linked > * {
  transform-origin: left center;
  transition: transform .2s ease;
}
.credential--linked:hover,
.credential--linked:focus-visible {
  color: white;
  background: rgba(0,124,255,.045);
  box-shadow: inset 3px 0 0 rgba(0,124,255,.72);
}
.credential--linked:hover > *,
.credential--linked:focus-visible > * { transform: scale(.985); }
.credential h3 { margin-bottom: 4px; font-size: 1.18rem; overflow-wrap: anywhere; }
.credential > div > p:last-child { margin-bottom: 0; color: var(--muted); }
.credential__year { color: var(--blue); font-family: Consolas, monospace; font-size: .72rem; }
.credential__institution { margin-bottom: 20px; color: var(--muted); }
.credential__institution-logo { width: 54px; height: 54px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #0c478d; }
.credential__institution-logo img { width: 100%; height: 100%; object-fit: cover; }
.credential__icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: white; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.credential__icon img { width: 30px; height: 30px; }
.credential--linked:hover .credential__icon,
.credential--linked:focus-visible .credential__icon {
  border-color: rgba(0,124,255,.34);
  box-shadow: 0 0 0 3px rgba(0,124,255,.08);
}
.credential__link { grid-column: 2; color: var(--blue); font-size: .72rem; font-weight: 750; white-space: normal; transition: color .2s ease; }
.credential--linked:hover .credential__link,
.credential--linked:focus-visible .credential__link { color: #93c5fd; }
.credential--compact {
  grid-template-columns: 1fr;
  padding-top: 24px;
  color: var(--muted);
}
.credential--compact > div {
  min-width: 0;
  width: 100%;
}
.credential--compact h3 {
  margin-bottom: 14px;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
}
.compact-courses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 14px 0 0;
  list-style: none;
}
.compact-courses li {
  min-width: 0;
  padding-left: 12px;
  border-left: 1px solid rgba(0,124,255,.22);
}
.compact-courses span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.35;
}
.compact-courses small {
  display: block;
  margin-top: 2px;
  color: var(--muted-soft);
  font-size: .7rem;
}

.achievement { align-items: center; }
.achievement__badge {
  width: 176px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(92,169,255,.35);
  border-radius: 50%;
  color: var(--muted);
  letter-spacing: .16em;
  box-shadow: inset 0 0 80px rgba(35,136,245,.08), 0 0 0 16px rgba(92,169,255,.02);
}
.achievement__badge span {
  display: block;
  color: var(--blue);
  font-size: 4.3rem;
  line-height: .9;
  font-weight: 850;
}
.achievement h3 { margin: 24px 0 6px; font-size: 1.18rem; }
.achievement__copy {
  max-width: 720px;
  margin-top: 26px;
  padding-left: 18px;
  border-left: 2px solid var(--blue);
}
.ambitions { background: linear-gradient(135deg, rgba(35,136,245,.07), transparent); }

.contact {
  position: relative;
  overflow: clip;
  padding: 82px 0;
  background: var(--blue-strong);
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.contact::after {
  content: "</>";
  position: absolute;
  right: -5vw;
  top: -48px;
  color: rgba(255,255,255,.08);
  font: 800 12rem/1 Consolas, ui-monospace, monospace;
}
.contact__inner { position: relative; z-index: 2; }
.contact .section-kicker { color: white; opacity: .78; }
.contact h2 {
  font-size: clamp(2.25rem, 11vw, 4.6rem);
  font-weight: 450;
}
.contact h2 span { color: #07101b; }
.contact p:not(.section-kicker) {
  max-width: 670px;
  margin-top: 24px;
  color: rgba(255,255,255,.86);
}
.copy-feedback-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.copy-toast {
  position: absolute;
  left: 0;
  top: calc(92%);
  width: max-content;
  max-width: min(90vw, 320px);
  padding: 11px 16px 11px 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  color: white;
  background: rgba(7,16,27,.96);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}
.copy-toast::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: calc(100% - 1px);
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
  background: rgba(7,16,27,.96);
  transform: rotate(45deg);
}
.copy-toast::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52,211,153,.14), 0 0 16px rgba(52,211,153,.45);
  transform: translateY(-50%);
  animation: status-pulse .75s ease-out infinite;
}
.copy-toast[data-state="error"]::after {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245,158,11,.16), 0 0 16px rgba(245,158,11,.35);
}
.copy-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.footer {
  border-top: 1px solid var(--line);
  background: #06080d;
}
.footer__inner {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 26px 0;
  color: var(--muted);
  font-size: .78rem;
}
.footer p { margin: 0; }
.footer p span {
  color: var(--blue);
  font-family: Consolas, ui-monospace, monospace;
  font-weight: 800;
}
.footer a { color: white; }

@keyframes orbit-spin { to { transform: rotate(1turn); } }
@keyframes glow-breathe {
  0%, 100% { opacity: .55; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes status-pulse {
  0%, 35% { box-shadow: 0 0 0 0 rgba(147,197,253,.55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(147,197,253,0); }
}
@keyframes reveal-up {
  from { opacity: .01; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-soft {
  from { opacity: .6; transform: scale(.992); }
  to { opacity: 1; transform: scale(1); }
}

.js .motion-reveal {
  --motion-x: 0px;
  --motion-y: 26px;
  --motion-scale: 1;
  --motion-blur: 0px;
  opacity: 0;
  filter: blur(var(--motion-blur));
  transform: translate3d(var(--motion-x), var(--motion-y), 0) scale(var(--motion-scale));
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1),
    filter .82s cubic-bezier(.22, 1, .36, 1),
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform, filter;
}
.js .motion-reveal[data-motion="fade"] {
  --motion-y: 12px;
  --motion-blur: 4px;
}
.js .motion-reveal[data-motion="rise"] {
  --motion-y: 34px;
  --motion-blur: 5px;
}
.js .motion-reveal[data-motion="float"] {
  --motion-y: 42px;
  --motion-scale: .975;
}
.js .motion-reveal[data-motion="card"] {
  --motion-y: 30px;
  --motion-scale: .985;
}
.js .motion-reveal[data-motion="slide-left"] {
  --motion-x: -28px;
  --motion-y: 12px;
}
.js .motion-reveal[data-motion="slide-right"] {
  --motion-x: 28px;
  --motion-y: 12px;
}
.js .motion-reveal[data-motion="pop"] {
  --motion-y: 18px;
  --motion-scale: .88;
}
.js .motion-reveal[data-motion="micro"] {
  --motion-y: 10px;
  --motion-scale: .98;
}
.js .motion-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

@media (min-width: 760px) {
  .skills-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .achievement { grid-template-columns: 210px 1fr; gap: 44px; }
  .achievement__badge { width: 205px; }
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 420px) {
  .linkedin-badge-slot {
    --linkedin-badge-scale: .78;
  }
}

@media (max-width: 380px) {
  .linkedin-badge-slot {
    --linkedin-badge-scale: .72;
  }
}

@media (min-width: 900px) {
  :root { --header: 76px; }
  .container { width: min(calc(100% - 40px), var(--max)); }
  .site-header {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }
  .nav {
    min-height: var(--header);
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding-block: 0;
  }
  .nav__toggle,
  .nav__overlay,
  .nav__menu-header { display: none; }
  .nav__links {
    position: static;
    z-index: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-self: center;
    gap: 14px;
    padding: 0;
    overflow: visible;
    overscroll-behavior: auto;
    background: transparent;
    border-left: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    font-size: .66rem;
    letter-spacing: .11em;
    white-space: nowrap;
    transform: none;
    transition: none;
  }
  .nav__links a {
    flex: 0 0 auto;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .nav__links .nav__drawer-cta { display: none; }
  .site-header .nav__cta { display: inline-flex; }
  .hero__actions,
  .contact__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-profile { grid-template-columns: 52px 1fr; }
  .social-profile--linkedin-card { grid-template-columns: 1fr; }
  .credential { grid-template-columns: 74px 1fr; }
  .credential.credential--compact { grid-template-columns: 1fr; }
  .credential__institution-logo { width: 74px; height: 74px; }
  .credential__link { grid-column: 2; }
}

@media (max-width: 1119.98px) {
  .timeline__item--featured {
    width: min(100%, 780px);
    padding: clamp(34px, 5vw, 52px);
  }
  .timeline__item--current::before {
    right: 22px;
  }

}

@media (min-width: 970px) {
  .education-grid {
    grid-template-columns: .86fr 1.14fr;
    gap: clamp(56px, 6vw, 86px);
    row-gap: 52px;
  }
  .education-grid > .credentials {
    grid-column: 1 / -1;
  }
  .credential--featured {
    grid-column: 2;
  }
}

@media (min-width: 1120px) {
  .hero {
    padding: calc(var(--header) + 70px) 0 92px;
    min-height: 760px;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
    align-items: center;
    gap: 70px;
  }
  .hero__glow { width: 440px; height: 440px; top: 80px; }
  h1 { font-size: clamp(4rem, 5.2vw, 6rem); }
  h1 span,
  h1 strong { white-space: nowrap; }
  .profile-card { transform: none; }
  .section { padding: 92px 0; }
  .section__split,
  .consultancy__grid,
  .education-grid,
  .ambitions__grid {
    grid-template-columns: .86fr 1.14fr;
    gap: 86px;
  }
  .education-grid > .credentials {
    grid-column: 1 / -1;
  }
  .education-grid {
    row-gap: 52px;
  }
  .section__heading {
    grid-template-columns: 1.45fr .55fr;
    align-items: end;
    gap: 62px;
    margin-bottom: 68px;
  }
  .timeline__item,
  .experience-note {
    grid-template-columns: minmax(260px, 340px) minmax(0, 620px);
    justify-content: center;
    align-items: center;
    gap: clamp(34px, 4.4vw, 58px);
    width: min(100%, 1080px);
    margin-inline: auto;
  }
  .timeline__item--featured {
    width: min(100%, 1080px);
    padding: clamp(44px, 4.2vw, 58px);
  }
  .timeline__item--featured .timeline__meta {
    align-items: flex-start;
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }
  .timeline__item--featured .timeline__content {
    max-width: none;
    margin-inline: 0;
  }
  .timeline__item--featured .company-emblem {
    margin-inline: 0;
  }
  .company-emblem {
    width: 146px;
    margin: -14px 0 22px;
    border-radius: 22px;
  }
  .skills-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .skill-card {
    min-height: 272px;
    padding: 28px;
  }
  .linkedin-window {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 62px;
    padding: 46px;
  }
  .social-profile--linkedin-card {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 24px;
  }
  .linkedin-badge-slot { justify-items: end; }
  .social-profile__link--linkedin-desktop {
    display: inline;
  }
  .social-profile__link--linkedin-mobile {
    display: none;
  }
  .credentials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    border-top: 0;
  }
  .credential { grid-template-columns: 100px 1fr; gap: 22px; }
  .credential--featured {
    grid-column: 2;
    border-bottom: 0;
  }
  .credential--linked {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    align-items: start;
    padding: 30px;
    border: 1px solid var(--line);
  }
  .credential--linked .credential__link {
    grid-column: 3;
    align-self: end;
    white-space: nowrap;
  }
  .credential.credential--compact {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    padding-left: 0;
    border-bottom: 0;
  }
  .credential__institution-logo { width: 78px; height: 78px; border-radius: 18px; }
  .compact-courses { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .achievement {
    grid-template-columns: 300px 1fr;
    gap: 86px;
  }
  .achievement__badge { width: 260px; }
  .contact { padding: 112px 0; }
  .contact::after { top: -80px; font-size: 24rem; }
}
@media (min-width: 1440px) {
  :root { --max: 1280px; }
  .hero__grid { gap: 96px; }
  .section h2 { font-size: clamp(3.2rem, 4.3vw, 4.5rem); }
}

@media (min-width: 1900px) {
  :root { --max: 1480px; }
  body::before { background-size: auto, auto, 96px 96px, 96px 96px, auto; }
  .hero {
    min-height: 820px;
    padding-bottom: 110px;
  }
  .section { padding-block: 108px; }
}

@media (min-width: 2400px) {
  :root { --max: 1680px; }
  .hero {
    min-height: 900px;
  }
  .section h2 { font-size: clamp(3.6rem, 3.4vw, 5.2rem); }
}

@media (hover: none) {
  .button:hover,
  .skill-card:hover,
  .social-profile:hover {
    transform: none;
    box-shadow: none;
  }
}

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

@media print {
  .site-header,
  .hero__actions,
  .contact,
  .footer { display: none; }
  body,
  body::before {
    color: #111;
    background: white;
  }
  .hero,
  .section {
    min-height: auto;
    padding: 32px 0;
  }
  .section--panel { background: white; }
  .profile-card,
  .skill-card { border-color: #bbb; box-shadow: none; }
  h1 strong,
  .section h2 span,
  .tag,
  .section-kicker { color: #075db4; }
}
