
    /* ===========================================================
   LOADER — full-screen entrance animation
   =========================================================== */
.loader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0B1220;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
  overflow: hidden;
}
.loader.is-done{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.is-loading{
  overflow: hidden;
}

.loader-inner{
  position: relative;
  width: min(420px, 88vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: loaderRise .9s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes loaderRise{
  from{ opacity: 0; transform: translateY(14px);}
  to  { opacity: 1; transform: translateY(0);}
}

.loader-image{
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-image::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(232,184,66,.18) 0%, rgba(232,184,66,.06) 35%, transparent 65%);
  animation: loaderPulse 2.6s ease-in-out infinite;
}
@keyframes loaderPulse{
  0%,100%{ transform: scale(1); opacity: .9;}
  50%   { transform: scale(1.08); opacity: 1;}
}
.loader-image img{
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(115%) brightness(1.0) saturate(108%);
  -webkit-mask-image: radial-gradient(
    ellipse 60% 60% at 50% 45%,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.7) 35%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.1) 82%,
    transparent 100%
  );
          mask-image: radial-gradient(
    ellipse 60% 60% at 50% 45%,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.7) 35%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.1) 82%,
    transparent 100%
  );
}

.loader-name{
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #E6EBF2;
  line-height: 1;
  display: inline-flex;
  gap: 10px;
}
.loader-name .accent{
  font-style: italic;
  font-weight: 600;
  color: #E8B842;
}
.loader-role{
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  color: #7C8699;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: -10px;
}

.loader-progress{
  width: 100%;
  margin-top: 8px;
}
.loader-bar{
  width: 100%;
  height: 2px;
  background: rgba(232,184,66,.10);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.loader-bar-fill{
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #E8B842 0%, #F5C754 100%);
  box-shadow: 0 0 8px rgba(232,184,66,.5);
  transition: width .25s ease-out;
}
.loader-meta{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.loader-status{
  color: #B8C2D1;
}
.loader-status::before{
  content: "▸ ";
  color: #E8B842;
}
.loader-pct{
  color: #E8B842;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce){
  .loader-inner, .loader-image::before{ animation: none;}
  .loader-bar-fill{ transition: none;}
}

  /* ===========================================================
     PALETTE — sampled from the warrior portrait
     deep near-black bg · chrome white text · gold accent
     =========================================================== */
  :root{
    /* solid backgrounds — single dark color, no gradients */
    --bg:           #0F1115;   /* pure deep near-black */
    --bg-card:      #181B22;   /* subtle elevation */
    --bg-soft:      #14171D;

    /* chrome / steel text scale */
    --text:         #EAECEF;   /* near-white headings */
    --text-2:       #C5C9D1;   /* strong body */
    --text-3:       #8A8F9A;   /* body */
    --text-4:       #4F5460;   /* muted */
    --text-5:       #3D4047;   /* very muted */

    /* borders */
    --line:         #1D2028;
    --line-2:       #2D3140;

    /* single accent — warm gold from the helmet */
    --accent:       #E8B842;
    --accent-2:     #F5C754;
    --accent-3:     rgba(232, 184, 66, .10);
    --accent-line:  rgba(232, 184, 66, .25);

    --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

    --max:    1280px;
    --pad-x:  clamp(20px, 4vw, 48px);
  }

  *{ margin:0; padding:0; box-sizing:border-box;}
  html{ scroll-behavior:smooth; -webkit-text-size-adjust: 100%;}
  body{
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* ===========================================================
     SITE-WIDE FIXED BACKDROP
     Image lives in top-right corner with softly-faded edges
     =========================================================== */
  .site-bg{
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .site-bg img{
    position: absolute;
    /* anchored to top-right, slightly off-screen so the right edge bleeds */
    top: 10px;
    right: -60px;
    width: clamp(480px, 46vw, 760px);
    height: auto;
    filter: contrast(100%) brightness(.95) saturate(120%);
    opacity: 1.5;
    /* radial mask — softens all four edges into transparent
       so the image doesn't look like a contained rectangle */
    -webkit-mask-image: radial-gradient(
      ellipse 70% 70% at 60% 45%,
      #000 0%,
      rgba(0,0,0,.92) 35%,
      rgba(0,0,0,.6) 60%,
      rgba(0,0,0,.2) 80%,
      transparent 100%
    );
      mask-image: radial-gradient(
  ellipse 60% 60% at 60% 45%,
  rgba(0,0,0,.7) 0%,
  rgba(0,0,0,.55) 25%,
  rgba(0,0,0,.35) 50%,
  rgba(0,0,0,.18) 70%,
  rgba(0,0,0,.06) 85%,
  transparent 100%
);
  }
  /* very subtle additional darkening so the image doesn't fight nearby text */
  .site-bg::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 50% 50% at 100% 0%, rgba(10,11,13,0) 0%, rgba(10,11,13,.15) 70%, transparent 100%);
    pointer-events: none;
  }

  a{
    color: inherit;
    text-decoration: none;
    transition: color .2s, opacity .2s, transform .2s, background .2s, border-color .2s;
  }
  ::selection{ background: var(--accent); color: var(--bg);}

  .container{
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }

  /* ===========================================================
     HERO — sits above the site-wide backdrop
     =========================================================== */
  .hero{
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--line);
    padding: clamp(72px, 11vw, 160px) 0 clamp(60px, 9vw, 120px);
  }

  .hero-inner{
    position: relative;
    max-width: 720px;
  }

  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 12px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(20, 22, 26, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-2);
    letter-spacing: .04em;
    margin-bottom: 28px;
  }
  .eyebrow .dot{
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 var(--accent);
    animation: pulseDot 2.4s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes pulseDot{
    0%,100%{ box-shadow: 0 0 0 0 rgba(232,184,66,.55);}
    50%   { box-shadow: 0 0 0 6px rgba(232,184,66,0);}
  }

  .hero h1{
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -.035em;
    color: var(--text);
    margin-bottom: 18px;
  }
  .hero h1 em{
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
  }
  .hero .role{
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: var(--text-2);
    margin-bottom: 22px;
    max-width: 30ch;
  }
  .hero .lead{
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.65;
    color: var(--text-3);
    max-width: 56ch;
    margin-bottom: 32px;
  }
  .hero .lead strong{ color: var(--text); font-weight: 600;}

  .hero-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--line-2);
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    background: rgba(20, 22, 26, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
  }
  .btn:hover{
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-3);
    transform: translateY(-1px);
  }
  .btn.primary{
    color: var(--bg);
    border-color: var(--accent);
    background: var(--accent);
    font-weight: 600;
  }
  .btn.primary:hover{
    color: var(--bg);
    background: var(--accent-2);
    border-color: var(--accent-2);
  }
  .btn svg{ width: 14px; height: 14px;}

  /* ===========================================================
     MARQUEE — infinite scroll skill ticker
     =========================================================== */
  .marquee{
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 2;
  }
  .marquee::before,
  .marquee::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee::before{
    left: 0;
    background: linear-gradient(to right, var(--bg-soft), transparent);
  }
  .marquee::after{
    right: 0;
    background: linear-gradient(to left, var(--bg-soft), transparent);
  }
  .marquee-track{
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: scroll 42s linear infinite;
    will-change: transform;
  }
  .marquee:hover .marquee-track{
    animation-play-state: paused;
  }
  .marquee-track > span{
    display: inline-flex;
    align-items: center;
    gap: 36px;
    padding-right: 36px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: .04em;
  }
  .marquee-track .star{
    color: var(--accent);
    font-size: 11px;
  }
  @keyframes scroll{
    from{ transform: translateX(0);}
    to  { transform: translateX(-50%);}
  }
  @media (prefers-reduced-motion: reduce){
    .marquee-track{ animation: none;}
  }

  /* ===========================================================
     CONTENT — two-column with sticky left
     =========================================================== */
  .layout{
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 0 clamp(40px, 6vw, 80px);
    padding: clamp(60px, 8vw, 100px) 0 0;
  }

  .sidebar{
    position: sticky;
    top: 32px;
    align-self: start;
    padding-bottom: 60px;
  }

  .side-block{
    margin-bottom: 36px;
  }
  .side-block:last-child{ margin-bottom: 0;}
  .side-label{
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-4);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .side-label::before{
    content: "";
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .nav-list{
    list-style: none;
  }
  .nav-list li{ margin: 1px 0;}
  .nav-list a{
    display: block;
    padding: 7px 0;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--text-4);
    letter-spacing: .04em;
    transition: color .2s, padding .2s;
    position: relative;
  }
  .nav-list a::before{
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--accent);
    margin-right: 0;
    vertical-align: middle;
    transition: width .25s, margin-right .25s;
  }
  .nav-list a:hover,
  .nav-list a.active{
    color: var(--text);
  }
  .nav-list a:hover::before,
  .nav-list a.active::before{
    width: 24px;
    margin-right: 12px;
  }
  .nav-list a.active{
    color: var(--accent);
  }

  .contact-list{
    list-style: none;
  }
  .contact-list li{ margin: 0;}
  .contact-list a, .contact-list .item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
  }
  .contact-list a:hover{ color: var(--accent);}
  .contact-list .ico{
    width: 14px; height: 14px;
    flex-shrink: 0;
    color: var(--text-4);
  }
  .contact-list a:hover .ico{ color: var(--accent);}

  .socials{
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }
  .socials a{
    color: var(--text-4);
    transition: color .2s, transform .2s;
    display: inline-flex;
  }
  .socials a:hover{
    color: var(--accent);
    transform: translateY(-2px);
  }
  .socials svg{ width: 18px; height: 18px;}

  /* ===== RIGHT — CONTENT ===== */
  .content{
    padding: 0 0 80px;
    min-width: 0;
  }

  section{
    margin-bottom: 80px;
    scroll-margin-top: 24px;
  }

  .section-head{
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }
  .section-head .num{
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: .04em;
    font-weight: 500;
  }
  .section-head h2{
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -.015em;
    flex: 1;
  }
  .section-head .meta{
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-4);
    letter-spacing: .02em;
  }

  /* mobile section marker (desktop hidden) */
  .section-marker{
    display: none;
  }

  /* ===== ABOUT ===== */
  .about p{
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text-3);
    margin-bottom: 14px;
    max-width: 64ch;
  }
  .about p strong{
    color: var(--text-2);
    font-weight: 600;
  }
  .about a{
    color: var(--text);
    border-bottom: 1px dashed var(--line-2);
  }
  .about a:hover{
    color: var(--accent);
    border-color: var(--accent);
  }

  /* ===== EXPERIENCE / PROJECT / SKILL ROWS ===== */
  .row{
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    padding: 24px 22px;
    margin: 0 -22px 4px;
    border: 1px solid transparent;
    border-radius: 6px;
    transition: background .2s, border-color .2s;
    position: relative;
  }
  .row:hover{
    background: var(--bg-card);
    border-color: var(--line-2);
  }
  .row:hover .row-title{ color: var(--accent);}
  .row:hover .row-arrow{ transform: translate(2px, -2px); color: var(--accent);}

  .row-when{
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-4);
    line-height: 1.5;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding-top: 4px;
  }

  .row-body h3{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.005em;
    margin-bottom: 5px;
    color: var(--text);
  }
  .row-title{
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .row-title .at{
    color: var(--text-3);
    font-weight: 500;
  }
  .row-arrow{
    display: inline-block;
    color: var(--text-4);
    transition: transform .2s, color .2s;
    font-size: 14px;
  }

  .row-sub{
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-4);
    margin-bottom: 14px;
    letter-spacing: .02em;
  }
  .row p{
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
    max-width: 64ch;
  }
  .row p strong{ color: var(--text-2); font-weight: 600;}

  /* impact metric chips */
  .metrics{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
  }
  .metric{
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--accent-3);
    border: 1px solid var(--accent-line);
    font-size: 11.5px;
    color: var(--text-2);
    line-height: 1.4;
  }
  .metric .v{
    color: var(--accent);
    font-weight: 600;
    font-family: var(--mono);
    font-size: 11.5px;
  }

  .bullets{
    list-style: none;
    margin-bottom: 14px;
  }
  .bullets li{
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-3);
    margin-bottom: 4px;
    max-width: 70ch;
  }
  .bullets li::before{
    content: "▹";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
    font-size: 13px;
  }
  .bullets li strong{ color: var(--text-2); font-weight: 600;}

  .tags{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
  }
  .tags span{
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: var(--bg-card);
    color: var(--text-3);
    border: 1px solid var(--line-2);
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .02em;
  }

  /* ===== HIRE / CONTACT ===== */
  .hire{
    padding: 32px 28px;
    border: 1px solid var(--accent-line);
    border-radius: 8px;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
  }
  .hire::before{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--accent);
  }
  .hire h2{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 10px;
  }
  .hire h2 em{
    font-style: normal;
    color: var(--accent);
  }
  .hire p{
    color: var(--text-3);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 60ch;
  }
  .hire p strong{ color: var(--text-2); font-weight: 600;}
  .hire-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ===== FOOTER ===== */
  footer{
    border-top: 1px solid var(--line);
    padding: 22px 0 32px;
    margin-top: 48px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-5);
    letter-spacing: .04em;
  }
  footer .foot-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
  }
  footer a{ color: var(--text-4);}
  footer a:hover{ color: var(--accent);}

  /* ===== REVEAL ===== */
  .fx{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fx.in{ opacity: 1; transform: translateY(0);}

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px){
    .layout{ grid-template-columns: 1fr; gap: 0;}
    .sidebar{
      position: static;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 32px;
    }
    .nav-list{ display: none;}
    .site-bg img{
      width: clamp(280px, 50vw, 420px);
      top: -30px;
      right: -40px;
      opacity: .7;
    }
  }

  @media (max-width: 720px){
    .hero h1{ font-size: 44px;}
    .hero .role{ font-size: 17px;}
    .row{
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 20px 18px;
      margin: 0 -18px 4px;
    }
    .row-when{ padding-top: 0;}
    .site-bg img{
      width: 75vw;
      max-width: 360px;
      top: -20px;
      right: -50px;
      opacity: .55;
    }
    .hire{ padding: 24px 22px;}
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important;}
    .fx{ opacity: 1; transform: none;}
  }

  /* ===== PRINT ===== */
  @media print{
    body{ background: #fff; color: #111; font-size: 11pt;}
    .site-bg, .marquee{ display: none;}
    .layout{ grid-template-columns: 1fr; gap: 0;}
    .sidebar{ position: static; padding-bottom: 24px; border-bottom: 1px solid #ddd; margin-bottom: 24px;}
    .nav-list{ display: none;}
    .hero h1, .hero h1 em, .row h3, .hire h2, h2{ color: #111 !important;}
    .row-when, .row-sub, .lead, .about p, .row p, .bullets li, .hire p, .tags span, .metric{ color: #333 !important;}
    .metric .v, .section-head .num{ color: #111 !important;}
    .tags span, .metric, .row, .hire{ background: #fff !important; border-color: #ddd !important;}
    .bullets li::before{ color: #555 !important;}
    a{ color: #111;}
    section{ margin-bottom: 32px; page-break-inside: avoid;}
    .hero{ padding: 24px 0;}
  }
/* ===========================================================
   RÉSUMÉ PREVIEW MODAL
   =========================================================== */
.resume-modal{
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.resume-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}
.resume-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, .80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.resume-modal-panel{
  position: relative;
  width: min(900px, 100%);
  height: min(92vh, 1100px);
  background: #14161A;
  border: 1px solid #2A2D33;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(8px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.resume-modal.is-open .resume-modal-panel{
  transform: translateY(0) scale(1);
}
.resume-modal-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #1B1D22;
  background: #0F1115;
  flex-shrink: 0;
  gap: 12px;
}
.resume-modal-title{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.resume-modal-eyebrow{
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: #E8B842;
}
.resume-modal-title > span:last-child{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #EDEEF1;
  line-height: 1;
}
.resume-modal-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}
.resume-btn-download{
  background: #E8B842 !important;
  color: #0A0B0D !important;
  border-color: #E8B842 !important;
  font-weight: 600 !important;
  padding: 8px 14px !important;
  font-size: 12px !important;
}
.resume-btn-download:hover{
  background: #F5C754 !important;
  border-color: #F5C754 !important;
  color: #0A0B0D !important;
}
.resume-modal-close{
  width: 34px;
  height: 34px;
  border: 1px solid #2A2D33;
  background: transparent;
  color: #C8CDD4;
  border-radius: 6px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.resume-modal-close:hover{
  color: #E8B842;
  border-color: #E8B842;
  background: rgba(232, 184, 66, .08);
}
.resume-modal-body{
  flex: 1;
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
}
.resume-modal-body iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}
body.is-modal-open{
  overflow: hidden;
}

@media (max-width: 600px){
  .resume-modal{ padding: 0;}
  .resume-modal-panel{
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 0;
  }
}