:root{
    --paper:#F2EFE6;
    --ink:#14130F;
    --orange:#F5510D;
    --blue:#1D4AFF;
    --green:#2E9E5B;
    --border:3px solid var(--ink);
    --shadow:6px 6px 0 var(--ink);
    --shadow-sm:4px 4px 0 var(--ink);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    line-height:1.5;
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    line-height:1.05;
    letter-spacing:-0.01em;
  }
  .mono{font-family:'IBM Plex Mono',monospace;}
  a{color:inherit;}
  img,svg{display:block; max-width:100%;}

  @media (prefers-reduced-motion: reduce){
    *{animation:none !important; transition:none !important;}
  }

  /* ---------- NAV ---------- */
  nav{
    position:sticky; top:0; z-index:50;
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px;
    background:var(--paper);
    border-bottom:var(--border);
  }
  .logo{
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:1.1rem;
    background:var(--ink); color:var(--paper);
    padding:6px 12px;
    border:var(--border);
    box-shadow:3px 3px 0 var(--orange);
  }
  .nav-links{display:flex; gap:28px; font-family:'IBM Plex Mono',monospace; font-size:0.85rem;}
  .nav-links a{text-decoration:none; position:relative;}
  .nav-links a:hover::after{
    content:""; position:absolute; left:0; bottom:-4px; width:100%; height:2px; background:var(--orange);
  }
  .nav-links a{display:none;}
  @media(min-width:640px){ .nav-links a{display:inline;} }

  /* ---------- HERO ---------- */
  .hero{
    padding:80px 24px 60px;
    max-width:1080px;
    margin:0 auto;
    position:relative;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'IBM Plex Mono',monospace; font-size:0.8rem;
    background:var(--green); color:var(--paper);
    padding:6px 12px; border:var(--border); box-shadow:var(--shadow-sm);
    margin-bottom:24px;
    transform:rotate(-1.5deg);
  }
  .hero h1{
    font-size: clamp(2rem, 5vw, 4rem);
    max-width:900px;
  }
  .hero h1 .accent{color:var(--orange);}
  .hero p.sub{
    font-size:1.15rem;
    max-width:560px;
    margin-top:24px;
    color:#3a382f;
  }
  .hero-cta{
    margin-top:36px;
    display:flex; gap:16px; flex-wrap:wrap;
  }
  .btn{
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:0.95rem;
    padding:14px 26px;
    border:var(--border);
    background:var(--ink); color:var(--paper);
    box-shadow:var(--shadow);
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover{ transform:translate(-2px,-2px); box-shadow:8px 8px 0 var(--ink); }
  .btn:focus-visible{ outline:3px solid var(--blue); outline-offset:3px; }
  .btn.secondary{ background:var(--paper); color:var(--ink); box-shadow:var(--shadow); }
  .btn.secondary:hover{ box-shadow:8px 8px 0 var(--ink); }

  /* floating serp card decoration */
  .serp-decor{
    position:absolute; top:60px; right:0;
    width:230px;
    background:var(--paper);
    border:var(--border);
    box-shadow:var(--shadow);
    padding:14px;
    font-family:'IBM Plex Mono',monospace;
    font-size:0.72rem;
    transform:rotate(3deg);
    display:none;
  }
  @media(min-width:900px){ .serp-decor{display:block;} }
  .serp-decor .rank1{
    background:var(--orange); color:var(--paper);
    padding:3px 8px; display:inline-block; margin-bottom:6px; font-weight:600;
  }
  .serp-decor .url{color:var(--green); margin-bottom:2px;}
  .serp-decor .title{font-weight:600; margin-bottom:4px;}

  /* ---------- TICKER ---------- */
  .ticker-wrap{
    background:var(--ink); color:var(--paper);
    border-top:var(--border); border-bottom:var(--border);
    overflow:hidden; white-space:nowrap;
    padding:14px 0;
  }
  .ticker{
    display:inline-block;
    font-family:'IBM Plex Mono',monospace;
    font-size:0.95rem;
    animation:scroll-left 22s linear infinite;
  }
  .ticker span{ margin:0 28px; }
  .ticker span.hl{ color:var(--orange); }
  @keyframes scroll-left{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }

  /* ---------- SECTION SHELL ---------- */
  section{
    max-width:1080px;
    margin:0 auto;
    padding:80px 24px;
  }
  .section-head{
    display:flex; align-items:baseline; gap:16px; margin-bottom:40px;
    flex-wrap:wrap;
  }
  .section-head h2{ font-size:clamp(1.8rem,4vw,2.6rem); }
  .section-head .tag{
    font-family:'IBM Plex Mono',monospace; font-size:0.8rem;
    color:#6b6a60;
  }

  /* ---------- WORK GRID ---------- */
  .work-grid{
    display:grid; gap:24px;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  }
  .card{
    border:var(--border);
    background:var(--paper);
    box-shadow:var(--shadow-sm);
    padding:24px;
    position:relative;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .card:hover{ transform:translate(-3px,-3px); box-shadow:7px 7px 0 var(--ink); }
  .card h3{ font-size:1.3rem; margin-bottom:8px; }
  .card p{ font-size:0.92rem; color:#3a382f; }
  .card .tape{
    position:absolute; top:-10px; left:20px;
    font-family:'IBM Plex Mono',monospace; font-size:0.65rem;
    background:var(--blue); color:var(--paper);
    padding:3px 8px;
    transform:rotate(-2deg);
  }
  .card.award{ border-color:var(--orange); }
  .card.award .badge{
    margin-top:14px;
    display:inline-block;
    font-family:'IBM Plex Mono',monospace; font-size:0.72rem;
    background:var(--orange); color:var(--paper);
    padding:5px 10px;
  }

  /* ---------- SIMULATOR ---------- */
  .sim-wrap{
    border:var(--border);
    background:#fff;
    box-shadow:var(--shadow);
    padding:32px;
  }
  .sim-top{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; margin-bottom:24px;}
  .sim-top .mono{ font-size:0.8rem; color:#6b6a60; }
  .sim-list{ display:flex; flex-direction:column; gap:8px; }
  .sim-row{
    display:flex; align-items:center; gap:12px;
    border:2px solid #d8d4c4;
    padding:10px 14px;
    font-family:'IBM Plex Mono',monospace;
    font-size:0.85rem;
    background:#fbfaf5;
    transition:transform .6s cubic-bezier(.2,.9,.3,1), box-shadow .3s ease, border-color .3s ease;
  }
  .sim-row .pos{
    width:28px; height:28px; flex:none;
    border:2px solid var(--ink);
    display:flex; align-items:center; justify-content:center;
    font-weight:600; background:var(--paper);
  }
  .sim-row.you{
    border-color:var(--ink);
    background:var(--paper);
  }
  .sim-row.you.top{
    border-color:var(--orange);
    box-shadow:var(--shadow-sm);
    background:#fff;
  }
  .sim-row.you.top .pos{ background:var(--orange); color:#fff; border-color:var(--ink); }
  .sim-btn-row{ margin-top:24px; display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
  .sim-note{ font-family:'IBM Plex Mono',monospace; font-size:0.75rem; color:#6b6a60; }

  /* ---------- APPROACH ---------- */
  .toolkit{
    display:grid; gap:16px;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  }
  .tool{
    border:2px solid var(--ink);
    padding:18px;
    background:#fbfaf5;
  }
  .tool h3{ font-size:1rem; font-family:'IBM Plex Mono',monospace; margin-bottom:8px; color:var(--blue); }
  .tool p{ font-size:0.88rem; color:#3a382f; }

  /* ---------- AWARD BANNER ---------- */
  .award-banner{
    border:var(--border);
    background:var(--ink); color:var(--paper);
    box-shadow:var(--shadow);
    padding:40px;
    display:flex; align-items:center; gap:28px; flex-wrap:wrap;
    margin-bottom: 20px;
  }
  .award-banner .trophy{
    font-size:3rem; flex:none;
    background:var(--orange);
    width:76px; height:76px;
    display:flex; align-items:center; justify-content:center;
    border:var(--border);
  }
  .award-banner h3{ font-size:1.4rem; }
  .award-banner p{ font-family:'IBM Plex Mono',monospace; font-size:0.85rem; opacity:0.85; margin-top:6px;}

  /* ---------- RECENT POSTS ---------- */
  .posts-grid{
    display:grid; gap:20px;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  }
  .post-card{
    border:2px solid var(--ink);
    background:#fbfaf5;
    padding:22px;
    text-decoration:none;
    display:block;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .post-card:hover{ transform:translate(-3px,-3px); box-shadow:var(--shadow-sm); }
  .post-card .date{
    font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:var(--blue);
    margin-bottom:10px; display:block;
  }
  .post-card h3{ font-size:1.15rem; margin-bottom:8px; }
  .post-card p{ font-size:0.88rem; color:#3a382f; }
  .posts-more{ margin-top:28px; }

  /* ---------- FOOTER ---------- */
  footer{
    border-top:var(--border);
    padding:70px 24px 40px;
    text-align:center;
  }
  footer h2{ font-size:clamp(1.8rem,5vw,3rem); max-width:700px; margin:0 auto 24px; }
  footer .foot-links{
    margin-top:40px;
    display:flex; justify-content:center; gap:24px; flex-wrap:wrap;
    font-family:'IBM Plex Mono',monospace; font-size:0.85rem;
  }
  footer .foot-links a{ text-decoration:underline; text-underline-offset:4px; }
  footer .copyright{ margin-top:40px; font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:#6b6a60; }

  /* ============================================================
     BLOG LISTING  (blog.html)
     ============================================================ */
  .page-hero{
    max-width:1080px; margin:0 auto; padding:70px 24px 30px;
  }
  .page-hero h1{ font-size:clamp(2.2rem,5.5vw,3.8rem); max-width:820px; }
  .page-hero h1 .accent{ color:var(--orange); }
  .page-hero p.sub{ font-size:1.1rem; max-width:600px; margin-top:20px; color:#3a382f; }

  .filters{
    max-width:1080px; margin:0 auto; padding:0 24px 10px;
    display:flex; gap:12px; flex-wrap:wrap;
  }
  .filter-chip{
    font-family:'IBM Plex Mono',monospace; font-size:0.78rem;
    background:var(--paper); color:var(--ink);
    border:2px solid var(--ink); padding:7px 14px;
    cursor:pointer; transition:transform .12s ease, box-shadow .12s ease;
  }
  .filter-chip:hover{ transform:translate(-1px,-1px); box-shadow:3px 3px 0 var(--ink); }
  .filter-chip[aria-pressed="true"]{ background:var(--ink); color:var(--paper); }
  .filter-chip:focus-visible{ outline:3px solid var(--blue); outline-offset:2px; }

  /* posts feed reuses .posts-grid / .post-card from the homepage */
  .feed{ max-width:1080px; margin:0 auto; padding:24px 24px 90px; }
  .post-card .cat{
    font-family:'IBM Plex Mono',monospace; font-size:0.7rem;
    color:var(--paper); background:var(--blue);
    padding:3px 8px; display:inline-block; margin-bottom:12px;
  }
  .post-card .meta{
    font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:#6b6a60;
    margin-top:14px; display:block;
  }
  .post-card.featured{ grid-column:1/-1; border:var(--border); box-shadow:var(--shadow); background:var(--paper); }
  .post-card.featured .cat{ background:var(--orange); }
  .post-card.featured h3{ font-size:clamp(1.5rem,3.5vw,2.2rem); max-width:760px; }
  .post-card.featured p{ font-size:1rem; max-width:640px; }

  .post-card.soon{ cursor:default; opacity:0.72; }
  .post-card.soon:hover{ transform:none; box-shadow:none; }
  .post-card.soon .cat{ background:#6b6a60; }
  .post-card .soon-tag{
    position:absolute; top:-10px; right:16px;
    font-family:'IBM Plex Mono',monospace; font-size:0.62rem;
    background:var(--ink); color:var(--paper); padding:3px 8px; transform:rotate(2deg);
  }
  .post-card{ position:relative; }
  .feed-empty{
    font-family:'IBM Plex Mono',monospace; font-size:0.9rem; color:#6b6a60;
    padding:40px 0; display:none;
  }

  /* ============================================================
     ARTICLE  (posts/*.html)
     ============================================================ */
  .article{ max-width:760px; margin:0 auto; padding:40px 24px 20px; }
  .back-link{
    font-family:'IBM Plex Mono',monospace; font-size:0.8rem;
    text-decoration:none; display:inline-block; margin-bottom:32px;
    border-bottom:2px solid transparent;
  }
  .back-link:hover{ border-bottom-color:var(--orange); }

  .article-hero .kicker{
    font-family:'IBM Plex Mono',monospace; font-size:0.75rem; color:#6b6a60;
    display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px;
  }
  .article-hero .kicker .cat{ background:var(--orange); color:var(--paper); padding:3px 8px; }
  .article-hero h1{ font-size:clamp(2rem,5vw,3.2rem); }
  .article-hero .dek{ font-size:1.2rem; color:#3a382f; margin-top:20px; max-width:640px; }
  .article-hero .rule{ border:0; border-top:var(--border); margin:36px 0; }

  .article-body{ font-size:1.05rem; }
  .article-body > * + *{ margin-top:22px; }
  .article-body h2{ font-size:1.6rem; margin-top:48px; }
  .article-body h3{ font-size:1.2rem; margin-top:32px; font-family:'Space Grotesk',sans-serif; }
  .article-body a{ color:var(--blue); text-underline-offset:3px; }
  .article-body ul, .article-body ol{ padding-left:22px; }
  .article-body li{ margin-top:8px; }
  .article-body strong{ font-weight:600; }
  .article-body code{
    font-family:'IBM Plex Mono',monospace; font-size:0.86em;
    background:#e7e3d6; padding:2px 6px; border:1px solid #d0ccbd;
  }
  .article-body blockquote{
    border-left:6px solid var(--orange);
    padding:6px 0 6px 22px; margin-left:0;
    font-size:1.25rem; font-family:'Space Grotesk',sans-serif; line-height:1.3;
  }
  .callout{
    border:var(--border); background:#fff; box-shadow:var(--shadow-sm);
    padding:22px 24px;
  }
  .callout .label{
    font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:var(--blue);
    display:block; margin-bottom:8px;
  }
  .callout p{ font-size:0.98rem; }

  .byline{
    max-width:760px; margin:56px auto 0; padding:0 24px;
  }
  .byline-inner{
    border:var(--border); background:var(--ink); color:var(--paper);
    box-shadow:var(--shadow); padding:26px; display:flex; gap:18px; align-items:flex-start; flex-wrap:wrap;
  }
  .byline .avatar{
    width:56px; height:56px; flex:none; background:var(--orange);
    border:var(--border); display:flex; align-items:center; justify-content:center;
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:1.3rem;
  }
  .byline h4{ font-family:'Space Grotesk',sans-serif; font-size:1.1rem; }
  .byline p{ font-family:'IBM Plex Mono',monospace; font-size:0.8rem; opacity:0.85; margin-top:6px; }

  .article-more{
    max-width:760px; margin:40px auto 90px; padding:0 24px;
    display:flex; gap:14px; flex-wrap:wrap;
  }

  /* ============================================================
     TOOLS I'VE BUILT  (#builds — homepage)
     ============================================================ */
  .builds-grid{
    display:grid; gap:24px;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  }
  .build-card{
    border:var(--border); background:var(--paper); box-shadow:var(--shadow-sm);
    text-decoration:none; color:inherit;
    display:flex; flex-direction:column; position:relative;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .build-card:hover{ transform:translate(-3px,-3px); box-shadow:7px 7px 0 var(--ink); }
  .build-card:focus-visible{ outline:3px solid var(--blue); outline-offset:3px; }

  .build-thumb{
    position:relative;
    border-bottom:var(--border);
    aspect-ratio:16/10;
    display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:#6b6a60;
    background:repeating-linear-gradient(45deg,#e7e3d6 0 10px,#ede9dd 10px 20px);
  }
  /* .tape is reused from the work cards; nudge it to sit above the thumb edge */
  .build-thumb .tape{ top:-11px; left:16px; }
  .build-status{
    position:absolute; top:12px; right:12px;
    font-family:'IBM Plex Mono',monospace; font-size:0.62rem; letter-spacing:0.02em;
    padding:4px 8px; border:2px solid var(--ink); color:var(--paper);
  }
  .build-status.live{ background:var(--green); }
  .build-status.oss{ background:var(--blue); }
  .build-status.internal{ background:var(--ink); }

  .build-body{ padding:22px; display:flex; flex-direction:column; gap:12px; flex:1; }
  .build-card h3{ font-size:1.25rem; }
  .build-card p{ font-size:0.9rem; color:#3a382f; flex:1; }
  .build-tags{ display:flex; gap:6px; flex-wrap:wrap; }
  .build-tags span{
    font-family:'IBM Plex Mono',monospace; font-size:0.68rem;
    border:2px solid var(--ink); background:var(--paper); padding:3px 7px;
  }
  .build-view{
    font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:0.9rem;
    display:inline-flex; align-items:center; gap:6px; margin-top:2px;
  }
  .build-view .arrow{ transition:transform .15s ease; }
  .build-card:hover .build-view .arrow{ transform:translateX(3px); }
  .build-thumb { overflow: hidden; }           /* clip anything that would spill */

  .build-thumb img {
    position: absolute; inset: 0;              /* fill the whole thumb */
    width: 100%; height: 100%;
    object-fit: cover;                          /* scale + crop, no distortion */
    display: block; z-index: 1;
  }
  .build-thumb .tape,
  .build-thumb .build-status { z-index: 2; }    /* keep the tape + badge on top */
  

   /* ============================================================
     HOW I GOT INTO SEO  (#story — homepage)
     ============================================================ */
  .story-wrap{ display:grid; gap:32px; grid-template-columns:1fr; }
  @media(min-width:820px){ .story-wrap{ grid-template-columns:1.5fr 1fr; align-items:start; } }
 
  .story-body > * + *{ margin-top:20px; }
  .story-body .lead{
    font-family:'Space Grotesk',sans-serif; font-weight:500;
    font-size:1.35rem; line-height:1.3;
  }
  .story-body p{ font-size:1.02rem; color:#3a382f; }
  .story-body blockquote{
    border-left:6px solid var(--orange); margin-left:0; padding:6px 0 6px 22px;
    font-family:'Space Grotesk',sans-serif; font-size:1.25rem; line-height:1.3; color:var(--ink);
  }
 
  .story-side{ display:flex; flex-direction:column; gap:20px; }
  .story-photo{
    position:relative;
    aspect-ratio:4/5; display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:#6b6a60;
    background:repeating-linear-gradient(45deg,#e7e3d6 0 10px,#ede9dd 10px 20px);
  }
  .story-photo .tape{ top:-11px; left:16px; }
  /* when the box holds the SEO-system illustration instead of a photo */
  .story-photo.illus{ background:var(--paper); }
  .story-photo.illus img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain; z-index:0; }
  .story-photo.illus .tape{ z-index:2; }
  .journey{
    list-style:none; border:var(--border); background:#fbfaf5;
    box-shadow:var(--shadow-sm); padding:22px;
  }
  .journey li{ position:relative; padding-left:24px; font-size:0.92rem; color:#3a382f; }
  .journey li + li{ margin-top:18px; }
  .journey .jt{
    display:block; font-family:'IBM Plex Mono',monospace; font-size:0.7rem;
    color:var(--blue); text-transform:uppercase; letter-spacing:0.03em; margin-bottom:3px;
  }
  .journey .dot{
    position:absolute; left:0; top:3px; width:11px; height:11px;
    background:var(--orange); border:2px solid var(--ink);
  }
 
  /* ============================================================
     RÉSUMÉ  (resume.html)
     ============================================================ */
  .resume{ max-width:1000px; margin:0 auto; padding:50px 24px 80px; }
  .resume-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; }
  .resume-head h1{ font-size:clamp(2.2rem,5vw,3.4rem); margin-top:14px; }
  .resume-role{ font-family:'IBM Plex Mono',monospace; font-size:0.9rem; color:#6b6a60; margin-top:10px; }
  .resume-meta{
    display:flex; gap:20px; flex-wrap:wrap; align-items:center;
    margin-top:22px; padding-bottom:22px; border-bottom:var(--border);
    font-family:'IBM Plex Mono',monospace; font-size:0.82rem;
  }
  .resume-meta a{ color:var(--blue); text-underline-offset:3px; }
 
  .resume-grid{ display:grid; gap:28px; grid-template-columns:1fr; margin-top:36px; }
  @media(min-width:820px){ .resume-grid{ grid-template-columns:1.7fr 1fr; align-items:start; } }
  .resume-main{ display:flex; flex-direction:column; gap:28px; }
  .resume-side{ display:flex; flex-direction:column; gap:20px; }
 
  .resume-block{ border:var(--border); background:var(--paper); box-shadow:var(--shadow-sm); padding:24px; }
  .recomm {height: 553px !important;}
  .resume-block > h2{
    font-family:'IBM Plex Mono',monospace; font-size:0.8rem; color:var(--blue);
    text-transform:uppercase; letter-spacing:0.04em; margin-bottom:18px;
  }
  .exp + .exp{ margin-top:22px; border-top:2px dashed #d0ccbd; padding-top:22px; }
  .exp-head{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:baseline; }
  .exp-head h3{ font-size:1.2rem; }
  .exp-meta{ font-family:'IBM Plex Mono',monospace; font-size:0.75rem; color:#6b6a60; }
  .exp-org{ font-size:0.85rem; color:#6b6a60; margin:5px 0 12px; }
  .exp ul{ padding-left:20px; }
  .exp li{ font-size:0.92rem; color:#3a382f; margin-top:8px; }
  .exp li strong{ font-weight:600; }
 
  .resume-brands{ font-family:'IBM Plex Mono',monospace; font-size:0.95rem; line-height:1.9; }
  .skill-list{ display:flex; gap:8px; flex-wrap:wrap; }
  .skill-list span{
    font-family:'IBM Plex Mono',monospace; font-size:0.72rem;
    border:2px solid var(--ink); background:var(--paper); padding:4px 8px;
  }
  .accent-block{ background:var(--ink); color:var(--paper); box-shadow:var(--shadow); }
  .accent-block h2{ color:var(--paper); }
  .award-mini{ display:flex; gap:14px; align-items:flex-start; }
  .trophy-mini{
    font-size:1.5rem; background:var(--orange); border:2px solid var(--paper);
    width:44px; height:44px; flex:none; display:flex; align-items:center; justify-content:center;
  }
  .award-mini div{ font-size:0.85rem; line-height:1.5; }
  .edu, .side-note{ font-size:0.9rem; color:#3a382f; }
  .edu-note{ font-family:'IBM Plex Mono',monospace; font-size:0.72rem; color:#6b6a60; }
  .side-note a{ color:var(--blue); }
 
  /* print: clean, single-purpose résumé sheet */
  @media print{
    nav, footer, .resume-actions{ display:none !important; }
    body{ background:#fff; }
    .resume{ padding:0; max-width:none; }
    .resume-block{ box-shadow:none; break-inside:avoid; }
    .accent-block{ background:#fff !important; color:var(--ink) !important; }
    .accent-block h2{ color:var(--blue) !important; }
    .trophy-mini{ border-color:var(--ink); }
    .recomm {height: auto !important;}
  }

.tool{
  display:flex;
  align-items:center;
  gap:14px;
}
.tool .content{
  flex:1;
  white-space:normal;
}
.tool img{
  width:35px;
  height:35px;
  object-fit:contain;
  flex:none;
}
.tool-resume{
  margin-top: 28px;
}