:root {
  --ink: #0a0a0a;
  --panel: #111111;
  --paper: #f4f0ea;
  --muted: rgba(244, 240, 234, 0.62);
  --faint: rgba(244, 240, 234, 0.12);
  --gold: #c4a97a;
  --sage: #9ea58f;
  --clay: #b17d5a;
  --bluegrey: #8796a5;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  color: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(244, 240, 234, 0.08) 0,
    rgba(244, 240, 234, 0.08) 1px,
    transparent 1px,
    transparent 6px
  );
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), 1440px);
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid var(--faint);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(22px);
}

.topbar-inner {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
}

.eyebrow,
.meta,
.pill,
.micro {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  font-family: var(--font-display);
  color: var(--paper);
  text-shadow:
    0 0 14px rgba(200, 170, 110, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(244, 240, 234, 0.32) 24%,
    rgba(196, 169, 122, 0.92) 50%,
    rgba(244, 240, 234, 0.32) 76%,
    transparent
  );
  box-shadow:
    0 0 16px rgba(196, 169, 122, 0.62),
    0 0 34px rgba(196, 169, 122, 0.28);
  transform: translateX(-50%);
  pointer-events: none;
}

.brand-name {
  position: relative;
  z-index: 1;
  font-size: clamp(17px, 1.9vw, 27px);
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--paper);
}

.topbar a {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar a.brand {
  font-size: clamp(17px, 1.9vw, 27px);
  font-weight: 500;
  letter-spacing: 0.28em;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--muted);
}

.nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  transition: color 250ms ease;
}

.nav a:hover {
  color: var(--paper);
}

.eyebrow,
.meta,
.micro {
  color: var(--muted);
}

.gold {
  color: var(--gold);
}

.page {
  min-height: 100vh;
  padding-top: 76px;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--faint);
  padding: 72px 0 44px;
}

.hero::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 12%;
  width: 1px;
  height: 70%;
  background: rgba(244, 240, 234, 0.5);
  box-shadow: 0 0 90px rgba(196, 169, 122, 0.34);
  animation: lightScan 6s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 52px;
  align-items: end;
}

h1,
h2,
h3,
.serif {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(64px, 11vw, 156px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1;
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.lead {
  max-width: 42rem;
  margin: 24px 0 0;
  color: rgba(244, 240, 234, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 240, 234, 0.18);
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.cta-primary {
  border-color: rgba(196, 169, 122, 0.4);
  background: linear-gradient(135deg, rgba(196, 169, 122, 0.24), rgba(177, 125, 90, 0.18));
  color: var(--paper);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.2);
}

.cta-secondary {
  background: rgba(244, 240, 234, 0.04);
  color: rgba(244, 240, 234, 0.8);
}

.cta-button:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 169, 122, 0.54);
  background: rgba(196, 169, 122, 0.12);
  color: var(--paper);
}

.hero-panel {
  border: 1px solid var(--faint);
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(22px);
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(244, 240, 234, 0.1);
  padding: 16px 18px;
}

.hero-panel-row:last-child {
  border-bottom: 0;
}

.hero-panel-row span:last-child {
  color: rgba(244, 240, 234, 0.84);
  font-size: 14px;
}

.section {
  padding: 68px 0;
  border-bottom: 1px solid var(--faint);
}

.section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 34px;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-card {
  position: relative;
  display: grid;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--faint);
  background: #0c0c0c;
  isolation: isolate;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    filter 420ms ease;
}

.proof-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 169, 122, 0.44);
  filter: brightness(1.08);
}

.proof-art {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 234, 0.1);
  background:
    linear-gradient(180deg, rgba(244, 240, 234, 0.03), rgba(244, 240, 234, 0)),
    rgba(244, 240, 234, 0.02);
  transform: translateZ(0);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

#proof .card:hover .proof-art,
.proof-card:hover .proof-art {
  transform: scale(1.08);
  border-color: rgba(196, 169, 122, 0.24);
  box-shadow: 0 22px 50px rgba(10, 10, 10, 0.24);
}

.proof-art::before,
.proof-art::after {
  content: "";
  position: absolute;
  inset: 0;
}

.proof-art::before {
  background: var(--proof-image);
  background-position: center;
  background-size: cover;
}

.proof-art::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.9)),
    repeating-linear-gradient(0deg, rgba(244, 240, 234, 0.05) 0, rgba(244, 240, 234, 0.05) 1px, transparent 1px, transparent 7px);
}

.proof-art img,
.proof-logo-frame img,
.proof-graphic-frame img,
.proof-artwork-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.proof-art img,
.proof-logo-frame img {
  object-fit: contain;
}

.proof-graphic-frame img,
.proof-artwork-frame img {
  object-fit: cover;
}

.proof-logo-frame,
.proof-graphic-frame,
.proof-artwork-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 234, 0.1);
  background:
    radial-gradient(circle at top, rgba(244, 240, 234, 0.08), transparent 55%),
    rgba(244, 240, 234, 0.03);
}

.proof-logo-frame {
  padding: 22px;
}

.proof-graphic-frame,
.proof-artwork-frame {
  min-height: 248px;
}

#proof .card,
.proof-card.card {
  display: block;
  min-height: 0;
}

#proof .card .proof-art,
.proof-card.card .proof-art {
  min-height: 128px;
  margin: 0 0 14px;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
}

#proof .card .card-body,
.proof-card.card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 18px;
}

#proof .section-head {
  margin-bottom: 28px;
}

#proof .grid-two {
  gap: 14px 16px;
}

#proof .card p.eyebrow {
  margin-bottom: 8px;
}

#proof .card h3 {
  max-width: 18ch;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1;
}

#proof .card p:last-child {
  max-width: 30ch;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.48;
}

#proof .card::after,
.proof-card.card::after {
  content: "Open reference";
  display: inline-block;
  margin: 0 18px 18px;
  color: rgba(196, 169, 122, 0.88);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-ventilator {
  --proof-image:
    url("assets/ventilator-cinema/ventilator-cinema-room-background.jpg"),
    radial-gradient(circle at 30% 18%, rgba(244, 240, 234, 0.42), transparent 9%),
    linear-gradient(125deg, rgba(10, 10, 10, 0.92), rgba(38, 35, 29, 0.56) 44%, rgba(196, 169, 122, 0.18)),
    linear-gradient(90deg, rgba(244, 240, 234, 0.08) 1px, transparent 1px),
    #111;
}

.proof-yasiin {
  --proof-image:
    url("assets/forensics/forensics-visual-01.jpg"),
    radial-gradient(circle at 72% 20%, rgba(196, 169, 122, 0.34), transparent 14%),
    linear-gradient(90deg, transparent 55%, rgba(244, 240, 234, 0.58) 56%, transparent 57%),
    linear-gradient(145deg, #050505, #17110d 54%, #0d0d0d);
}

.proof-brave {
  --proof-image:
    url("assets/artists-for-humanity/artists-hero-stage.jpg"),
    radial-gradient(circle at 50% 12%, rgba(244, 240, 234, 0.5), transparent 8%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.92)),
    repeating-linear-gradient(90deg, rgba(196, 169, 122, 0.14) 0, rgba(196, 169, 122, 0.14) 2px, transparent 2px, transparent 44px),
    #121212;
}

.proof-podcast {
  --proof-image:
    url("assets/podcast-merged/podcast-set-wide.jpg"),
    radial-gradient(circle at 24% 28%, rgba(135, 150, 165, 0.38), transparent 16%),
    radial-gradient(circle at 76% 42%, rgba(196, 169, 122, 0.3), transparent 15%),
    linear-gradient(135deg, #0a0a0a, #171717 50%, #0c0c0c);
}

.proof-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
}

.proof-copy strong {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 650;
  line-height: 1;
}

.proof-copy em {
  max-width: 260px;
  color: rgba(244, 240, 234, 0.68);
  font-style: normal;
  line-height: 1.45;
}

.closing-section {
  background:
    linear-gradient(90deg, rgba(244, 240, 234, 0.035) 1px, transparent 1px),
    #0a0a0a;
  background-size: calc((100vw - 48px) / 12) 100%;
}

.closing-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.closing-grid h2 {
  max-width: 1000px;
}

.closing-actions {
  margin-top: 22px;
}

.closing-actions a,
.hero-actions a {
  border: 1px solid rgba(244, 240, 234, 0.16);
  color: rgba(244, 240, 234, 0.78);
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--faint);
  background: rgba(17, 17, 17, 0.72);
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background 420ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 169, 122, 0.38);
  background: rgba(22, 21, 19, 0.88);
}

.card-body {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.card p,
.entry p,
.copy {
  color: rgba(244, 240, 234, 0.68);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pill {
  border: 1px solid rgba(244, 240, 234, 0.14);
  padding: 7px 9px;
  color: rgba(244, 240, 234, 0.72);
}

.entry {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 220px;
  gap: 22px;
  border-top: 1px solid rgba(244, 240, 234, 0.1);
  padding: 22px 0;
}

.entry:first-child {
  border-top: 0;
}

.entry h3 {
  font-size: 27px;
  font-weight: 600;
}

.entry p {
  max-width: 760px;
  margin: 10px 0 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--faint);
}

.metric {
  min-height: 152px;
  border-right: 1px solid var(--faint);
  padding: 18px;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 600;
  line-height: 1;
}

.metric span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.progress {
  position: fixed;
  left: 0;
  top: 76px;
  z-index: 35;
  width: 0%;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(196, 169, 122, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.spotlight {
  position: fixed;
  z-index: 2;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(196, 169, 122, 0.14), transparent 62%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 260ms ease;
}

.dock {
  position: sticky;
  bottom: 14px;
  z-index: 25;
  display: flex;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto 14px;
  gap: 8px;
  border: 1px solid rgba(244, 240, 234, 0.14);
  background: rgba(10, 10, 10, 0.74);
  padding: 6px;
  backdrop-filter: blur(24px);
}

.dock a,
.dock button {
  min-height: 44px;
  background: transparent;
  padding: 9px 11px;
  color: var(--muted);
  cursor: pointer;
}

.dock a:hover,
.dock button:hover {
  color: var(--paper);
}

.mode-01 .hero {
  background:
    linear-gradient(90deg, rgba(244, 240, 234, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 8.33% 100%;
}

.mode-01 .feature-card {
  min-height: 420px;
}

.mode-01 .feature-card::before {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(196, 169, 122, 0.28);
  transform: rotate(8deg);
}

.mode-02 {
  background:
    radial-gradient(circle at 76% 18%, rgba(135, 150, 165, 0.18), transparent 28%),
    var(--ink);
}

.mode-02 .story-step {
  min-height: 82vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--faint);
}

.mode-02 .story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.mode-02 .orbital {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 240, 234, 0.14);
  background: rgba(17, 17, 17, 0.44);
}

.mode-02 .orbital::before,
.mode-02 .orbital::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(196, 169, 122, 0.25);
  animation: rotateLine 18s linear infinite;
}

.mode-02 .orbital::after {
  inset: 30%;
  animation-duration: 12s;
  animation-direction: reverse;
}

.mode-02 .orbital span {
  position: absolute;
  display: block;
  border: 1px solid rgba(244, 240, 234, 0.16);
  padding: 10px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(12px);
}

.mode-02 .orbital span:nth-child(1) {
  left: 10%;
  top: 16%;
}

.mode-02 .orbital span:nth-child(2) {
  right: 10%;
  top: 42%;
}

.mode-02 .orbital span:nth-child(3) {
  left: 24%;
  bottom: 12%;
}

.mode-03 {
  background:
    linear-gradient(90deg, rgba(244, 240, 234, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 240, 234, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 80px 80px;
}

.mode-03 .dashboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.mode-03 .status-card {
  min-height: 280px;
}

.mode-03 .signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(244, 240, 234, 0.1);
  padding: 16px 0;
}

.mode-03 .signal::after {
  content: "";
  width: 110px;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) var(--value), rgba(244, 240, 234, 0.12) var(--value));
}

.example-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

#selected-work .grid-two {
  gap: 18px;
}

#selected-work .card-body {
  padding: 20px;
}

#selected-work .example-list {
  gap: 12px;
  margin-top: 16px;
}

.example-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  border-top: 1px solid rgba(244, 240, 234, 0.1);
  padding-top: 12px;
}

.example-item:first-child {
  border-top-color: rgba(196, 169, 122, 0.32);
}

.example-item:first-child span:last-child {
  color: rgba(244, 240, 234, 0.86);
}

.example-item span:last-child {
  color: rgba(244, 240, 234, 0.72);
}

@keyframes lightScan {
  to {
    transform: translateX(-42px);
    opacity: 0.72;
  }
}

@keyframes rotateLine {
  to {
    transform: rotate(360deg);
  }
}



/* 20260624-cv-reading-polish */
body {
  font-size: 16px;
  line-height: 1.68;
}

.brand-name,
.topbar a.brand {
  font-size: clamp(14px, 1.45vw, 21px);
  letter-spacing: 0.22em;
}

.topbar a,
.eyebrow,
.meta,
.pill,
.micro {
  font-size: 10px;
  letter-spacing: 0.075em;
}

h1 {
  font-size: clamp(46px, 8vw, 118px);
  line-height: 0.98;
  text-wrap: balance;
}

h2,
.closing-grid h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
  text-wrap: balance;
}

h3 {
  font-size: clamp(21px, 2.2vw, 31px);
  line-height: 1.12;
  text-wrap: balance;
}

.lead,
.copy,
.card-body,
.proof-copy em,
.card p,
.proof-card p,
.role-card p,
.selected-card p,
.closing-grid p {
  max-width: 72ch;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.72;
  text-wrap: pretty;
}

.proof-copy strong,
.card-title,
.selected-card h3 {
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.12;
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 32px), 1440px);
  }

  .nav {
    gap: 2px 14px;
  }

  .nav a {
    min-height: 44px;
  }

  .topbar-inner {
    height: auto;
    min-height: 104px;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }

  .page {
    padding-top: 104px;
  }

  .progress {
    top: 104px;
  }

  .progress,
  .spotlight {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand {
    min-height: 44px;
  }

  .brand-name {
    font-size: clamp(14px, 3.65vw, 17px);
    letter-spacing: 0.16em;
  }

  .topbar a.brand {
    font-size: clamp(14px, 3.65vw, 17px);
    letter-spacing: 0.16em;
  }

  .hero-grid,
  .section-head,
  .grid-two,
  .grid-three,
  .proof-grid,
  .closing-grid,
  .entry,
  .example-item,
  .metric-strip,
  .mode-02 .story-grid,
  .mode-03 .dashboard {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 40px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(52px, 15vw, 82px);
    line-height: 0.94;
    text-wrap: balance;
  }

  #proof .card,
  .proof-card,
  .proof-card.card {
    grid-template-columns: 1fr;
  }

  #proof .card .proof-art,
  .proof-card .proof-art {
    min-height: 0;
    margin: 0 0 12px;
    aspect-ratio: 16 / 9;
  }

  #proof .card .card-body,
  .proof-card.card .card-body {
    padding: 18px;
  }

  .hero-actions,
  .closing-actions {
    gap: 10px;
  }

  .hero-actions .cta-button,
  .closing-actions .cta-button {
    flex: 1 1 260px;
  }

  .dock {
    position: static;
    width: min(calc(100% - 32px), 420px);
    margin: 24px auto 14px;
    justify-content: center;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--faint);
  }

  .metric:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-grid,
  .section-head,
  #proof .card,
  .proof-card,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .lead {
    font-size: clamp(15px, 4.1vw, 17px);
    line-height: 1.68;
  }

  .hero-actions .cta-button,
  .closing-actions .cta-button,
  .hero-actions a,
  .closing-actions a {
    width: 100%;
  }

  #proof .card .proof-art,
  .proof-card .proof-art,
  .proof-logo-frame,
  .proof-graphic-frame,
  .proof-artwork-frame {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

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

  * {
    animation: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
  }

  html,
  body {
    background: #ffffff !important;
    color: #111111 !important;
    font-size: 11pt;
    line-height: 1.42;
  }

  body::before,
  .spotlight,
  .progress,
  .dock,
  .hero::after,
  .orbital,
  .proof-art {
    display: none !important;
  }

  .topbar {
    position: static;
    border-bottom: 1px solid #d7d7d7;
    background: transparent;
    backdrop-filter: none;
  }

  .topbar-inner,
  .page {
    height: auto;
    padding-top: 0;
  }

  .shell {
    width: 100%;
  }

  .brand,
  .brand-name,
  .topbar a.brand {
    color: #111111;
  }

  .nav,
  .pill-row,
  .proof-grid,
  .closing-actions {
    display: none !important;
  }

  .hero,
  .section,
  .mode-02 .story-step {
    min-height: auto;
    border-bottom: 1px solid #d7d7d7;
    padding: 22pt 0;
  }

  .hero-grid,
  .section-head,
  .grid-two,
  .grid-three,
  .entry,
  .example-item,
  .metric-strip,
  .mode-02 .story-grid,
  .closing-grid {
    display: block;
  }

  h1 {
    max-width: none;
    font-size: 34pt;
    line-height: 1;
  }

  h2 {
    font-size: 23pt;
    line-height: 1.05;
  }

  h3,
  .entry h3 {
    font-size: 15pt;
  }

  .lead,
  .card p,
  .entry p,
  .copy,
  .metric span:last-child,
  .example-item span:last-child,
  .hero-panel-row span:last-child {
    color: #333333 !important;
  }

  .lead {
    max-width: none;
    font-size: 12pt;
    line-height: 1.45;
  }

  .hero-panel,
  .card,
  .metric-strip,
  .metric {
    border: 1px solid #d7d7d7;
    background: transparent !important;
  }

  .card,
  .entry,
  .metric,
  .example-item {
    break-inside: avoid;
  }

  .card-body,
  .metric {
    padding: 12pt;
  }

  .entry {
    grid-template-columns: 1fr;
    gap: 4pt;
    padding: 12pt 0;
  }

  .eyebrow,
  .meta,
  .micro,
  .gold {
    color: #666666 !important;
  }

  a {
    color: #111111 !important;
  }
}

@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;
  }
}
