:root {
  --bg: #080d13;
  --surface: #0f151d;
  --surface-2: #131b25;
  --surface-3: #172230;
  --text: #edf3f8;
  --muted: #9eacb9;
  --muted-2: #748392;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #71aaff;
  --primary-strong: #4e91f5;
  --cyan: #65d8dc;
  --green: #75dda2;
  --amber: #f2c36b;
  --radius: 20px;
  --radius-small: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(63, 114, 181, 0.17),
      transparent 34rem
    ),
    radial-gradient(
    circle at 90% 18%,
    rgba(45, 151, 152, 0.09),
    transparent 28rem
  ),
    var(--bg);
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
svg {
  display: block;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #071019;
  background: var(--primary);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 13, 19, 0.8);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: var(--text);
}
.back-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}
.language-option {
  min-width: 40px;
  height: 32px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.language-option:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.language-option[aria-pressed="true"] {
  color: #071019;
  background: var(--primary);
  box-shadow: 0 5px 16px rgba(75, 143, 239, 0.25);
}
.print-button {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(113, 170, 255, 0.38);
  border-radius: 11px;
  color: var(--primary);
  background: rgba(113, 170, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.print-button:hover {
  background: rgba(113, 170, 255, 0.14);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.print-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-link:focus-visible,
.language-option:focus-visible,
.print-button:focus-visible,
.contact-list a:focus-visible,
.translation-project:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.cv-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 40px auto 72px;
}
.hero {
  position: relative;
  min-height: 400px;
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
  align-items: center;
  gap: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(118deg, rgba(113, 170, 255, 0.11), transparent 40%),
    var(--surface);
  box-shadow: var(--shadow);
}
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -100px;
  top: -130px;
  border: 1px solid rgba(101, 216, 220, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(101, 216, 220, 0.025),
    0 0 0 100px rgba(101, 216, 220, 0.02);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(101, 216, 220, 0.1);
}
.hero h1 {
  max-width: 750px;
  margin: 18px 0 2px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.hero-role {
  margin: 12px 0 0;
  color: var(--primary);
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.hero-summary {
  max-width: 760px;
  margin: 24px 0 0;
  color: #b5c0cb;
  font-size: 16px;
  line-height: 1.75;
}
.contact-list {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}
.contact-list a {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.contact-list a:hover {
  color: var(--text);
  border-color: rgba(113, 170, 255, 0.42);
  background: rgba(113, 170, 255, 0.06);
}
.contact-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.portrait-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  justify-self: end;
}
.portrait-glow {
  position: absolute;
  inset: 12% -8% -8%;
  border-radius: 40%;
  background: linear-gradient(
    145deg,
    rgba(113, 170, 255, 0.28),
    rgba(101, 216, 220, 0.06)
  );
  filter: blur(35px);
}
.portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.42);
}
.portrait-label {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: max-content;
  max-width: calc(100% - 24px);
  min-height: 36px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #c7d1db;
  background: rgba(15, 21, 29, 0.94);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.28);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%);
}
.status-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(117, 221, 162, 0.1);
}

.focus-grid {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.focus-card {
  min-width: 0;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(15, 21, 29, 0.78);
}
.focus-icon, .project-icon, .large-section-icon {
  display: grid;
  place-items: center;
  flex: none;
  color: var(--primary);
  background: rgba(113, 170, 255, 0.09);
  border: 1px solid rgba(113, 170, 255, 0.18);
}
.focus-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
.focus-icon svg, .project-icon svg, .large-section-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.focus-card div {
  min-width: 0;
}
.focus-card strong, .focus-card span {
  display: block;
}
.focus-card strong {
  font-size: 13px;
}
.focus-card div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.cv-layout {
  display: grid;
  grid-template-columns: minmax(245px, 0.62fr) minmax(0, 1.55fr);
  align-items: start;
  gap: 18px;
}
.sidebar, .content-column {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.panel {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 21, 29, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}
.sidebar .panel {
  padding: 24px;
}
.section-heading {
  margin-bottom: 22px;
}
.section-heading.compact {
  margin-bottom: 18px;
}
.section-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.section-heading.compact h2 {
  font-size: 17px;
}
.section-lead {
  margin: 0;
  color: #adb9c5;
  line-height: 1.78;
}

.skill-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.skill-list li {
  position: relative;
  min-height: 31px;
  padding: 6px 9px 6px 31px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}
.skill-list li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translateY(-65%) rotate(-45deg);
}
.skill-list span {
  color: #c9d2dc;
  font-size: 11px;
  font-weight: 700;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tag-cloud span, .project-tags span {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #aab6c2;
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
  font-weight: 700;
}
.tag-cloud span {
  padding: 5px 8px;
}
.placeholder-entry {
  padding: 11px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-top: 1px solid var(--line);
}
.placeholder-entry:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.placeholder-entry:last-child {
  padding-bottom: 0;
}
.placeholder-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px dashed rgba(113, 170, 255, 0.45);
  border-radius: 7px;
  color: var(--primary);
  font-weight: 600;
}
.placeholder-entry strong {
  display: block;
  color: #bbc5cf;
  font-size: 12px;
}
.placeholder-entry p {
  margin: 2px 0 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.45;
}
.language-list {
  margin: 0;
  display: grid;
  gap: 12px;
}
.language-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.language-list dt {
  color: #ccd5de;
  font-size: 12px;
  font-weight: 700;
}
.language-list dd {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  text-align: right;
}

.timeline {
  position: relative;
  display: grid;
  gap: 28px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(var(--primary), rgba(113, 170, 255, 0.08));
}
.timeline-item {
  position: relative;
  padding-left: 36px;
}
.timeline-marker {
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 2px rgba(113, 170, 255, 0.35);
}
.timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.timeline-head h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.timeline-company {
  margin: 4px 0 0;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
}
.timeline-date {
  flex: none;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}
.achievement-list {
  margin: 15px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.achievement-list li {
  position: relative;
  padding-left: 18px;
  color: #aeb9c4;
  font-size: 13px;
  line-height: 1.65;
}
.achievement-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}
.timeline-placeholder {
  opacity: 0.58;
}
.timeline-placeholder .timeline-marker {
  background: transparent;
  border-color: var(--surface);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.project-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.018);
}
.project-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
.project-card h3 {
  margin: 15px 0 7px;
  font-size: 13px;
}
.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.project-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.project-tags span {
  padding: 3px 6px;
  font-size: 8px;
}

.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 14px;
}
.large-section-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}
.translation-projects {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
.translation-project {
  min-width: 0;
  min-height: 67px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
a.translation-project:hover {
  border-color: rgba(113, 170, 255, 0.38);
  background: rgba(113, 170, 255, 0.05);
  transform: translateY(-1px);
}
.translation-project > span:first-child {
  min-width: 0;
  display: grid;
  gap: 5px;
}
.translation-project strong {
  overflow-wrap: anywhere;
  font-size: 12px;
}
.translation-project > svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--muted-2);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.status {
  width: max-content;
  padding: 3px 6px;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}
.status-complete {
  color: var(--green);
  background: rgba(117, 221, 162, 0.09);
}
.status-paused {
  color: var(--amber);
  background: rgba(242, 195, 107, 0.09);
}
.status-progress {
  color: var(--primary);
  background: rgba(113, 170, 255, 0.09);
}
.translation-project-pending {
  color: #c7d0da;
}
.repo-soon {
  flex: none;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 700;
}

.strength-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  list-style: none;
}
.strength-grid li {
  position: relative;
  padding-left: 18px;
}
.strength-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--cyan);
  border-radius: 2px;
  transform: rotate(45deg);
}
.strength-grid strong, .strength-grid span {
  display: block;
}
.strength-grid strong {
  font-size: 12px;
}
.strength-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  font-size: 11px;
}
.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    padding: 42px;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 34px;
  }
  .cv-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner, .cv-shell, .footer-inner {
    width: min(100% - 24px, var(--max-width));
  }
  .header-inner {
    min-height: 64px;
  }
  .print-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .print-button {
    width: 42px;
    padding: 0;
  }
  .cv-shell {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .hero {
    padding: 34px 24px 40px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy {
    display: grid;
    justify-items: center;
  }
  .hero h1 {
    font-size: clamp(38px, 12vw, 60px);
  }
  .hero-summary {
    max-width: 60ch;
  }
  .contact-list {
    justify-content: center;
  }
  .portrait-wrap {
    grid-row: 1;
    width: 170px;
    justify-self: center;
  }
  .portrait-label {
    display: none;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .focus-card {
    padding: 14px;
  }
  .cv-layout {
    grid-template-columns: 1fr;
  }
  .content-column {
    grid-row: 1;
  }
  .sidebar {
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .sidebar .panel {
    height: 100%;
  }
}

@media (max-width: 560px) {
  .back-link span {
    display: none;
  }
  .hero {
    border-radius: 18px;
  }
  .hero-summary {
    font-size: 14px;
    line-height: 1.7;
  }
  .contact-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-list a {
    justify-content: center;
  }
  .panel, .sidebar .panel {
    padding: 22px;
    border-radius: 16px;
  }
  .sidebar {
    grid-template-columns: 1fr;
  }
  .timeline-head {
    display: grid;
    gap: 8px;
  }
  .timeline-date {
    width: max-content;
  }
  .project-grid, .translation-projects, .strength-grid {
    grid-template-columns: 1fr;
  }
  .heading-with-icon {
    align-items: flex-start;
  }
}

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

@media print {
  @page {
    size: A4;
    margin: 11mm;
  }
  :root {
    --bg: #fff;
    --surface: #fff;
    --surface-2: #fff;
    --surface-3: #fff;
    --text: #111820;
    --muted: #4e5b66;
    --muted-2: #67737d;
    --line: rgba(10, 22, 32, 0.16);
    --line-strong: rgba(10, 22, 32, 0.2);
    --primary: #1767b2;
    --primary-strong: #1767b2;
    --cyan: #167c82;
    --green: #176a3c;
    --amber: #855e14;
  }
  html, body {
    background: #fff !important;
    color: var(--text);
    font-size: 10px;
  }
  body::before,
  .site-header,
  .site-footer,
  .skip-link,
  .portrait-glow,
  .placeholder-panel,
  .timeline-placeholder {
    display: none !important;
  }
  .cv-shell {
    width: 100%;
    margin: 0;
  }
  .hero {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 1fr 105px;
    gap: 20px;
    border-radius: 12px;
    background: #f5f8fb !important;
    box-shadow: none;
    break-inside: avoid;
  }
  .hero::after {
    display: none;
  }
  .hero h1 {
    margin-top: 8px;
    font-size: 30px;
  }
  .hero-role {
    margin-top: 5px;
    font-size: 16px;
  }
  .hero-summary {
    margin-top: 10px;
    font-size: 9px;
    line-height: 1.55;
  }
  .portrait {
    border-radius: 12px;
    box-shadow: none;
  }
  .portrait-label {
    display: none;
  }
  .contact-list {
    margin-top: 12px;
    gap: 4px;
  }
  .contact-list a {
    min-height: 0;
    padding: 3px 6px;
    border: 0;
    background: transparent;
    font-size: 7px;
  }
  .contact-list svg {
    width: 10px;
    height: 10px;
  }
  .focus-grid {
    margin: 8px 0;
    gap: 6px;
  }
  .focus-card {
    padding: 8px;
    border-radius: 8px;
    background: #f8fafc;
  }
  .focus-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }
  .focus-icon svg {
    width: 14px;
    height: 14px;
  }
  .focus-card strong {
    font-size: 8px;
  }
  .focus-card div > span {
    font-size: 6.5px;
  }
  .cv-layout {
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 8px;
  }
  .sidebar, .content-column {
    gap: 8px;
  }
  .panel, .sidebar .panel {
    padding: 12px;
    border-radius: 9px;
    background: #fff;
    box-shadow: none;
    break-inside: avoid;
  }
  .section-heading, .section-heading.compact {
    margin-bottom: 8px;
  }
  .section-kicker {
    margin-bottom: 1px;
    font-size: 6px;
  }
  .section-heading h2, .section-heading.compact h2 {
    font-size: 11px;
  }
  .section-lead {
    font-size: 8px;
    line-height: 1.55;
  }
  .skill-list {
    gap: 4px;
  }
  .skill-list li {
    min-height: 20px;
    padding: 3px 5px 3px 19px;
    border-radius: 5px;
  }
  .skill-list li::before {
    left: 7px;
    width: 5px;
    height: 3px;
    border-width: 1px;
  }
  .skill-list span {
    font-size: 7px;
  }
  .tag-cloud {
    gap: 3px;
  }
  .tag-cloud span {
    padding: 2px 4px;
    font-size: 6px;
  }
  .placeholder-entry {
    padding: 6px 0;
  }
  .placeholder-icon {
    width: 15px;
    height: 15px;
  }
  .placeholder-entry strong, .language-list dt {
    font-size: 7px;
  }
  .placeholder-entry p, .language-list dd {
    font-size: 6px;
  }
  .timeline {
    gap: 12px;
  }
  .timeline-item {
    padding-left: 21px;
  }
  .timeline::before {
    left: 5px;
  }
  .timeline-marker {
    width: 11px;
    height: 11px;
    border-width: 3px;
  }
  .timeline-head h3 {
    font-size: 9px;
  }
  .timeline-company {
    font-size: 6.5px;
  }
  .timeline-date {
    padding: 2px 4px;
    font-size: 5.5px;
  }
  .achievement-list {
    margin-top: 7px;
    gap: 3px;
  }
  .achievement-list li {
    padding-left: 10px;
    font-size: 7px;
    line-height: 1.4;
  }
  .achievement-list li::before {
    width: 3px;
    height: 3px;
  }
  .project-grid {
    gap: 5px;
  }
  .project-card {
    padding: 8px;
    border-radius: 7px;
  }
  .project-icon {
    width: 23px;
    height: 23px;
    border-radius: 6px;
  }
  .project-icon svg {
    width: 13px;
    height: 13px;
  }
  .project-card h3 {
    margin: 6px 0 2px;
    font-size: 7.5px;
  }
  .project-card p {
    font-size: 6.5px;
    line-height: 1.4;
  }
  .project-tags {
    margin-top: 5px;
  }
  .project-tags span {
    font-size: 5px;
  }
  .large-section-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .large-section-icon svg {
    width: 15px;
    height: 15px;
  }
  .translation-projects {
    margin-top: 8px;
    gap: 4px;
  }
  .translation-project {
    min-height: 34px;
    padding: 5px 7px;
    border-radius: 6px;
  }
  .translation-project strong {
    font-size: 7px;
  }
  .translation-project > svg {
    width: 10px;
    height: 10px;
  }
  .status, .repo-soon {
    font-size: 5px;
  }
  .strength-grid {
    gap: 7px 12px;
  }
  .strength-grid strong {
    font-size: 7px;
  }
  .strength-grid span {
    font-size: 6px;
    line-height: 1.35;
  }
  .strength-grid li {
    padding-left: 10px;
  }
  .strength-grid li::before {
    width: 4px;
    height: 4px;
    top: 4px;
  }
  .reveal, .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  a {
    text-decoration: none;
  }
}
