/* =========================================================================
   kennykey.com — site.css
   Framework-free design system. Tokens mirror the KeyInventions brand so a
   future Astro/WordPress theme port is mechanical. Apple/Jobs-minimal:
   monochrome, generous negative space, one restrained warm accent.
   ========================================================================= */

/* ---------- Fonts (self-hosted Red Hat Display) ---------- */
@font-face {
  font-family: 'Red Hat Display';
  src: url('../assets/fonts/RedHatDisplay-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Red Hat Display';
  src: url('../assets/fonts/RedHatDisplay-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Red Hat Display';
  src: url('../assets/fonts/RedHatDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --font: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --bg: #FFFFFF;
  --ink-bg: #0A0A0A;       /* near-black for dark sections / hero */
  --ink-bg-2: #141414;
  --surface: #F6F6F5;
  --surface-2: #ECECEA;
  --border: rgba(0,0,0,0.09);
  --border-dark: rgba(255,255,255,0.10);

  --text: #111111;
  --text-muted: #5C5C5C;
  --text-faint: #9A9A9A;
  --text-on-dark: #F4F3F1;
  --text-on-dark-muted: #A9A8A4;

  --accent: #C9A961;        /* restrained warm gold */
  --accent-ink: #8A6E2E;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 14px;
  --radius-sm: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 30px rgba(0,0,0,0.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: #0A0A0A; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--dark { background: var(--ink-bg); color: var(--text-on-dark); }
.section--surface { background: var(--surface); }
.divider { border: none; border-top: 1px solid var(--border); }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}
.section--dark .eyebrow { color: var(--accent); }

/* ---------- Type scale ---------- */
.display {
  font-weight: 600;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.025em; line-height: 1.12; }
h2.title { font-size: clamp(28px, 4.4vw, 46px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
.lede {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 62ch;
}
.section--dark .lede { color: var(--text-on-dark-muted); }
.measure { max-width: 68ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.005em;
  padding: 13px 24px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--ink-bg); color: #fff; }
.btn--primary:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); }
.btn--on-dark { background: #fff; color: #0A0A0A; }
.btn--on-dark:hover { background: var(--accent); }
.btn--ghost-dark { background: transparent; color: #fff; border-color: var(--border-dark); }
.btn--ghost-dark:hover { border-color: #fff; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Inline links ---------- */
.ilink {
  color: inherit; text-decoration: underline;
  text-decoration-color: var(--text-faint); text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}
.ilink:hover { text-decoration-color: currentColor; }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  /* align nav content with the centered .wrap container on wide screens */
  padding-inline: max(var(--gutter), calc((100% - var(--maxw)) / 2 + var(--gutter)));
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--border);
}
/* Dark nav variant for pages that open on a dark hero */
body[data-nav="dark"] .nav:not(.scrolled) { color: #fff; }
body[data-nav="dark"] .nav:not(.scrolled) .brand-name { color: #fff; }
body[data-nav="dark"] .nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.78); }
body[data-nav="dark"] .nav:not(.scrolled) .nav-links a:hover { color: #fff; }
body[data-nav="dark"] .nav:not(.scrolled) .burger { color: #fff; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-name { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
.brand-name .dot { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
/* Nav CTA = adaptive outline button. Dark outline on light/scrolled nav,
   white outline on the dark hero — readable in every state. */
.nav-links .btn--primary {
  padding: 9px 18px; font-size: 13px; font-weight: 600;
  background: transparent; color: var(--text); border: 1px solid var(--text);
}
.nav-links .btn--primary:hover { background: var(--text); color: #fff; }
body[data-nav="dark"] .nav:not(.scrolled) .nav-links .btn--primary { color: #fff; border-color: rgba(255,255,255,0.65); }
body[data-nav="dark"] .nav:not(.scrolled) .nav-links .btn--primary:hover { background: #fff; color: #0A0A0A; border-color: #fff; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 34px; height: 34px; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px; color: var(--text);
}
.burger span { width: 22px; height: 1.6px; background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile overlay */
.mobile { position: fixed; inset: 0; z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.mobile-bg { position: absolute; inset: 0; background: rgba(10,10,10,.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.mobile-panel {
  position: absolute; inset: 0 0 0 auto; width: min(100%, 420px);
  background: linear-gradient(180deg, #161616, #0A0A0A); color: #F4F3F1;
  padding: 22px var(--gutter) 40px; display: flex; flex-direction: column; gap: 30px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  border-left: 1px solid var(--border-dark); overflow-y: auto;
}
.mobile[aria-hidden="false"] .mobile-panel { transform: none; }
.mobile-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-close { background: none; border: 1px solid var(--border-dark); color: #ddd;
  width: 38px; height: 38px; border-radius: 999px; cursor: pointer; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center; transition: .2s; }
.mobile-close:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  font-size: 25px; font-weight: 500; letter-spacing: -0.02em; color: #FAFAFA;
  text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border-dark);
  transition: padding-left .2s, color .2s;
}
.mobile-nav a:hover { padding-left: 8px; color: #fff; }
body.menu-open { overflow: hidden; }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; inset: 0 auto auto 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), #e6cd92); z-index: 101;
  transition: width .05s linear; pointer-events: none; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; color: var(--text-on-dark);
  min-height: 100svh; display: flex; align-items: center;
  padding-top: 66px; overflow: hidden;
  /* Rich, not flat: pure black where the portrait sits (right) so its black
     background merges seamlessly, easing to a softer charcoal across the rest. */
  background: radial-gradient(125% 120% at 82% 46%, #000 38%, #0b0b0c 100%);
}
.hero::after { /* soft light behind the headline (left), adds depth */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 80% at 16% 32%, rgba(255,255,255,0.045), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  gap: 40px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--text-on-dark-muted);
}
.hero-kicker .pip { width: 7px; height: 7px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(201,169,97,.18); }
.hero h1 {
  font-size: clamp(38px, 6.6vw, 82px); line-height: 1.0; letter-spacing: -0.04em;
  font-weight: 600; margin-bottom: 26px;
}
.hero h1 .soft { color: var(--text-on-dark-muted); }
.hero-sub { font-size: clamp(17px, 2vw, 21px); line-height: 1.6; color: var(--text-on-dark-muted);
  max-width: 48ch; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-on-dark-muted); }
.hero-meta b { color: #fff; font-weight: 600; }

/* Silhouette column */
.hero-figure { position: relative; display: flex; justify-content: center; align-items: flex-end; height: 100%; }
.hero-silhouette { width: min(100%, 460px); height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }
/* Photographed portrait: feather all edges into the black hero so it reads as
   part of the canvas, not a pasted rectangle. */
.hero-photo {
  width: min(100%, 440px); height: auto;           /* keep the portrait's own ratio — no crop */
  /* Edges of the photo are crushed to black; a gentle mask only feathers the
     outer rectangle edge so the figure stays present (not over-dissolved). */
  -webkit-mask-image: radial-gradient(140% 135% at 50% 44%, #000 66%, transparent 100%);
  mask-image: radial-gradient(140% 135% at 50% 44%, #000 66%, transparent 100%);
}
.hero-glow { position: absolute; z-index: -1; width: 66%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,97,.10), transparent 66%); filter: blur(26px); }

/* =========================================================================
   GENERIC SECTION HEADERS
   ========================================================================= */
.shead { max-width: 60ch; margin-bottom: clamp(40px, 5vw, 64px); }
.shead .eyebrow { margin-bottom: 18px; display: block; }
.shead p { margin-top: 16px; }

/* ---------- Pillars / feature grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0,0,0,.14); }
.section--surface .card { background: #fff; }
.card .num { font-size: 12px; font-weight: 600; color: var(--accent-ink); letter-spacing: .1em; }
.card h3 { margin: 14px 0 10px; }
.card p { color: var(--text-muted); font-size: 15.5px; }
.card-icon { width: 40px; height: 40px; margin-bottom: 18px; color: var(--text); }

/* Pillar list with index numerals (Jobs-ish) — 2-col grid keeps 6 compact */
.pillars { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.pillar { padding: 28px 0; border-top: 1px solid var(--border); display: grid;
  grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
.pillar:last-child { border-bottom: 1px solid var(--border); }
.pillar .idx { font-size: 14px; font-weight: 600; color: var(--text-faint); }
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--text-muted); }

/* ---------- Callout (KeyInventions) ---------- */
.callout {
  border-radius: 20px; padding: clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, #121212, #0A0A0A); color: var(--text-on-dark);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
  border: 1px solid var(--border-dark);
}
.callout h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 16px; }
.callout p { color: var(--text-on-dark-muted); max-width: 52ch; }
.callout .ki-mark { width: 56px; height: 56px; margin-bottom: 20px; }
.callout-aside { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Selected work ---------- */
.work-card {
  display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
  background: #fff; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0,0,0,.14); }
.work-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.work-card .role { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); }
.work-card .ext { font-size: 18px; color: var(--text-faint); transition: transform .25s var(--ease), color .2s; }
.work-card:hover .ext { transform: translate(3px,-3px); color: var(--text); }
.work-card h3 { font-size: 21px; margin-top: 4px; }
.work-card p { color: var(--text-muted); font-size: 15px; }
.work-card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 6px; }
.work-card .tag { font-size: 11.5px; color: var(--text-muted); border: 1px solid var(--border); border-radius: 999px; padding: 3px 10px; }

/* ---------- Beliefs / principles ---------- */
.beliefs-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.beliefs-layout .beliefs { grid-template-columns: 1fr; }   /* stack beside the portrait */
@media (max-width: 900px) {
  .beliefs-layout { grid-template-columns: 1fr; }
  .beliefs-layout .portrait-blend { max-width: 340px; margin-inline: auto; }
}
.beliefs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 48px; }
.belief { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--border-dark); }
.belief .n { font-size: 13px; font-weight: 600; color: var(--accent); }
.belief h3 { font-size: 19px; margin-bottom: 6px; color: #fff; }
.belief p { color: var(--text-on-dark-muted); font-size: 15px; }

/* ---------- Quiet credibility strip ---------- */
.cred { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: baseline; }
.cred .item b { font-size: clamp(26px,4vw,38px); font-weight: 600; letter-spacing: -0.03em; }
.cred .item span { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat .n { font-size: clamp(30px, 5vw, 52px); font-weight: 600; letter-spacing: -0.04em; }
.stat .l { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }
.section--dark .stat .l { color: var(--text-on-dark-muted); }

/* =========================================================================
   BLOG
   ========================================================================= */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
  display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
  background: #fff; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
/* Cards that carry a featured image go edge-to-edge at the top. */
.post-card:has(.post-card-media) { padding: 0; overflow: hidden; }
.post-card-media { display: block; aspect-ratio: 16 / 10; background: var(--surface-2); overflow: hidden; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.045); }
.post-card-body { display: flex; flex-direction: column; gap: 12px; padding: 24px; flex: 1; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(0,0,0,.14); }
.post-card .cat { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); }
.post-card h3 { font-size: 19px; line-height: 1.25; }
.post-card .excerpt { font-size: 14.5px; color: var(--text-muted); flex: 1; }
.post-card .meta { font-size: 12.5px; color: var(--text-faint); }
.post-card .more { font-size: 14px; font-weight: 500; color: var(--text); display: inline-flex; gap: 6px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 13px; padding: 7px 15px; border-radius: 999px; border: 1px solid var(--border);
  color: var(--text-muted); text-decoration: none; transition: .2s; }
.chip:hover, .chip[aria-current="true"] { background: var(--ink-bg); color: #fff; border-color: var(--ink-bg); }

/* ---------- Article (single post) ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article-head { text-align: center; margin-bottom: 48px; }
.article-head .cat { color: var(--accent-ink); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.article-head h1 { font-size: clamp(30px, 4.6vw, 50px); margin: 16px 0; letter-spacing: -0.03em; }
.article-head .meta { color: var(--text-faint); font-size: 14px; }
.article-hero { margin: 0 0 44px; }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); display: block; }
.prose { font-size: 17.5px; line-height: 1.8; color: #1d1d1d; }
.prose h2 { font-size: 28px; margin: 44px 0 16px; }
.prose h3 { font-size: 22px; margin: 34px 0 12px; }
.prose p { margin-bottom: 22px; }
.prose ul, .prose ol { margin: 0 0 22px 1.3em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin: 28px 0; }
.prose blockquote { border-left: 3px solid var(--accent); padding-left: 20px; color: var(--text-muted); font-style: italic; margin: 28px 0; }
.prose code { background: var(--surface); padding: 2px 6px; border-radius: 6px; font-size: .92em; }
.prose pre { background: var(--ink-bg); color: #eee; padding: 20px; border-radius: var(--radius); overflow-x: auto; margin: 28px 0; }
.prose pre code { background: none; padding: 0; }

.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid var(--border); }
.post-nav a { text-decoration: none; color: var(--text-muted); font-size: 14px; max-width: 45%; transition: color .2s; }
.post-nav a:hover { color: var(--text); }
.post-nav .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); display: block; margin-bottom: 4px; }

/* =========================================================================
   JOB BOARD
   ========================================================================= */
.jobs-list { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-decoration: none; color: inherit; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(0,0,0,.14); }
.job-card-head { display: flex; align-items: center; gap: 10px; }
.job-card h3 { font-size: 20px; letter-spacing: -0.02em; }
.job-org { color: var(--text-muted); font-size: 15px; margin: 4px 0 12px; }
.job-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { font-size: 12px; font-weight: 500; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px; padding: 4px 11px; }
.badge--soft { color: var(--text-muted); background: transparent; }
.job-card-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; text-align: right; flex-shrink: 0; }
.job-salary { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.job-date { font-size: 12.5px; color: var(--text-faint); }
.job-go { font-size: 18px; color: var(--text-faint); transition: transform .25s var(--ease), color .2s; }
.job-card:hover .job-go { transform: translateX(3px); color: var(--text); }
.job-sample { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); background: rgba(201,169,97,.14); border-radius: 999px; padding: 3px 9px; vertical-align: middle; }
.jobs-empty { border: 1px dashed var(--border); border-radius: var(--radius); padding: 48px; text-align: center; color: var(--text-muted); }
@media (max-width: 600px) {
  .job-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .job-card-aside { flex-direction: row; align-items: center; gap: 14px; text-align: left; }
}

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 13px; color: var(--text-faint); margin-bottom: 8px; }
.crumbs a { color: var(--text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--text); }

/* =========================================================================
   ABOUT — portrait hero + blended portraits
   ========================================================================= */
.about-hero {
  position: relative; color: var(--text-on-dark);
  background: radial-gradient(120% 120% at 84% 44%, #000 36%, #0b0b0c 100%);
  padding-top: 128px; overflow: hidden;
}
.about-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.portrait-blend {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: radial-gradient(125% 122% at 50% 42%, #000 46%, transparent 96%);
  mask-image: radial-gradient(125% 122% at 50% 42%, #000 46%, transparent 96%);
}
/* A full-width quiet "band" with a blended portrait + text */
.care-band { background: radial-gradient(110% 120% at 18% 50%, #000 38%, #0b0b0c 100%); color: var(--text-on-dark); overflow: hidden; }
.care-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.pull {
  font-size: clamp(24px, 3.6vw, 40px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.18;
  margin: 8px 0; color: #fff;
}
.pull .soft { color: var(--accent); }
@media (max-width: 900px) {
  .about-hero-grid, .care-grid { grid-template-columns: 1fr; }
  .about-hero-grid .portrait-blend, .care-grid .portrait-blend { max-width: 360px; margin-inline: auto; }
}

/* =========================================================================
   TIMELINE (about)
   ========================================================================= */
.timeline { border-left: 2px solid var(--border); margin-left: 8px; }
.tl-item { position: relative; padding: 0 0 38px 32px; }
.tl-item::before { content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px;
  border-radius: 999px; background: var(--ink-bg); border: 2px solid var(--bg); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .yr { font-size: 13px; font-weight: 600; color: var(--accent-ink); letter-spacing: .04em; }
.tl-item h3 { font-size: 19px; margin: 6px 0 4px; }
.tl-item p { color: var(--text-muted); font-size: 15px; }

/* ---------- FAQ / accordion ---------- */
.faq details { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq summary { font-size: 18px; font-weight: 500; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--text-faint); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: var(--text-muted); max-width: 70ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.field input, .field textarea {
  font-family: inherit; font-size: 15px; padding: 13px 15px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: #fff; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,169,97,.18); }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-list .k { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); }
.contact-list .v { font-size: 18px; font-weight: 500; }
.contact-list a { text-decoration: none; color: var(--text); }
.contact-list a:hover { color: var(--accent-ink); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a { font-size: 13.5px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px;
  text-decoration: none; color: var(--text-muted); transition: .2s; }
.socials a:hover { border-color: var(--text); color: var(--text); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ink-bg); color: var(--text-on-dark-muted); padding: clamp(56px,7vw,88px) 0 30px; border-top: 1px solid var(--border-dark); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 52px; border-bottom: 1px solid var(--border-dark); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.footer-brand .brand-name { color: #fff; }
.footer-tag { font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #888; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text-on-dark-muted); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 14px; padding-top: 28px; font-size: 12.5px; color: #777; }
.footer-bottom a { color: #999; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* =========================================================================
   COMMAND PALETTE (⌘K) — signature interaction, built in vanilla JS
   ========================================================================= */
.cmdk-overlay { position: fixed; inset: 0; z-index: 300; display: none; }
.cmdk-overlay.open { display: block; }
.cmdk-bg { position: absolute; inset: 0; background: rgba(10,10,10,.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.cmdk { position: absolute; top: 13vh; left: 50%; transform: translateX(-50%) translateY(-6px);
  width: min(92vw, 560px); background: #fff; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 30px 90px rgba(0,0,0,.34); overflow: hidden;
  opacity: 0; transition: opacity .16s var(--ease), transform .16s var(--ease); }
.cmdk-overlay.open .cmdk { opacity: 1; transform: translateX(-50%) translateY(0); }
.cmdk-input { width: 100%; border: 0; padding: 19px 22px; font-size: 17px; font-family: inherit;
  color: var(--text); outline: none; border-bottom: 1px solid var(--border); }
.cmdk-input::placeholder { color: var(--text-faint); }
.cmdk-list { max-height: 52vh; overflow-y: auto; padding: 8px; }
.cmdk-group { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint); padding: 12px 14px 6px; }
.cmdk-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px;
  cursor: pointer; text-decoration: none; color: var(--text); font-size: 15px; }
.cmdk-item[aria-selected="true"] { background: var(--ink-bg); color: #fff; }
.cmdk-item .ico { width: 18px; text-align: center; opacity: .7; }
.cmdk-item .k { margin-left: auto; font-size: 12px; color: var(--text-faint); }
.cmdk-item[aria-selected="true"] .k { color: rgba(255,255,255,.6); }
.cmdk-empty { padding: 20px; color: var(--text-faint); font-size: 14px; text-align: center; }
.cmdk-hint { position: fixed; bottom: 18px; right: 18px; z-index: 90; cursor: pointer;
  font-size: 12px; color: var(--text-muted); background: rgba(255,255,255,.75);
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 13px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: color .2s, border-color .2s; }
.cmdk-hint:hover { color: var(--text); border-color: var(--text-faint); }
.cmdk-hint kbd { font-family: inherit; font-weight: 600; }
@media (max-width: 680px) { .cmdk-hint { display: none; } }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 92px; padding-bottom: 46px; }
  .hero-grid { grid-template-columns: 1fr; gap: 4px; }
  .hero-figure { display: flex; margin-top: 30px; }
  .hero-photo { width: min(74%, 300px); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .pillars { grid-template-columns: 1fr; column-gap: 0; }
  .pillar { grid-template-columns: 1fr; gap: 8px; }
  .pillar .idx { display: none; }
}
/* =========================================================================
   SINGLE POST — TOC, share, author box (world-class blog)
   ========================================================================= */
.prose h2, .prose h3 { scroll-margin-top: 92px; }
.single-head { max-width: 760px; margin: 0 auto 30px; text-align: center; }
.single-head .cat { display: inline-block; color: var(--accent-ink); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; text-decoration: none; }
.single-head h1 { font-size: clamp(30px, 4.6vw, 52px); letter-spacing: -0.03em; margin: 14px 0; }
.single-meta { color: var(--text-faint); font-size: 14px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; align-items: center; }
.single-meta strong { color: var(--text); font-weight: 600; }

.article-layout { max-width: 760px; margin-inline: auto; }
.article-layout.has-toc { max-width: 1060px; display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 56px; align-items: start; }
.article-main { max-width: 760px; min-width: 0; }
.toc { position: sticky; top: 92px; }
.toc-inner { border-left: 2px solid var(--border); padding-left: 16px; }
.toc-title { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; }
.toc a { font-size: 13.5px; color: var(--text-muted); text-decoration: none; line-height: 1.4; transition: color .15s; display: block; }
.toc a:hover, .toc a.active { color: var(--text); }
.toc .toc-l3 { padding-left: 14px; font-size: 13px; }
.toc-mobile { display: none; border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; margin-bottom: 30px; }
.toc-mobile summary { cursor: pointer; font-weight: 600; font-size: 14px; }
.toc-mobile ul { list-style: none; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; }
.toc-mobile a { color: var(--text-muted); text-decoration: none; font-size: 14px; }
.toc-mobile .toc-l3 { padding-left: 14px; }

.share { display: flex; align-items: center; gap: 10px; margin: 44px 0 0; padding-top: 26px; border-top: 1px solid var(--border); }
.share-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); margin-right: 4px; }
.share-btn { font-size: 13px; font-weight: 600; min-width: 34px; height: 34px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text); text-decoration: none; cursor: pointer; font-family: inherit; transition: border-color .2s, background .2s; }
.share-btn:hover { border-color: var(--text); }

.author-box { display: flex; gap: 18px; align-items: center; margin: 34px 0; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.author-photo { width: 72px; height: 90px; object-fit: cover; object-position: 50% 18%; border-radius: 10px; flex-shrink: 0; background: #0a0a0a; }
.author-name { font-weight: 600; font-size: 16px; }
.author-role { color: var(--text-muted); font-size: 14px; margin: 4px 0 8px; }
.author-links { display: flex; gap: 14px; flex-wrap: wrap; }
.author-links a { font-size: 13.5px; color: var(--accent-ink); text-decoration: none; }
.author-links a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .article-layout.has-toc { grid-template-columns: 1fr; max-width: 760px; }
  .toc { display: none; }
  .toc-mobile { display: block; }
}
/* ---------- Featured lead post (blog archive page 1) ---------- */
.post-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; text-decoration: none; color: inherit; margin-bottom: 26px; transition: box-shadow .3s var(--ease), border-color .3s, transform .3s var(--ease); }
.post-featured:hover { box-shadow: var(--shadow); border-color: rgba(0,0,0,.14); transform: translateY(-2px); }
.post-featured .media { min-height: 320px; background: var(--surface-2); overflow: hidden; }
.post-featured .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-featured:hover .media img { transform: scale(1.04); }
.post-featured .body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; gap: 13px; }
.post-featured .cat { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); }
.post-featured h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.025em; line-height: 1.15; }
.post-featured .excerpt { color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.post-featured .more { font-size: 14.5px; font-weight: 500; color: var(--text); display: inline-flex; gap: 6px; }
@media (max-width: 760px) { .post-featured { grid-template-columns: 1fr; } .post-featured .media { min-height: 220px; } }

/* ---------- Pagination ---------- */
.pagination { margin-top: 8px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; list-style: none; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 13px; border: 1px solid var(--border); border-radius: 999px; text-decoration: none; color: var(--text-muted); font-size: 14px; transition: border-color .2s, color .2s, background .2s; }
.page-numbers:hover { border-color: var(--text); color: var(--text); }
.page-numbers.current { background: var(--ink-bg); color: #fff; border-color: var(--ink-bg); }
.pagination .screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* =========================================================================
   BRAND LOGO IMAGE (replaces the geometric K)
   ========================================================================= */
.brand-logo { height: 30px; width: auto; display: block; filter: brightness(0); transition: filter .3s; }
/* keep white on dark hero nav, footer, mobile panel; darken elsewhere (scrolled / light pages) */
body[data-nav="dark"] .nav:not(.scrolled) .brand-logo,
.footer .brand-logo,
.mobile .brand-logo { filter: none; }

/* =========================================================================
   FOOTER — professional, expanded
   ========================================================================= */
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 28px 48px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid var(--border-dark); }
.footer-cta h2 { font-size: clamp(26px, 3.4vw, 40px); color: #fff; letter-spacing: -0.03em; line-height: 1.1; max-width: 18ch; }
.footer-cta p { color: var(--text-on-dark-muted); margin-top: 12px; max-width: 46ch; font-size: 15px; }
.footer-cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-email { color: #fff; font-size: 17px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px; transition: border-color .2s; }
.footer-email:hover { border-color: #fff; }

.footer-grid--5 { grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.footer-socials a { font-size: 12.5px; color: var(--text-on-dark-muted); text-decoration: none; border: 1px solid var(--border-dark); border-radius: 999px; padding: 5px 12px; transition: border-color .2s, color .2s; }
.footer-socials a:hover { color: #fff; border-color: rgba(255,255,255,.35); }

.footer-bottom-left { display: flex; flex-direction: column; gap: 3px; }
.footer-built { font-size: 12px; color: #666; }
.footer-built a { color: #888; text-decoration: none; }
.footer-built a:hover { color: #fff; }
.footer-bottom-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom-right a { font-size: 12.5px; color: #888; text-decoration: none; }
.footer-bottom-right a:hover { color: #fff; }
.footer-top { font-weight: 600; }

@media (max-width: 1024px) {
  .footer-grid--5 { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid--5 .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 680px) {
  .footer-grid--5 { grid-template-columns: 1fr 1fr; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- Footer spacing fix: breathing room below the CTA divider ---------- */
.footer-grid--5 { padding-top: 54px; }
.footer-bottom { margin-top: 4px; }
@media (max-width: 680px) {
  .footer-cta { padding-bottom: 36px; }
  .footer-grid--5 { padding-top: 40px; }
}

/* ---------- Single job page (richer layout) ---------- */
.job-single { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 48px; align-items: start; margin-top: 10px; }
.job-single-main { min-width: 0; }
.job-single-aside { position: sticky; top: 90px; }
.job-info-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; background: #fff; }
.job-info-title { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); margin-bottom: 14px; }
.job-info-card dl { display: grid; grid-template-columns: auto 1fr; gap: 9px 14px; margin-bottom: 18px; }
.job-info-card dt { font-size: 13px; color: var(--text-faint); }
.job-info-card dd { font-size: 14px; font-weight: 500; text-align: right; }
.job-highlights { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; }
.job-highlights li { position: relative; padding-left: 26px; color: var(--text-muted); font-size: 16px; line-height: 1.6; }
.job-highlights li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-ink); font-weight: 700; }
@media (max-width: 880px) { .job-single { grid-template-columns: 1fr; } .job-single-aside { position: static; } }

/* =========================================================================
   COLLABORATE WIZARD
   ========================================================================= */
.wiz-head { text-align: center; margin-bottom: 34px; max-width: 60ch; margin-inline: auto; }
.wiz-paths { display: grid; gap: 16px; }
.wiz-path { display: flex; align-items: center; gap: 18px; text-align: left; width: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; cursor: pointer; font-family: inherit; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.wiz-path:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(0,0,0,.14); }
.wiz-path-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--ink-bg); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; }
.wiz-path-icon svg { display: block; }
.wiz-path-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.wiz-path-title { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; }
.wiz-path-blurb { color: var(--text-muted); font-size: 14.5px; line-height: 1.5; }
.wiz-path-go { flex-shrink: 0; color: var(--text-faint); font-size: 20px; transition: transform .25s var(--ease), color .2s; }
.wiz-path:hover .wiz-path-go { transform: translateX(4px); color: var(--text); }

.wiz-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.wiz-back { background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 14px; color: var(--text-muted); padding: 4px 0; }
.wiz-back:hover { color: var(--text); }
.wiz-progress { display: flex; gap: 6px; }
.wiz-dot { width: 26px; height: 4px; border-radius: 2px; background: var(--surface-2); transition: background .3s; }
.wiz-dot.on { background: var(--accent); }
.wiz-kind { font-size: 12px; color: var(--text-faint); font-weight: 600; letter-spacing: .04em; }
.wiz-step-title { font-size: clamp(22px, 3vw, 30px); margin-bottom: 24px; }
.wiz-fields { display: flex; flex-direction: column; gap: 20px; }
.wiz .field { display: flex; flex-direction: column; gap: 8px; }
.wiz .field-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.wiz input, .wiz textarea { font-family: inherit; font-size: 16px; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.wiz input:focus, .wiz textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,169,97,.18); }
.wiz-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.wiz-opt { font-family: inherit; font-size: 14px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text-muted); cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.wiz-opt:hover { border-color: var(--text-faint); color: var(--text); }
.wiz-opt.on { background: var(--ink-bg); color: #fff; border-color: var(--ink-bg); }
.wiz-actions { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wiz-err { color: #9E1F1F; font-size: 13.5px; }
.wiz-sending { text-align: center; padding: 64px 0; color: var(--text-muted); font-size: 16px; }
.wiz-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: kk-spin .7s linear infinite; vertical-align: middle; margin-right: 8px; }
@keyframes kk-spin { to { transform: rotate(360deg); } }
.wiz-done { text-align: center; padding: 48px 0; max-width: 52ch; margin-inline: auto; }
.wiz-check { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 999px; background: rgba(201,169,97,.16); color: var(--accent-ink); font-size: 26px; font-weight: 700; margin-bottom: 18px; }
@media (max-width: 600px) { .wiz-path { grid-template-columns: 42px 1fr; } .wiz-path-go { display: none; } }
