.cv-shell,
html,
body {
  margin: 0;
}

html {
  background: #dce8e7;
}

.cv-shell {
  --cv-ink: #0d1d22;
  --cv-muted: #53666b;
  --cv-paper: #fbfdfc;
  --cv-paper-soft: #eff6f5;
  --cv-dark: #0f2f38;
  --cv-dark-soft: #173f49;
  --cv-accent: #2f8f8a;
  --cv-accent-strong: #246f6b;
  --cv-line: #d5e4e1;
  min-height: 100vh;
  padding: 22px 16px 44px;
  background: radial-gradient(
      circle at 8% 4%,
      rgba(47, 143, 138, 0.18),
      transparent 25%
    ),
    linear-gradient(180deg, #dce8e7 0%, #edf3f2 100%);
  color: var(--cv-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Avenir Next",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.5;
}

.cv-shell *,
.cv-shell *::before,
.cv-shell *::after {
  box-sizing: border-box;
}

.cv-shell h1,
.cv-shell h2,
.cv-shell h3,
.cv-shell p,
.cv-shell ul,
.cv-shell blockquote {
  margin: 0;
}

.cv-shell a {
  color: inherit;
}

.cv-toolbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(210mm, 100%);
  margin: 0 auto 18px;
  padding: 10px 12px 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  background: rgba(15, 47, 56, 0.92);
  box-shadow: 0 12px 28px rgba(15, 47, 56, 0.22);
  color: #f4fbfb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(14px);
}

.cv-toolbar-copy,
.cv-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cv-toolbar-copy {
  align-items: baseline;
}

.cv-toolbar strong {
  font-size: 12px;
  letter-spacing: 0.01em;
}

.cv-toolbar span {
  color: #bdd0d1;
  font-size: 9px;
}

.cv-toolbar button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: #f4fbfb;
  color: var(--cv-dark);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 13px;
  transition: transform 160ms ease, background 160ms ease;
}

.cv-toolbar button:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.cv-toolbar button:focus-visible,
.cv-shell a:focus-visible {
  outline: 2px solid #63c5bd;
  outline-offset: 3px;
}

.cv-document {
  display: grid;
  gap: 26px;
  width: min(210mm, 100%);
  margin: 0 auto;
}

.cv-page {
  position: relative;
  width: 100%;
  min-height: 297mm;
  overflow: hidden;
  background: var(--cv-paper);
  box-shadow: 0 24px 70px rgba(15, 47, 56, 0.2);
}

.cv-page::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(47, 143, 138, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cv-hero {
  position: relative;
  min-height: 55mm;
  padding: 17mm 17mm 13mm;
  overflow: hidden;
  background: radial-gradient(
      circle at 74% 18%,
      rgba(61, 144, 140, 0.4),
      transparent 32%
    ),
    linear-gradient(145deg, var(--cv-dark) 0%, #123f4c 58%, #265d5a 100%);
  color: #f4fbfb;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: center;
  gap: 28px;
}

.cv-hero::before {
  content: "";
  position: absolute;
  top: -72px;
  right: 70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cv-hero-copy,
.cv-portrait-wrap {
  position: relative;
  z-index: 1;
}

.cv-overline {
  margin-bottom: 7px !important;
  color: #8dd0ca;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cv-hero h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1;
}

.cv-role {
  margin-top: 9px !important;
  color: #ffffff;
  font-size: 15px;
  font-weight: 560;
  letter-spacing: -0.015em;
}

.cv-headline {
  max-width: 500px;
  margin-top: 10px !important;
  color: #c5d9da;
  font-size: 11px;
  letter-spacing: 0.01em;
}

.cv-headline span {
  margin: 0 4px;
  color: #68aaa5;
}

.cv-mobile-links {
  display: none;
}

.cv-portrait-wrap {
  justify-self: end;
  width: 122px;
  text-align: center;
}

.cv-portrait-ring {
  position: absolute;
  inset: -7px -7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.cv-portrait {
  position: relative;
  box-sizing: content-box;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.cv-portrait-caption {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  color: #bfd2d3;
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-page-grid {
  display: grid;
  grid-template-columns: 31% minmax(0, 1fr);
  gap: 28px;
  padding: 13mm 15mm 17mm;
}

.cv-sidebar {
  padding-right: 22px;
  border-right: 1px solid var(--cv-line);
}

.cv-sidebar-section + .cv-sidebar-section {
  margin-top: 20px;
}

.cv-sidebar-section h2,
.cv-proof-section h2 {
  margin-bottom: 10px;
  color: var(--cv-accent-strong);
  font-size: 9.5px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-contact-link {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid var(--cv-line);
  text-decoration: none;
}

.cv-contact-link:first-of-type {
  padding-top: 0;
}

.cv-contact-link span {
  display: block;
  margin-bottom: 2px;
  color: var(--cv-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cv-contact-link strong {
  color: var(--cv-ink);
  font-size: 10px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.cv-contact-link:hover strong {
  color: var(--cv-accent-strong);
}

.cv-chip-list {
  display: grid;
  gap: 5px;
  padding: 0;
  list-style: none;
}

.cv-chip-list li {
  padding: 1px 0;
  color: #294348;
  font-size: 9.5px;
  font-weight: 560;
  line-height: 1.35;
}

.cv-principles {
  padding: 0;
  list-style: none;
}

.cv-principles li {
  position: relative;
  padding-left: 13px;
  color: #344b50;
  font-size: 9.5px;
  line-height: 1.45;
}

.cv-principles li + li {
  margin-top: 8px;
}

.cv-principles li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cv-accent);
  box-shadow: 0 0 0 3px rgba(47, 143, 138, 0.12);
}

.cv-credential-card,
.cv-sidebar-proof-card {
  overflow: hidden;
  border: 1px solid var(--cv-line);
  border-radius: 9px;
  background: var(--cv-paper-soft);
}

.cv-credential-row {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 8px;
}

.cv-credential-row + .cv-credential-row,
.cv-sidebar-proof-row + .cv-sidebar-proof-row {
  border-top: 1px solid var(--cv-line);
}

.cv-credential-icon {
  width: 24px;
  height: 24px;
  border: 1px solid #c5dfdb;
  border-radius: 7px;
  background: linear-gradient(145deg, #ffffff, #e7f3f1);
  color: var(--cv-accent-strong);
  display: grid;
  place-items: center;
}

.cv-credential-row:first-child .cv-credential-icon {
  color: #245f7a;
  background: linear-gradient(145deg, #ffffff, #e5f0f6);
}

.cv-credential-row:last-child .cv-credential-icon {
  color: #1d7c78;
  background: linear-gradient(145deg, #ffffff, #ddf4ef);
}

.cv-credential-icon svg {
  width: 16px;
  height: 16px;
}

.cv-credential-copy,
.cv-credential-copy strong,
.cv-credential-copy small {
  display: block;
}

.cv-credential-copy strong {
  color: var(--cv-ink);
  font-size: 8.7px;
  font-weight: 680;
  line-height: 1.3;
}

.cv-credential-copy small {
  margin-top: 2px;
  color: var(--cv-muted);
  font-size: 7.2px;
  line-height: 1.3;
}

.cv-credential-badge {
  padding: 2px 5px;
  border: 1px solid #bdd8d4;
  border-radius: 999px;
  background: #ffffff;
  color: var(--cv-accent-strong);
  font-size: 6.3px;
  font-weight: 780;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cv-sidebar-proof-row {
  min-height: 42px;
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.cv-sidebar-proof-icon {
  width: 23px;
  height: 23px;
  border: 1px solid #c5dfdb;
  border-radius: 7px;
  background: linear-gradient(145deg, #ffffff, #e4f1ef);
  color: var(--cv-accent-strong);
  display: grid;
  place-items: center;
}

.cv-sidebar-proof-icon svg {
  width: 15px;
  height: 15px;
}

.cv-sidebar-proof-row strong,
.cv-sidebar-proof-row small {
  display: block;
}

.cv-sidebar-proof-row strong {
  color: var(--cv-ink);
  font-size: 8.6px;
  font-weight: 680;
  line-height: 1.25;
}

.cv-sidebar-proof-row small {
  margin-top: 2px;
  color: var(--cv-muted);
  font-size: 7.2px;
  line-height: 1.3;
}

.cv-main-column {
  min-width: 0;
}

.cv-summary {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--cv-line);
}

.cv-summary .cv-principle-line {
  margin-bottom: 9px !important;
  color: var(--cv-dark);
  font-size: 16px;
  font-weight: 640;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.cv-summary p:not(.cv-principle-line) {
  color: #3f5459;
  font-size: 10.5px;
  line-height: 1.55;
}

.cv-summary p + p {
  margin-top: 7px !important;
}

.cv-current-role,
.cv-current-work {
  margin-top: 16px;
}

.cv-section-title {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 9px;
}

.cv-section-title span {
  color: var(--cv-accent-strong);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-section-title h2 {
  color: var(--cv-ink);
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -0.025em;
  text-transform: none;
}

.cv-section-title::after {
  content: "";
  height: 1px;
  min-width: 24px;
  flex: 1;
  background: var(--cv-line);
}

.cv-section-title-stacked {
  display: grid;
  align-items: initial;
  gap: 2px;
  margin-bottom: 11px;
}

.cv-section-title-stacked span {
  display: block;
}

.cv-section-title-stacked::after {
  display: none;
}

.cv-role-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cv-role-heading h2 {
  color: var(--cv-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cv-role-heading p {
  margin-top: 2px !important;
  color: var(--cv-accent-strong);
  font-size: 9.5px;
  font-weight: 650;
}

.cv-role-heading time {
  flex: none;
  padding-top: 3px;
  color: var(--cv-muted);
  font-size: 9px;
  font-weight: 650;
  white-space: nowrap;
}

.cv-role-intro {
  margin-top: 9px !important;
  color: #324a4f;
  font-size: 10.5px;
  line-height: 1.55;
}

.cv-role-scope {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid var(--cv-line);
}

.cv-role-scope p {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px;
  color: #42575c;
  font-size: 9.2px;
  line-height: 1.4;
}

.cv-role-scope strong {
  color: var(--cv-accent-strong);
  font-size: 8px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-bullets {
  display: grid;
  gap: 5px;
  margin-top: 9px !important;
  padding-left: 15px;
  color: #42575c;
  font-size: 10px;
  line-height: 1.45;
}

.cv-bullets li::marker {
  color: var(--cv-accent);
}

.cv-work-grid {
  display: block;
  border-top: 1px solid var(--cv-line);
}

.cv-work-card {
  min-height: 112px;
  padding: 14px 0 15px;
  border-bottom: 1px solid var(--cv-line);
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-content: center;
}

.cv-work-icon {
  grid-column: 1;
  grid-row: 1;
  width: 27px;
  height: 27px;
  border: 1px solid #c4dfdb;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #e3f2f0);
  color: var(--cv-accent-strong);
  display: grid;
  place-items: center;
}

.cv-work-icon svg {
  width: 17px;
  height: 17px;
}

.cv-work-copy {
  grid-column: 2;
  min-width: 0;
}

.cv-work-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 3px;
}

.cv-work-kicker > span {
  color: var(--cv-accent-strong);
  font-size: 7.8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cv-work-kicker small {
  flex: none;
  padding: 2px 6px;
  border: 1px solid #c8dedb;
  border-radius: 999px;
  background: var(--cv-paper-soft);
  color: var(--cv-accent-strong);
  font-size: 6.5px;
  font-weight: 780;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cv-work-card h3 {
  color: var(--cv-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.cv-work-card p {
  margin-top: 4px !important;
  color: #4f6267;
  font-size: 9.4px;
  line-height: 1.45;
}

.cv-work-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px !important;
  padding: 0;
  list-style: none;
}

.cv-work-platforms li {
  padding: 2px 5px;
  border: 1px solid #d4e4e1;
  border-radius: 999px;
  color: #607579;
  font-size: 6.8px;
  font-weight: 650;
  line-height: 1.25;
}

.cv-page-footer {
  position: absolute;
  right: 15mm;
  bottom: 7mm;
  left: 15mm;
  z-index: 2;
  padding-top: 5px;
  border-top: 1px solid var(--cv-line);
  background: transparent;
  color: #748489;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cv-page-two {
  padding: 0 15mm 17mm;
}

.cv-page-two-header {
  position: relative;
  margin: 0 -15mm 10mm;
  padding: 12mm 15mm 11mm;
  overflow: hidden;
  background: radial-gradient(
      circle at 90% 0%,
      rgba(68, 157, 150, 0.28),
      transparent 37%
    ),
    linear-gradient(150deg, var(--cv-dark), var(--cv-dark-soft));
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 185px;
  align-items: end;
  gap: 32px;
  break-inside: avoid;
}

.cv-page-two-header h2 {
  max-width: 520px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cv-page-two-eyebrow {
  margin-bottom: 7px !important;
  color: #8dd0ca;
  font-size: 7.5px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-page-two-summary {
  max-width: 430px;
  margin-top: 7px !important;
  color: #c5d9da;
  font-size: 9.5px;
  line-height: 1.45;
}

.cv-career-arc {
  width: 185px;
}

.cv-career-years {
  display: grid;
  grid-template-columns: auto minmax(36px, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.cv-career-years strong {
  color: #ffffff;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.cv-career-years i {
  position: relative;
  height: 5px;
  background: radial-gradient(
      circle at center,
      #76bdb7 0 2px,
      transparent 2.3px
    ),
    linear-gradient(
      transparent 2px,
      rgba(160, 204, 200, 0.55) 2px 3px,
      transparent 3px
    );
}

.cv-career-years i::before,
.cv-career-years i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #76bdb7;
  transform: translateY(-50%);
}

.cv-career-years i::before {
  left: 0;
}

.cv-career-years i::after {
  right: 0;
}

.cv-career-steps {
  margin-top: 7px;
  color: #9bc6c3;
  display: flex;
  justify-content: space-between;
  font-size: 6.5px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cv-page-two-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 215px;
  gap: 28px;
}

.cv-experience-column,
.cv-proof-column {
  min-width: 0;
}

.cv-timeline {
  position: relative;
}

.cv-timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 84px;
  width: 1px;
  background: var(--cv-line);
}

.cv-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 18px;
}

.cv-timeline-item + .cv-timeline-item {
  margin-top: 10px;
}

.cv-timeline-item::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 81px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--cv-paper);
  border-radius: 50%;
  background: var(--cv-accent);
  box-shadow: 0 0 0 1px var(--cv-accent);
}

.cv-timeline-item time {
  padding-top: 1px;
  color: var(--cv-muted);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.cv-timeline-item h3 {
  color: var(--cv-ink);
  font-size: 11.5px;
  font-weight: 720;
  line-height: 1.2;
}

.cv-timeline-role,
.cv-product-subtitle {
  margin-top: 2px !important;
  color: var(--cv-accent-strong) !important;
  font-size: 8.5px !important;
  font-weight: 700;
}

.cv-timeline-item div > p:last-child {
  margin-top: 4px !important;
  color: #4a5f64;
  font-size: 9.2px;
  line-height: 1.42;
}

.cv-products-section {
  margin-top: 18px;
}

.cv-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cv-product-card {
  padding: 9px;
  border: 1px solid var(--cv-line);
  border-radius: 9px;
  background: var(--cv-paper-soft);
}

.cv-product-heading {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cv-product-icon {
  width: 22px;
  height: 22px;
  flex: none;
  border: 1px solid #c5dfdb;
  border-radius: 7px;
  background: #ffffff;
  color: var(--cv-accent-strong);
  display: grid;
  place-items: center;
}

.cv-product-icon svg {
  width: 14px;
  height: 14px;
}

.cv-product-card h3 {
  color: var(--cv-ink);
  font-size: 10px;
  font-weight: 720;
}

.cv-product-card > p:last-child {
  margin-top: 5px !important;
  color: #4b6064;
  font-size: 9px;
  line-height: 1.4;
}

.cv-proof-column {
  padding-left: 23px;
  border-left: 1px solid var(--cv-line);
}

.cv-proof-section + .cv-proof-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cv-line);
}

.cv-feature-link {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cv-dark);
  color: #ffffff !important;
  text-decoration: none;
}

.cv-feature-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #071b21;
}

.cv-feature-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-feature-play {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(8, 33, 40, 0.82);
  color: #ffffff;
  display: grid !important;
  place-items: center;
  font-size: 8px;
  letter-spacing: 0;
  line-height: 1;
  text-indent: 1px;
}

.cv-feature-copy {
  padding: 10px 12px 12px;
}

.cv-feature-copy,
.cv-feature-kicker,
.cv-feature-link strong,
.cv-feature-link small {
  display: block;
}

.cv-feature-kicker {
  color: #87c8c2;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cv-feature-link strong {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.35;
}

.cv-feature-link small {
  margin-top: 8px;
  color: #bcd1d2;
  font-size: 8px;
}

.cv-fact + .cv-fact {
  margin-top: 10px;
}

.cv-fact strong,
.cv-fact span {
  display: block;
}

.cv-fact strong {
  color: var(--cv-ink);
  font-size: 9.5px;
  line-height: 1.4;
}

.cv-fact span {
  margin-top: 2px;
  color: var(--cv-muted);
  font-size: 8.5px;
}

.cv-language-list {
  display: grid;
  gap: 7px;
}

.cv-language-list > span {
  color: var(--cv-ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 9px;
  font-weight: 650;
}

.cv-language-list small {
  color: var(--cv-muted);
  font-size: 8px;
  font-weight: 500;
}

.cv-personal-note p {
  color: #43585d;
  font-size: 9px;
  line-height: 1.5;
}

.cv-personal-note > span {
  display: block;
  margin-top: 8px;
  color: var(--cv-accent-strong);
  font-size: 8px;
  font-weight: 720;
}

@media screen and (max-width: 760px) {
  .cv-shell {
    padding: 12px 10px 28px;
    overflow-x: hidden;
    font-size: 14px;
  }

  .cv-toolbar {
    top: 8px;
    margin-bottom: 12px;
  }

  .cv-toolbar-copy {
    display: grid;
    gap: 0;
  }

  .cv-document {
    gap: 20px;
  }

  .cv-page {
    min-height: auto;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(15, 47, 56, 0.16);
  }

  .cv-hero {
    min-height: auto;
    padding: 28px 25px 22px;
    grid-template-columns: minmax(0, 1fr) 106px;
    grid-template-areas:
      "copy portrait"
      "links links";
    column-gap: 18px;
    row-gap: 18px;
  }

  .cv-hero-copy {
    grid-area: copy;
    min-width: 0;
  }

  .cv-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .cv-mobile-links {
    grid-area: links;
    width: 100%;
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .cv-mobile-links a {
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    border-radius: 0;
    color: #edf7f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 680;
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .cv-mobile-links a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .cv-mobile-links a:active {
    background: rgba(255, 255, 255, 0.12);
  }

  .cv-role {
    font-size: 13px;
  }

  .cv-headline,
  .cv-contact-link strong,
  .cv-principles li,
  .cv-summary p:not(.cv-principle-line),
  .cv-role-intro,
  .cv-role-scope p,
  .cv-bullets,
  .cv-work-card p,
  .cv-timeline-item div > p:last-child,
  .cv-product-card > p:last-child,
  .cv-personal-note p {
    font-size: 13px;
  }

  .cv-chip-list li,
  .cv-role-heading p,
  .cv-product-subtitle,
  .cv-fact strong,
  .cv-credential-copy strong,
  .cv-sidebar-proof-row strong,
  .cv-language-list > span {
    font-size: 12px !important;
  }

  .cv-overline,
  .cv-sidebar-section h2,
  .cv-proof-section h2,
  .cv-contact-link span,
  .cv-section-title span,
  .cv-role-heading time,
  .cv-role-scope strong,
  .cv-work-kicker > span,
  .cv-work-kicker small,
  .cv-work-platforms li,
  .cv-timeline-item time,
  .cv-feature-kicker,
  .cv-feature-link small,
  .cv-fact span,
  .cv-credential-copy small,
  .cv-credential-badge,
  .cv-sidebar-proof-row small,
  .cv-language-list small,
  .cv-personal-note > span {
    font-size: 11px;
  }

  .cv-work-card h3,
  .cv-product-card h3,
  .cv-feature-link strong {
    font-size: 13px;
  }

  .cv-timeline-item h3 {
    font-size: 14px;
  }

  .cv-page-footer {
    font-size: 10px;
  }

  .cv-portrait-wrap {
    grid-area: portrait;
    width: 102px;
  }

  .cv-portrait {
    width: 96px;
    height: 96px;
  }

  .cv-portrait-ring {
    inset: -5px -5px 10px;
  }

  .cv-page-grid,
  .cv-page-two-grid {
    grid-template-columns: 1fr;
  }

  .cv-page-grid {
    padding: 28px 25px 36px;
  }

  .cv-main-column {
    order: 1;
  }

  .cv-sidebar {
    order: 2;
    margin-top: 30px;
    padding: 28px 0 0;
    border-right: 0;
    border-top: 1px solid var(--cv-line);
    border-bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .cv-sidebar-contact {
    display: none;
  }

  .cv-sidebar-section + .cv-sidebar-section {
    margin-top: 0;
  }

  .cv-work-card {
    min-height: auto;
  }

  .cv-page-two {
    padding: 0 25px 36px;
  }

  .cv-page-two-header {
    margin: 0 -25px 30px;
    padding: 34px 25px;
  }

  .cv-proof-column {
    padding: 26px 0 0;
    border-top: 1px solid var(--cv-line);
    border-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .cv-proof-section + .cv-proof-section {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .cv-page-footer {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .cv-shell {
    padding: 8px 8px 22px;
  }

  .cv-toolbar {
    top: 6px;
    padding: 7px 8px 7px 12px;
    border-radius: 12px;
    gap: 10px;
  }

  .cv-toolbar-copy {
    min-width: 0;
    display: grid;
    gap: 0;
  }

  .cv-toolbar-copy span {
    display: none;
  }

  .cv-toolbar-actions {
    width: auto;
    margin-left: auto;
    display: flex;
    gap: 8px;
  }

  .cv-toolbar button {
    min-height: 44px;
    padding: 0 10px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .cv-toolbar button {
    width: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .cv-document {
    gap: 16px;
  }

  .cv-hero {
    padding: 22px 18px 18px;
    grid-template-columns: minmax(0, 1fr) 92px;
    grid-template-areas:
      "copy portrait"
      "links links";
    align-items: center;
    column-gap: 12px;
    row-gap: 16px;
  }

  .cv-hero-copy {
    grid-area: copy;
  }

  .cv-overline {
    margin-bottom: 4px !important;
    font-size: 8.5px;
    letter-spacing: 0.12em;
    line-height: 1.35;
    white-space: nowrap;
  }

  .cv-hero h1 {
    font-size: clamp(28px, 7.5vw, 32px);
    line-height: 1.02;
  }

  .cv-role {
    margin-top: 6px !important;
    font-size: 13px;
    line-height: 1.3;
  }

  .cv-headline {
    margin-top: 7px !important;
    font-size: 11.5px;
    line-height: 1.45;
  }

  .cv-mobile-links {
    grid-area: links;
    margin-top: 0;
    padding-top: 10px;
  }

  .cv-mobile-links a {
    min-height: 44px;
    padding: 0 8px;
    font-size: 11px;
    white-space: nowrap;
  }

  .cv-portrait-wrap {
    grid-area: portrait;
    justify-self: end;
    width: 94px;
    align-self: center;
  }

  .cv-portrait {
    box-sizing: border-box;
    width: 90px;
    height: 90px;
  }

  .cv-portrait-ring {
    inset: -4px -4px 10px;
  }

  .cv-portrait-caption {
    margin-top: 5px;
    font-size: 7.5px;
  }

  .cv-page-grid {
    padding: 28px 18px 34px;
  }

  .cv-current-role,
  .cv-current-work {
    margin-top: 24px;
  }

  .cv-sidebar {
    margin-top: 30px;
    padding-top: 26px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cv-sidebar-featured-products {
    display: none;
  }

  .cv-sidebar-section h2,
  .cv-proof-section h2 {
    margin-bottom: 11px;
    font-size: 11.5px;
  }

  .cv-chip-list li,
  .cv-principles li {
    font-size: 14px;
  }

  .cv-principles li + li {
    margin-top: 10px;
  }

  .cv-credential-row {
    min-height: 54px;
    padding: 11px;
  }

  .cv-credential-copy strong {
    font-size: 13px !important;
  }

  .cv-credential-copy small {
    font-size: 11px;
  }

  .cv-credential-badge {
    font-size: 9px;
  }

  .cv-summary .cv-principle-line {
    font-size: 20px;
    line-height: 1.25;
  }

  .cv-summary p:not(.cv-principle-line),
  .cv-role-intro,
  .cv-work-card p,
  .cv-timeline-item div > p:last-child,
  .cv-product-card > p:last-child,
  .cv-personal-note p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cv-section-title h2,
  .cv-role-heading h2 {
    font-size: 18px;
  }

  .cv-role-heading {
    display: grid;
    gap: 3px;
  }

  .cv-role-heading p {
    font-size: 13px !important;
  }

  .cv-role-heading time {
    padding-top: 0;
    font-size: 11px;
  }

  .cv-role-scope {
    gap: 10px;
    margin-top: 13px;
    padding-top: 12px;
  }

  .cv-role-scope p {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 13.5px;
  }

  .cv-role-scope strong {
    font-size: 10.5px;
  }

  .cv-work-grid {
    border-top: 0;
    display: grid;
    gap: 10px;
  }

  .cv-work-card {
    padding: 15px;
    border: 1px solid var(--cv-line);
    border-radius: 12px;
    background: var(--cv-paper-soft);
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .cv-work-kicker {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 9px;
  }

  .cv-work-kicker > span,
  .cv-work-kicker small,
  .cv-work-platforms li {
    font-size: 10.5px;
  }

  .cv-work-card h3 {
    font-size: 15px;
  }

  .cv-work-platforms {
    gap: 6px;
    margin-top: 9px !important;
  }

  .cv-work-platforms li {
    padding: 4px 7px;
  }

  .cv-page-two {
    padding: 0 18px 34px;
  }

  .cv-page-two-header {
    margin: 0 -18px 24px;
    padding: 24px 18px;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: flex-start;
  }

  .cv-career-arc {
    width: min(220px, 100%);
  }

  .cv-page-two-eyebrow {
    font-size: 10px;
  }

  .cv-page-two-header h2 {
    font-size: 26px;
  }

  .cv-page-two-summary {
    font-size: 13px;
    line-height: 1.5;
  }

  .cv-career-years strong {
    font-size: 11px;
  }

  .cv-career-steps {
    margin-top: 9px;
    font-size: 9px;
  }

  .cv-products-grid,
  .cv-proof-column {
    grid-template-columns: 1fr;
  }

  .cv-timeline-item {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 0 0 17px 24px;
  }

  .cv-timeline-item + .cv-timeline-item {
    margin-top: 13px;
  }

  .cv-timeline::before {
    left: 7px;
  }

  .cv-timeline-item::before {
    left: 4px;
  }

  .cv-timeline-item time {
    font-size: 11px;
    text-align: left;
  }

  .cv-timeline-item h3 {
    font-size: 16px;
  }

  .cv-timeline-role,
  .cv-product-subtitle {
    font-size: 12px !important;
  }

  .cv-products-section {
    margin-top: 26px;
  }

  .cv-products-grid {
    gap: 10px;
  }

  .cv-product-card {
    padding: 14px;
    border-radius: 12px;
  }

  .cv-product-card h3 {
    font-size: 15px;
  }

  .cv-proof-column {
    padding-top: 28px;
    gap: 26px;
  }

  .cv-feature-kicker {
    font-size: 10px;
  }

  .cv-feature-link strong {
    font-size: 15px;
  }

  .cv-feature-link small,
  .cv-language-list small,
  .cv-personal-note > span {
    font-size: 12px;
  }

  .cv-language-list > span {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 350px) {
  .cv-hero {
    padding: 20px 16px 16px;
    grid-template-columns: minmax(0, 1fr) 78px;
    grid-template-areas:
      "copy portrait"
      "links links";
    column-gap: 10px;
    row-gap: 14px;
  }

  .cv-overline {
    display: none;
  }

  .cv-hero h1 {
    font-size: 27px;
  }

  .cv-role {
    font-size: 12.5px;
  }

  .cv-headline {
    font-size: 11px;
  }

  .cv-portrait-wrap {
    width: 78px;
  }

  .cv-portrait {
    width: 74px;
    height: 74px;
  }

  .cv-portrait-caption {
    display: none;
  }

  .cv-mobile-links a {
    padding: 0 5px;
    font-size: 10px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  html,
  body {
    width: 210mm;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #ffffff !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  #___gatsby,
  #gatsby-focus-wrapper {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .no-print,
  .no-print * {
    display: none !important;
  }

  .cv-shell {
    min-height: 0;
    padding: 0;
    background: #ffffff;
  }

  .cv-document {
    display: block;
    width: 210mm;
    margin: 0;
  }

  .cv-page {
    width: 210mm;
    height: 297mm;
    min-height: 297mm;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    break-after: page;
    page-break-after: always;
  }

  .cv-page:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .cv-shell a {
    text-decoration: none;
  }
}
