/* resume.123drg.com — the CSP is default-src 'self', so all styling lives here,
   never in a <style> tag, and every graphic below is CSS or inline SVG rather
   than an image file. Nothing on this page is fetched from anywhere.

   ============================ THE VISUAL LANGUAGE ==========================

   Drawn from a six-image moodboard: darkened operations centres with glowing
   wall maps, a tactical HUD ring over a data grid, a SIPRNet backbone topology
   diagram, and two desert field photographs. The shared vocabulary across all
   six, and what each part became here:

     dark slate room        →  --bg / --surface, the ground everything sits on
     glowing cyan map+HUD   →  --cyan, the single primary accent
     amber alert readouts   →  --amber, reserved for numbers and metrics
     desert tan / khaki     →  --sand, the warm neutral that stops it going cold
     camo olive             →  --olive, used only for "taught in French" marks
     graticule world map    →  the chooser backdrop (SVG meridians + parallels)
     topology trunk lines   →  the rail down the experience timeline
     router node glyphs     →  the timeline nodes and the lens icons
     HUD corner brackets    →  card framing on hover and on the active lens

   The restraint that keeps this a résumé rather than a costume: exactly ONE
   accent does the pointing (cyan), amber is only ever a number, and body text
   stays high-contrast neutral. A hiring manager should read it as composed, not
   as a video-game menu.

   Two hard requirements this theme must not break, both handled at the bottom:
   it must PRINT as a clean black-on-white document, and it must respect
   prefers-reduced-motion. A dark theme that prints as a black rectangle is a
   résumé you cannot hand to anybody. */

:root {
  /* ground */
  --bg: #050b16;
  --bg-2: #08121f;
  --surface: #0b1826;
  --surface-2: #102132;
  --edge: #1a3048;
  --edge-strong: #27455f;

  /* text */
  --text: #dbe7f4;
  --text-2: #a2b6cc;
  --muted: #6b8299;

  /* accents */
  --cyan: #4aa3ff;
  --cyan-bright: #7ec2ff;
  --cyan-dim: #1c4a70;
  --cyan-glow: rgba(74, 163, 255, 0.14);
  --amber: #ff9426;
  --amber-dim: #8a5c22;
  --sand: #cbb08a;
  --olive: #8fa860;
  --alert: #ff4d4d;

  --focus: var(--cyan-bright);

  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Design system: sharp corners, enforced not remembered. See documentation/theme.md */
* { border-radius: 0 !important; }

/* The desert half of the moodboard, for anyone whose OS asks for light. Same
   hues, inverted ground: sand and bleached sky instead of a dark room. */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  /* The faint data-grid the HUD images all sit on. Two hairline gradients, no
     image, invisible until you look for it — which is the point of a texture. */
  background-image:
    repeating-linear-gradient(0deg, transparent 0 39px, var(--cyan-glow) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, var(--cyan-glow) 39px 40px);
  background-attachment: fixed;
}

h1, h2, h3 { font-family: var(--sans); line-height: 1.2; letter-spacing: -0.01em; }
button, input { font: inherit; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -999px;
  background: var(--cyan); color: #04222a;
  padding: 0.5rem 1rem; z-index: 30; font-weight: 600;
}
.skip:focus { left: 0; top: 0; }

.error { padding: 2rem; color: var(--alert); font-family: var(--mono); }

/* Data readouts — years, metrics, codes, counts — are monospace, because in
   every one of the source images the numbers are on a console and the prose is
   not. It is the cheapest way to make an interface read as instrumented. */
.role-years, .card-when, .metric-value, .metric-label, .skill-count,
.cred-year, .ev-when, .detail-kicker, .chooser-kicker, .lens-tab,
.chip, .tag-fr, .lang-btn, .ghost-btn, .brand-sub {
  font-family: var(--mono);
}

/* =============================================== the chooser (first screen) */

/* HEIGHT IS SET BY THE CONTENT, not by the viewport.
   This was `min-height: 100dvh` with `place-items: center`, which centred a
   ~30rem block inside a full screen and left a band of dead space above the
   kicker and below the buttons on any normal display. Filling the viewport was
   meant to guarantee that the résumé started off-screen so "scroll down" had
   something to mean — but the instruction line says that in words, and a screen
   of emptiness is a worse trade than a visitor seeing the first role peek above
   the fold. Seeing content begin is a better invitation to scroll than a gap. */
.chooser {
  position: relative;
  display: grid;
  justify-items: center;          /* horizontal only — no vertical centring */
  padding: clamp(1.4rem, 3.5vh, 2.4rem) 1.25rem clamp(1.4rem, 3.5vh, 2.2rem);
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(79, 209, 232, 0.09) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

/* The glowing wall map from images 01 and 03, abstracted to a graticule. Drawn
   by script.js as inline SVG (createElementNS), so there is no image file and
   nothing to fetch. */
.graticule {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
.graticule .grat-line { stroke: var(--cyan); stroke-width: 0.5; fill: none; opacity: 0.22; }
.graticule .grat-glow { stroke: var(--cyan); stroke-width: 2.5; fill: none; opacity: 0.05; }

.chooser-inner { position: relative; width: min(66rem, 100%); text-align: center; }

.chooser-kicker {
  text-transform: uppercase; letter-spacing: 0.34em;
  font-size: 0.68rem; color: var(--cyan);
  margin: 0 0 0.7rem;   /* no top margin — the padding above is the only gap */
}
/* The bracketed label from a HUD readout. */
.chooser-kicker::before { content: "[ "; opacity: 0.55; }
.chooser-kicker::after  { content: " ]"; opacity: 0.55; }

.chooser-name {
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  margin: 0; letter-spacing: -0.035em; font-weight: 700;
  text-shadow: 0 0 42px rgba(79, 209, 232, 0.28);
}

.chooser-headline {
  color: var(--text-2); margin: 0.6rem auto 1.6rem;
  max-width: 46rem; font-size: 1rem;
}

/* The two-line instruction. The first line is the important one — the page is
   fully readable by scrolling and the buttons are optional — so it gets the
   emphasis, and the filter prompt is deliberately quieter and second. */
.chooser-scroll {
  margin: 0 0 0.15rem;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--text);
}
.chooser-ask {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
}

/* The animated scroll cue is gone with the full-height hero: it lived pinned to
   the bottom of a screen-tall box, and keeping it would mean reserving the very
   band of empty space this change removes. The résumé now begins visibly just
   below the hero, which is a stronger invitation to scroll than any marker. */
.scroll-cue { display: none; }

/* The top bar follows the hero in the document, so it scrolls up with the page
   and only pins once it reaches the top. No scroll listener, no JS. */

.lens-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.8rem; text-align: left;
}

/* Cards get HUD corner brackets rather than a full border — the framing device
   in image 02, and it keeps the panel feeling like an overlay on the map
   instead of a box sitting on top of it. */
.lens-card {
  position: relative;
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.2rem;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 2px solid var(--edge);
  color: inherit; text-align: left; cursor: pointer;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 260ms ease, box-shadow 260ms ease;
}
.lens-card::before, .lens-card::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border: 2px solid var(--cyan); opacity: 0; transition: opacity 220ms ease;
}
.lens-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.lens-card::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.lens-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-dim);
  box-shadow: 0 14px 36px -18px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--cyan-glow);
}
.lens-card:hover::before, .lens-card:hover::after { opacity: 1; }

.lens-icon { color: var(--cyan); display: block; }
.lens-icon svg { display: block; width: 26px; height: 26px; }
.lens-label { font-weight: 650; font-size: 1.04rem; }
.lens-pitch { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.chooser-skip {
  margin-top: 1.1rem; background: none; border: 0;
  color: var(--muted); cursor: pointer;
  font-family: var(--mono); font-size: 0.84rem;
  border-bottom: 1px dashed var(--edge-strong); padding-bottom: 2px;
}
.chooser-skip:hover { color: var(--cyan); border-bottom-color: var(--cyan-dim); }

.chooser-lang { margin-top: 1.1rem; display: flex; gap: 0.5rem; justify-content: center; }
.chooser-lang .lang-btn {
  border: 2px solid var(--edge-strong); padding: 0.35rem 1.1rem;
  background: none;
}

/* ==================================================================== chrome */

.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--edge);
}
/* The cyan hairline under the bar — the glow line along the bottom of a wall
   display in image 01. */
.topbar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim) 25%, var(--cyan) 50%, var(--cyan-dim) 75%, transparent);
  opacity: 0.5;
}

.brand {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
  background: none; border: 0; padding: 0; cursor: pointer; color: inherit; text-align: left;
}
.brand-name { font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; }
.brand-sub {
  font-size: 0.7rem; color: var(--muted); max-width: 34rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.topbar-controls { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.lens-tabs { display: flex; gap: 0.2rem; flex-wrap: wrap; }

.lens-tab {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid transparent; background: none;
  color: var(--muted); cursor: pointer; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.lens-tab svg { width: 14px; height: 14px; }
.lens-tab:hover { color: var(--text); background: var(--surface); }
.lens-tab[aria-pressed="true"] {
  color: var(--cyan); border-color: var(--cyan-dim);
  background: var(--cyan-glow); font-weight: 600;
}

.lang-switch { display: flex; border: 2px solid var(--edge-strong); overflow: hidden; }
.lang-btn {
  padding: 0.28rem 0.65rem; background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: 0.76rem; letter-spacing: 0.06em;
  transition: background 180ms ease, color 180ms ease;
}
.lang-btn[aria-pressed="true"] { background: var(--cyan); color: #04222a; font-weight: 700; }

.ghost-btn {
  padding: 0.28rem 0.75rem; border: 2px solid var(--edge-strong);
  background: none; color: var(--text-2); cursor: pointer;
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.ghost-btn:hover { border-color: var(--cyan-dim); color: var(--cyan); }

/* =================================================================== content */

main { width: min(66rem, 100%); margin: 0 auto; padding: 2.5rem clamp(1rem, 4vw, 3rem) 4rem; }

.intro-summary { font-size: 1.1rem; line-height: 1.75; margin: 0 0 1.1rem; color: var(--text); }
.intro-pitch {
  position: relative; margin: 0 0 1rem; padding: 0.95rem 1.15rem;
  border: 2px solid var(--cyan-dim);
  background: var(--cyan-glow); color: var(--cyan-bright);
}
.intro-pitch::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--cyan);
}

.block { margin-top: 3.2rem; }
.block > h2 {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--cyan); margin: 0 0 1.3rem; padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--edge);
  font-family: var(--mono); font-weight: 600;
  display: flex; align-items: center; gap: 0.6rem;
}
/* Section headings get a node dot, echoing the router glyphs in the SIPRNet map. */
.block > h2::before {
  content: ""; width: 6px; height: 6px; flex: none;
  background: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-glow);
  transform: rotate(45deg);
}

/* --- experience: the topology rail ------------------------------------- */

.timeline { position: relative; display: flex; flex-direction: column; gap: 1.4rem; padding-left: 1.4rem; }
/* The trunk line from the backbone diagram, running the length of the career. */
.timeline::before {
  content: ""; position: absolute; left: 3px; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--cyan-dim) 40%, var(--edge) 100%);
  opacity: 0.65;
}

.role {
  position: relative;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 2px solid var(--edge);
  transition: border-color 240ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.role:hover { border-color: var(--cyan-dim); transform: translateX(2px); }
/* Each role is a node on the trunk. */
.role::before {
  content: ""; position: absolute; left: -1.4rem; top: 1.5rem;
  width: 9px; height: 9px; transform: translateX(-1px) rotate(45deg);
  background: var(--bg); border: 1.5px solid var(--cyan);
  box-shadow: 0 0 0 3px var(--bg), 0 0 12px var(--cyan-glow);
}

.role-years {
  font-size: 0.72rem; letter-spacing: 0.12em; color: var(--cyan);
  text-transform: uppercase;
}
.role-title { margin: 0.3rem 0 0.2rem; font-size: 1.2rem; }
.role-org { margin: 0; color: var(--muted); font-size: 0.88rem; }
.role-summary { margin: 0.85rem 0 1rem; color: var(--text-2); }

.highlights { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.05rem; }
.highlights li {
  display: flex; flex-direction: column; gap: 0.45rem;
  padding-left: 0.9rem; border-left: 1px solid var(--edge);
}

/* Numbers are the amber readouts of the moodboard's consoles. Amber is used for
   nothing else on the page, so a number never has to compete for attention. */
.metric { display: flex; align-items: baseline; gap: 0.55rem; }
.metric-value {
  font-size: 1.45rem; font-weight: 700; color: var(--amber);
  font-variant-numeric: tabular-nums; line-height: 1;
  text-shadow: 0 0 22px rgba(235, 161, 76, 0.28);
}
.metric-label {
  font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em;
}

.hl-text { display: block; color: var(--text-2); }

.chips { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.chip {
  padding: 0.15rem 0.55rem; border: 2px solid var(--edge-strong);
  background: none; color: var(--muted); font-size: 0.68rem;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.chip:hover { color: var(--cyan); border-color: var(--cyan-dim); background: var(--cyan-glow); }

/* --- cards --------------------------------------------------------------- */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 0.8rem; }

.card {
  position: relative; display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.15rem;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 2px solid var(--edge);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease;
}
.card::after {
  content: ""; position: absolute; bottom: -1px; right: -1px;
  width: 10px; height: 10px; border: 2px solid var(--cyan);
  border-left: 0; border-top: 0; opacity: 0; transition: opacity 200ms ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--cyan-dim); }
.card:hover::after { opacity: 1; }

.card-when {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.card-title { margin: 0; font-size: 1.02rem; }
.card-org { margin: 0; color: var(--muted); font-size: 0.84rem; }
.card-blurb { margin: 0.25rem 0 0; font-size: 0.92rem; color: var(--text-2); }
.card-actions { margin-top: auto; padding-top: 0.7rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }

/* Olive is the camouflage green of the source images, and it appears exactly
   here: the mark that a course was delivered in French. One colour, one job. */
.tag-fr {
  align-self: flex-start; padding: 0.12rem 0.5rem;
  border: 2px solid var(--olive); color: var(--olive);
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em;
}

.link-btn {
  display: inline-block; padding: 0.28rem 0.7rem;
  border: 2px solid var(--edge-strong); background: none;
  color: var(--text-2); font-family: var(--mono); font-size: 0.74rem;
  cursor: pointer; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.07em;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.link-btn:hover { border-color: var(--cyan-dim); color: var(--cyan); background: var(--cyan-glow); }
.link-btn.out::after { content: " ↗"; }

/* --- skills -------------------------------------------------------------- */

.skill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 0.5rem; }

.skill-card {
  position: relative; display: flex; flex-direction: column;
  align-items: flex-start; gap: 0.25rem;
  padding: 0.8rem 0.95rem;
  background: var(--surface); border: 2px solid var(--edge);
  cursor: pointer; color: inherit; text-align: left;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms ease, background 200ms ease;
}
.skill-card:hover {
  transform: translateY(-2px); border-color: var(--cyan-dim); background: var(--surface-2);
}
.skill-name { font-weight: 600; font-size: 0.94rem; }
.skill-count {
  font-size: 0.68rem; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* --- detail views -------------------------------------------------------- */

.detail-head { margin-bottom: 1.6rem; }
.back-btn {
  background: none; border: 0; color: var(--muted); cursor: pointer;
  padding: 0 0 0.8rem; font-family: var(--mono); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.back-btn:hover { color: var(--cyan); }
.detail-kicker {
  margin: 0; font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--cyan);
}
.detail-title { margin: 0.35rem 0 0; font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -0.025em; }
.detail-body { font-size: 1.04rem; line-height: 1.8; max-width: 48rem; color: var(--text-2); }

.evidence { display: flex; flex-direction: column; gap: 0.7rem; }
.ev {
  position: relative; padding: 1rem 1.15rem 1rem 1.3rem;
  background: var(--surface); border: 2px solid var(--edge);
}
.ev::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--cyan-dim);
}
.ev-when { font-size: 0.68rem; letter-spacing: 0.12em; color: var(--cyan); text-transform: uppercase; }
.ev-label { margin: 0.35rem 0 0.35rem; color: var(--text); }
.ev-context { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* --- credentials --------------------------------------------------------- */

.two-up { display: grid; grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); gap: 0 2.5rem; }
.credential { display: grid; grid-template-columns: 5.5rem 1fr; gap: 0.75rem; margin-bottom: 1.1rem; }
.cred-year { font-size: 0.72rem; color: var(--cyan); padding-top: 0.2rem; letter-spacing: 0.06em; }
.cred-title { margin: 0; font-weight: 600; }
.cred-org { margin: 0; color: var(--muted); font-size: 0.86rem; }
.cred-note { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.83rem; }

.langs { display: grid; grid-template-columns: 8rem 1fr; gap: 0.3rem 0.75rem; margin: 0; }
.langs dt { font-weight: 600; }
.langs dd { margin: 0; color: var(--muted); }

/* ==================================================================== footer */

.footer {
  border-top: 1px solid var(--edge);
  padding: 2.5rem clamp(1rem, 4vw, 3rem) 4rem;
  width: min(66rem, 100%); margin: 0 auto;
}
.contact { display: flex; align-items: baseline; gap: 1.1rem; flex-wrap: wrap; }
.contact h2 {
  font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.24em; color: var(--cyan); margin: 0;
}
.contact-link { color: var(--text); text-underline-offset: 3px; }
.contact-link:hover { color: var(--cyan); }
.colophon { margin: 1.3rem 0 0; color: var(--muted); font-size: 0.83rem; max-width: 46rem; }

/* ======================================================= view transitions */

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root), ::view-transition-new(root) { animation-duration: 280ms; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  /* The background grid is texture, not motion, so it stays — but the fixed
     attachment can cause repaint jank, so drop that. */
  body { background-attachment: scroll; }
}

/* ============================================================ print / PDF ===
   Non-negotiable: this must produce a clean black-on-white document. A dark
   theme that prints as a black rectangle is a résumé nobody can hand over, and
   this is the failure mode of most "designed" personal sites. Everything above
   is undone here — the grid texture, the glows, the accent fills — leaving the
   structure and one restrained ink colour. script.js additionally forces the
   lens back to "all" before the dialog opens, because paper has no filter. */

@media print {
  @page { margin: 14mm; }

  :root {
    --bg: #fff; --bg-2: #fff; --surface: #fff; --surface-2: #fff;
    --edge: #c8c8c8; --edge-strong: #999;
    --text: #000; --text-2: #1a1a1a; --muted: #4a4a4a;
    --cyan: #14505e; --cyan-bright: #14505e; --cyan-dim: #7fa3ab; --cyan-glow: transparent;
    --amber: #7a4a12; --sand: #6b5a3e; --olive: #4a5a28;
  }

  body {
    background: #fff !important;
    background-image: none !important;   /* kill the grid texture */
    font-size: 10.5pt;
  }

  .chooser, .topbar, .graticule, .footer .colophon,
  .chip, .link-btn, .back-btn, .skill-grid, .card-actions { display: none !important; }

  main, .footer { width: auto; max-width: none; padding: 0; margin: 0; }

  main::before {
    content: "Duke R. Gee";
    display: block; font-family: var(--sans);
    font-size: 22pt; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.1rem;
  }

  .block { margin-top: 1.1rem; break-inside: avoid; }
  .block > h2 { font-size: 8.5pt; margin-bottom: 0.5rem; letter-spacing: 0.16em; }
  .block > h2::before { display: none; }

  .timeline { padding-left: 0; gap: 0.85rem; }
  .timeline::before { display: none; }
  .role::before, .card::after, .lens-card::before, .lens-card::after,
  .topbar::after, .intro-pitch::before, .ev::before { display: none !important; }

  .role, .card, .ev {
    border: 0; border-left: 2px solid var(--edge-strong); border-radius: 0;
    padding: 0 0 0 0.6rem; margin-bottom: 0.85rem; break-inside: avoid;
    background: #fff !important; box-shadow: none !important; transform: none !important;
  }
  .cards { display: block; }
  .highlights li { border-left: 0; padding-left: 0; gap: 0.15rem; }
  .highlights { gap: 0.5rem; }
  .metric-value { font-size: 11pt; text-shadow: none; }
  .intro-pitch { display: none; }
  .chooser-name, .detail-title { text-shadow: none; }

  .contact-link::after { content: " (" attr(href) ")"; font-size: 8.5pt; color: #444; }
  .contact-link[href^="mailto:"]::after { content: ""; }
}
