  .as-cv {
    --as-orange: #ef5b2a;
    --as-orange-dark: #c7441d;
    --as-turquoise: #55b9b4;
    --as-yellow: #f6bf2f;
    --as-ink: #18312f;
    --as-text: #30413f;
    --as-muted: #657471;
    --as-paper: #fffdfa;
    --as-soft: #f2f7f5;
    --as-line: rgba(24, 49, 47, .14);
    --as-shadow: 0 24px 70px rgba(24, 49, 47, .12);

    color: var(--as-text);
    font-family: inherit;
    font-size: 17px;
    line-height: 1.62;
    margin: clamp(24px, 5vw, 72px) auto;
    max-width: 1180px;
    padding: 0 clamp(14px, 3vw, 28px);
  }

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

  .as-cv a {
    color: var(--as-orange-dark);
    text-decoration-thickness: .08em;
    text-underline-offset: .17em;
  }

  .as-cv a:hover,
  .as-cv a:focus-visible {
    color: var(--as-ink);
  }

  .as-cv__toolbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .as-cv__home-link {
    color: var(--as-ink);
    font-size: .92rem;
    font-weight: 720;
    text-decoration: none;
  }

  .as-cv__home-link:hover,
  .as-cv__home-link:focus-visible {
    color: var(--as-orange-dark);
    text-decoration: underline;
  }

  .as-cv__paragraph-spacing {
    margin-top: 12px !important;
  }

  .as-cv__print {
    align-items: center;
    appearance: none;
    background: var(--as-orange);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(239, 91, 42, .24);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: .92rem;
    font-weight: 750;
    gap: 9px;
    padding: 12px 19px;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  }

  .as-cv__print:hover,
  .as-cv__print:focus-visible {
    background: var(--as-orange-dark);
    box-shadow: 0 13px 29px rgba(199, 68, 29, .28);
    transform: translateY(-1px);
  }

  .as-cv__print svg {
    height: 19px;
    width: 19px;
  }

  .as-cv__sheet {
    background: var(--as-paper);
    border: 1px solid var(--as-line);
    border-radius: 30px;
    box-shadow: var(--as-shadow);
    overflow: hidden;
  }

  .as-cv__hero {
    background:
      radial-gradient(circle at 85% 15%, rgba(246, 191, 47, .25), transparent 24%),
      radial-gradient(circle at 10% 110%, rgba(85, 185, 180, .36), transparent 34%),
      linear-gradient(130deg, #102c2a 0%, #1d4742 58%, #27615a 100%);
    color: #fff;
    display: grid;
    gap: clamp(24px, 5vw, 54px);
    grid-template-columns: minmax(0, 1fr) 190px;
    padding: clamp(30px, 6vw, 66px);
    position: relative;
  }

  .as-cv__hero::after {
    background: var(--as-orange);
    bottom: 0;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    width: 100%;
  }

  .as-cv__eyebrow {
    color: #c9f0eb;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    margin: 0 0 13px;
    text-transform: uppercase;
  }

  .as-cv h1 {
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 4.65rem);
    letter-spacing: -.045em;
    line-height: .98;
    margin: 0;
  }

  .as-cv__role {
    color: #fff;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 720;
    line-height: 1.35;
    margin: 18px 0 0;
    max-width: 760px;
  }

  .as-cv__lead {
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
    margin: 20px 0 0;
    max-width: 780px;
  }

  .as-cv__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
  }

  .as-cv__chip {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    color: #fff;
    font-size: .82rem;
    font-weight: 680;
    padding: 7px 11px;
  }

  .as-cv__portrait-wrap {
    align-self: center;
    justify-self: end;
    position: relative;
  }

  .as-cv__portrait-wrap::before {
    background: var(--as-yellow);
    border-radius: 50%;
    content: "";
    height: 82px;
    position: absolute;
    right: -16px;
    top: -16px;
    width: 82px;
  }

  .as-cv__portrait {
    aspect-ratio: 1;
    border: 6px solid rgba(255, 255, 255, .95);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .25);
    display: block;
    object-fit: cover;
    position: relative;
    width: 180px;
    z-index: 1;
  }

  .as-cv__body {
    padding: clamp(27px, 5vw, 58px);
  }

  .as-cv__intro {
    border-left: 5px solid var(--as-orange);
    font-size: 1.08rem;
    margin: 0 0 38px;
    padding: 2px 0 2px 22px;
  }

  .as-cv__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .as-cv__section {
    background: #fff;
    border: 1px solid var(--as-line);
    border-radius: 20px;
    grid-column: span 6;
    padding: 25px;
  }

  .as-cv__section--wide {
    grid-column: 1 / -1;
  }

  .as-cv__section--soft {
    background: var(--as-soft);
  }

  .as-cv__section h2 {
    align-items: center;
    color: var(--as-ink);
    display: flex;
    font-size: 1.22rem;
    gap: 10px;
    letter-spacing: -.015em;
    line-height: 1.25;
    margin: 0 0 16px;
  }

  .as-cv__section h2::before {
    background: linear-gradient(135deg, var(--as-orange), var(--as-yellow));
    border-radius: 4px;
    content: "";
    flex: 0 0 10px;
    height: 10px;
    transform: rotate(45deg);
    width: 10px;
  }

  .as-cv__section p {
    margin: 0;
  }

  .as-cv__list,
  .as-cv__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .as-cv__list li {
    border-top: 1px solid var(--as-line);
    padding: 9px 0 9px 22px;
    position: relative;
  }

  .as-cv__list li:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .as-cv__list li::before {
    color: var(--as-orange);
    content: "●";
    font-size: .58em;
    left: 2px;
    position: absolute;
    top: 15px;
  }

  .as-cv__list li:first-child::before {
    top: 6px;
  }

  .as-cv__list strong {
    color: var(--as-ink);
  }

  .as-cv__timeline {
    display: grid;
    gap: 13px;
  }

  .as-cv__timeline li {
    border-left: 3px solid var(--as-turquoise);
    padding-left: 15px;
  }

  .as-cv__timeline strong {
    color: var(--as-ink);
    display: block;
    line-height: 1.35;
    margin-bottom: 2px;
  }

  .as-cv__timeline span {
    color: var(--as-muted);
    display: block;
    font-size: .91rem;
    line-height: 1.45;
  }

  .as-cv__proposal {
    background:
      linear-gradient(135deg, rgba(239, 91, 42, .08), transparent 45%),
      #fff;
  }

  .as-cv__proposal-grid {
    display: grid;
    gap: 13px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .as-cv__proposal-item {
    background: var(--as-soft);
    border-radius: 14px;
    padding: 15px 17px;
  }

  .as-cv__proposal-item strong {
    color: var(--as-ink);
    display: block;
    margin-bottom: 3px;
  }

  .as-cv__footer {
    align-items: center;
    background: #f7f3ed;
    border-top: 1px solid var(--as-line);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    justify-content: space-between;
    padding: 20px clamp(27px, 5vw, 58px);
  }

  .as-cv__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .as-cv__footer a {
    font-weight: 720;
  }

  .as-cv__update {
    color: var(--as-muted);
    font-size: .84rem;
  }

  .as-cv__print-note {
    color: var(--as-muted);
    font-size: .82rem;
    margin: 12px 3px 0;
    text-align: right;
  }

  @media screen and (max-width: 820px) {
    .as-cv__hero {
      grid-template-columns: 1fr;
    }

    .as-cv__portrait-wrap {
      justify-self: start;
      order: -1;
    }

    .as-cv__portrait {
      width: 132px;
    }

    .as-cv__section {
      grid-column: 1 / -1;
    }
  }

  @media screen and (max-width: 580px) {
    .as-cv {
      font-size: 16px;
      padding: 0 10px;
    }

    .as-cv__sheet {
      border-radius: 20px;
    }

    .as-cv__proposal-grid {
      grid-template-columns: 1fr;
    }

    .as-cv__footer {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  @media print {
    @page {
      size: A4 portrait;
      margin: 8mm;
    }

    html,
    body {
      background: #fff !important;
    }

    body.as-cv-print-mode > * {
      visibility: hidden !important;
    }

    body.as-cv-print-mode .as-cv,
    body.as-cv-print-mode .as-cv * {
      visibility: visible !important;
    }

    body.as-cv-print-mode .as-cv {
      left: 0;
      margin: 0;
      max-width: none;
      padding: 0;
      position: absolute;
      top: 0;
      width: 100%;
    }

    .as-cv {
      color: #253532;
      font-size: 8.55pt;
      line-height: 1.34;
    }

    .as-cv__toolbar,
    .as-cv__home-link,
    .as-cv__print-note {
      display: none !important;
    }

    .as-cv__sheet {
      border: 0;
      border-radius: 0;
      box-shadow: none;
      overflow: visible;
    }

    .as-cv__hero {
      align-items: center;
      display: grid;
      gap: 5mm;
      grid-template-columns: minmax(0, 1fr) 26mm;
      min-height: 0;
      padding: 5.5mm 7mm 5mm;
      break-inside: avoid;
      page-break-inside: avoid;
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
    }

    .as-cv__hero > div:first-child {
      min-width: 0;
      order: initial;
    }

    .as-cv__portrait-wrap {
      align-self: center;
      justify-self: end;
      order: initial;
      width: 26mm;
    }

    .as-cv__hero::after {
      height: 1.5mm;
    }

    .as-cv h1 {
      font-size: 23pt;
      line-height: 1;
    }

    .as-cv__eyebrow {
      font-size: 6.3pt;
      line-height: 1.2;
      margin-bottom: 1.4mm;
      max-width: none;
    }

    .as-cv__role {
      font-size: 8.8pt;
      line-height: 1.25;
      margin-top: 1.8mm;
      max-width: none;
    }

    .as-cv__lead {
      font-size: 7.5pt;
      line-height: 1.32;
      margin-top: 1.8mm;
      max-width: none;
    }

    .as-cv__meta {
      gap: 1.1mm;
      margin-top: 2.2mm;
    }

    .as-cv__chip {
      font-size: 5.8pt;
      line-height: 1.15;
      padding: .7mm 1.5mm;
      white-space: nowrap;
    }

    .as-cv__portrait {
      border-width: 1mm;
      height: 24mm;
      max-width: none;
      object-fit: cover;
      width: 24mm;
    }

    .as-cv__portrait-wrap::before {
      display: none;
    }

    .as-cv__body {
      padding: 5.5mm 8mm 4mm;
    }

    .as-cv__intro {
      border-left-width: 1.2mm;
      font-size: 8.65pt;
      margin-bottom: 4mm;
      padding-left: 3.2mm;
    }

    .as-cv__grid {
      gap: 3mm;
    }

    .as-cv__section {
      border-radius: 2.5mm;
      padding: 3.2mm;
      break-inside: avoid;
      page-break-inside: avoid;
    }

    .as-cv__section h2 {
      font-size: 9.4pt;
      gap: 1.8mm;
      margin-bottom: 2.2mm;
    }

    .as-cv__section h2::before {
      height: 1.6mm;
      width: 1.6mm;
    }

    .as-cv__list li {
      padding: 1.15mm 0 1.15mm 3.3mm;
    }

    .as-cv__list li::before {
      top: 2.2mm;
    }

    .as-cv__list li:first-child::before {
      top: .8mm;
    }

    .as-cv__timeline {
      gap: 1.6mm;
    }

    .as-cv__timeline li {
      padding-left: 2.4mm;
    }

    .as-cv__timeline span {
      font-size: 7.35pt;
    }

    .as-cv__proposal-grid {
      gap: 2mm;
    }

    .as-cv__proposal-item {
      border-radius: 2mm;
      padding: 2.2mm 2.6mm;
    }

    .as-cv__footer {
      padding: 3mm 8mm;
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
    }

    .as-cv__update {
      font-size: 6.7pt;
    }

    .as-cv a {
      color: inherit;
      text-decoration: none;
    }
  }