/* ============================================================
   OKUNADE ANIFALAJE — PRODUCT PORTFOLIO
   Editorial dark theme with serif display + grid asymmetry
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:           #0E0E10;
  --bg-soft:      #16161A;
  --bg-card:      #1A1A1F;
  --bg-elev:      #20202A;
  --line:         #2A2A30;
  --line-soft:    #1F1F25;
  --text:         #EFEAE0;
  --text-soft:    #A8A29E;
  --text-mute:    #6E6A65;
  --accent:       #C9A961;        /* warm gold */
  --accent-warm:  #E0BC72;
  --accent-rust:  #B85C38;
  --accent-glow:  rgba(201, 169, 97, 0.10);
  --green:        #6FB58A;
  --red:          #C9756B;

  --serif:  'Fraunces', 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:   'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --max:    1280px;
  --pad:    clamp(20px, 4vw, 60px);
  --radius: 4px;

  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: var(--bg); }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv02', 'cv11';
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; cursor: pointer; }

em { font-style: italic; color: var(--accent-warm); font-family: var(--serif); }
strong { font-weight: 600; color: var(--text); }

/* Background grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--pad);
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  border-radius: 2px;
}
.brand-name { color: var(--text); }

.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-nav a { color: var(--text-soft); position: relative; padding: 4px 0; }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-cta:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

@media (max-width: 800px) {
  .site-nav { display: none; }
}
@media (max-width: 560px) {
  .brand-name { display: none; }
  .nav-cta {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .site-header { padding-top: 14px; padding-bottom: 14px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(80px, 14vh, 140px) var(--pad) clamp(40px, 8vh, 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(50px, 9vh, 110px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-index { display: flex; align-items: center; gap: 12px; }
.hero-index .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px transparent; } }

.hero-eyebrow { display: flex; gap: 10px; flex-wrap: wrap; }
.eyebrow-sep { color: var(--text-mute); }

.hero-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  margin-bottom: clamp(40px, 6vh, 80px);
}
.name-line { display: block; }
.name-line.line-2 {
  padding-left: clamp(20px, 7vw, 100px);
  position: relative;
}
.period {
  color: var(--accent);
  font-style: italic;
}

.hero-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.35;
  max-width: 720px;
  color: var(--text);
  margin-bottom: clamp(50px, 8vh, 100px);
  letter-spacing: -0.01em;
}
.hero-lede em {
  font-style: italic;
  color: var(--accent);
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-loc {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.loc-pin {
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
  transform: rotate(45deg);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-scroll svg { color: var(--accent); }
.hero-scroll:hover { color: var(--accent); }

.side-rail {
  position: absolute;
  top: 50%; left: clamp(10px, 2vw, 24px);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
  z-index: 3;
}
@media (max-width: 1100px) { .side-rail { display: none; } }

/* ---------- Section frame ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 160px) var(--pad);
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(50px, 8vh, 100px);
}
.section-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.section-rule {
  height: 1px;
  background: linear-gradient(to right, var(--line) 0%, transparent 100%);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-body p {
  margin-bottom: 22px;
  font-size: 17px;
  color: var(--text);
}
.about-body .lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 32px;
}
.opt-list {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 32px;
  margin-bottom: 14px;
}
.opt {
  list-style: none;
  border-top: 1px solid var(--line);
}
.opt li {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.opt li span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-self: start;
  position: sticky;
  top: 100px;
}
.stat {
  background: var(--bg-card);
  padding: 22px 24px;
  display: grid;
  gap: 4px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num span {
  font-size: 14px;
  font-family: var(--mono);
  color: var(--text-soft);
  font-weight: 400;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.stat.soft .stat-cap {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.stat.soft .stat-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .about-stats { position: static; }
}

/* ---------- EXPERIENCE / TIMELINE ---------- */
.exp-intro {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 70px;
  font-weight: 400;
}

.timeline {
  position: relative;
  display: grid;
  gap: 60px;
  padding: 30px 0;
}
.t-axis {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--line) 8%, var(--line) 92%, transparent 100%);
  transform: translateX(-0.5px);
}
.t-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 50px;
  position: relative;
}
.t-row::before {
  content: '';
  position: absolute;
  left: 50%; top: 30px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line);
  z-index: 2;
}
.t-row[data-side="left"] { grid-template-columns: 1fr auto 1fr; }
.t-row[data-side="left"] .t-meta { grid-column: 3; text-align: left; }
.t-row[data-side="left"] .t-card { grid-column: 1; }
.t-row[data-side="right"] .t-meta { grid-column: 1; text-align: right; }
.t-row[data-side="right"] .t-card { grid-column: 3; }

.t-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 28px;
}
.t-row[data-side="right"] .t-meta { align-items: flex-end; }
.t-row[data-side="left"] .t-meta { align-items: flex-start; }
.t-date { color: var(--accent); }
.t-loc { color: var(--text-soft); }

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.t-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.t-company {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.t-co-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.t-co-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.t-role {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.t-card p { font-size: 15px; color: var(--text-soft); margin-bottom: 14px; line-height: 1.55; }
.t-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.t-pills li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

@media (max-width: 800px) {
  .t-axis { left: 16px; }
  .t-row, .t-row[data-side="left"], .t-row[data-side="right"] {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .t-row::before { left: 16px; top: 32px; }
  .t-row[data-side="left"] .t-meta,
  .t-row[data-side="right"] .t-meta {
    grid-column: 2;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 14px;
    padding-top: 0;
    margin-bottom: 8px;
  }
  .t-row[data-side="left"] .t-card,
  .t-row[data-side="right"] .t-card {
    grid-column: 2;
  }
}

/* ---------- WORK / CASE STUDIES ---------- */
.work-intro {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 60px;
}

.work-index {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(80px, 14vh, 160px);
}
.work-index li { border-bottom: 1px solid var(--line); }
.work-index a {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  transition: padding 0.3s var(--ease), color 0.3s var(--ease);
}
.work-index a:hover { padding-left: 16px; padding-right: 0; }
.ix-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.ix-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.work-index a:hover .ix-title { color: var(--accent); }
.ix-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

@media (max-width: 700px) {
  .work-index a {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 22px 0;
  }
  .ix-tag { grid-column: 2; }
}

/* ---------- CASE STUDY ---------- */
.case {
  padding: clamp(60px, 10vh, 120px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 80px;
}
.case-head { margin-bottom: clamp(40px, 6vh, 70px); }
.case-num-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.case-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.case-tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.case-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
}
.case-tag.soft { color: var(--text-soft); background: transparent; }
.case-tag.note {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

.case-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 1100px;
}
.case-deck {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 800px;
}

.case-grid {
  display: grid;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(36px, 5vh, 60px);
}
.case-grid.two { grid-template-columns: 1fr 1fr; }
.case-grid.three { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 900px) {
  .case-grid.two, .case-grid.three { grid-template-columns: 1fr; }
}

.case-block {
  position: relative;
}
.case-block.wide {
  margin-bottom: clamp(36px, 5vh, 60px);
}
.case-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.case-block p { font-size: 16px; color: var(--text); margin-bottom: 12px; }
.case-block p:last-child { margin-bottom: 0; }

.case-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--text);
}
.case-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.case-list.nums {
  list-style: none;
  counter-reset: caselist;
}
.case-list.nums li {
  counter-increment: caselist;
  padding-left: 30px;
}
.case-list.nums li::before {
  content: counter(caselist, decimal-leading-zero);
  background: none;
  width: auto; height: auto; top: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

/* Case process steps */
.case-process {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.case-process li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.case-process li:hover { padding-left: 12px; }
.proc-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 4px;
}
.proc-body h5 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.proc-body p { font-size: 15px; color: var(--text-soft); line-height: 1.55; }
.proc-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
  padding-top: 6px;
}
.case-process.inline li {
  grid-template-columns: 60px 1fr;
  padding: 16px 0;
}

/* Case decisions */
.case-decisions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.case-decisions li {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 20px;
}
.case-decisions h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.case-decisions p { font-size: 15px; color: var(--text-soft); line-height: 1.55; }

.case-lessons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-lessons li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.case-lessons li::before {
  content: '→';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-family: var(--mono);
}

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag-list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: 2px;
  color: var(--text);
}

/* Outcomes / KPI */
.case-block.outcomes {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.case-block.outcomes .case-label { border-bottom-color: var(--line); }
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .kpi-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .kpi-row { grid-template-columns: 1fr; }
}
.kpi { display: flex; flex-direction: column; gap: 10px; }
.kpi-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.kpi-up   { color: var(--accent-warm); }
.kpi-down { color: var(--accent); }
.kpi-unit { font-size: 0.5em; color: var(--text-soft); font-family: var(--mono); }
.kpi-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.4;
}
.kpi-bar {
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.kpi-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  animation: barFill 1.4s var(--ease) forwards;
}
@keyframes barFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- Visualizations ---------- */
.case-viz {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-soft);
}
.viz-matrix { width: 100%; height: auto; }
.viz-axis-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  fill: currentColor;
}
.viz-quad {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  fill: var(--text-mute);
  text-anchor: middle;
}
.viz-dot { fill: var(--accent); }
.viz-dot.strong { fill: var(--accent-warm); }
.viz-dot.mid { fill: var(--accent); opacity: 0.7; }
.viz-dot.soft { fill: var(--text-soft); opacity: 0.6; }
.viz-dot.kill { fill: var(--accent-rust); opacity: 0.6; }
.viz-cap {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 12px;
  text-align: center;
}

/* Process flow */
.proc-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 30px 0 8px;
  flex-wrap: wrap;
}
.flow-node {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: var(--radius);
  min-width: 160px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.flow-node span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.flow-node strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.flow-node em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}
.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 16px;
}

/* Cohort grid */
.cohort-grid {
  display: grid;
  grid-template-columns: 160px repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 24px 0 4px;
  border-radius: var(--radius);
  overflow: hidden;
}
.cohort-head, .cohort-row { display: contents; }
.cohort-head > span,
.cohort-row > span {
  padding: 14px 16px;
  background: var(--bg-card);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cohort-head > span { color: var(--accent); font-weight: 500; }
.cohort-row > span:first-child { justify-content: flex-start; color: var(--text); }
.ch {
  font-family: var(--serif) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
}
.ch.hi { color: var(--accent-warm) !important; }
.ch.md { color: var(--text) !important; }
.ch.lo { color: var(--text-mute) !important; }
.ch.hi-warn { color: var(--accent-rust) !important; }

/* Draft-and-review flow */
.dr-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 28px 0 16px;
  flex-wrap: wrap;
}
.dr-step {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-soft);
}
.dr-step.accent {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-glow) 0%, var(--bg-card) 80%);
}
.dr-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--accent);
}
.dr-step strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.dr-step em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}
.dr-arrow {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 20px;
}
.dr-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-soft);
  font-size: 15px;
  text-align: center;
  margin-top: 16px;
}

/* ---------- THINKING ---------- */
.think-intro {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 60px;
}
.think-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
@media (max-width: 900px) {
  .think-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .think-grid { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}
.pillar:hover { background: var(--bg-elev); }
.pillar::before {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}
.pillar:hover::before { width: 100%; }
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}
.pillar p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}

.pull-quote {
  margin: clamp(70px, 12vh, 140px) auto 0;
  max-width: 920px;
  text-align: center;
  padding: 0 var(--pad);
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 24px auto;
}
.pull-quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}
.pull-quote p em { color: var(--accent); }
.pull-quote cite {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-style: normal;
}

/* ---------- TOOLS ---------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
@media (max-width: 800px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .tools-grid { grid-template-columns: 1fr; } }
.tool-cat {
  background: var(--bg-card);
  padding: 28px 26px;
}
.tool-cat-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.tool-cat ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tool-cat li {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.contact-pitch p {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 480px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card {
  background: var(--bg-card);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  transition: background 0.2s var(--ease), padding-left 0.3s var(--ease);
}
.contact-card:not(.static):hover {
  background: var(--bg-elev);
  padding-left: 36px;
}
.contact-card:not(.static):hover .contact-arrow { color: var(--accent); transform: translateX(4px); }
.contact-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.contact-arrow {
  font-family: var(--mono);
  color: var(--text-soft);
  font-size: 18px;
  transition: color 0.2s var(--ease), transform 0.3s var(--ease);
}

@media (max-width: 600px) {
  .contact-card { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .contact-label { grid-column: 1 / -1; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 30px var(--pad);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.foot-l { display: flex; align-items: center; gap: 12px; }
.foot-mark {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 11px;
  border-radius: 2px;
}
.foot-r { display: flex; align-items: center; gap: 10px; }
.foot-r a:hover { color: var(--accent); }
.foot-sep { color: var(--text-mute); }

/* ============================================================
   PROGRESSIVE-ENHANCEMENT REVEAL
   Default: everything visible. If JS marks <html> as .has-js,
   eligible elements start hidden and IntersectionObserver reveals
   them on scroll. If JS or the observer fails, content stays
   visible — no blank gaps in production.
   ============================================================ */

.has-js .fx-fade { opacity: 0; transform: translateY(18px); will-change: opacity, transform; }
.has-js .fx-fade.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* CSS-only entrance for above-the-fold hero pieces (always-on) */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero-meta  { animation: rise-in 0.8s var(--ease) both; }
.hero-name  { animation: rise-in 1.0s var(--ease) 0.1s both; }
.hero-lede  { animation: rise-in 1.0s var(--ease) 0.25s both; }
.hero-foot  { animation: rise-in 1.0s var(--ease) 0.4s both; }

/* Subtle cursor-tracked tilt on cards (CSS only) */
.t-card, .pillar, .tool-cat, .stat, .snap-cell, .ba-col, .vrm-cell, .flow-node, .dr-step {
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

/* KPI bars only animate when they enter the viewport.
   With has-js + .is-in we trigger fill; otherwise full bar shows. */
.has-js .kpi-bar span { transform: scaleX(0); }
.has-js .fx-fade.is-in .kpi-bar span { transform: scaleX(1); transition: transform 1.2s var(--ease); }

/* Old class kept harmless */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   NARRATIVE COMPONENTS — scene, quote, artifact, moment, reflection
   ============================================================ */

/* Snapshot strip — quick-scan summary at top of each case */
.case-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: clamp(36px, 5vh, 56px) 0;
  overflow: hidden;
}
.snap-cell {
  background: var(--bg-card);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s var(--ease);
}
.snap-cell:hover { background: var(--bg-elev); }
.snap-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.snap-value {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
}
@media (max-width: 800px) {
  .case-snapshot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .case-snapshot { grid-template-columns: 1fr; }
}

/* Before / After comparison */
.case-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin: clamp(40px, 6vh, 60px) 0;
}
.ba-col {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ba-col.accent { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-glow) 0%, var(--bg-card) 70%); }
.ba-col:hover { transform: translateY(-2px); }
.ba-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.ba-col.accent .ba-head { color: var(--accent); }
.ba-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ba-col li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  padding-left: 16px;
}
.ba-col li::before {
  content: '\2014';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-family: var(--mono);
}
.ba-arrow {
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--accent);
}
@media (max-width: 800px) {
  .case-ba { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* Value vs Risk matrix */
.vrm {
  margin: 18px 0 6px;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.vrm-grid {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: 1fr 22px;
  gap: 8px;
}
.vrm-axis {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.vrm-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 6px 0;
}
.vrm-x {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
}
.vrm-cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}
.vrm-cell {
  background: var(--bg-card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s var(--ease);
}
.vrm-cell:hover { background: var(--bg-elev); }
.vrm-tl { border-top: 2px solid var(--accent); }
.vrm-tr { border-top: 2px solid var(--accent-warm); }
.vrm-bl { border-top: 2px solid var(--text-mute); opacity: 0.85; }
.vrm-br { border-top: 2px solid var(--accent-rust); }
.vrm-q {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.vrm-tl .vrm-q { color: var(--accent); }
.vrm-tr .vrm-q { color: var(--accent-warm); }
.vrm-br .vrm-q { color: var(--accent-rust); }
.vrm-item {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Artifact panel — PRD / user story / rubric / cutover plan */
.case-artifact {
  margin: clamp(40px, 6vh, 60px) 0;
  background: #08080A;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.artifact-head {
  background: var(--bg-card);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.artifact-head .a-type { color: var(--accent); font-weight: 500; }
.artifact-head .a-meta { display: flex; gap: 14px; }
.artifact-head .a-meta span::before {
  content: '\2022';
  color: var(--text-mute);
  margin-right: 14px;
}
.artifact-head .a-meta span:first-child::before { content: ''; margin-right: 0; }
.artifact-body {
  padding: 26px 28px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--text);
  white-space: pre-wrap;
  overflow-x: auto;
}
.artifact-body .a-tag {
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.artifact-body .a-strong { color: var(--accent-warm); font-weight: 500; }
.artifact-body .a-mute { color: var(--text-mute); }
.artifact-foot {
  padding: 12px 22px;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: right;
}

/* Closing reflection — single tight line */
.case-reflection {
  margin: clamp(40px, 6vh, 60px) 0 0;
  padding: clamp(24px, 3vw, 36px) 0 0;
  border-top: 1px solid var(--line);
}
.case-reflection::before {
  content: '\2014  REFLECTION';
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 14px;
}
.case-reflection p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 940px;
  font-style: italic;
}

/* Field note inside a product-thinking pillar */
.field-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.field-note strong {
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 9.5px;
  display: block;
  margin-bottom: 4px;
  font-family: var(--mono);
}


/* ==========================================================
   MOBILE OPTIMIZATIONS
   ========================================================== */

/* Tablet and below */
@media (max-width: 800px) {
  /* Process & draft-review flows: vertical stack */
  .proc-flow, .dr-flow {
    flex-direction: column;
    gap: 8px;
  }
  .flow-node, .dr-step { min-width: 0; width: 100%; }
  .flow-arrow, .dr-arrow {
    transform: rotate(90deg);
    align-self: center;
    margin: 2px 0;
  }
  .dr-step { padding: 18px; }

  /* Case study head — softer hierarchy */
  .case-num { font-size: 44px; }
  .case-title { font-size: clamp(28px, 6vw, 36px); line-height: 1.1; }
  .case-deck { font-size: 17px; }

  /* Process steps — let timing collapse below body */
  .case-process li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .case-process li .proc-time {
    grid-column: 2;
    padding-top: 4px;
  }
  .case-process li:hover { padding-left: 0; }

  /* Outcomes card padding */
  .case-block.outcomes { padding: 22px 18px; }
  .kpi-row { gap: 22px; }
}

/* Phone */
@media (max-width: 560px) {
  /* Cohort grid: tighter columns, smaller font */
  .cohort-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .cohort-head > span,
  .cohort-row > span {
    padding: 10px 6px;
    font-size: 9px;
    letter-spacing: 0.05em;
  }
  .ch { font-size: 17px !important; }

  /* Section padding tighter */
  .section { padding: 70px var(--pad) 70px; }

  /* Section header — stack vertically */
  .section-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .section-rule { display: none; }

  /* Hero meta should stack */
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Case num row — number first then chips below */
  .case-num-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Work index — tighter */
  .work-index a {
    grid-template-columns: 36px 1fr;
    padding: 18px 0;
    gap: 6px 14px;
  }
  .ix-num { padding-top: 4px; }
  .ix-tag { grid-column: 2; }

  /* Tools grid: single col with tighter padding */
  .tool-cat { padding: 22px 20px; }

  /* Pillar tighter */
  .pillar { padding: 26px 22px; }

  /* About stats more compact */
  .stat { padding: 18px 20px; }
  .stat-num { font-size: 36px; }

  /* Pull quote */
  .pull-quote p { font-size: 22px; }

  /* Footer stacks */
  .site-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print */
@media print {
  body { background: white; color: black; }
  .site-header, .hero-scroll, .side-rail, .nav-cta { display: none !important; }
  .hero { min-height: auto; padding: 40px; }
  .section { padding: 30px 0; }
  .case { page-break-inside: avoid; }
}
