@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --panel: #151515;
  --ink: #f4f4f4;
  --muted: #b0b0b0;
  --line: #303030;
  --accent: #00b52d;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  color: var(--bg);
  background: var(--accent);
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-strip a strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stat-strip a .contact-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.wrap {
  width: min(1184px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 91px;
  border-bottom: 1px solid var(--line);
  background: #0b0b0bee;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px max(48px, calc((100vw - 1184px) / 2));
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 44px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -2px;
  border-radius: 5px;
}
.brand-mark span {
  display: inline;
}
.brand-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.brand-name > span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.6px;
}
.site-header nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  color: var(--accent);
}
.header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.languages {
  display: flex;
  gap: 2px;
}
.languages button {
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 8px 7px;
  font-size: 12px;
  font-family: var(--mono);
  min-height: 38px;
}
.languages button[aria-pressed="true"] {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-contact {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}
.header-contact > span:last-child {
  color: var(--accent);
  font-size: 23px;
}
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  padding-top: 78px;
  padding-bottom: 74px;
  align-items: center;
}
.eyebrow {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 1.45px;
  margin: 0 0 26px;
}
.tiny-bracket,
.eyebrow > span:first-child {
  color: var(--accent);
}
h1 {
  font-size: clamp(64px, 6.7vw, 92px);
  line-height: 1.03;
  letter-spacing: -5px;
  margin: 0 0 20px;
  font-weight: 600;
}
h1 > span {
  color: var(--accent);
}
.name-dot {
  color: var(--ink);
}
.role {
  font-size: 31px;
  letter-spacing: -0.8px;
  margin: 0 0 23px;
  font-weight: 500;
}
.role > span {
  color: var(--muted);
}
.hero-intro {
  color: var(--muted);
  max-width: 470px;
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px 21px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.primary > span:last-child {
  font-size: 23px;
}
.secondary {
  background: transparent;
  color: var(--ink);
}
.secondary:hover {
  background: var(--panel);
}
.hero-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  margin-top: 28px;
}
.hero-meta > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}
.hero-meta svg {
  width: 15px;
  height: 15px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 22px;
}
.portrait-frame {
  width: min(100%, 360px);
  aspect-ratio: 1;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #4a4a4a;
  border-radius: 50%;
  background: #161616;
  box-shadow:
    0 0 0 10px #101010,
    0 0 0 11px #252525;
}
.portrait-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: grayscale(1) contrast(1.04);
}
.portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-top: 34px;
  text-align: center;
}
.portrait-caption > span:first-child {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.portrait-caption > span:last-child {
  color: var(--muted);
  font: 12px/1.7 var(--mono);
}
.terminal-tag {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #898989;
  font: 12px/1.7 var(--mono);
  text-align: center;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  padding: 30px 0;
}
.stat-strip > * {
  padding: 0 30px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat-strip > :first-child {
  padding-left: 0;
  border: 0;
}
.stat-strip strong {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
.stat-strip strong > span {
  color: var(--accent);
  margin-left: 10px;
  font-size: 22px;
}
.stat-strip > * > span {
  color: var(--muted);
  font-size: 12px;
}
.stat-strip a:hover strong {
  color: var(--accent);
}
.section {
  padding-block: 86px;
  scroll-margin-top: 12px;
}
.section-heading {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: -1.5px;
  font-weight: 500;
  margin: 0;
}
.section-heading > p {
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 3px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.skill {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.skill:nth-child(3n) {
  border-right: 0;
}
.skill:nth-child(n + 4) {
  border-bottom: 0;
}
.skill-icon {
  display: block;
  font: 25px var(--mono);
  color: var(--accent);
  margin-bottom: 22px;
}
h3 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
.skill p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 23px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tags > span {
  border: 1px solid var(--line);
  background: #ffffff03;
  padding: 5px 9px;
  border-radius: 4px;
  color: #c5c5c5;
  font: 11px/1.5 var(--mono);
}
.skills-grid .tags > span {
  font-size: 12px;
}
.experience-section {
  border-block: 1px solid var(--line);
  background: #111111;
}
.timeline {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
}
.timeline-aside {
  padding-right: 55px;
}
.timeline-aside p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.timeline-aside .aside-label {
  color: var(--accent);
  font: 12px var(--mono);
  margin-top: 35px;
}
.timeline-list {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}
.job {
  position: relative;
  padding: 0 0 32px;
}
.job::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 11px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  background: #111111;
}
.job.current::before {
  border-color: var(--accent);
  background: var(--accent);
}
.job + .job {
  padding-top: 27px;
  border-top: 1px solid var(--line);
}
.job + .job::before {
  top: 38px;
}
.job-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.job h3 {
  font-size: 23px;
  margin-bottom: 5px;
}
.job-role {
  color: var(--accent);
  margin: 0;
  font-size: 14px;
}
.job-date {
  color: var(--muted);
  text-align: right;
  font: 12px/1.8 var(--mono);
  white-space: nowrap;
}
.job-date span {
  display: block;
}
.job ul {
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 18px 0 0;
}
.job li {
  padding-left: 3px;
  margin-bottom: 6px;
}
.job li::marker {
  color: #6e8b76;
}
.job-note {
  color: var(--muted);
  font: 12px/1.8 var(--mono);
  margin-bottom: 0;
}
details.job-details {
  margin-top: 12px;
}
summary {
  cursor: pointer;
  width: fit-content;
  font-size: 13px;
  color: var(--muted);
}
summary:hover {
  color: var(--accent);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ai-note {
  display: flex;
  gap: 24px;
  align-items: start;
  padding: 27px;
  margin-bottom: 28px;
  border: 1px solid #245537;
  background: #00b52d08;
  border-radius: 8px;
}
.ai-mark {
  flex-shrink: 0;
  font: 15px/1.5 var(--mono);
  color: var(--accent);
  padding: 12px;
  border: 1px solid #245537;
  border-radius: 5px;
}
.ai-note .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
  color: var(--accent);
}
.ai-note h3 {
  font-size: 20px;
}
.ai-note p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.job-date .inline-date {
  display: inline;
  margin-left: 0;
}
.project {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.project.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 45px;
  padding: 37px;
}
.project-eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 11px var(--mono);
  letter-spacing: 0.6px;
  color: var(--muted);
  margin-bottom: 24px;
}
.project-eyebrow > span:first-child {
  color: var(--accent);
}
.project h3 {
  font-size: 29px;
  letter-spacing: -0.9px;
}
.project p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px;
}
.project ul {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 18px;
  margin: 0 0 22px;
}
.project ul li::marker {
  color: var(--accent);
}
.project-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 25px;
  font-size: 14px;
}
.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #2c603d;
  padding-bottom: 4px;
}
.project-links a:hover {
  color: var(--accent);
}
.project-links span[aria-hidden] {
  color: var(--accent);
}
.architecture {
  min-height: 300px;
  background: #0b0b0b;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.architecture-label {
  color: var(--muted);
  font: 11px/1.6 var(--mono);
  margin-bottom: 26px;
}
.arch-node {
  background: #101b14;
  border: 1px solid #285236;
  padding: 14px;
  border-radius: 5px;
  text-align: center;
  font: 13px var(--mono);
}
.arch-node.gateway {
  border-color: var(--accent);
  color: var(--accent);
}
.arch-arrow {
  text-align: center;
  font: 11px/1.8 var(--mono);
  color: var(--muted);
  padding: 7px;
}
.arch-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.arch-caption {
  color: var(--muted);
  font: 10px/1.7 var(--mono);
  margin-top: 20px;
}
.mini-projects {
  margin-top: 20px;
}
.mini-project {
  border-block: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.mini-project h3 {
  font-size: 17px;
  margin-bottom: 5px;
}
.mini-project p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.mini-project > span {
  color: var(--accent);
}
.mini-project:hover h3 {
  color: var(--accent);
}
.foundation {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-block: 52px;
}
.foundation h3 {
  font-size: 20px;
}
.foundation p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 0;
}
.foundation .eyebrow {
  margin-bottom: 14px;
}
.other-skills {
  margin-top: 22px;
}
.other-skills p {
  font-size: 14px;
}
.contact-section {
  padding: 70px 0 46px;
  background: var(--accent);
  color: var(--bg);
}
.contact-section .eyebrow,
.contact-section .eyebrow > span:first-child {
  color: #082713;
}
.contact-main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}
.contact-main h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -2px;
  max-width: 650px;
  white-space: pre-line;
}
.contact-main > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  border-bottom: 1px solid #2c603d;
  padding-bottom: 7px;
  white-space: nowrap;
}
.contact-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: 14px;
}
.contact-links a:hover,
.contact-main a:hover {
  color: #061d0d;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer {
  padding: 25px 0;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a:hover {
  color: var(--accent);
}
.print-contact {
  display: none;
}
@media (min-width: 1700px) {
  .hero {
    padding-block: 100px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    padding-inline: 32px;
  }
  .site-header nav {
    gap: 17px;
  }
  .brand-name {
    display: none;
  }
  .hero {
    gap: 40px;
  }
  h1 {
    font-size: 72px;
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .skill:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .skill:nth-child(2n) {
    border-right: 0;
  }
  .skill:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .skill:nth-child(n + 5) {
    border-bottom: 0;
  }
  .timeline {
    grid-template-columns: 1fr 2.7fr;
  }
  .timeline-aside {
    padding-right: 25px;
  }
  .project.featured {
    gap: 25px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 74px;
    padding: 12px 20px;
    gap: 12px;
  }
  .site-header nav {
    display: none;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .header-actions {
    gap: 15px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 48px;
  }
  h1 {
    font-size: clamp(65px, 12vw, 86px);
    letter-spacing: -4px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .hero-copy .eyebrow {
    font-size: 11px;
  }
  .hero-intro {
    max-width: none;
  }
  .hero-visual {
    width: 100%;
    max-width: 360px;
    padding: 18px;
    margin-inline: auto;
  }
  .portrait-frame {
    width: min(100%, 290px);
  }
  .portrait-caption > span:last-child {
    font-size: 11px;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .stat-strip > * {
    padding: 22px 16px;
    border: 0;
  }
  .stat-strip > :first-child {
    padding: 22px 16px;
  }
  .stat-strip > :nth-child(2n) {
    border-left: 1px solid var(--line);
  }
  .stat-strip > :nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .stat-strip strong {
    font-size: 25px;
  }
  .stat-strip > * > span {
    font-size: 11px;
  }
  .section {
    padding-block: 56px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 16px;
  }
  h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .skill {
    padding: 26px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .skill:last-child {
    border-bottom: 0 !important;
  }
  .skill-icon {
    margin-bottom: 15px;
  }
  .timeline {
    display: block;
  }
  .timeline-aside {
    padding: 0 0 24px;
  }
  .timeline-aside p {
    margin-top: 0;
  }
  .timeline-aside .aside-label {
    margin-top: 16px;
  }
  .timeline-list {
    margin-left: 5px;
    padding-left: 22px;
  }
  .job::before {
    left: -27px;
  }
  .job h3 {
    font-size: 20px;
  }
  .job-heading {
    flex-wrap: wrap;
    gap: 8px;
  }
  .job-date {
    text-align: left;
    white-space: normal;
    max-width: 100%;
  }
  .job-date span {
    display: inline;
    margin-left: 8px;
  }
  .job + .job {
    padding-top: 24px;
  }
  .job + .job::before {
    top: 35px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project {
    padding: 26px;
  }
  .project.featured {
    grid-column: auto;
    display: flex;
    padding: 26px;
    gap: 27px;
  }
  .project h3 {
    font-size: 26px;
  }
  .architecture {
    padding: 20px;
    min-height: 280px;
  }
  .mini-projects {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mini-project:last-child {
    border-top: 0;
  }
  .foundation {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 36px;
  }
  .contact-main {
    display: block;
  }
  .contact-main h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .contact-main > a {
    display: inline-flex;
    margin-top: 25px;
    font-size: 18px;
  }
  .contact-links {
    gap: 17px 25px;
  }
  .contact-section {
    padding-block: 48px;
  }
  .footer {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 760px) {
  .ai-note {
    padding: 22px;
    gap: 16px;
  }
  .ai-mark {
    font-size: 12px;
    padding: 8px;
  }
  .ai-note h3 {
    font-size: 18px;
  }
}
.print-only {
  display: none;
}
.print-sheet {
  display: contents;
}
@media print {
  @page {
    size: A4;
    margin: 0;
  }
  :root {
    color-scheme: light;
    --bg: #fff;
    --panel: #f5f5f5;
    --ink: #171717;
    --muted: #444;
    --line: #ccc;
    --accent: #222;
  }
  html {
    scroll-behavior: auto;
  }
  body {
    background: white;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 9.5pt;
    line-height: 1.45;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .wrap {
    width: 100%;
    margin-inline: 0;
  }
  .print-sheet {
    display: block;
    padding: 10mm 12mm;
  }
  .print-sheet + .print-sheet {
    break-before: page;
  }
  .site-header,
  .hero-buttons,
  .hero-meta,
  .skip-link,
  .stat-strip,
  .timeline-aside,
  .architecture,
  .footer,
  .contact-section,
  .portrait-caption,
  .terminal-tag,
  .other-skills {
    display: none !important;
  }
  .print-only {
    display: block;
  }
  a {
    color: inherit;
  }
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32mm;
    gap: 9mm;
    align-items: center;
    padding: 0 0 5mm;
    border-bottom: 2px solid var(--accent);
  }
  .hero .eyebrow {
    display: none;
  }
  h1 {
    font-size: 30pt;
    line-height: 1.08;
    letter-spacing: -1.25px;
    margin: 0 0 2mm;
    font-weight: 650;
  }
  h1 br {
    display: none;
  }
  h1 > span {
    margin-left: 2mm;
    color: var(--ink);
  }
  .name-dot {
    display: none;
  }
  .role {
    font-size: 16pt;
    letter-spacing: -0.5px;
    color: var(--accent);
    margin: 0 0 2mm;
  }
  .role > span {
    color: var(--accent);
  }
  .hero-intro {
    font-size: 9.5pt;
    max-width: none;
    line-height: 1.5;
    margin: 0 0 2.5mm;
    color: var(--muted);
  }
  .hero-visual {
    display: flex;
    width: 32mm;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .portrait-frame {
    width: 32mm;
    height: 32mm;
    padding: 1mm;
    border: 1px solid #888;
    background: white;
    box-shadow: none;
  }
  .portrait-frame img {
    object-position: 50% 38%;
  }
  .print-contact {
    display: block;
    font-size: 8pt;
    line-height: 1.5;
  }
  .print-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1mm 3mm;
  }
  .print-contact-row a {
    display: inline-flex;
    align-items: center;
    gap: 1mm;
    color: var(--accent);
    font-weight: 600;
  }
  .print-contact p {
    margin: 1.5mm 0 0;
    color: var(--muted);
    font-size: 7.8pt;
  }
  .section {
    padding: 4mm 0 0;
  }
  .section-heading {
    display: block;
    margin: 0 0 3mm;
    break-after: avoid;
  }
  .section-heading > p,
  .section-heading h2 {
    display: none;
  }
  .section-heading .eyebrow {
    display: block;
    margin: 0;
    color: var(--accent);
    font: 700 10.5pt/1.4 var(--sans);
    letter-spacing: 1.2px;
  }
  .section-heading .eyebrow > span:first-child {
    display: none;
  }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2mm 3mm;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
  .skill {
    padding: 2mm 2.5mm;
    border: 1px solid var(--line) !important;
    border-radius: 2mm;
    background: var(--panel);
    break-inside: avoid;
  }
  .skill-icon,
  .skill > p {
    display: none;
  }
  .skill h3 {
    font-size: 9pt;
    line-height: 1.4;
    font-weight: 650;
    letter-spacing: 0;
    margin: 0 0 0.5mm;
  }
  .tags {
    display: block;
    line-height: 1.35;
  }
  .tags > span {
    display: inline;
    border: 0;
    background: none;
    color: var(--muted);
    font: 8pt/1.4 var(--sans) !important;
    padding: 0;
  }
  .tags > span + span::before {
    content: " · ";
  }
  .experience-section {
    background: none;
    border: 0;
  }
  .timeline {
    display: block;
  }
  .timeline-list {
    border-left: 1px solid var(--line);
    padding-left: 3.5mm;
    margin: 0 0 0 1mm;
  }
  .job {
    padding: 0 0 1.5mm;
    break-inside: avoid;
  }
  .job::before {
    width: 1.6mm;
    height: 1.6mm;
    left: -4.45mm;
    top: 2mm;
    border-color: var(--accent);
    background: white;
  }
  .job.current::before {
    background: var(--accent);
  }
  .job + .job {
    padding-top: 1.5mm;
    border-top: 1px solid var(--line);
  }
  .job + .job::before {
    top: 3.5mm;
  }
  .job-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48mm;
    gap: 4mm;
    align-items: start;
  }
  .job h3 {
    font-size: 10.5pt;
    line-height: 1.25;
    font-weight: 650;
    margin: 0 0 0.6mm;
    letter-spacing: -0.2px;
  }
  .job-role {
    font-size: 8.7pt;
    line-height: 1.35;
    color: var(--accent);
  }
  .job-date {
    font: 8pt/1.4 var(--sans);
    text-align: right;
    white-space: normal;
    color: var(--muted);
  }
  .job-date span {
    display: block;
    margin-left: 0;
  }
  .job-date .inline-date {
    display: inline;
  }
  .job ul,
  .job-details {
    display: none;
  }
  .job-summary {
    color: var(--muted);
    margin: 1.6mm 0 0;
    font-size: 9pt;
    line-height: 1.45;
    orphans: 2;
    widows: 2;
  }
  .job-note {
    font: 7.2pt/1.4 var(--sans);
    margin: 1mm 0 0;
    color: var(--muted);
  }
  .print-page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4mm;
    margin-top: 3mm;
    padding-top: 2mm;
    border-top: 1px solid var(--line);
    font: 7.5pt/1.4 var(--mono);
    color: var(--muted);
    break-inside: avoid;
  }
  #projects {
    padding-top: 0;
  }
  .print-page-heading {
    display: flex;
    justify-content: space-between;
    gap: 5mm;
    padding-bottom: 2mm;
    margin-bottom: 3mm;
    border-bottom: 2px solid var(--accent);
    font: 8pt/1.4 var(--mono);
    color: var(--muted);
  }
  .print-page-heading > span:first-child {
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 650;
  }
  .ai-note {
    display: block;
    background: var(--panel);
    padding: 2.5mm 4mm;
    margin: 0 0 3mm;
    border: 0;
    border-left: 2px solid var(--accent);
    border-radius: 0;
    break-inside: avoid;
  }
  .ai-mark {
    display: none;
  }
  .ai-note .eyebrow {
    color: var(--accent);
    font-size: 7pt;
    line-height: 1.4;
    margin: 0 0 1mm;
  }
  .ai-note h3 {
    font-size: 10.5pt;
    font-weight: 600;
    margin: 0 0 1mm;
  }
  .ai-note p:last-child {
    font-size: 9pt;
    line-height: 1.45;
    color: var(--muted);
    margin: 0;
  }
  .project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2mm;
  }
  .project,
  .project.featured {
    display: block;
    border: 1px solid var(--line);
    border-radius: 2mm;
    padding: 2mm 3mm;
    background: white;
    break-inside: avoid;
  }
  .project.featured {
    grid-column: 1 / -1;
    border-left: 2px solid var(--accent);
    padding: 2.5mm 3.5mm;
  }
  .project-eyebrow {
    font-size: 7pt;
    line-height: 1.4;
    letter-spacing: 0.4px;
    margin-bottom: 1.5mm;
    color: var(--muted);
  }
  .project h3 {
    font-size: 12pt;
    line-height: 1.3;
    font-weight: 650;
    letter-spacing: -0.3px;
    margin: 0 0 1.5mm;
  }
  .project.featured h3 {
    font-size: 14pt;
  }
  .project p {
    color: var(--muted);
    font-size: 8.5pt;
    line-height: 1.4;
    margin: 0 0 2mm;
  }
  .project ul {
    color: var(--muted);
    font-size: 8pt;
    line-height: 1.4;
    margin: 0 0 2mm;
    padding-left: 4mm;
  }
  .project ul li {
    margin-bottom: 0.7mm;
  }
  .project-links {
    display: flex;
    gap: 4mm;
    padding-top: 2mm;
    margin: 0;
    font-size: 8pt;
    line-height: 1.4;
  }
  .project-links a {
    color: var(--accent);
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.4mm;
  }
  .print-contact-row .contact-icon,
  .project-links .contact-icon {
    width: 3mm;
    height: 3mm;
  }
  .project-links a::after {
    content: none;
  }
  .project-links span[aria-hidden] {
    display: none;
  }
  .mini-projects {
    display: block;
    margin-top: 3mm;
  }
  .mini-project {
    display: flex;
    border: 0;
    padding: 0;
    break-inside: avoid;
  }
  .mini-project h3 {
    font-size: 9pt;
    font-weight: 650;
    margin: 0 0 0.5mm;
  }
  .mini-project p {
    font-size: 8pt;
    line-height: 1.4;
    color: var(--muted);
  }
  .mini-project > span {
    display: none;
  }
  .foundation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3mm 0 0;
    margin-top: 3mm;
    gap: 6mm;
    border-top: 1px solid var(--line);
    break-inside: avoid;
  }
  .foundation .eyebrow {
    font: 700 8pt/1.4 var(--sans);
    color: var(--accent);
    margin: 0 0 1.5mm;
    letter-spacing: 0.7px;
  }
  .foundation .eyebrow > span:first-child {
    display: none;
  }
  .foundation h3 {
    font-size: 10pt;
    font-weight: 650;
    margin: 0 0 1mm;
  }
  .foundation p {
    font-size: 8.5pt;
    line-height: 1.45;
    margin: 0.6mm 0 0;
    color: var(--muted);
  }
  .print-sheet + .print-sheet > .print-page-footer {
    margin-top: 2mm;
  }
}
