:root {
  --navy-950: #061427;
  --navy-900: #071a31;
  --navy-800: #0b2442;
  --navy-700: #12375f;
  --red-600: #d71920;
  --red-700: #ac1218;
  --gold-500: #c99b45;
  --gold-300: #f1d38b;
  --sand-50: #fffaf0;
  --sand-100: #f8f1e4;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #111827;
  --muted: #677386;
  --line: color-mix(in srgb, var(--navy-950), transparent 88%);
  --shadow-sm: 0 10px 28px rgb(6 20 39 / 10%);
  --shadow-md: 0 24px 70px rgb(6 20 39 / 18%);
  --shadow-glow: 0 30px 90px rgb(215 25 32 / 18%);
  --radius-sm: clamp(0.75rem, 0.4vw + 0.65rem, 1rem);
  --radius-md: clamp(1rem, 0.9vw + 0.7rem, 1.6rem);
  --radius-lg: clamp(1.4rem, 1.4vw + 1rem, 2.4rem);
  --site-max: 1180px;
  --pad-x: clamp(1rem, 3.4vw, 2.6rem);
  --pad-y: clamp(3rem, 7vw, 7rem);
  --step--1: clamp(0.82rem, 0.12vw + 0.78rem, 0.95rem);
  --step-0: clamp(0.96rem, 0.18vw + 0.9rem, 1.08rem);
  --step-1: clamp(1.12rem, 0.42vw + 1rem, 1.4rem);
  --step-2: clamp(1.35rem, 0.85vw + 1.08rem, 1.95rem);
  --step-3: clamp(1.75rem, 1.7vw + 1.2rem, 3rem);
  --step-4: clamp(2.35rem, 4.8vw + 1rem, 6rem);
  --section-columns: minmax(17rem, 0.38fr) minmax(0, 1fr);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  margin: 0;
  min-height: 100svh;
  color: var(--ink);
  font-family: Arial, Aptos, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.55;
  background:
    radial-gradient(circle at 12% 4%, rgb(215 25 32 / 12%), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgb(201 155 69 / 18%), transparent 30rem),
    linear-gradient(135deg, #fffdf8 0%, #f5efe4 52%, #eef4fb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(30deg, #061427 12%, transparent 12.5%, transparent 87%, #061427 87.5%, #061427),
    linear-gradient(150deg, #061427 12%, transparent 12.5%, transparent 87%, #061427 87.5%, #061427),
    linear-gradient(30deg, #061427 12%, transparent 12.5%, transparent 87%, #061427 87.5%, #061427),
    linear-gradient(150deg, #061427 12%, transparent 12.5%, transparent 87%, #061427 87.5%, #061427);
  background-size: 72px 126px;
  background-position: 0 0, 0 0, 36px 63px, 36px 63px;
  z-index: -2;
}

a { color: inherit; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--red-600); color: var(--white); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--navy-950);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  background: transparent;
  z-index: 90;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
}

.site-shell {
  width: min(var(--site-max), calc(100% - (var(--pad-x) * 2)));
  margin-inline: auto;
}
.section-pad { padding-block: var(--pad-y); }

.site-header {
  position: sticky;
  top: 0.7rem;
  z-index: 50;
  padding-block: 0.7rem;
}
.topbar {
  min-height: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 999px;
  background: rgb(255 255 255 / 68%);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: var(--shadow-sm);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: clamp(2.4rem, 1.6vw + 2rem, 3.2rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--red-600), var(--gold-500), var(--navy-800), var(--red-600));
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 14px 34px rgb(215 25 32 / 25%);
}
.brand strong,
.brand small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand strong { font-size: var(--step-0); line-height: 1.1; }
.brand small { font-size: 0.78rem; color: var(--muted); }
.nav-toggle { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.35rem, 0.7vw, 0.75rem);
  flex-wrap: wrap;
}
.nav-links a,
.pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 70%);
  color: var(--ink);
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.nav-links a:hover,
.button:hover,
.pill:hover { transform: translateY(-2px); border-color: rgb(215 25 32 / 25%); box-shadow: var(--shadow-sm); }
.pill--primary,
.button--primary { background: var(--red-600); color: var(--white); border-color: var(--red-600); box-shadow: 0 16px 36px rgb(215 25 32 / 24%); }
.button--ghost { background: rgb(6 20 39 / 5%); }
.button:focus-visible,
a:focus-visible,
.nav-toggle:focus-visible { outline: 3px solid rgb(215 25 32 / 45%); outline-offset: 3px; }

.hero {
  min-height: calc(100svh - 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red-700);
  font-size: clamp(0.72rem, 0.24vw + 0.68rem, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  margin: 0;
  max-width: 11ch;
  color: var(--navy-950);
  font-size: var(--step-4);
  line-height: 0.9;
  letter-spacing: -0.075em;
}
h2 {
  margin: 0 0 1rem;
  color: var(--navy-950);
  font-size: var(--step-3);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: var(--step-1);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero__headline {
  margin: 1rem 0 0;
  font-size: var(--step-2);
  line-height: 1.2;
  color: var(--red-700);
  font-weight: 850;
}
.hero__narrative {
  max-width: 72ch;
  margin: 1rem 0 0;
  color: #354052;
  font-size: var(--step-1);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.hero__actions--wrap { margin-top: 1.25rem; }
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 64%);
  color: #354052;
  font-size: var(--step--1);
  font-weight: 700;
}
.hero__visual {
  position: relative;
  display: grid;
  gap: 1rem;
}
.portrait-card {
  position: relative;
  width: min(100%, 31rem);
  justify-self: end;
  border-radius: clamp(1.6rem, 3vw, 3.2rem);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 70%);
  background: var(--white);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.portrait-card picture,
.portrait-card img { width: 100%; }
.portrait-card img {
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  object-position: 50% 22%;
}
.portrait-card::before {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
  z-index: 2;
}
.portrait-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgb(201 155 69 / 24%), transparent 18rem);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.dashboard-card {
  width: min(100%, 34rem);
  justify-self: start;
  margin-top: -4rem;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: var(--radius-lg);
  background: rgb(6 20 39 / 84%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
  padding: clamp(1rem, 1.8vw, 1.4rem);
  backdrop-filter: blur(18px);
}
.dashboard-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #dbe7f7;
  font-weight: 850;
}
.dashboard-card__header strong {
  color: var(--gold-300);
  font-size: var(--step-2);
  letter-spacing: -0.05em;
}
.radar {
  position: relative;
  height: clamp(4rem, 9vw, 6.5rem);
  margin: 0.5rem 0 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(255 255 255 / 7%) 1px, transparent 1px),
    radial-gradient(circle at 38% 50%, rgb(215 25 32 / 30%), transparent 20%),
    radial-gradient(circle at 70% 48%, rgb(201 155 69 / 26%), transparent 24%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}
.radar span {
  position: absolute;
  top: 50%;
  left: 10%;
  height: 3px;
  width: 80%;
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
  opacity: 0.7;
  animation: scan 3.6s ease-in-out infinite;
}
.radar span:nth-child(2) { animation-delay: 0.8s; top: 34%; }
.radar span:nth-child(3) { animation-delay: 1.6s; top: 66%; }
@keyframes scan { 0%, 100% { transform: translateX(-18%) scaleX(0.35); opacity: 0.15; } 50% { transform: translateX(18%) scaleX(1); opacity: 0.85; } }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.stat-card {
  padding: 0.8rem;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 8%);
}
.stat-card strong {
  display: block;
  color: var(--gold-300);
  font-size: var(--step-2);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: #dbe7f7;
  font-size: 0.78rem;
  line-height: 1.3;
}

.focus-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.45fr) 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 68%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}
.focus-panel h2 { font-size: var(--step-2); margin-bottom: 0.25rem; }
.focus-panel p { margin: 0; color: var(--muted); }
.focus-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}
.focus-button[aria-selected="true"] {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: var(--section-columns);
  gap: clamp(1.8rem, 4vw, 4rem);
  border-top: 1px solid rgb(6 20 39 / 10%);
}
.section-title { position: sticky; top: 7rem; align-self: start; }
.section-title p:not(.eyebrow) { color: var(--muted); margin: 0; }
.signal-grid,
.skill-grid,
.project-grid,
.sprint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.35rem);
}
.card,
.timeline-item,
.foundation-card,
.contact-card {
  position: relative;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 72%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.card { padding: clamp(1rem, 1.6vw, 1.35rem); }
.card::before,
.timeline-item::before,
.sprint-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--red-600), var(--gold-500));
  opacity: 0.95;
}
.card__icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  aspect-ratio: 1;
  border-radius: 0.95rem;
  margin-bottom: 0.85rem;
  background: rgb(215 25 32 / 9%);
  color: var(--red-700);
}
.card p,
.timeline-item p,
.project-card p,
.sprint-card p { color: #3b4657; margin: 0.7rem 0 0; }
.timeline { display: grid; gap: 1rem; }
.timeline-item { padding: clamp(1rem, 1.7vw, 1.45rem) clamp(1rem, 1.7vw, 1.45rem) clamp(1rem, 1.7vw, 1.45rem) clamp(1.35rem, 1.8vw, 1.7rem); }
.timeline-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.timeline-item__dates {
  color: var(--gold-500);
  font-weight: 900;
  font-size: var(--step--1);
  white-space: nowrap;
}
.meta-line { margin-top: 0.25rem; color: var(--muted); font-weight: 700; font-size: var(--step--1); }
.timeline-item ul { margin: 0.8rem 0 0; padding-left: 1.15rem; }
.timeline-item li { margin: 0.35rem 0; color: #303a49; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--sand-50);
  border: 1px solid rgb(201 155 69 / 28%);
  color: #72511f;
  font-size: 0.76rem;
  font-weight: 850;
}
.skill-card { padding: clamp(1rem, 1.6vw, 1.35rem); }
.skill-card.is-muted { opacity: 0.58; }
.skill-meter {
  height: 0.62rem;
  border-radius: 999px;
  background: rgb(6 20 39 / 9%);
  overflow: hidden;
  margin-top: 1rem;
}
.skill-meter span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
  transition: width 900ms cubic-bezier(.2,.8,.2,1);
}
.skill-list { margin: 0.75rem 0 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.skill-token {
  padding: 0.28rem 0.48rem;
  border-radius: 0.6rem;
  background: rgb(6 20 39 / 5%);
  color: #384255;
  font-size: 0.77rem;
  font-weight: 760;
}
.project-card { min-height: 15rem; }
.project-card .project-type { color: var(--red-700); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.09em; font-weight: 900; margin-bottom: 0.5rem; }
.sprint-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sprint-card { padding: clamp(1rem, 1.6vw, 1.35rem); min-height: 13rem; }
.sprint-card strong { color: var(--red-700); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
.foundation-card { padding: clamp(1rem, 2vw, 1.8rem); }
.education-row {
  display: grid;
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.education-row:last-child { border-bottom: 0; }
.education-row strong { color: var(--red-700); }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.keyword-cloud .tag { background: rgb(6 20 39 / 4%); color: var(--navy-900); border-color: rgb(6 20 39 / 10%); }
.contact-section { padding-top: 0; }
.contact-card { padding: clamp(1.3rem, 2.5vw, 2.4rem); }
.contact-card h2 { margin-bottom: 0.65rem; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.contact-item {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 68%);
  min-width: 0;
}
.contact-item small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 900; font-size: 0.72rem; }
.contact-item strong, .contact-item a { display: block; margin-top: 0.2rem; overflow-wrap: anywhere; font-weight: 850; text-decoration: none; }
.footer { padding-block: 2rem 3rem; color: var(--muted); text-align: center; }
.noscript-card { margin-block: 2rem; padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }

.reveal { opacity: 0; transform: translateY(1.4rem); transition: opacity 720ms ease, transform 720ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.contact-studio { width: min(920px, calc(100% - 2rem)); border: 0; border-radius: var(--radius-lg); padding: 0; box-shadow: var(--shadow-md); background: transparent; }
.contact-studio::backdrop { background: rgb(6 20 39 / 58%); backdrop-filter: blur(8px); }
.contact-studio__panel { margin: 0; padding: clamp(1.1rem, 2vw, 1.8rem); background: var(--paper); border: 1px solid rgb(255 255 255 / 72%); border-radius: inherit; }
.contact-studio__header { display: flex; justify-content: space-between; align-items: start; gap: 1rem; margin-bottom: 1rem; }
.contact-studio__header p { margin: 0; color: var(--muted); }
.icon-button { width: 2.7rem; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 1.6rem; line-height: 1; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
}
.field textarea { min-height: 5.6rem; resize: vertical; }
.field--full { grid-column: 1 / -1; }
.studio-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.1rem; }

.print-sheet { display: none; }

@media (max-width: 980px) {
  .hero, .section-grid, .focus-panel { grid-template-columns: 1fr; }
  .section-title { position: static; }
  .portrait-card { justify-self: center; width: min(100%, 24rem); }
  .dashboard-card { justify-self: stretch; margin-top: 0; }
  .focus-controls { justify-content: flex-start; }
  .sprint-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { top: 0; width: 100%; padding-top: 0.45rem; }
  .topbar { border-radius: var(--radius-md); align-items: flex-start; flex-wrap: wrap; }
  .brand { max-width: calc(100% - 5rem); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 2.6rem; padding: 0.65rem 0.95rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 900; }
  .nav-links { display: none; width: 100%; justify-content: flex-start; padding: 0.35rem 0.25rem 0.2rem; }
  .topbar.is-open .nav-links { display: flex; }
  .hero { min-height: auto; padding-top: clamp(2rem, 6vw, 4rem); }
  .signal-grid, .skill-grid, .project-grid, .contact-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item__top { display: grid; }
  .timeline-item__dates { white-space: normal; }
  .education-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  :root { --pad-x: 0.8rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero__actions .button, .nav-links a, .pill { width: 100%; }
}

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

@media print {
  @page { size: A4; margin: 12mm; }
  body { background: #fff; color: #111827; }
  body::before, .site-header, .scroll-progress, main, .footer, .contact-studio, .skip-link, .noscript-card { display: none !important; }
  .print-sheet { display: block; font-family: Arial, Aptos, sans-serif; font-size: 10pt; line-height: 1.32; }
  .print-page { page-break-after: always; min-height: 267mm; }
  .print-page:last-child { page-break-after: auto; }
  .print-header { background: #061427; color: #fff; padding: 14pt 16pt; border-radius: 10pt; display: flex; align-items: center; justify-content: space-between; gap: 16pt; }
  .print-header h1 { color: #fff; font-size: 26pt; line-height: .95; letter-spacing: -1.6pt; margin: 0; }
  .print-contact { text-align: right; font-size: 8.6pt; }
  .print-title { font-weight: 700; margin-top: 4pt; }
  .print-accent { height: 8pt; background: linear-gradient(90deg, #d71920, #c99b45); margin: 4pt 0 10pt; }
  .print-section { margin: 10pt 0; }
  .print-section h2 { color: #061427; border-bottom: 1.5pt solid #d71920; font-size: 14pt; letter-spacing: -0.4pt; margin: 0 0 6pt; padding-bottom: 2pt; }
  .print-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6pt; }
  .print-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .print-card { border: 0.7pt solid #d9e0ea; border-left: 3pt solid #d71920; border-radius: 6pt; padding: 6pt; background: #fffaf0; break-inside: avoid; }
  .print-card h3 { font-size: 10.8pt; margin: 0 0 3pt; color: #061427; }
  .print-card p { margin: 0; }
  .print-job { border: 0.7pt solid #d9e0ea; border-left: 3pt solid #d71920; border-radius: 6pt; padding: 6pt; margin: 5pt 0; break-inside: avoid; }
  .print-job h3 { font-size: 10.7pt; margin: 0; color: #061427; }
  .print-meta { color: #667085; font-size: 8.6pt; margin: 1pt 0 3pt; }
  .print-job ul { margin: 3pt 0 0 12pt; padding: 0; }
  .print-job li { margin: 1.5pt 0; }
  .print-keywords { border: 0.7pt solid #d9e0ea; border-radius: 7pt; padding: 7pt; font-weight: 700; }
}
