/* Auto-generated by scripts/build-css.sh — do not edit.
   Edit public/assets/css/parts/*.css instead, then re-run the script.
   Cascade order comes from the numeric filename prefixes. */

/* ── source: 01-tokens.css ─────────────────────────────────────── */
/* ── TOKENS ──────────────────────────────────────
   Design tokens for the site.

   • Type scale uses T-shirt naming (2xs → 3xl), sized by pixel
     because the display is desktop-dominant and precise-pixel
     control matters. Fluid sizes (--fs-display-*) are used for
     everything that needs to scale between phone and 4K.
   • Colours are grouped by role: text, background, line, accent,
     and semantic (recognition).
   • Existing tokens (--text, --text-mute, --text-dim, --line etc.)
     kept intact — new tokens extend, they don't replace. */
/*
   Breakpoints — CSS @media can't reference custom properties directly,
   so these values live here as documentation only. Every part file
   should use the widths listed below, and only these:

     --bp-narrow      (max-width:  390px)   very small phone
     --bp-phone       (max-width:  640px)   phone / mobile primary
     --bp-tablet      (max-width:  760px)   small tablet portrait
     --bp-desktop     (max-width:  960px)   tablet → desktop pivot
     --bp-wide        (max-width: 1180px)   wide laptop
     --bp-max         (min-width: 1440px)   large monitor

   If you find yourself reaching for a new value, prefer aligning to
   one of the above unless a real design reason forces otherwise. */
:root{
  /* Layout */
  --radius:14px;
  --radius-lg:18px;
  --radius-xl:22px;
  --container:1320px;
  --gutter:clamp(24px,5vw,72px);
  --section-y:clamp(72px,7.5vw,108px);
  --ease:cubic-bezier(.16,1,.3,1);

  /* Type scale — body */
  --fs-2xs:  9px;    /* mono uppercase micro labels */
  --fs-xs:  10px;    /* small mono labels (most common) */
  --fs-sm:  11px;    /* smallest body text, tag pills */
  --fs-base:12px;    /* small body */
  --fs-md:  13px;    /* body medium */
  --fs-lg:  14px;    /* body large — default */
  --fs-xl:  15px;    /* body xl — drawer, quickFacts */
  --fs-2xl: 17px;    /* lead paragraphs */
  --fs-3xl: 22px;    /* card titles */

  /* Type scale — fluid displays (phone → wide monitor) */
  --fs-display-sm: clamp(15px, 1.5vw, 18px);
  --fs-display-md: clamp(24px, 2.5vw, 34px);
  --fs-display-lg: clamp(28px, 3.4vw, 44px);
  --fs-display-xl: clamp(44px, 6vw, 84px);

  /* Colour — text */
  --text-white:   #ffffff;   /* pure white — hero name, key emphasis */
  --text:         #f0f0f5;   /* default body */
  --text-strong:  #f5f5ff;   /* cool near-white — section titles */
  --text-mute:    #8a8aa8;
  --text-dim:     #5a5a78;

  /* Colour — background */
  --bg:      #08080c;        /* deepest — page fill */
  --bg-soft: #0d0d14;        /* slightly lifted */
  --bg-1:    #0a0a14;        /* card variant a */
  --bg-2:    #0c0c12;        /* card variant b */
  --bg-3:    #101018;        /* hover / active */
  --surface:       rgba(255,255,255,.022);
  --surface-hover: rgba(255,255,255,.04);

  /* Colour — line */
  --line:      rgba(255,255,255,.06);
  --line-soft: rgba(255,255,255,.04);

  /* Colour — accent */
  --accent:      #a78bfa;
  --accent-2:    #818cf8;
  --accent-soft: rgba(167,139,250,.12);

  /* Colour — semantic */
  --recognition: #fbbf24;    /* gold — recognition card accent */
}

/* ── source: 02-base.css ─────────────────────────────────────── */
/* ── RESET & BASE ──────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:80px;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{background:var(--bg);color:var(--text);font-family:'Plus Jakarta Sans',system-ui,sans-serif;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.55;text-rendering:optimizeLegibility}
/* Scroll lock, applied by lockScroll() in 04-utils.js while any overlay
   is open. The position:fixed / top offset comes from JS (it needs the
   live scroll position); these rules stop iOS rubber-band scrolling from
   chaining past the overlay and kill the smooth-scroll animation that
   would otherwise fire when we restore the offset on unlock. */
html:has(body.scroll-locked){overscroll-behavior:none;scroll-behavior:auto}
body.scroll-locked{overflow:hidden;overscroll-behavior:none}
#root{min-height:100vh}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit;letter-spacing:inherit;word-spacing:inherit;-webkit-appearance:none;-moz-appearance:none;appearance:none}
button{cursor:pointer;background:none;border:none;padding:0;line-height:inherit;-webkit-tap-highlight-color:transparent}
img{display:block;max-width:100%}
svg{display:block}

/* ── SCROLLBAR ─────────────────────────────────── */
/* Firefox */
html{scrollbar-width:thin;scrollbar-color:#1f1f2c var(--bg)}
/* Webkit / Blink */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:#1f1f2c;border-radius:6px}
::-webkit-scrollbar-thumb:hover{background:#2a2a3a}

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes drawerIn{from{opacity:0;transform:translateX(32px)}to{opacity:1;transform:translateX(0)}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes pulse{0%,100%{opacity:.55}50%{opacity:1}}
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}

/* ── REVEAL ANIMATION ──────────────────────────── */
.reveal{opacity:1;transform:none}
.js .reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.js .reveal.visible{opacity:1;transform:translateY(0)}
.reveal-d1{transition-delay:.08s}
.reveal-d2{transition-delay:.16s}
.reveal-d3{transition-delay:.24s}

/* Per-word stagger inside .section-title — each word fades independently
   on top of the parent .section-head reveal. transition-delay is set
   inline on each span (see render_title_words in helpers.php). */
.section-title-word{
  display:inline-block;
  opacity:0;
  transform:translateY(.35em);
  transition:opacity .55s var(--ease),transform .55s var(--ease);
}
.js .reveal.visible .section-title-word,
.no-js .section-title-word{
  opacity:1;
  transform:translateY(0);
}
@media(prefers-reduced-motion:reduce){
  .section-title-word{transition:none;transform:none;opacity:1}
}


/* ── source: 03-layout.css ─────────────────────────────────────── */
/* ── CONTAINER ─────────────────────────────────── */
/* Container padding respects iPhone landscape safe-area insets so
   content stays clear of the notch / dynamic island. max() falls
   back to the design gutter when there's no notch. */
.container{
  width:100%;max-width:var(--container);margin:0 auto;
  padding-left:max(var(--gutter), env(safe-area-inset-left));
  padding-right:max(var(--gutter), env(safe-area-inset-right));
}

/* ── NAV ───────────────────────────────────────── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:200;height:68px;
  display:flex;align-items:center;justify-content:space-between;
  padding-left:max(var(--gutter), env(safe-area-inset-left));
  padding-right:max(var(--gutter), env(safe-area-inset-right));
  transition:background .35s var(--ease),border-color .35s var(--ease);
}
.nav.scrolled{background:rgba(8,8,12,.72);-webkit-backdrop-filter:blur(20px) saturate(1.4);backdrop-filter:blur(20px) saturate(1.4);border-bottom:1px solid var(--line-soft)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;width:100%;max-width:var(--container);margin:0 auto}
.nav-logo{font-size:16px;font-weight:800;letter-spacing:-.02em}
.nav-logo span{background:linear-gradient(135deg,var(--accent),var(--accent-2));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
.nav-links{position:relative;display:flex;align-items:center;gap:4px;--pill-x:0;--pill-y:0;--pill-w:0;--pill-h:0}
/* Sliding background pill — slides between nav links smoothly */
.nav-links::before{content:"";position:absolute;left:0;top:0;width:var(--pill-w);height:var(--pill-h);border-radius:8px;background:rgba(255,255,255,.06);transform:translate(var(--pill-x),var(--pill-y));opacity:0;transition:opacity .25s var(--ease),transform .42s cubic-bezier(.22,1,.36,1),width .42s cubic-bezier(.22,1,.36,1),height .42s cubic-bezier(.22,1,.36,1);pointer-events:none;z-index:0}
.nav-links.has-pill::before{opacity:1}
.nav-link{position:relative;z-index:1;font-size:var(--fs-md);color:var(--text);font-weight:700;padding:7px 14px;border-radius:8px;cursor:pointer;border:none;background:none;text-decoration:none;line-height:1.4;transition:color .25s var(--ease)}
.nav-link:hover,.nav-link.active{color:var(--text-white)}

/* ── SECTION SHELL ─────────────────────────────── */
.section{padding:var(--section-y) 0;position:relative}
.section + .section{border-top:1px solid var(--line-soft)}
.section-head{margin-bottom:clamp(36px,4.5vw,64px);max-width:760px}
.section-eyebrow{font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);color:var(--accent);letter-spacing:.22em;text-transform:uppercase;display:inline-flex;align-items:center;gap:14px;margin-bottom:18px;line-height:1.4}
.section-eyebrow::before{content:'';width:28px;height:1px;background:linear-gradient(90deg,var(--accent),transparent)}
.section-title{font-size:clamp(32px,4vw,52px);font-weight:700;color:#f5f5ff;letter-spacing:-.028em;line-height:1.08}
.section-sub{font-size:16px;color:var(--text-mute);line-height:1.7;margin-top:16px;max-width:560px}


/* ── source: 04-buttons.css ─────────────────────────────────────── */
/* ── BUTTONS ───────────────────────────────────── */
.btn-primary,.btn-secondary{font-size:var(--fs-lg);font-weight:600;padding:12px 26px;border-radius:14px;cursor:pointer;display:inline-flex;align-items:center;gap:9px;line-height:1.4;transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s,background .3s;border:1px solid transparent}
.btn-primary{background:linear-gradient(135deg,#7c3aed,#6366f1);color:var(--text-white);box-shadow:0 6px 24px rgba(124,58,237,.24)}
.btn-primary:hover{box-shadow:0 10px 32px rgba(124,58,237,.36)}
/* Liquid Glass — real refraction via SVG displacement filter */
.btn-secondary{position:relative;isolation:isolate;overflow:hidden;font-weight:500;color:#f8f8ff;background:transparent;border:0;text-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 1.5px 0.5px rgba(255,255,255,.55),inset 0 -1px 0.5px rgba(0,0,0,.15),inset 0 0 0 0.5px rgba(255,255,255,.12),0 1px 2px rgba(0,0,0,.12),0 4px 14px -6px rgba(0,0,0,.22);transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.btn-secondary svg{filter:drop-shadow(0 1px 1px rgba(0,0,0,.22));transition:transform .3s var(--ease);transform-origin:center}
.btn-secondary:hover svg{transform:scale(1.12)}
.btn-secondary::before{content:"";position:absolute;inset:0;border-radius:inherit;-webkit-backdrop-filter:blur(6px) saturate(180%) brightness(1.15);backdrop-filter:url(#liquid-glass-strong) blur(2px) saturate(180%) brightness(1.12);background:linear-gradient(135deg,rgba(255,255,255,.10) 0%,rgba(255,255,255,.02) 50%,rgba(255,255,255,.08) 100%);z-index:-1;pointer-events:none}
.btn-secondary::after{content:"";position:absolute;inset:0;border-radius:inherit;background:linear-gradient(180deg,rgba(255,255,255,.24) 0%,rgba(255,255,255,.04) 32%,transparent 50%,rgba(255,255,255,.05) 100%);pointer-events:none;z-index:-1;mix-blend-mode:overlay}
.btn-secondary:hover{box-shadow:inset 0 1.5px 0.5px rgba(255,255,255,.75),inset 0 -1px 0.5px rgba(0,0,0,.16),inset 0 0 0 0.5px rgba(255,255,255,.22),0 1px 3px rgba(0,0,0,.14),0 5px 16px -5px rgba(0,0,0,.28)}
.btn-secondary:active{transform:scale(.985);transition-duration:.15s}

/* Toast — copy confirmation */
.toast{position:fixed;left:50%;bottom:32px;transform:translate(-50%,20px);background:rgba(20,20,28,.92);color:#f0f0ff;font-size:var(--fs-md);font-weight:500;padding:12px 20px;border-radius:14px;border:1px solid rgba(255,255,255,.12);box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 8px 32px rgba(0,0,0,.4);-webkit-backdrop-filter:blur(20px) saturate(180%);backdrop-filter:blur(20px) saturate(180%);z-index:99999;opacity:0;pointer-events:none;letter-spacing:.01em;transition:opacity .3s var(--ease),transform .3s var(--ease);max-width:90vw;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.toast.toast-in{opacity:1;transform:translate(-50%,0)}
.toast.toast-out{opacity:0;transform:translate(-50%,-10px)}

/* Liquid Glass spotlight — clipped to the button's border-radius via overflow:hidden,
   sits at z-index:-2 so the ::before's backdrop-filter (z:-1) refracts it */
.glass-spot{position:absolute;top:0;left:0;width:55px;height:55px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.18) 0%,rgba(255,255,255,.04) 45%,rgba(255,255,255,0) 70%);pointer-events:none;opacity:0;transition:opacity .25s ease;z-index:-2;will-change:transform,opacity;transform:translate3d(-9999px,-9999px,0)}
.glass-spot.on{opacity:1}

/* ── BROWSER SPECIFIC FALLBACKS ────────────────── */
/* Firefox & Safari don't support SVG displacement in backdrop-filter,
   so their glass-spot light needs to be natively brighter to compensate. */
.is-safari .glass-spot,
.is-firefox .glass-spot {
  background: radial-gradient(circle, rgba(255,255,255,.32) 0%, rgba(255,255,255,.12) 45%, rgba(255,255,255,0) 70%);
}

/* Safari structural liquid glass edge simulation:
   Since Safari ignores the SVG displacement filter, we use very specific
   multi-layered inset shadows to recreate the thick, bright refractive top lip
   and the deep, dark bottom lip that Chrome gets automatically. */
.is-safari .btn-secondary,
.is-safari .hero-social,
.is-safari .case-btn-primary,
.is-safari .case-btn-icon {
  box-shadow: 
    inset 0 2.5px 3px rgba(255, 255, 255, 0.65), 
    inset 0 1px 0 rgba(255, 255, 255, 0.9), 
    inset 0 -1.5px 1px rgba(0, 0, 0, 0.25), 
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.15), 
    0 2px 4px rgba(0, 0, 0, 0.12), 
    0 6px 16px -4px rgba(0, 0, 0, 0.25) !important;
}
.is-safari .btn-secondary:hover,
.is-safari .hero-social:hover,
.is-safari .case-btn-primary:hover,
.is-safari .case-btn-icon:hover {
  box-shadow: 
    inset 0 3px 4px rgba(255, 255, 255, 0.75), 
    inset 0 1px 0 rgba(255, 255, 255, 1), 
    inset 0 -1.5px 1px rgba(0, 0, 0, 0.3), 
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.2), 
    0 3px 6px rgba(0, 0, 0, 0.15), 
    0 8px 20px -4px rgba(0, 0, 0, 0.3) !important;
}



/* ── source: 04b-window-chrome.css ─────────────────────────────────────── */
/* ── macOS-STYLE WINDOW CHROME ─────────────────────────
   Shared traffic-light header used by every modal: Launch demo,
   Image lightbox, Document viewer. Drawer keeps its own style (right-
   side slide, no window chrome).

   Structure:
     <div class="window-bar">
       <div class="window-traffic">
         <button class="window-light window-light-close" data-close></button>
         <span class="window-light window-light-min" aria-hidden="true"></span>
         <span class="window-light window-light-max" aria-hidden="true"></span>
       </div>
       <div class="window-addr">Title text</div>
       <div class="window-tools">...optional...</div>
     </div>
*/

.window-bar{
  display:flex;align-items:center;gap:12px;
  padding:11px 14px;
  background:linear-gradient(to bottom,#1c1c28,#13131e);
  border-bottom:1px solid var(--line);
  flex-shrink:0;
  min-height:44px;
}
.window-traffic{display:flex;gap:7px;align-items:center;flex-shrink:0}
.window-light{
  width:12px;height:12px;min-width:12px;min-height:12px;
  border-radius:50%;
  border:none;padding:0;
  cursor:default;
  position:relative;
}
.window-light-close{background:#ff5f57;cursor:pointer}
.window-light-close::before,
.window-light-close::after{
  content:'';position:absolute;top:50%;left:50%;
  width:7px;height:1.3px;
  background:#4d0000;border-radius:1px;
  opacity:0;transition:opacity .15s ease;
}
.window-light-close::before{transform:translate(-50%,-50%) rotate(45deg)}
.window-light-close::after{transform:translate(-50%,-50%) rotate(-45deg)}
.window-traffic:hover .window-light-close::before,
.window-traffic:hover .window-light-close::after{opacity:1}
.window-light-min{background:#febc2e}
.window-light-max{background:#28c840}

.window-addr{
  flex:1;
  display:flex;align-items:center;gap:10px;
  justify-content:center;
  font-family:'JetBrains Mono',monospace;
  font-size:var(--fs-base);
  color:var(--text-mute);
  background:rgba(255,255,255,.04);
  border:1px solid var(--line-soft);
  border-radius:8px;
  padding:6px 16px;
  max-width:540px;
  margin:0 auto;
  min-width:0;
}
.window-addr-text{
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  min-width:0;
}

.window-tools{
  display:flex;align-items:center;gap:8px;flex-shrink:0
}

/* ── source: 05-hero.css ─────────────────────────────────────── */
/* ── HERO ──────────────────────────────────────── */
.hero{aspect-ratio:16/9;display:flex;align-items:center;padding:80px 0 40px;position:relative;overflow:hidden}

/* Landscape outpainted photo fills the hero — one continuous image */
.hero-photo-bleed{position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.hero-photo-img{width:100%;height:100%;object-fit:cover;object-position:50% 50%}
.hero-photo-bleed::after{content:'';position:absolute;inset:0;z-index:1;background:linear-gradient(to right,rgba(8,8,12,0) 0%,rgba(8,8,12,.015) 18%,rgba(8,8,12,.05) 32%,rgba(8,8,12,.12) 45%,rgba(8,8,12,.24) 58%,rgba(8,8,12,.40) 70%,rgba(8,8,12,.56) 82%,rgba(8,8,12,.70) 92%,rgba(8,8,12,.78) 100%);pointer-events:none}

.hero-grid{position:relative;display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:clamp(40px,6vw,100px);z-index:3}
.hero-text{grid-column:2;display:flex;flex-direction:column;align-items:flex-start;min-width:0}
.hero-name{font-size:clamp(44px,6vw,84px);font-weight:800;color:#f5f5ff;line-height:.98;letter-spacing:-.018em;margin-bottom:18px;text-shadow:0 2px 28px rgba(0,0,0,.45)}
.hero-tagline{font-size:clamp(17px,1.35vw,20px);font-weight:500;color:#f5f5ff;max-width:460px;line-height:1.5;letter-spacing:-.005em;margin-bottom:28px;text-shadow:0 1px 2px rgba(0,0,0,.55),0 2px 18px rgba(0,0,0,.5)}
.hero-socials{display:flex;gap:10px;align-items:center;margin-bottom:28px;flex-wrap:wrap}
.hero-social{position:relative;isolation:isolate;overflow:hidden;width:44px;height:44px;min-width:44px;min-height:44px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;background:transparent;border:0;color:var(--text-white);line-height:1;box-shadow:inset 0 1.5px 0.5px rgba(255,255,255,.6),inset 0 -1px 0.5px rgba(0,0,0,.15),inset 0 0 0 0.5px rgba(255,255,255,.14),0 1px 2px rgba(0,0,0,.12),0 4px 12px -5px rgba(0,0,0,.22);transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.hero-social img,.hero-social svg{filter:drop-shadow(0 1px 1px rgba(0,0,0,.22))}
.hero-social::before{content:"";position:absolute;inset:0;border-radius:inherit;-webkit-backdrop-filter:blur(6px) saturate(180%) brightness(1.15);backdrop-filter:url(#liquid-glass) blur(2px) saturate(180%) brightness(1.12);background:linear-gradient(135deg,rgba(255,255,255,.10) 0%,rgba(255,255,255,.02) 50%,rgba(255,255,255,.08) 100%);z-index:-1;pointer-events:none}
.hero-social::after{content:"";position:absolute;inset:0;border-radius:inherit;background:linear-gradient(180deg,rgba(255,255,255,.30) 0%,rgba(255,255,255,.06) 32%,transparent 52%,rgba(255,255,255,.04) 100%);pointer-events:none;z-index:-1;mix-blend-mode:overlay}
.hero-social:hover{box-shadow:inset 0 1.5px 0.5px rgba(255,255,255,.85),inset 0 -1px 0.5px rgba(0,0,0,.16),inset 0 0 0 0.5px rgba(255,255,255,.24),0 1px 3px rgba(0,0,0,.14),0 5px 14px -5px rgba(0,0,0,.28)}
.hero-social:active{transform:scale(.96);transition-duration:.15s}
.hero-social img,.hero-social svg{width:20px;height:20px;display:block;transition:transform .3s var(--ease)}
.hero-social:hover img,.hero-social:hover svg{transform:scale(1.12)}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap}


/* ── source: 06-about-journey.css ─────────────────────────────────────── */
/* ── ABOUT — single portrait (rest of about section styled via .profile-* below) ── */
.about-photo-main{width:100%;max-width:340px;aspect-ratio:3/4;border-radius:var(--radius-xl);overflow:hidden;border:1px solid var(--line);box-shadow:0 20px 60px rgba(0,0,0,.5)}
.about-photo-main img{width:100%;height:100%;object-fit:cover;object-position:top center}

/* ── JOURNEY (two-column glass cards · per-column color) ────── */
.journey-cols{display:grid;grid-template-columns:1fr 1fr;gap:56px;margin-top:8px}
.journey-col{--card-accent:var(--accent);--card-accent-rgb:167,139,250;display:flex;flex-direction:column;gap:14px;min-width:0}
.journey-col-head{
  font-family:'JetBrains Mono',monospace;
  font-size:var(--fs-md);letter-spacing:.22em;text-transform:uppercase;font-weight:600;
  color:var(--card-accent);
  padding:0 0 14px;
  border-bottom:1.5px solid rgba(var(--card-accent-rgb),.32);
  margin-bottom:6px;
}
.journey-col-list{display:flex;flex-direction:column;gap:14px;min-width:0}
.journey-card{
  position:relative;isolation:isolate;overflow:hidden;
  display:block;width:100%;text-align:left;cursor:pointer;color:inherit;font:inherit;
  padding:24px 26px;
  background:linear-gradient(165deg,rgba(255,255,255,.038) 0%,rgba(255,255,255,.012) 55%,rgba(var(--card-accent-rgb),.03) 100%);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(0,0,0,.18),
    inset 0 0 0 0.5px rgba(255,255,255,.02),
    0 1px 2px rgba(0,0,0,.18);
  transition:border-color .4s var(--ease),background .4s var(--ease),box-shadow .45s var(--ease);
}
.journey-card:hover{
  background:linear-gradient(165deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.018) 55%,rgba(var(--card-accent-rgb),.045) 100%);
}

/* Left edge accent strip — short by default, full height on hover */
.journey-card-strip{
  position:absolute;top:14px;left:0;width:3px;height:42px;
  background:linear-gradient(180deg,var(--card-accent),rgba(var(--card-accent-rgb),.2) 80%,transparent);
  border-radius:0 3px 3px 0;
  box-shadow:0 0 12px rgba(var(--card-accent-rgb),.5);
  transition:height .45s var(--ease),top .45s var(--ease),box-shadow .45s var(--ease);
  pointer-events:none;z-index:2;
}
.journey-card:hover .journey-card-strip{
  top:0;height:100%;
  box-shadow:0 0 18px rgba(var(--card-accent-rgb),.7);
}

.journey-card > *:not(.journey-card-strip){position:relative;z-index:3}

.journey-card-eyebrow{
  display:block;
  font-family:'JetBrains Mono',monospace;
  font-size:10px;letter-spacing:.2em;text-transform:uppercase;font-weight:600;
  color:var(--card-accent);
  margin-bottom:14px;
  line-height:1.4;
}

.journey-card-title{
  display:block;
  font-size:20px;font-weight:700;letter-spacing:-.018em;line-height:1.25;
  color:var(--text-white);
  margin-bottom:4px;
}

.journey-card-lede{
  display:block;
  font-size:var(--fs-lg);font-weight:500;
  color:var(--card-accent);
  letter-spacing:-.005em;line-height:1.4;
  margin-bottom:16px;
}

.journey-card-org{
  display:block;
  font-size:var(--fs-lg);font-weight:500;
  color:var(--text);
  letter-spacing:-.005em;line-height:1.4;
  margin-top:8px;
}
.journey-card-lede + .journey-card-org{margin-top:0}


.journey-card-stats{
  margin:18px 0 0;padding:16px 0 0;
  border-top:1px solid rgba(var(--card-accent-rgb),.2);
  display:flex;flex-direction:column;gap:9px;
  transition:border-color .35s var(--ease);
}
.journey-card:hover .journey-card-stats{border-top-color:rgba(var(--card-accent-rgb),.35)}
.journey-card-stat{
  display:flex;align-items:baseline;justify-content:space-between;
  gap:16px;margin:0;
}
.journey-card-stat-label{
  font-family:'JetBrains Mono',monospace;
  font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;
  font-weight:500;color:var(--text-mute);
  line-height:1.4;white-space:nowrap;margin:0;
}
.journey-card-stat-value{
  font-size:var(--fs-md);font-weight:600;
  color:var(--text);letter-spacing:-.005em;
  line-height:1.4;text-align:right;
  font-variant-numeric:tabular-nums;
  -webkit-font-feature-settings:"tnum";
  font-feature-settings:"tnum";
  margin:0;
}

.journey-card-tags{display:flex;flex-wrap:wrap;gap:7px;margin-top:16px}
.journey-card-tag{
  font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);
  padding:4px 10px;
  background:rgba(var(--card-accent-rgb),.08);
  border:1px solid rgba(var(--card-accent-rgb),.2);
  color:var(--card-accent);
  border-radius:7px;
  letter-spacing:.04em;
  line-height:1.4;
  transition:background .25s var(--ease),border-color .25s var(--ease);
}
.journey-card:hover .journey-card-tag{
  background:rgba(var(--card-accent-rgb),.14);
  border-color:rgba(var(--card-accent-rgb),.32);
}

/* Empty-state card — rendered inside a journey-col when its list is empty.
   Reads as a soft, dashed availability note; never a real journey card. */
.journey-placeholder{
  position:relative;display:flex;flex-direction:column;gap:10px;
  padding:22px 20px;border-radius:14px;
  border:1px dashed rgba(var(--card-accent-rgb),.28);
  background:linear-gradient(165deg,rgba(255,255,255,.018) 0%,rgba(var(--card-accent-rgb),.020) 100%);
  color:#c7c5d4;
}
.journey-placeholder-kind{
  font-family:'JetBrains Mono',monospace;
  font-size:var(--fs-xs);letter-spacing:.16em;text-transform:uppercase;
  color:var(--card-accent);
}
.journey-placeholder-title{
  font-size:var(--fs-xl);font-weight:600;line-height:1.35;color:#e7e7ee;
  letter-spacing:-.005em;
}
.journey-placeholder-summary{
  font-size:12.5px;line-height:1.6;color:var(--text-mute);max-width:36ch;
}


/* ── source: 07-projects.css ─────────────────────────────────────── */
/* ── PROJECTS — case-study layout ──────────────── */
.case-list{display:flex;flex-direction:column}
.case{--case-accent:var(--accent);position:relative;display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.3fr);gap:clamp(36px,4.5vw,72px);padding:clamp(48px,6vw,80px) 0;border-top:1px solid var(--line-soft);align-items:flex-start;scroll-margin-top:120px}
.case:first-child{border-top:none;padding-top:8px}
.case:last-child{padding-bottom:8px}
.case-meta{position:sticky;top:104px;display:flex;flex-direction:column;gap:14px;min-width:0}
.case-num{font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);color:var(--text-dim);letter-spacing:.22em;text-transform:uppercase}
.case-title{font-size:clamp(28px,3.4vw,44px);font-weight:700;color:#f5f5ff;letter-spacing:-.025em;line-height:1.05;margin:0}
.case-dl{display:grid;grid-template-columns:auto 1fr;column-gap:18px;row-gap:8px;margin:8px 0 0;font-size:var(--fs-md)}
.case-dl dt{font-family:'JetBrains Mono',monospace;font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--text-dim);align-self:center}
.case-dl dd{margin:0;color:#d8d8ea;line-height:1.5}
.case-desc{font-size:14.5px;color:var(--text-mute);line-height:1.75;margin:6px 0 0;max-width:42ch}
.case-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:4px}
.case-tag{font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);padding:4px 10px;background:rgba(255,255,255,.025);color:var(--text-mute);border:1px solid var(--line);border-radius:7px;line-height:1.4}
.case-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.case-btn{display:inline-flex;align-items:center;gap:8px;font-family:'JetBrains Mono',monospace;font-size:11.5px;letter-spacing:.06em;text-transform:uppercase;padding:11px 18px;border-radius:100px;border:1px solid var(--line);background:transparent;color:#d8d8ea;cursor:pointer;line-height:1.4;transition:transform .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease);text-decoration:none}
.case-btn-disabled{opacity:.45;cursor:not-allowed;border-style:dashed}
.case-btn-icon{width:40px;height:40px;min-width:40px;min-height:40px;padding:0;gap:0;justify-content:center;flex-shrink:0}
/* Liquid glass — mirrors .hero-social / .btn-secondary so the demo + repo buttons
   pick up the same glass-spot cursor sweep wired in portfolio.js. */
.case-btn-primary,.case-btn-icon{position:relative;isolation:isolate;overflow:hidden;color:#f8f8ff;background:transparent;border:0;text-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 1.5px 0.5px rgba(255,255,255,.6),inset 0 -1px 0.5px rgba(0,0,0,.15),inset 0 0 0 0.5px rgba(255,255,255,.14),0 1px 2px rgba(0,0,0,.12),0 4px 12px -5px rgba(0,0,0,.22);transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.case-btn-primary svg,.case-btn-icon svg{filter:drop-shadow(0 1px 1px rgba(0,0,0,.22));transition:transform .3s var(--ease);transform-origin:center}
.case-btn-primary::before,.case-btn-icon::before{content:"";position:absolute;inset:0;border-radius:inherit;-webkit-backdrop-filter:blur(6px) saturate(180%) brightness(1.15);backdrop-filter:url(#liquid-glass) blur(2px) saturate(180%) brightness(1.12);background:linear-gradient(135deg,rgba(255,255,255,.10) 0%,rgba(255,255,255,.02) 50%,rgba(255,255,255,.08) 100%);z-index:-1;pointer-events:none}
.case-btn-primary::after,.case-btn-icon::after{content:"";position:absolute;inset:0;border-radius:inherit;background:linear-gradient(180deg,rgba(255,255,255,.14) 0%,rgba(255,255,255,.025) 14%,transparent 28%,rgba(255,255,255,.04) 100%);pointer-events:none;z-index:-1;mix-blend-mode:overlay}
.case-btn-primary:hover,.case-btn-icon:hover{box-shadow:inset 0 1.5px 0.5px rgba(255,255,255,.85),inset 0 -1px 0.5px rgba(0,0,0,.16),inset 0 0 0 0.5px rgba(255,255,255,.24),0 1px 3px rgba(0,0,0,.14),0 5px 14px -5px rgba(0,0,0,.28)}
.case-btn-primary:hover svg,.case-btn-icon:hover svg{transform:scale(1.12)}
.case-btn-primary:active,.case-btn-icon:active{transform:scale(.96);transition-duration:.15s}

.case-art-wrap{display:flex;flex-direction:column;gap:10px;min-width:0}
/* Hero and thumbs preserve source width (never crop left/right), but
   cap height so full-page scrollshots (e.g. GoGreen dashboards) don't
   turn the card into a mile-long banner. Long images get their bottom
   clipped; short/regular images show fully. */
.case-hero{position:relative;width:100%;max-height:520px;border-radius:var(--radius-lg);overflow:hidden;border:0;background:var(--bg-2);box-shadow:0 36px 72px -20px rgba(0,0,0,.8),0 14px 28px -12px rgba(0,0,0,.55),0 2px 4px -2px rgba(0,0,0,.5),0 1px 0 rgba(255,255,255,.05)}
.case-hero::after{content:'';position:absolute;inset:0;border-radius:inherit;pointer-events:none;z-index:10;box-shadow:inset 0 -1.5px 0 rgba(0,0,0,.65),inset 1.5px 0 0 rgba(255,255,255,.06),inset -1.5px 0 0 rgba(255,255,255,.06),inset 0 0 0 1px rgba(255,255,255,.14)}
.case-hero > img{width:100%;height:auto;display:block}
/* APSync-style phone screens. Cap each column at 200px so 4 phones
   on a wide desktop don't blow up to card-width each (which was
   dwarfing the surrounding text). align-items:start = each screen
   hugs its natural height. */
.case-screens{display:grid;grid-template-columns:repeat(4,minmax(0,200px));gap:12px;align-items:start;justify-content:start}
@media(max-width:640px){
  /* Phone width \~ 360px; four phone screens in a row is too tight,
     but two per row at half card width still shows detail. */
  .case-screens{grid-template-columns:repeat(2,minmax(0,160px))}
}
.case-screen{position:relative;border-radius:16px;overflow:hidden;border:0;background:var(--bg-2);box-shadow:0 20px 40px -14px rgba(0,0,0,.7),0 8px 16px -8px rgba(0,0,0,.45),0 1px 0 rgba(255,255,255,.05)}
.case-screen::after{content:'';position:absolute;inset:0;border-radius:inherit;pointer-events:none;z-index:10;box-shadow:inset 0 -1px 0 rgba(0,0,0,.55),inset 1px 0 0 rgba(255,255,255,.06),inset -1px 0 0 rgba(255,255,255,.06),inset 0 0 0 1px rgba(255,255,255,.12)}
.case-screen > img{width:100%;height:auto;display:block}
/* align-items:start so each thumb hugs its natural height instead of
   stretching to match the tallest sibling and leaving a blank tail
   under shorter ones. */
.case-thumbs{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;align-items:start}
/* Preserve source width (never crop sides) but cap height at 240px.
   Long scrollshots get their bottom clipped, short images show fully. */
.case-thumb{position:relative;max-height:240px;border-radius:10px;overflow:hidden;border:0;background:var(--bg-2);box-shadow:0 14px 28px -12px rgba(0,0,0,.6),0 5px 10px -5px rgba(0,0,0,.4),0 1px 0 rgba(255,255,255,.04);transition:transform .3s var(--ease)}
.case-thumb::after{content:'';position:absolute;inset:0;border-radius:inherit;pointer-events:none;z-index:10;box-shadow:inset 0 -1px 0 rgba(0,0,0,.55),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 0 0 1px rgba(255,255,255,.1)}
.case-thumb > img{width:100%;height:auto;display:block}

/* ── PLACEHOLDER ART (used in projects + events) ── */
.placeholder-art{position:relative;width:100%;overflow:hidden}
.case-hero .placeholder-art{aspect-ratio:4/3;box-shadow:inset 0 2px 10px rgba(0,0,0,.55),inset 0 -1px 2px rgba(255,255,255,.04),inset 0 0 0 1px rgba(0,0,0,.4)}
.case-thumb .placeholder-art{aspect-ratio:4/3}
.placeholder-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);background-size:22px 22px;opacity:1}
.placeholder-label{position:absolute;bottom:16px;right:18px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);color:rgba(255,255,255,.35);letter-spacing:.12em;text-transform:uppercase}


/* ── source: 08-events.css ─────────────────────────────────────── */
/* ── EVENTS — editorial list ───────────────────── */
.ev-list{list-style:none;padding:0;margin:0;border-top:1px solid var(--line-soft)}
.ev-row-wrap{list-style:none;margin:0;padding:0}
.ev-row{position:relative;display:grid;grid-template-columns:120px 1fr;column-gap:48px;padding:24px 8px;border:0;border-bottom:1px solid var(--line-soft);background:transparent;color:inherit;font:inherit;width:100%;text-align:left;cursor:pointer;align-items:start;overflow:hidden;--mx:50%;--my:50%}
/* Cursor-following radial spotlight only. No content shift, no side bar. */
.ev-row::before{content:"";position:absolute;inset:0;background:radial-gradient(420px circle at var(--mx) var(--my),rgba(167,139,250,.12) 0%,rgba(167,139,250,.04) 30%,transparent 60%);opacity:0;transition:opacity .35s var(--ease);pointer-events:none}
.ev-row:hover::before{opacity:1}
.ev-row:focus-visible{outline:2px solid rgba(167,139,250,.6);outline-offset:-2px;border-radius:6px}
.ev-row > *{position:relative;z-index:1}
.ev-row:hover .ev-row-date{color:var(--text)}
.ev-row:hover .ev-row-title{color:var(--text-white)}
.ev-row-date,.ev-row-title{transition:color .3s var(--ease)}
.ev-row-date{font-family:'JetBrains Mono',monospace;font-size:var(--fs-base);color:var(--text-dim);letter-spacing:.06em;padding-top:6px}
.ev-row-body{min-width:0;display:flex;flex-direction:column;gap:6px}
.ev-row-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);letter-spacing:.1em;text-transform:uppercase;line-height:1.4;margin-bottom:2px}
.ev-row-dot{width:7px;height:7px;min-width:7px;min-height:7px;border-radius:50%;flex-shrink:0;box-shadow:0 0 0 3px rgba(255,255,255,.02)}
.ev-row-cat{color:var(--text-mute)}
.ev-row-sep{color:var(--text-dim);font-weight:300}
.ev-row-role{color:var(--accent)}
.ev-row-title{font-size:18px;font-weight:600;color:var(--text);line-height:1.35;letter-spacing:-.01em}
.ev-row-desc{font-size:var(--fs-lg);color:var(--text-mute);line-height:1.7;max-width:680px}

/* ── CONTACT ───────────────────────────────────── */
.contact-grid{display:grid;grid-template-columns:1fr;gap:48px;align-items:center}
.contact-left{display:flex;flex-direction:column;align-items:flex-start;min-width:0}
.contact-heading{font-size:clamp(36px,5vw,68px);font-weight:700;line-height:1.02;letter-spacing:-.035em;margin-bottom:20px;background:linear-gradient(135deg,#f5f5ff 0%,var(--accent) 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
.contact-sub{font-size:16px;color:var(--text-mute);line-height:1.75;margin-bottom:36px;max-width:480px}
/* Contact email — minimal text + a hand-drawn tapered underline (thick → thin, like a brush stroke) */
.contact-email{position:relative;font-size:var(--fs-2xl);font-weight:600;color:var(--accent);display:inline-flex;align-items:center;gap:10px;padding:0 22px 10px 0;background:none;border:0;border-radius:0;text-decoration:none;cursor:pointer;line-height:1.4;transition:color .3s var(--ease)}
/* Underline — solid on left, fades to transparent on right via linear gradient (clean, natural) */
.contact-email::after{content:"";position:absolute;left:0;right:18px;bottom:0;height:1.5px;background:linear-gradient(to right,currentColor 0%,currentColor 55%,transparent 100%);opacity:.7;transition:opacity .3s var(--ease),right .4s cubic-bezier(.22,1,.36,1)}
.contact-email .contact-email-arrow{position:absolute;right:0;bottom:0;width:14px;height:14px;color:currentColor;transition:transform .4s cubic-bezier(.22,1,.36,1),opacity .3s var(--ease);opacity:.65}
.contact-email:hover{color:#c4b5fd}
.contact-email:hover::after{opacity:1;right:6px}
.contact-email:hover .contact-email-arrow{transform:translate(4px,-4px);opacity:1}
.contact-socials{display:flex;flex-direction:column;gap:12px;width:100%;min-width:0}
/* Social card — 3D tilt + diagonal sheen sweep + specular highlight + content parallax. Zero color/border change. */
.social-card{position:relative;overflow:hidden;display:grid;grid-template-columns:auto 1fr auto;column-gap:18px;align-items:center;padding:18px 22px;background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);text-align:left;will-change:transform}
/* Diagonal light beam — sits off-screen, slides across the card surface on hover */
.social-card::before{content:"";position:absolute;top:-50%;bottom:-50%;left:-30%;width:40%;background:linear-gradient(115deg,transparent 0%,rgba(255,255,255,.07) 35%,rgba(255,255,255,.18) 50%,rgba(255,255,255,.07) 65%,transparent 100%);transform:translateX(0) skewX(-12deg);opacity:0;transition:transform 1.1s cubic-bezier(.22,1,.36,1),opacity .25s var(--ease);pointer-events:none;z-index:2}
.social-card:hover::before{transform:translateX(330%) skewX(-12deg);opacity:1;transition-delay:0s,.05s}
.social-card > *{position:relative;z-index:1;transform:translateZ(0);transition:transform .55s cubic-bezier(.22,1,.36,1)}
/* On hover: icon and arrow lift forward in 3D space (parallax above the card surface) */
.social-card:hover .social-icon{transform:translateZ(28px)}
.social-card:hover .social-arrow{transform:translateZ(20px) translate(2px,-2px)}
.social-card:hover .social-text{transform:translateZ(14px)}
/* Override the default purple .tilt halo with a sharper, glass-like white specular */
.social-card.tilt::after{background:radial-gradient(circle 180px at var(--spot-x,50%) var(--spot-y,50%),rgba(255,255,255,.18) 0%,rgba(255,255,255,.04) 30%,transparent 55%);mix-blend-mode:screen}
.social-icon{color:var(--text-white);display:flex;align-items:center;justify-content:center;width:24px;height:24px;background:none;border:0;transition:color .3s var(--ease)}
.social-icon svg{width:24px;height:24px}
.social-text{display:flex;flex-direction:column;gap:3px;min-width:0}
.social-name{font-size:var(--fs-lg);font-weight:600;color:var(--text)}
.social-handle{font-family:'JetBrains Mono',monospace;font-size:var(--fs-base);color:var(--text-dim)}
.social-arrow{color:var(--text-dim);transition:transform .55s cubic-bezier(.22,1,.36,1);flex-shrink:0}

/* Contact switches to two columns at desktop widths, mirroring the
   960px tablet→desktop pivot used everywhere else. */
@media(min-width:961px){
  .contact-grid{grid-template-columns:1.05fr 1fr;column-gap:clamp(56px,8vw,120px);row-gap:48px}
}


/* ── source: 09-footer.css ─────────────────────────────────────── */
/* ── FOOTER ────────────────────────────────────── */
/* padding-bottom carries the iPhone home-indicator inset so the
   copyright line clears the swipe bar on iPhone X+ in fullscreen /
   home-screen add. Falls back to 28px on non-notch devices. */
.footer{
  border-top:1px solid var(--line-soft);
  padding-top:28px;
  padding-bottom:max(28px, env(safe-area-inset-bottom));
}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap}
.footer-copy{font-size:var(--fs-base);color:var(--text-dim);line-height:1.4}


/* ── source: 10-cursor-fx.css ─────────────────────────────────────── */
/* ── CUSTOM CURSOR ─────────────────────────────── */
@media(any-pointer:fine){
  body.cursor-on,body.cursor-on *{cursor:none !important}
}
.cursor-dot,.cursor-ring{position:fixed;left:0;top:0;pointer-events:none;z-index:9999;border-radius:50%;transform:translate(-50%,-50%);will-change:transform,width,height,opacity}
/* Idle cursor — just a clean white dot. Ring is hidden by default and only
   appears for pill / text-input states (see overrides below). */
.cursor-dot{width:5px;height:5px;background:var(--text-white);box-shadow:0 0 4px rgba(255,255,255,.55)}
.cursor-ring{width:26px;height:26px;border:1px solid rgba(255,255,255,.22);background:linear-gradient(135deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.02) 50%,rgba(255,255,255,.04) 100%);-webkit-backdrop-filter:blur(6px) saturate(140%);backdrop-filter:blur(6px) saturate(140%);display:flex;align-items:center;justify-content:center;font-family:'JetBrains Mono',monospace;font-size:9.5px;letter-spacing:.16em;text-transform:uppercase;color:transparent;white-space:nowrap;overflow:hidden;box-shadow:inset 0 1px 0 rgba(255,255,255,.18),inset 0 -1px 0 rgba(0,0,0,.12),inset 0 0 0 0.5px rgba(255,255,255,.06);opacity:0;transition:width .35s cubic-bezier(.22,1,.36,1),height .35s cubic-bezier(.22,1,.36,1),border-radius .35s cubic-bezier(.22,1,.36,1),background .3s cubic-bezier(.22,1,.36,1),border-color .3s,color .25s,opacity .25s}
.cursor-label{display:block;line-height:1;font-weight:600}

/* Clickable: ring vanishes, only dot stays — "fused" into the button */
body.cursor-merge .cursor-ring{opacity:0;width:6px;height:6px;border-color:transparent;background:transparent}
body.cursor-merge .cursor-dot{width:6px;height:6px}

/* Visual hover with label: ring becomes labelled pill */
body.cursor-pill .cursor-ring{opacity:1;width:auto;min-width:32px;height:32px;padding:0 14px;border-radius:100px;background:var(--cursor-pill-bg,var(--accent));border-color:transparent;color:#0b0b14;box-shadow:0 8px 22px -6px rgba(var(--cursor-pill-rgb,167,139,250),.5);-webkit-backdrop-filter:none;backdrop-filter:none}
body.cursor-pill .cursor-dot{opacity:0;width:0;height:0}
body.cursor-pill .cursor-label{display:inline-flex;align-items:center;gap:6px}
.cursor-arrow{width:13px;height:13px;display:inline-block;flex-shrink:0;stroke:currentColor}

/* Text input: vertical bar */
body.cursor-text .cursor-ring{opacity:1;width:3px;height:22px;border-radius:2px;background:var(--accent);border-color:transparent;color:transparent}
body.cursor-text .cursor-dot{opacity:0}

body.cursor-hidden .cursor-dot,body.cursor-hidden .cursor-ring{opacity:0 !important}
/* Moving state — fade ring out so it doesn't lag behind the dot. Dot stays default size. */
body.cursor-moving .cursor-ring{opacity:0;transition:opacity .08s linear}
/* Pill mode wins over moving — keep the OPEN label always visible while hovering */
body.cursor-moving.cursor-pill .cursor-ring{opacity:1!important}
body.cursor-moving.cursor-pill .cursor-dot{opacity:0!important;width:0!important;height:0!important}
@media(prefers-reduced-motion:reduce){
  .cursor-dot,.cursor-ring{transition:none}
}

/* ── MAGNETIC ──────────────────────────────────── */
[data-magnetic]{transition:transform .45s cubic-bezier(.22,1,.36,1);will-change:transform}
/* Small icon buttons — snappier follow so the magnet doesn't lag behind the cursor */
.case-btn-icon[data-magnetic]{transition:transform .26s cubic-bezier(.22,1,.36,1)}

/* ── TILT + SPOTLIGHT ──────────────────────────── */
.tilt{position:relative;transform-style:preserve-3d;transform:perspective(900px) rotateX(var(--tilt-rx,0deg)) rotateY(var(--tilt-ry,0deg));transition:transform .55s cubic-bezier(.22,1,.36,1)}
.tilt > *{transform:translateZ(0)}
.tilt::after{content:'';position:absolute;inset:0;border-radius:inherit;background:radial-gradient(circle 40px at var(--spot-x,50%) var(--spot-y,50%),rgba(var(--card-accent-rgb,167,139,250),.07) 0%,rgba(var(--card-accent-rgb,167,139,250),.02) 40%,transparent 60%);opacity:0;transition:opacity .4s cubic-bezier(.22,1,.36,1);pointer-events:none;mix-blend-mode:screen;z-index:5}
.tilt:hover::after{opacity:1}


/* ── source: 11-demo-modal.css ─────────────────────────────────────── */
/* ── DEMO MODAL (macOS-style window) ───────────── */
.demo-overlay{position:fixed;inset:0;z-index:700;background:radial-gradient(ellipse 50% 45% at 50% 50%,rgba(255,255,255,.045) 0%,transparent 70%),rgba(10,10,16,.38);-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);display:flex;align-items:center;justify-content:center;padding:40px;animation:fadeIn .3s var(--ease)}
.demo-window{position:relative;width:min(1148px,calc(100vw - 80px));height:min(860px,calc(100vh - 80px));background:#10101a;border:0;border-radius:16px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 60px 120px -30px rgba(0,0,0,.85),0 28px 56px -20px rgba(0,0,0,.6),0 6px 12px -4px rgba(0,0,0,.55),0 1px 0 rgba(255,255,255,.06);animation:demoIn .4s var(--ease);transition:width .35s var(--ease),height .35s var(--ease)}
.demo-window::after{content:'';position:absolute;inset:0;border-radius:inherit;pointer-events:none;z-index:50;box-shadow:inset 0 -2px 0 rgba(0,0,0,.7),inset 2px 0 0 rgba(255,255,255,.06),inset -2px 0 0 rgba(255,255,255,.06),inset 0 0 0 1px rgba(255,255,255,.14)}
@keyframes demoIn{from{opacity:0;transform:translateY(20px) scale(.97)}to{opacity:1;transform:none}}
.demo-bar{display:flex;align-items:center;gap:12px;padding:11px 14px;background:linear-gradient(to bottom,#1c1c28,#13131e);border-bottom:1px solid var(--line);flex-shrink:0}
.demo-traffic{display:flex;gap:7px;align-items:center}
.demo-light{width:12px;height:12px;min-width:12px;min-height:12px;border-radius:50%;border:none;cursor:default;padding:0;position:relative}
.demo-light-close{background:#ff5f57;cursor:pointer}
.demo-light-close::before,.demo-light-close::after{content:'';position:absolute;top:50%;left:50%;width:7px;height:1.3px;background:#4d0000;border-radius:1px;opacity:0;transition:opacity .15s ease}
.demo-light-close::before{transform:translate(-50%,-50%) rotate(45deg)}
.demo-light-close::after{transform:translate(-50%,-50%) rotate(-45deg)}
.demo-traffic:hover .demo-light-close::before,.demo-traffic:hover .demo-light-close::after{opacity:1}
.demo-light-min{background:#febc2e}
.demo-light-max{background:#28c840}
.demo-addr{flex:1;display:flex;align-items:center;gap:10px;justify-content:center;font-family:'JetBrains Mono',monospace;font-size:var(--fs-base);color:var(--text-mute);background:rgba(255,255,255,.04);border:1px solid var(--line-soft);border-radius:8px;padding:6px 16px;max-width:540px;margin:0 auto}
.demo-addr svg{flex-shrink:0;opacity:.6}
.demo-addr-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.demo-tools{display:flex;gap:8px;align-items:center;flex-shrink:0}
.demo-tool{background:none;border:1px solid var(--line);color:var(--text-mute);font-family:'JetBrains Mono',monospace;font-size:10.5px;letter-spacing:.08em;text-transform:uppercase;padding:5px 10px;border-radius:6px;cursor:pointer;line-height:1.4;transition:all .25s var(--ease);text-decoration:none;display:inline-flex;align-items:center;gap:6px}
.demo-tool:hover{color:var(--text);border-color:rgba(167,139,250,.38);background:rgba(167,139,250,.10)}
@supports (color: color-mix(in srgb, red, blue)) {
  .demo-tool:hover{border-color:color-mix(in srgb,var(--demo-accent,var(--accent)) 38%,transparent);background:color-mix(in srgb,var(--demo-accent,var(--accent)) 10%,transparent)}
}
.demo-device-btn{padding:5px 7px}
.demo-zoom{display:inline-flex;align-items:center;gap:2px;background:rgba(255,255,255,.04);border:1px solid var(--line-soft);border-radius:7px;padding:2px;font-family:'JetBrains Mono',monospace}
.demo-zoom-btn{background:none;border:none;color:var(--text-mute);width:22px;height:22px;min-width:22px;min-height:22px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;border-radius:5px;font-size:var(--fs-lg);line-height:1;padding:0;transition:all .15s ease}
.demo-zoom-btn:hover{background:rgba(167,139,250,.14);color:var(--text)}
@supports (color: color-mix(in srgb, red, blue)) {
  .demo-zoom-btn:hover{background:color-mix(in srgb,var(--demo-accent,var(--accent)) 14%,transparent)}
}
.demo-zoom-val{min-width:34px;text-align:center;color:var(--text-mute);font-size:10.5px;letter-spacing:.04em}
.demo-body{flex:1;position:relative;background:var(--bg-1);overflow:hidden}
.demo-body-desktop{--demo-desktop-zoom:.85}
.demo-body-desktop iframe{position:absolute;top:0;left:0;width:calc(100% / var(--demo-desktop-zoom));height:calc(100% / var(--demo-desktop-zoom));border:none;background:var(--text-white);transform:scale(var(--demo-desktop-zoom));transform-origin:top left}
.demo-role-picker{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:20px;z-index:5;background:var(--bg-1)}
.demo-role-title{color:var(--text-mute);font-family:'JetBrains Mono',monospace;font-size:var(--fs-base);letter-spacing:.12em;text-transform:uppercase;margin:0}
.demo-role-cards{display:flex;gap:16px}
.demo-role-card{display:flex;flex-direction:column;align-items:center;gap:8px;padding:28px 32px;background:rgba(255,255,255,.03);border:1px solid var(--line-soft);border-radius:14px;cursor:pointer;transition:all .25s var(--ease);min-width:160px}
.demo-role-card:hover{border-color:rgba(167,139,250,.50);background:rgba(167,139,250,.08)}
@supports (color: color-mix(in srgb, red, blue)) {
  .demo-role-card:hover{border-color:color-mix(in srgb,var(--demo-accent,var(--accent)) 50%,transparent);background:color-mix(in srgb,var(--demo-accent,var(--accent)) 8%,transparent)}
}
.demo-role-icon{color:var(--demo-accent,var(--accent));margin-bottom:4px}
.demo-role-label{color:var(--text);font-family:var(--font-body);font-size:var(--fs-xl);font-weight:600}
.demo-role-desc{color:var(--text-mute);font-size:var(--fs-base);text-align:center;max-width:140px;line-height:1.4}
.demo-loader{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;color:var(--text-mute);font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);letter-spacing:.18em;text-transform:uppercase;pointer-events:none}
.demo-loader-spinner{width:32px;height:32px;border:2px solid rgba(124,58,237,.18);border-top-color:var(--demo-accent,var(--accent));border-radius:50%;animation:spin 1s linear infinite}
@supports (color: color-mix(in srgb, red, blue)) {
  .demo-loader-spinner{border-color:color-mix(in srgb,var(--demo-accent,#7c3aed) 18%,transparent);border-top-color:var(--demo-accent,var(--accent))}
}
/* Mobile-device demo (vertical phone frame) — Pixel/Honor proportions */
.demo-window[data-device="mobile"]{height:min(900px,calc(100vh - 80px))}
.demo-body-mobile{display:flex;align-items:center;justify-content:center;padding:10px;background:radial-gradient(ellipse at center,rgba(124,58,237,.22) 0%,var(--bg-1) 75%)}
@supports (color: color-mix(in srgb, red, blue)) {
  .demo-body-mobile{background:radial-gradient(ellipse at center,color-mix(in srgb,var(--demo-accent,#7c3aed) 22%,#0d0d18) 0%,var(--bg-1) 75%)}
}
.demo-phone-frame{position:relative;height:100%;aspect-ratio:9/19.5;max-width:100%;background:#000;border-radius:38px;padding:6px;box-shadow:0 30px 80px rgba(0,0,0,.55),0 0 0 1px rgba(255,255,255,.06),inset 0 0 0 1.5px rgba(255,255,255,.04),0 0 70px rgba(124,58,237,.22)}
.demo-phone-screen{--demo-zoom:.73;position:relative;width:100%;height:100%;border-radius:32px;overflow:hidden;background:var(--text-white);display:flex;flex-direction:column}
.demo-status-bar{height:38px;flex-shrink:0;display:flex;align-items:center;justify-content:space-between;padding:0 24px 0 28px;background:var(--text-white);color:#000;font-family:-apple-system,BlinkMacSystemFont,'SF Pro Text','Segoe UI',sans-serif;font-size:var(--fs-lg);font-weight:600;letter-spacing:.01em;z-index:1}
.demo-status-icons{display:inline-flex;align-items:center;gap:7px;fill:currentColor}
.demo-status-icons svg{display:block}
.demo-phone-viewport{flex:1;position:relative;overflow:hidden}
.demo-phone-viewport iframe{position:absolute;top:0;left:0;width:calc(100% / var(--demo-zoom));height:calc(100% / var(--demo-zoom));border:none;background:var(--text-white);transform:scale(var(--demo-zoom));transform-origin:top left}

@media(max-width:640px){
  .demo-overlay{padding:0}
  .demo-window,
  .demo-window[data-device="mobile"]{width:100%;height:100vh;border-radius:0;border:none}
  .demo-addr{font-size:var(--fs-xs);padding:5px 10px}
  .demo-tool{display:none}
  .demo-zoom{padding:1px}
  .demo-zoom-btn{width:20px;height:20px;font-size:var(--fs-md)}
  .demo-zoom-val{font-size:var(--fs-xs);min-width:30px}
  .demo-body-mobile{padding:10px}
  .demo-phone-frame{border-radius:32px;padding:5px}
  .demo-phone-screen{border-radius:27px}
}


/* ── source: 12-drawer.css ─────────────────────────────────────── */
/* ── DRAWER ────────────────────────────────────── */
.drawer-overlay{position:fixed;inset:0;z-index:600;background:radial-gradient(ellipse 50% 45% at 50% 50%,rgba(255,255,255,.045) 0%,transparent 70%),rgba(10,10,16,.38);-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);animation:fadeIn .25s ease}
/* Flex column so the header stays put, the body scrolls, and the
   footer (PDF button) is pinned to the bottom — no matter how long
   the content is. Previously the whole panel scrolled as one, which
   meant the PDF button drifted off-screen and the user had to scroll
   back to reach it. */
.drawer-panel{position:absolute;top:0;right:0;bottom:0;width:min(540px,100vw);background:var(--bg-soft);border-left:1px solid var(--line);display:flex;flex-direction:column;overscroll-behavior:contain;animation:drawerIn .35s var(--ease)}
.drawer-header{padding:32px 40px 24px;background:var(--bg-soft);border-bottom:1px solid var(--line-soft);flex:none}
.drawer-close{background:none;border:none;cursor:pointer;font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);color:var(--text-dim);letter-spacing:.12em;text-transform:uppercase;display:flex;align-items:center;gap:8px;padding:0;margin-bottom:22px;line-height:1.4;transition:color .2s}
.drawer-close:hover{color:var(--text)}
.drawer-eyebrow{font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);color:var(--accent);letter-spacing:.12em;text-transform:uppercase;margin-bottom:10px;line-height:1.4}
.drawer-title{font-size:24px;font-weight:600;color:#f0f0f5;line-height:1.25;margin-bottom:6px;letter-spacing:-.01em}
.drawer-lede{font-size:var(--fs-lg);color:var(--accent);line-height:1.4;margin-bottom:8px;font-weight:500}
.drawer-sub{font-size:var(--fs-lg);color:var(--text-mute)}
.drawer-body{padding:32px 40px 48px;display:flex;flex-direction:column;gap:24px;flex:1 1 auto;overflow-y:auto;overscroll-behavior:contain}
.drawer-pills{display:flex;gap:20px;flex-wrap:wrap}
.drawer-pill{font-family:'JetBrains Mono',monospace;font-size:var(--fs-base);color:var(--text-mute);display:inline-flex;align-items:center;gap:6px;line-height:1.4}
/* Highlights block — key numbers (CGPA, Attendance …). Mirrors the
   stat rows the journey card front shows, so opening the drawer keeps
   the numbers visible instead of hiding them behind prose. */
.drawer-highlights{margin:0;padding:16px 18px;border:1px solid var(--line-soft);border-radius:12px;background:rgba(255,255,255,.02);display:flex;flex-direction:column;gap:9px}
/* Class rules above use display:flex which overrides the UA
   [hidden]{display:none} default. Without these overrides, empty
   highlights/section blocks stay visible on cards that don't populate
   them (Primary Education). */
.drawer-highlights[hidden],.drawer-section[hidden]{display:none}
.drawer-highlight{display:flex;align-items:baseline;justify-content:space-between;gap:16px;margin:0}
.drawer-highlight-label{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.14em;text-transform:uppercase;color:var(--text-mute);line-height:1.4;white-space:nowrap;margin:0}
.drawer-highlight-value{font-size:var(--fs-lg);font-weight:600;color:var(--text-white);letter-spacing:-.005em;line-height:1.4;text-align:right;font-variant-numeric:tabular-nums;-webkit-font-feature-settings:"tnum";font-feature-settings:"tnum";margin:0}
/* Named sections (About / Leadership …). Keeps unrelated content
   (prose, roles, activities) from being flattened into one bullet list. */
.drawer-section{display:flex;flex-direction:column;gap:10px;margin:0}
.drawer-section-label{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);color:var(--text-dim);letter-spacing:.12em;text-transform:uppercase;line-height:1.4}
.drawer-desc{font-size:var(--fs-xl);color:#a8a8c0;line-height:1.8;margin:0}
/* Videos block — used by recognition drawer for Instagram post
   backups. Native <video controls>, capped at drawer body width. */
.drawer-videos{display:flex;flex-direction:column;gap:14px;align-items:center;margin:0}
.drawer-videos[hidden]{display:none}
.drawer-video{display:flex;flex-direction:column;gap:6px;width:100%;max-width:380px;margin:0}
.drawer-video video{width:100%;height:auto;display:block;border-radius:12px;border:1px solid rgba(255,255,255,.1);background:#000;box-shadow:0 24px 48px -16px rgba(0,0,0,.75),0 10px 20px -10px rgba(0,0,0,.5)}
.drawer-video-caption{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.05em;color:var(--text-mute);text-align:center;line-height:1.4}

.drawer-gallery{display:flex;flex-direction:column;gap:18px;align-items:center}
/* Each gallery entry is a figure: image button on top, small caption
   below. Cap width at 380px (drawer body is ~460px usable) so mobile
   screenshots don't stretch into a giant portrait bar. Click opens
   the lightbox at full size. */
.drawer-gallery-figure{display:flex;flex-direction:column;gap:6px;width:100%;max-width:380px;align-items:center}
.drawer-gallery-item{display:block;width:100%;padding:0;border:1px solid rgba(255,255,255,.1);border-radius:12px;overflow:hidden;background:var(--bg-2);box-shadow:0 24px 48px -16px rgba(0,0,0,.75),0 10px 20px -10px rgba(0,0,0,.5),0 2px 4px -1px rgba(0,0,0,.4);cursor:pointer}
.drawer-gallery-item img{width:100%;height:auto;display:block}
.drawer-gallery-caption{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.05em;color:var(--text-mute);text-align:center;line-height:1.4;padding:0 4px}
.drawer-bullets{list-style:none;display:flex;flex-direction:column;gap:10px;padding:0;margin:0}
.drawer-bullets li{display:flex;gap:10px;align-items:flex-start}
.drawer-bullet-dot{color:var(--accent);font-size:8px;line-height:1;margin-top:8px;flex-shrink:0}
.drawer-bullets li > span:last-child{font-size:var(--fs-lg);color:#a8a8c0;line-height:1.7}
.drawer-tech-label{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);color:var(--text-dim);letter-spacing:.12em;text-transform:uppercase;margin-bottom:10px}
.drawer-tech-list{display:flex;flex-wrap:wrap;gap:6px}
.drawer-tech-tag{font-family:'JetBrains Mono',monospace;font-size:var(--fs-sm);padding:4px 12px;background:rgba(255,255,255,.03);color:#a8a8c0;border:1px solid var(--line);border-radius:6px;line-height:1.4}
/* Pinned footer with the PDF button. Sits below the scrollable body,
   so the button stays reachable no matter how far you've scrolled. */
.drawer-footer{flex:none;padding:20px 40px;border-top:1px solid var(--line-soft);background:var(--bg-soft)}
.drawer-footer[hidden]{display:none}
.drawer-pdf{margin:0}
.drawer-links{display:flex;flex-wrap:wrap;gap:10px;padding-top:8px;border-top:1px solid var(--line-soft);margin-top:0}

/* Project link cards — same visual family as the contact section's
   social cards. Click closes the drawer and scrolls to the matching
   project card on the page. */
.drawer-project-links{display:flex;flex-direction:column;gap:10px}
.drawer-project-link{display:grid;grid-template-columns:1fr auto;align-items:center;gap:14px;padding:14px 16px;background:rgba(255,255,255,.02);border:1px solid var(--line);border-radius:12px;color:var(--text);cursor:pointer;text-align:left;font:inherit;transition:border-color .25s var(--ease),background .25s var(--ease),transform .25s var(--ease)}
.drawer-project-link:hover{border-color:rgba(167,139,250,.38);background:rgba(255,255,255,.04)}
.drawer-project-text{display:flex;flex-direction:column;gap:2px;min-width:0}
.drawer-project-title{font-size:var(--fs-lg);font-weight:600;color:var(--text-white);line-height:1.3;letter-spacing:-.005em}
.drawer-project-subtitle{font-size:var(--fs-sm);color:var(--text-mute);line-height:1.4}
.drawer-project-arrow{color:var(--text-dim);transition:color .25s var(--ease),transform .25s var(--ease);flex-shrink:0}
.drawer-project-link:hover .drawer-project-arrow{color:var(--accent);transform:translate(2px,-2px)}

.case-art-wrap[data-drawer]{cursor:pointer}
.case-btn-view{width:36px;height:36px;min-width:36px;min-height:36px;padding:0;gap:0;justify-content:center;flex-shrink:0;border-radius:50%;border:none;background:transparent;color:#d8d8ea;line-height:1;transition:color .3s var(--ease),transform .35s var(--ease)}
.case-btn-view:hover{color:var(--text-white)}
.case-btn-view svg{transition:transform .3s var(--ease)}
.case-btn-view:hover svg{transform:translate(2px,-2px) scale(1.08)}


/* ── source: 13-responsive.css ─────────────────────────────────────── */
/* ── WIDE SCREENS (≥1180px) ────────────────────── */
@media(min-width:1440px){
  .hero-grid{gap:96px}
}

/* ── RESPONSIVE ────────────────────────────────── */
@media(max-width:960px){
  /* Tighten nav-link padding on tablet so 6 links + logo don't crowd
     the header. Full padding returns at ≥961px where there's room. */
  .nav-link{padding:6px 10px;font-size:var(--fs-sm)}
  .nav-links{gap:2px}
  /* Hero switches from aspect-ratio landscape to a stacked photo + text
     column. --hero-text-lift controls how far the text block overlaps
     into the bottom of the photo, which is faded to transparent by the
     mask-image below. Both the photo margin and the text z-index are
     derived from a single knob so a change here only touches one
     variable instead of two coordinated values. */
  .hero{aspect-ratio:auto;padding-top:0;min-height:auto;display:block;--hero-text-lift:100px}
  .hero-photo-bleed{position:relative;width:100%;height:68vh;min-height:480px;inset:auto;margin-bottom:calc(-1 * var(--hero-text-lift))}
  .hero-photo-bleed::before,.hero-photo-bleed::after{display:none}
  .hero-photo-img{-webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 65%,rgba(0,0,0,.3) 85%,transparent 100%);mask-image:linear-gradient(to bottom,#000 0%,#000 65%,rgba(0,0,0,.3) 85%,transparent 100%);object-position:center 20%}
  .hero-grid{grid-template-columns:1fr;gap:20px;padding:8px 0 60px;position:relative;z-index:10}
  .hero-text{grid-column:1;align-items:center;text-align:center}
  .hero-tagline{margin-left:auto;margin-right:auto}
  .hero-socials{justify-content:center;margin-bottom:24px}
  .hero-ctas{justify-content:center}
  .about-photo-main{margin-bottom:8px}
  .journey-cols{grid-template-columns:1fr;gap:36px}
  .case{grid-template-columns:1fr;gap:32px}
  .case-meta{position:static}
  .case-title{font-size:30px}
}
@media(max-width:640px){
  .nav{height:60px}
  .nav-links .nav-link{display:none}
  /* Bump the burger button to 44×44 (Apple/Google minimum tap size). */
  .nav-menu-btn{width:44px;height:44px}

  /* Bump project card round buttons to 44×44 on mobile.
     Desktop keeps 36-40px because mouse users don't need the padding. */
  .case-btn-icon,.case-btn-view{width:44px;height:44px;min-width:44px;min-height:44px}

  .about-photo-main{max-width:280px}
  .case-title{font-size:26px}
  .case-thumbs{grid-template-columns:repeat(3,1fr);gap:6px}
  .footer-inner{flex-direction:column;align-items:flex-start;gap:10px}
  .journey-card{padding:22px 20px}
  .drawer-header,.drawer-body{padding-left:24px;padding-right:24px}
  /* Compact vertical padding too so the drawer opens without wasting
     a whole viewport of top space on phone. */
  .drawer-header{padding-top:26px;padding-bottom:20px}
  .drawer-body{padding-top:26px;padding-bottom:36px}

  /* Events list — stack date above content */
  .ev-row{grid-template-columns:1fr;row-gap:6px;column-gap:0;padding:20px 6px}
  .ev-row-date{padding-top:0}

  /* Contact socials — 3-col compact icon+name on mobile */
  .contact-socials{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
  .social-card{grid-template-columns:1fr;grid-template-rows:auto auto;column-gap:0;row-gap:8px;padding:16px 8px;text-align:center;justify-items:center}
  .social-handle{display:none}
  .social-arrow{display:none}
  .social-name{font-size:var(--fs-base)}
}

/* Landscape phone (very short viewport) — the mobile hero uses
   height:68vh + min-height:480px which overflows a 375-393px tall
   landscape viewport. Trim the photo height so the hero fits
   without forcing extra scroll before the name is visible. */
@media(orientation:landscape) and (max-height:500px){
  .hero-photo-bleed{height:88vh;min-height:0;max-height:340px}
  .hero{--hero-text-lift:64px}
}


/* ── source: 14-credentials-journal.css ─────────────────────────────────────── */
/* ── PORTFOLIO V2: ACCESSIBILITY & NAVIGATION ─── */
.skip-link{position:fixed;left:18px;top:12px;z-index:2000;padding:10px 15px;border-radius:10px;background:var(--text-white);color:var(--bg);font-size:var(--fs-md);font-weight:800;transform:translateY(-160%);transition:transform .2s var(--ease)}
.skip-link:focus{transform:translateY(0)}
:where(a,button,summary,[tabindex]):focus-visible{outline:2px solid #c4b5fd;outline-offset:4px}
.nav-menu-btn{display:none;position:relative;z-index:203;width:42px;height:42px;border:1px solid var(--line);border-radius:13px;background:rgba(10,10,16,.5);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px)}
.nav-menu-btn span{position:absolute;left:12px;width:16px;height:1px;background:var(--text-white);transition:transform .3s var(--ease),top .3s var(--ease)}
.nav-menu-btn span:first-child{top:16px}
.nav-menu-btn span:last-child{top:24px}
.nav-menu-btn[aria-expanded="true"] span:first-child{top:20px;transform:rotate(45deg)}
.nav-menu-btn[aria-expanded="true"] span:last-child{top:20px;transform:rotate(-45deg)}
.mobile-nav{display:none}
.hero-kicker{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.82);margin-bottom:14px;text-shadow:0 1px 12px rgba(0,0,0,.6)}
.contact-copy{margin-top:18px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.12em;text-transform:uppercase;color:var(--text-mute);border-bottom:1px solid rgba(255,255,255,.2);padding:0 0 4px;transition:color .2s,border-color .2s}
.contact-copy:hover{color:var(--text-white);border-color:var(--text-white)}
.toast[role="status"]{pointer-events:none}


/* ── CREDENTIALS & RECOGNITION ─────────────────── */
.credentials-section{overflow:hidden}
/* Rail shrunk to 88px (only holds the vertical mono label + date);
   photo column auto-sized to its natural width; copy column gets
   enough headroom to keep "DF Mini Game" on one line at any zoom. */
/* Recognition card — cursor-follow spotlight via ::before + subtle
   border/shadow lift on hover. No transform, no lift, matches the
   rest of the site's static hover language. --mx/--my come from
   15-cursor-light.js (touch supported via touchmove). */
.recognition-feature{position:relative;display:grid;grid-template-columns:88px minmax(0,0.9fr) minmax(360px,1.55fr);min-height:430px;border:1px solid rgba(251,191,36,.16);border-radius:26px;overflow:hidden;background:radial-gradient(circle at 27% 45%,rgba(251,191,36,.17),transparent 28%),linear-gradient(135deg,#151006 0%,#0b0b10 56%,var(--bg-3) 100%);box-shadow:0 22px 60px -40px rgba(251,191,36,.3);cursor:pointer;transition:border-color .35s var(--ease),box-shadow .35s var(--ease)}
.recognition-feature::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background:radial-gradient(60px circle at var(--mx,50%) var(--my,50%),rgba(251,191,36,.08),transparent 50%);opacity:0;transition:opacity .35s var(--ease)}
.recognition-feature:hover{border-color:rgba(251,191,36,.34);box-shadow:0 26px 68px -40px rgba(251,191,36,.42)}
.recognition-feature:hover::before{opacity:1}
.recognition-feature::after{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(90deg,#000,transparent 80%)}
.recognition-rail{position:relative;z-index:1;padding:28px 0 28px 14px;border-right:1px solid rgba(255,255,255,.07);display:flex;flex-direction:column;justify-content:space-between;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.46)}
.recognition-rail span:first-child{writing-mode:vertical-rl;transform:rotate(180deg)}
.recognition-mark{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;padding:clamp(24px,3vw,42px)}
/* Photo variant — edge-to-edge cover. The image fills the whole grid
   cell; card's overflow:hidden clips against the rounded corner. */
.recognition-mark.has-photo{padding:0;justify-content:stretch;align-items:stretch}
/* Text fallback: only used when there's no photo. Concentric rings
   are decorative — rendered ONLY on the text variant, hidden when
   there's a real photo so we don't box the image in. */
.recognition-mark:not(.has-photo)::before,
.recognition-mark:not(.has-photo)::after{content:"";position:absolute;border:1px solid rgba(251,191,36,.24);border-radius:50%}
.recognition-mark:not(.has-photo)::before{width:210px;height:210px}
.recognition-mark:not(.has-photo)::after{width:158px;height:158px}
.recognition-mark:not(.has-photo) > span{font-size:clamp(74px,8vw,128px);font-weight:800;line-height:1;color:var(--recognition);letter-spacing:-.1em;transform:translateX(-.06em)}
.recognition-mark:not(.has-photo) > small{position:absolute;bottom:25%;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.22em;color:var(--text-white)}
/* Photo fills its grid cell edge-to-edge; card's overflow:hidden clips
   anything beyond the rounded corner. object-fit:cover keeps the crop
   focused even when the copy column grows the card taller. */
.recognition-photo{display:block;width:100%;height:100%;max-width:none;max-height:none;border:0;border-radius:0;object-fit:cover}
.recognition-index{display:none}
.recognition-copy{position:relative;z-index:1;padding:clamp(42px,5vw,72px);display:flex;flex-direction:column;justify-content:center}
/* Champion — plain gold uppercase, no chip. Sits on top of the card
   as a caption to the DF Mini Game title beneath. */
.recognition-kicker{font-family:'JetBrains Mono',monospace;font-size:var(--fs-md);font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--recognition);margin-bottom:14px}
/* nowrap so "DF Mini Game" stays on a single line — three short words
   are the whole visual anchor of this card, they shouldn't break. */
.recognition-copy h3{font-size:clamp(40px,5vw,70px);letter-spacing:-.045em;line-height:.96;color:var(--text-white);white-space:nowrap}
.recognition-event{font-size:clamp(18px,2vw,26px);color:#d6d1c4;margin-top:11px}
.recognition-desc{font-size:var(--fs-xl);line-height:1.85;color:#9d9aaa;max-width:650px;margin-top:28px}
.recognition-meta{display:flex;flex-wrap:wrap;gap:8px 22px;margin-top:26px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.07em;color:#d7d2c3}
.recognition-meta span{display:inline-flex;align-items:center;gap:9px}
.recognition-meta span::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--recognition)}
.recognition-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}
/* Instagram buttons now use .case-btn.case-btn-primary (liquid glass
   spotlight from 14-glass-init.js) — the old plain-anchor override
   here fought that. Removed. */

/* Recognition — tablet and phone: collapse the three-column layout.
   Rail (vertical "Recognition 01 · date") is hidden — its info is
   already present in the copy's kicker and meta strip. The huge
   DF · 01 mark is demoted to a small pill in the top-right of the
   card so copy owns the primary reading order. */
@media(max-width:760px){
  .recognition-feature{
    display:block;
    min-height:0;
    padding:22px 8px 24px;
    position:relative;
  }
  .recognition-rail{display:none}
  .recognition-mark{
    position:absolute;top:20px;right:20px;
    padding:6px 10px;
    display:inline-flex;align-items:baseline;gap:4px;
    background:rgba(251,191,36,.08);
    border:1px solid rgba(251,191,36,.22);
    border-radius:8px;
  }
  .recognition-mark::before,.recognition-mark::after{display:none}
  .recognition-mark > span{
    font-size:var(--fs-md);font-weight:700;letter-spacing:-.01em;
    line-height:1;color:var(--recognition);transform:none;
  }
  .recognition-mark > small{
    position:static;
    font-size:var(--fs-2xs);letter-spacing:.14em;color:var(--recognition);
  }
  /* Mobile: photo variant — rectangular photo above the copy. Rings
     already hidden by the not(.has-photo) selector on desktop. */
  .recognition-mark.has-photo{
    position:static;
    padding:0;
    background:transparent;border:0;
    display:block;
    margin-bottom:18px;
  }
  .recognition-photo{max-width:none;width:100%;height:auto;object-fit:initial;border-radius:14px}
  .recognition-copy{padding:0}
  .recognition-copy h3{font-size:clamp(32px,7vw,44px);margin-top:18px}
  .recognition-event{font-size:var(--fs-2xl)}
  .recognition-desc{font-size:var(--fs-lg);margin-top:20px}
  .recognition-meta{gap:6px 16px;margin-top:20px}
  .recognition-links{margin-top:22px}
}

/* Selected certification shelf — deliberately distinct from the Journal index. */
.selected-credentials{margin-top:64px}
.selected-credentials-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;padding-bottom:18px;border-bottom:1px solid var(--line)}
.selected-credentials-index{display:block;margin-bottom:8px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.16em;text-transform:uppercase;color:var(--accent)}
.selected-credentials-head h3{font-size:clamp(24px,2.5vw,34px);line-height:1.1;letter-spacing:-.03em;color:#f6f6fb}
.selected-credentials-head>a,.selected-credentials-mobile-link{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.08em;text-transform:uppercase;color:#c7c5d4;white-space:nowrap}
.selected-credentials-head>a:hover,.selected-credentials-mobile-link:hover{color:var(--text-white)}
.credential-shelf{display:grid;grid-template-columns:minmax(0,1.28fr) repeat(3,minmax(0,1fr));gap:12px;padding-top:18px}
.selected-credential{position:relative;display:flex;min-width:0;min-height:365px;flex-direction:column;overflow:hidden;border:1px solid var(--line);border-top-color:color-mix(in srgb,var(--credential-accent) 55%,transparent);border-radius:15px;background:#0d0d13;transition:border-color .3s var(--ease),background .3s var(--ease)}
.selected-credential::after{content:"";position:absolute;inset:0;pointer-events:none;box-shadow:inset 0 1px 0 rgba(255,255,255,.055)}
.selected-credential:hover{border-color:color-mix(in srgb,var(--credential-accent) 42%,rgba(255,255,255,.08));background:#101017}
.selected-credential-visual{position:relative;display:flex;align-items:center;justify-content:center;min-height:238px;flex:1;overflow:hidden;background:#15151d;padding:22px 20px 12px}
.selected-credential-visual::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(to bottom,transparent 70%,rgba(13,13,19,.55) 100%)}
.selected-credential-visual img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;filter:saturate(.78) contrast(.98);transition:filter .5s var(--ease)}
.selected-credential:hover .selected-credential-visual img{filter:saturate(.96) contrast(1.01)}
.selected-credential-number{position:absolute;right:14px;top:10px;z-index:2;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.13em;color:var(--text-white);padding:5px 7px;border:1px solid rgba(255,255,255,.18);border-radius:6px;background:rgba(5,5,8,.62);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}
.selected-credential-copy{position:relative;z-index:2;display:flex;min-height:126px;flex-direction:column;padding:18px 18px 20px}
.selected-credential-copy small{font-family:'JetBrains Mono',monospace;font-size:8px;letter-spacing:.1em;text-transform:uppercase;color:var(--credential-accent);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.selected-credential-copy strong{font-size:var(--fs-xl);line-height:1.4;color:#f1f1f6;margin-top:8px}
.selected-credential-copy>span{margin-top:auto;padding-top:13px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.04em;color:#77768b}
.selected-credentials-mobile-link{display:none;margin-top:20px;padding:12px 0;border-top:1px solid var(--line)}

/* Credentials ledger — full-frame cards. Each group is its own card
   built with the same design language as the Recognition feature at
   the top of the page: accent-tinted border, per-issuer radial glow,
   drop shadow. Certificates are always visible; no accordion. */
.credential-ledger{display:flex;flex-direction:column;gap:28px;margin-top:56px}
.credential-card{position:relative;overflow:hidden;padding:36px 40px 38px;border:1px solid color-mix(in srgb,var(--credential-accent) 16%,var(--line));border-radius:24px;background:radial-gradient(circle at 12% 0%,color-mix(in srgb,var(--credential-accent) 10%,transparent),transparent 42%),linear-gradient(180deg,#0c0c14 0%,#08080d 100%);box-shadow:0 30px 80px -50px color-mix(in srgb,var(--credential-accent) 65%,transparent);scroll-margin-top:92px;transition:border-color .35s var(--ease),box-shadow .35s var(--ease)}
.credential-card::before{content:"";position:absolute;left:0;top:24px;bottom:24px;width:3px;border-radius:0 3px 3px 0;background:var(--credential-accent);opacity:.7}
.credential-card::after{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);background-size:56px 56px;mask-image:linear-gradient(180deg,#000,transparent 65%);opacity:.5}
.credential-card:hover{border-color:color-mix(in srgb,var(--credential-accent) 32%,var(--line));box-shadow:0 40px 100px -50px color-mix(in srgb,var(--credential-accent) 75%,transparent)}
.credential-card:target{border-color:color-mix(in srgb,var(--credential-accent) 50%,var(--line))}

.credential-card-head{position:relative;z-index:1;display:flex;align-items:baseline;justify-content:space-between;gap:24px;flex-wrap:wrap}
.credential-card-meta{display:inline-flex;align-items:baseline;gap:10px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.14em;text-transform:uppercase;color:var(--text-mute);flex-wrap:wrap}
.credential-card-index{color:var(--credential-accent);font-weight:500}
.credential-card-meta-sep{color:var(--text-dim);opacity:.7}
.credential-card-issuer{color:#c8c7d4}
.credential-card-count{color:var(--text-mute)}
.credential-card-date{font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.14em;text-transform:uppercase;color:#c8c7d4;white-space:nowrap}

.credential-card-title{position:relative;z-index:1;display:flex;align-items:baseline;justify-content:space-between;gap:24px;flex-wrap:wrap;margin:20px 0 0;font-size:clamp(24px,2.4vw,34px);font-weight:600;line-height:1.18;letter-spacing:-.022em;color:#f5f5fa}
.credential-card-title>span:first-child{flex:1 1 auto;min-width:0}
.credential-card-pending{flex:0 0 auto;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.14em;text-transform:uppercase;color:var(--credential-accent);padding:6px 12px;border:1px solid color-mix(in srgb,var(--credential-accent) 38%,transparent);border-radius:999px;background:color-mix(in srgb,var(--credential-accent) 8%,transparent);font-weight:400}

.credential-card-summary-text{position:relative;z-index:1;margin:14px 0 0;max-width:780px;color:#a5a4b8;line-height:1.7;font-size:var(--fs-base)}

.credential-card-divider{position:relative;z-index:1;margin:28px 0 26px;height:1px;background:linear-gradient(90deg,color-mix(in srgb,var(--credential-accent) 22%,transparent) 0,transparent 60%)}

.credential-documents{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;align-items:start}
.credential-document{display:flex;flex-direction:column;gap:14px;min-width:0}
.credential-preview{display:block;width:100%;padding:0;border:0;background:transparent;text-align:left;cursor:pointer}
/* Full certificate — natural aspect, no crop. Each frame's height is
   driven by the image itself, so 4:3 landscape (Anthropic) and any
   other ratio (Huawei landscape jpg, AWS pdf preview) all render at
   their true proportions. Grid rows align to the tallest tile in the
   row via align-items:start on the parent grid. */
/* Full certificate — natural aspect, no crop. Hover changes the outer
   glow and inner outline only; no lift, no scale, no image movement. */
.credential-preview-frame{position:relative;display:block;overflow:hidden;border-radius:10px;background:#0f0f16;box-shadow:0 12px 30px -20px rgba(0,0,0,.85);transition:box-shadow .4s var(--ease)}
.credential-preview-frame::after{content:"";position:absolute;inset:0;box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);border-radius:10px;pointer-events:none;transition:box-shadow .35s var(--ease)}
.credential-preview-frame img{display:block;width:100%;height:auto;transition:filter .4s var(--ease)}
.credential-preview:hover .credential-preview-frame{box-shadow:0 12px 30px -20px rgba(0,0,0,.85),0 0 0 1px color-mix(in srgb,var(--credential-accent) 50%,transparent)}
.credential-preview:hover .credential-preview-frame::after{box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--credential-accent) 60%,transparent)}
.credential-preview:hover .credential-preview-frame img{filter:brightness(.96)}
.credential-preview-corner{position:absolute;top:10px;right:10px;z-index:2;display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:rgba(6,6,10,.7);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);color:var(--text-white);opacity:0;transform:translateY(-4px);transition:opacity .3s var(--ease),transform .3s var(--ease),background .3s var(--ease)}
.credential-preview:hover .credential-preview-corner,.credential-preview:focus-visible .credential-preview-corner{opacity:1;transform:translateY(0);background:color-mix(in srgb,var(--credential-accent) 85%,#000)}
.credential-document-copy{display:flex;flex-direction:column;gap:8px}
.credential-document-copy strong{font-size:var(--fs-base);line-height:1.4;color:#e6e5ef;font-weight:500}
.credential-document-copy a{display:inline-flex;align-items:center;gap:6px;align-self:flex-start;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.12em;text-transform:uppercase;color:var(--credential-accent);transition:color .25s var(--ease),gap .25s var(--ease)}
.credential-document-copy a:hover{color:#fff;gap:9px}
.credential-document-copy a svg{transition:transform .3s var(--ease)}
.credential-document-copy a:hover svg{transform:translate(2px,-2px)}

/* ── JOURNAL INDEX ─────────────────────────────── */
.journal-row{grid-template-columns:120px minmax(0,1fr) 190px;cursor:default;transition:background .25s var(--ease)}
a.journal-row{cursor:pointer}
.journal-row::before{background:radial-gradient(350px circle at var(--mx) var(--my),color-mix(in srgb,var(--journal-accent) 10%,transparent),transparent 70%)}
.journal-row-action{align-self:center;justify-self:end;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.08em;text-transform:uppercase;color:var(--text-dim)}
a.journal-row:hover .journal-row-action{color:var(--journal-accent)}


/* ── source: 15-document-viewer.css ─────────────────────────────────────── */
/* ── DOCUMENT VIEWER ───────────────────────────── */
/* Plain overlay (div, not <dialog>) so our custom cursor at z:9999 stays
   above the modal instead of being buried by the top-layer <dialog>. */
.document-viewer{position:fixed;inset:0;z-index:700;display:flex;align-items:center;justify-content:center;padding:16px;background:rgba(3,3,7,.76);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);animation:fadeIn .25s var(--ease);color:var(--text);
  /* Preview-only: block text/image selection so copy-paste and drag-save
     shortcuts don't grab document contents. Canvas rendering already
     produces pixels, not selectable text, but this covers the header
     title and status text too. */
  -webkit-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-drag:none}
.document-viewer[hidden]{display:none}
.document-window{width:min(1180px,calc(100vw - 32px));height:min(900px,calc(100vh - 32px));border:1px solid rgba(255,255,255,.11);border-radius:22px;background:#0b0b10;box-shadow:0 40px 120px rgba(0,0,0,.72);overflow:hidden;display:grid;grid-template-rows:auto auto minmax(0,1fr);animation:demoIn .4s var(--ease)}
/* Bar-specific tweaks — the shared .window-bar in 04b-window-chrome
   handles the traffic-light chrome and the address bar. This just
   nudges the background to match the doc viewer's surface. */
.document-viewer-bar{background:rgba(14,14,20,.96)}
.document-toolbar{display:flex;align-items:center;justify-content:space-between;padding:9px 22px;border-bottom:1px solid var(--line);background:#0d0d14}
.document-pages,.document-zoom{display:flex;align-items:center;gap:10px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);color:#aaa9b7}
.document-zoom button{width:30px;height:30px;display:grid;place-items:center;border:1px solid var(--line);border-radius:8px;color:var(--text-white);cursor:pointer;background:transparent}
.document-zoom button:disabled{opacity:.25;cursor:not-allowed}
.document-stage{position:relative;min-height:0;overflow:auto;overscroll-behavior:contain;display:flex;align-items:flex-start;justify-content:center;padding:28px;background:radial-gradient(circle at 50% 0,rgba(167,139,250,.07),transparent 40%),#07070b}
.document-pages-list{display:flex;flex-direction:column;align-items:center;gap:20px}
.document-page-canvas,.document-stage>img{display:block;max-width:none;background:var(--text-white);box-shadow:0 18px 60px rgba(0,0,0,.55);-webkit-user-drag:none;user-drag:none;pointer-events:none}
/* Class rules above override the UA [hidden]{display:none} default, so
   the toolbar/img/list still showed when JS set hidden=true. */
.document-toolbar[hidden],.document-pages-list[hidden],.document-stage>img[hidden]{display:none}
.document-stage>img{max-width:min(100%,900px);height:auto}
.document-status{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.08em;color:var(--text-mute)}

/* Curated section header actions and archive navigation. */
.section-heading-row{display:flex;align-items:flex-end;justify-content:space-between;gap:48px;margin-bottom:clamp(36px,4.5vw,64px)}
.section-heading-row .section-head{margin-bottom:0}
.section-index-link{display:grid;grid-template-columns:auto auto auto;align-items:baseline;gap:11px;flex:0 0 auto;padding:13px 0 11px;border-bottom:1px solid rgba(167,139,250,.38);font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.12em;text-transform:uppercase;color:#a7a6b7;transition:color .25s var(--ease),border-color .25s var(--ease)}
.section-index-link strong{font-size:var(--fs-xl);font-weight:400;color:var(--text-white);letter-spacing:.03em}
.section-index-link span:last-child{color:var(--accent)}
.section-index-link:hover{color:var(--text-white);border-color:var(--accent)}
.archive-back{display:inline-flex;align-items:center;gap:10px;margin-bottom:34px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.08em;text-transform:uppercase;color:#aaa9b7;transition:color .25s var(--ease)}
.archive-back span{color:var(--accent)}
.archive-back:hover{color:var(--text-white)}
.section-heading-row-archive{display:block;margin-bottom:clamp(54px,7vw,90px)}
.section-heading-row-archive .section-head{margin-bottom:0}
.archive-page .nav{background:rgba(8,8,12,.84);-webkit-backdrop-filter:blur(20px) saturate(1.3);backdrop-filter:blur(20px) saturate(1.3);border-bottom:1px solid var(--line-soft)}
.archive-page .archive-section{padding-top:clamp(142px,14vw,206px)}
.archive-page .archive-section .section-head{max-width:960px;margin-bottom:clamp(44px,5.5vw,72px)}
.archive-page .archive-section .section-title{font-size:clamp(30px,3.4vw,48px);letter-spacing:-.032em;line-height:1.06}
.archive-page .archive-section .section-sub{max-width:680px;font-size:clamp(15px,1.5vw,18px)}

@media(max-width:960px){
  .recognition-feature{grid-template-columns:92px minmax(130px,.45fr) minmax(0,1fr);min-height:380px}
  .recognition-rail{padding:24px 16px}
  .recognition-copy{padding:40px 32px}
  .recognition-mark::before{width:150px;height:150px}
  .recognition-mark::after{width:108px;height:108px}
  .credential-documents{grid-template-columns:repeat(2,minmax(0,1fr))}
  .credential-shelf{grid-template-columns:repeat(2,minmax(0,1fr))}
  .selected-credential{min-height:340px}
  .journal-row{grid-template-columns:110px 1fr}
  .journal-row-action{grid-column:2;justify-self:start;margin-top:8px}
}

@media(max-width:640px){
  .nav-menu-btn{display:block}
  .mobile-nav{display:block;position:fixed;inset:0;z-index:201;background:rgba(8,8,12,.96);-webkit-backdrop-filter:blur(22px);backdrop-filter:blur(22px);opacity:0;visibility:hidden;transition:opacity .3s var(--ease),visibility .3s}
  .mobile-nav.is-open{opacity:1;visibility:visible}
  .mobile-nav-inner{height:100%;padding:96px 28px 32px;display:flex;flex-direction:column}
  .mobile-nav-link{font-size:clamp(30px,10vw,48px);font-weight:700;letter-spacing:-.04em;line-height:1.18;padding:8px 0;color:#f1f1f7}
  .mobile-nav-link::before{content:"0" counter(nav-item);counter-increment:nav-item;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.1em;color:var(--accent);margin-right:14px;vertical-align:middle}
  .mobile-nav-inner{counter-reset:nav-item}
  .mobile-nav-meta{margin-top:auto;padding-top:24px;border-top:1px solid var(--line);font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.08em;color:var(--text-dim)}
  .hero-kicker{text-align:center}
  /* Recognition mobile layout is fully handled by the @media(max-width:760px)
     block in 14-credentials-journal.css (Phase 7 · R1). The previous
     @640 recognition-* rules that lived here conflicted with that fix. */
  .credential-ledger{margin-top:44px}
  .selected-credentials{margin-top:44px}
  .selected-credentials-head{align-items:flex-start}
  .selected-credentials-head>a{display:none}
  .credential-shelf{display:flex;gap:10px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;padding:16px var(--gutter) 8px;margin-left:calc(var(--gutter) * -1);margin-right:calc(var(--gutter) * -1);scroll-padding-left:var(--gutter)}
  .credential-shelf::-webkit-scrollbar{height:3px}
  .selected-credential{width:min(78vw,320px);min-width:min(78vw,320px);min-height:356px;scroll-snap-align:start}
  .selected-credential-visual{min-height:226px}
  .selected-credentials-mobile-link{display:flex;align-items:center;justify-content:space-between}
  /* Credential card — mobile. Reduce padding, drop the certificate
     grid to a single column, tighten the title. */
  .credential-card{padding:26px 20px 28px}
  .credential-card::after{background-size:36px 36px}
  .credential-card-head{gap:12px}
  .credential-card-title{font-size:var(--fs-2xl);margin-top:14px}
  .credential-card-summary-text{font-size:var(--fs-sm);line-height:1.65}
  .credential-card-divider{margin:22px 0 22px}
  .credential-documents{grid-template-columns:1fr;gap:22px}
  .journal-row,.journal-row:nth-child(n){grid-template-columns:1fr}
  .journal-row-action{grid-column:1}
  .document-viewer{padding:0}
  .document-window{width:100vw;height:100dvh;border-radius:0;border:0;max-width:none;max-height:none}
  .document-viewer-bar{padding:9px 12px}
  .document-viewer-bar .window-addr{padding:5px 10px;font-size:var(--fs-2xs)}
  .document-toolbar{padding:8px 14px}
  .document-stage{padding:16px 8px}
  .archive-page .archive-section{padding-top:116px}
}


/* ── source: 15b-image-lightbox.css ─────────────────────────────────────── */
/* ── IMAGE LIGHTBOX ─────────────────────────────
   Contained macOS-style window on desktop, fullscreen on mobile.
   Backdrop sits above the drawer at z:800 > drawer z:600 so gallery
   images open on top of an open drawer.

   Structure:
     .image-lightbox          — fixed backdrop
       .image-lightbox-window — contained window (rounded, chrome)
         .window-bar          — traffic lights + title + zoom
         .lightbox-body       — nav arrows + stage
           .lightbox-nav-prev/next
           .lightbox-stage    — <img> inside

   See 09b-image-lightbox.js. */
.image-lightbox{
  position:fixed;inset:0;z-index:800;
  display:flex;align-items:center;justify-content:center;
  padding:16px;
  background:rgba(3,3,7,.76);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  animation:fadeIn .2s var(--ease);
  user-select:none;-webkit-user-select:none
}
.image-lightbox[hidden]{display:none}

.image-lightbox-window{
  width:min(1180px, calc(100vw - 32px));
  height:min(820px, calc(100vh - 32px));
  border:1px solid rgba(255,255,255,.11);
  border-radius:22px;
  background:#0b0b10;
  box-shadow:0 40px 120px rgba(0,0,0,.72);
  overflow:hidden;
  display:flex;flex-direction:column;
  animation:demoIn .4s var(--ease)
}

/* Bar-specific tweaks on the shared .window-bar chrome */
.image-lightbox-bar{background:rgba(14,14,20,.96)}

.lightbox-body{
  flex:1;min-height:0;position:relative;
  display:flex;
  background:radial-gradient(circle at 50% 0,rgba(167,139,250,.05),transparent 40%),#07070b
}

.lightbox-stage{
  flex:1;min-width:0;min-height:0;
  display:flex;align-items:center;justify-content:center;
  padding:32px 56px;
  overflow:hidden
}
.lightbox-image{
  max-width:100%;max-height:100%;
  width:auto;height:auto;
  display:block;
  transform-origin:center center;
  transition:transform .18s var(--ease);
  box-shadow:0 30px 80px rgba(0,0,0,.55);
  border-radius:6px;
  -webkit-user-drag:none;user-drag:none
}
/* JS toggles this while dragging so pan updates land instantly
   instead of chasing the transition. */
.lightbox-image.is-panning{transition:none}

/* Page counter — small mono chip inside the address bar */
.lightbox-counter{
  font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);
  color:rgba(255,255,255,.55);letter-spacing:.08em;
  padding-left:10px;border-left:1px solid rgba(255,255,255,.14);
  margin-left:6px;flex-shrink:0
}

/* Zoom stepper in window-tools */
.lightbox-zoom{
  display:flex;align-items:center;gap:8px;
  padding:4px 6px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:9px;
  font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);
  color:rgba(255,255,255,.85)
}
.lightbox-zoom-btn{
  width:24px;height:24px;
  display:grid;place-items:center;
  border:none;background:transparent;color:inherit;
  cursor:pointer;border-radius:5px;
  transition:background .2s
}
.lightbox-zoom-btn:hover{background:rgba(255,255,255,.08)}
.lightbox-zoom-btn:disabled{opacity:.4;cursor:not-allowed}

/* Prev/Next arrows — floating over the stage */
.lightbox-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:50%;
  background:rgba(20,20,28,.85);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.85);
  cursor:pointer;
  transition:background .2s,border-color .2s,color .2s;
  z-index:1
}
.lightbox-nav:hover{
  background:rgba(30,30,40,.95);
  border-color:rgba(167,139,250,.4);
  color:#fff
}
.lightbox-nav[hidden]{display:none}
.lightbox-nav-prev{left:12px}
.lightbox-nav-next{right:12px}

/* Mobile: fullscreen — no rounded corners, no padding, edge-to-edge. */
@media(max-width:640px){
  .image-lightbox{padding:0}
  .image-lightbox-window{
    width:100vw;height:100dvh;
    max-width:none;max-height:none;
    border-radius:0;border:0
  }
  .lightbox-stage{padding:16px 8px}
  .lightbox-nav{width:36px;height:36px}
  .lightbox-nav-prev{left:6px}
  .lightbox-nav-next{right:6px}
  .lightbox-counter{display:none}
  .lightbox-zoom{padding:2px 4px}
  .lightbox-zoom-btn{width:22px;height:22px}
}

/* ── source: 16-profile.css ─────────────────────────────────────── */
/* ── PROFILE COMPOSITION ─────────────────────────
   A single reading column: portrait, biography, facts and tools belong to
   one section instead of four independent card blocks. */
.profile-layout{display:grid;grid-template-columns:minmax(280px,340px) minmax(0,1fr);align-items:start;gap:clamp(52px,7vw,104px)}
.profile-portrait{position:sticky;top:100px;align-self:start}
.profile-portrait .about-photo-main{width:100%;max-width:340px;margin:0}
.profile-content{min-width:0}
.profile-content>.section-head{margin-bottom:30px;max-width:700px}
.profile-content .section-title{font-size:clamp(38px,4.3vw,58px)}
.profile-copy{max-width:780px}
.profile-lead{font-size:clamp(18px,1.55vw,22px);line-height:1.75;letter-spacing:-.008em;color:#ececf3}
.profile-paragraph{max-width:740px;margin-top:20px;font-size:var(--fs-xl);line-height:1.88;color:#9998aa}
.profile-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:50px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.profile-fact{min-width:0;padding:19px 18px 21px 0}
.profile-fact+.profile-fact{padding-left:18px;border-left:1px solid var(--line)}
.profile-fact dt{margin-bottom:9px;font-family:'JetBrains Mono',monospace;font-size:8px;line-height:1.4;letter-spacing:.13em;text-transform:uppercase;white-space:nowrap;color:var(--text-dim)}
.profile-fact dd{font-size:var(--fs-md);font-weight:600;line-height:1.55;color:#e8e8ef}

.profile-toolkit{margin-top:70px;border-top:1px solid var(--line)}
.toolkit-heading{display:flex;align-items:baseline;justify-content:space-between;gap:28px;padding:22px 0 28px}
.toolkit-heading>span{font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);line-height:1.4;letter-spacing:.16em;text-transform:uppercase;color:var(--accent)}
.toolkit-heading h3{font-size:clamp(25px,2.7vw,36px);font-weight:650;line-height:1.12;letter-spacing:-.03em;color:#f1f1f6}
.toolkit-index{border-top:1px solid var(--line)}
.toolkit-row{display:grid;grid-template-columns:46px minmax(132px,180px) minmax(0,1fr);align-items:start;gap:18px;padding:23px 0;border-bottom:1px solid var(--line);transition:background .25s var(--ease)}
.toolkit-row:hover{background:rgba(255,255,255,.014)}
.toolkit-number{padding-top:2px;font-family:'JetBrains Mono',monospace;font-size:var(--fs-2xs);letter-spacing:.12em;color:var(--accent)}
.toolkit-row h4{font-size:var(--fs-lg);font-weight:600;line-height:1.55;color:#e7e7ee}
.toolkit-items{display:flex;flex-wrap:wrap;gap:7px 0;font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);line-height:1.65;color:#8f8ea0}
.toolkit-items span{display:inline-flex;align-items:center;white-space:nowrap}
.toolkit-items span:not(:last-child)::after{content:"/";margin:0 9px;color:#3f3e51}

/* The certification shelf has one quiet index line; the cards do the rest. */
.selected-credentials-head{align-items:center;padding-bottom:15px}
.selected-credentials-index{margin-bottom:0}

/* Minimal footer: authorship and a useful return action only. */
.footer-top{font-family:'JetBrains Mono',monospace;font-size:var(--fs-xs);letter-spacing:.07em;text-transform:uppercase;color:#8f8ea0;transition:color .25s var(--ease)}
.footer-top:hover{color:var(--text-white)}

/* The archive title already owns its space inside the wrapper. */
.archive-page .archive-section .section-heading-row-archive .section-head{margin-bottom:0}

@media(max-width:1180px){
  .profile-layout{grid-template-columns:minmax(260px,310px) minmax(0,1fr);gap:clamp(42px,5vw,68px)}
  .profile-facts{grid-template-columns:repeat(2,minmax(0,1fr))}
  .profile-fact:nth-child(3),.profile-fact:nth-child(4){border-top:1px solid var(--line)}
  .profile-fact:nth-child(3){padding-left:0;border-left:0}
}

@media(max-width:960px){
  .profile-layout{display:block}
  .profile-portrait{display:none}
}

@media(max-width:760px){
  .profile-content>.section-head{margin-bottom:25px}
  .profile-lead{font-size:18px;line-height:1.72}
  .profile-paragraph{font-size:var(--fs-lg);line-height:1.84;margin-top:17px}
  .profile-facts{margin-top:38px}
  .profile-toolkit{margin-top:52px}
  .toolkit-heading{padding:19px 0 23px}
  .toolkit-row{grid-template-columns:34px minmax(0,1fr);gap:8px 12px;padding:20px 0}
  .toolkit-items{grid-column:2;font-size:var(--fs-sm)}
  .section-heading-row{align-items:flex-start;gap:22px}
}

@media(max-width:640px){
  /* Phone breakpoint: shorter photo + slightly less lift because the
     text column is shorter here (name + tagline + socials + one CTA). */
  .hero{--hero-text-lift:94px}
  .hero-photo-bleed{height:56svh;min-height:410px;max-height:520px}
  .hero-grid{padding:4px 0 28px}
  .hero-tagline{margin-bottom:20px}
  .hero-socials{margin-bottom:20px}
  .profile-section{padding-top:64px}
  .profile-content .section-title{font-size:36px}
  .profile-facts{grid-template-columns:repeat(2,minmax(0,1fr))}
  .profile-fact{padding:16px 12px 18px 0}
  .profile-fact+.profile-fact{padding-left:12px}
  .profile-fact:nth-child(3){padding-left:0}
  .profile-fact dt{font-size:var(--fs-2xs)}
  .profile-fact dd{font-size:var(--fs-base)}
  .toolkit-heading{align-items:flex-start;flex-direction:column;gap:7px}
  .toolkit-heading h3{font-size:27px}
  .section-heading-row{align-items:flex-end}
  .section-heading-row .section-head{flex:1 1 auto}
  .section-index-link{grid-template-columns:auto auto;padding:9px 0;gap:8px}
  .section-index-link span:first-child{display:none}
  .section-index-link strong{font-size:var(--fs-md)}
  .archive-back{margin-bottom:27px}
  .footer-inner{width:100%;flex-direction:row;align-items:center;justify-content:space-between}
}

@media(max-width:390px){
  .profile-facts{grid-template-columns:1fr}
  .profile-fact+.profile-fact,.profile-fact:nth-child(3),.profile-fact:nth-child(4){padding-left:0;border-left:0;border-top:1px solid var(--line)}
}

@media(prefers-reduced-motion:reduce){
  .js .reveal{opacity:1;transform:none;transition:none}
  .mobile-nav,.credential-preview img{transition:none}
}

/* ── source: 17-post.css ─────────────────────────────────────── */
/* ── Journal post page (/journal/{slug}) ───────────────────────────────
   Reuses the site's existing tokens and containers — no new colour values,
   no new spacing scale. The only additions are a narrower measure for the
   body (1320px is a layout container, not a reading width) and the type
   rules for Markdown output.

   Numbered 17 so it loads after the sections (08-events, 14-credentials-
   journal) it shares idioms with, and before 18-admin.
*/

/* Reading measure. Prose gets ~68ch regardless of the container width —
   long lines are the main readability failure on a wide monitor. */
.post-container {
  max-width: 780px;
}

.post-article {
  --post-accent: var(--accent, #a78bfa);
}

/* ── Head ─────────────────────────────────────────────────────────── */
.post-head {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs, 10px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute, #8a8aa8);
  margin-bottom: 18px;
}
.post-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: none;
}
.post-meta-cat { color: var(--post-accent); }
.post-meta-sep { color: var(--text-dim, #5a5a78); }

.post-title {
  font-size: var(--fs-display-md, clamp(24px, 2.5vw, 34px));
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--text-strong, #f5f5ff);
  margin: 0 0 14px;
}
.post-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-sm, 11px);
  letter-spacing: .06em;
  color: var(--text-mute, #8a8aa8);
  margin: 0 0 14px;
}
.post-lede {
  font-size: var(--fs-2xl, 17px);
  line-height: 1.6;
  color: var(--text, #f0f0f5);
  margin: 0;
}

/* ── Cover ────────────────────────────────────────────────────────── */
.post-cover {
  margin: 0 0 clamp(28px, 4vw, 44px);
}
.post-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg, 18px);
  border: 1px solid var(--line, rgba(255, 255, 255, .06));
}

/* ── Body: styles for md_render() output ──────────────────────────────
   These selectors match exactly the tags the renderer emits — nothing else
   can appear here, because it escapes its input before transforming. */
.post-body {
  font-size: var(--fs-xl, 15px);
  line-height: 1.75;
  color: var(--text, #f0f0f5);
}
.post-body > * + * { margin-top: 1.1em; }

.post-body .post-h2,
.post-body .post-h3,
.post-body h4 {
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-strong, #f5f5ff);
  font-weight: 600;
  /* Extra space above a heading, less below — binds it to what follows. */
  margin-top: 2em;
  margin-bottom: -0.3em;
  scroll-margin-top: 96px;   /* clears the sticky nav on an #anchor jump */
}
.post-body .post-h2 { font-size: var(--fs-3xl, 22px); }
.post-body .post-h3 { font-size: var(--fs-2xl, 17px); }
.post-body h4       { font-size: var(--fs-xl, 15px); }

.post-body a {
  color: var(--post-accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--post-accent) 40%, transparent);
  transition: border-color .2s var(--ease);
}
.post-body a:hover { border-bottom-color: var(--post-accent); }

.post-body strong { color: var(--text-strong, #f5f5ff); font-weight: 600; }
.post-body em     { font-style: italic; }

.post-body ul,
.post-body ol {
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: .5em;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li::marker { color: var(--text-dim, #5a5a78); }

.post-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: .88em;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
  color: var(--text-strong, #f5f5ff);
  overflow-wrap: anywhere;
}
.post-body pre {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius, 14px);
  border: 1px solid var(--line, rgba(255, 255, 255, .06));
  background: var(--bg-2, #0c0c12);
  overflow-x: auto;
}
/* A code block shouldn't inherit the inline pill treatment. */
.post-body pre code {
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: var(--fs-md, 13px);
  line-height: 1.6;
  overflow-wrap: normal;
}

.post-body blockquote {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--post-accent);
  color: var(--text-mute, #8a8aa8);
}
.post-body blockquote p { margin: 0; }
.post-body blockquote p + p { margin-top: .8em; }

.post-body hr {
  border: 0;
  border-top: 1px solid var(--line, rgba(255, 255, 255, .06));
  margin: 2em 0;
}

/* ── Tags + external link ─────────────────────────────────────────── */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: clamp(28px, 4vw, 44px) 0 0;
}
.post-tag {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(255, 255, 255, .06));
  background: var(--surface, rgba(255, 255, 255, .022));
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-2xs, 9px);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute, #8a8aa8);
}

.post-external {
  margin: clamp(24px, 3vw, 36px) 0 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-sm, 11px);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.post-external a {
  color: var(--post-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-external a:hover { color: var(--text-strong, #f5f5ff); }

@media (max-width: 640px) {
  .post-body .post-h2,
  .post-body .post-h3,
  .post-body h4 { margin-top: 1.6em; }
  .post-body pre { padding: 14px; }
}
