:root {
  --bg: #0c0b0a;
  --panel: #141210;
  --panel-soft: rgba(20, 18, 16, 0.86);
  --text: #f2ece2;
  --muted: #d3c7b5;
  --gold: #c9a84c;
  --line: rgba(201, 168, 76, 0.28);
  --line-strong: rgba(201, 168, 76, 0.5);
  --green: #84c9a0;
  --radius: 16px;
  --section-space: 54px;
  --container-max: 1080px;
  --panel-pad: 24px;
  --panel-gap: 18px;
  --box-top: rgba(20, 18, 16, 0.82);
  --box-bottom: rgba(12, 11, 10, 0.92);
  --box-bg: linear-gradient(180deg, var(--box-top), var(--box-bottom));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(1200px 800px at 80% -10%, rgba(201, 168, 76, 0.08), transparent 45%), var(--bg);
  color: var(--text);
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.62;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 500;
}

.brand-title {
  margin: 2px 0 0;
  font-size: 1.2rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  color: #ddd0bc;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 7px 10px;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(201, 168, 76, 0.12);
}

.landing-hero-v2 {
  position: relative;
  padding: 90px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.landing-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(201, 168, 76, 0.08), transparent 22%),
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.03), transparent 42%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.98) 0%, rgba(9, 8, 7, 0.95) 100%);
  pointer-events: none;
}

.hero-author::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - min(var(--container-max), calc(100% - 48px))) / 2));
  top: 50%;
  width: min(42vw, 560px);
  height: min(74vh, 760px);
  transform: translateY(-50%);
  background:
    linear-gradient(to left, rgba(10, 9, 8, 0.04), rgba(10, 9, 8, 0.52) 58%, rgba(10, 9, 8, 0.84)),
    url("./author-portrait.jpg") center / cover no-repeat;
  opacity: 0.54;
  filter: grayscale(1) contrast(1.03) brightness(0.98);
  pointer-events: none;
  border-radius: 36px;
  -webkit-mask-image: radial-gradient(116% 104% at 56% 50%, #000 58%, rgba(0, 0, 0, 0.46) 80%, transparent 100%);
  mask-image: radial-gradient(116% 104% at 56% 50%, #000 58%, rgba(0, 0, 0, 0.46) 80%, transparent 100%);
}

.hero-v2-shell {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-v2-copy {
  max-width: 700px;
}

.hero-v2-copy > .eyebrow {
  display: inline-block;
  white-space: nowrap;
}

.hero-v2-title {
  margin: 8px 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 600;
  text-wrap: balance;
}

.hero-v2-lead {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-v2-actions {
  margin-top: 22px;
}

.section {
  padding: var(--section-space) 0 0;
}

.section h3 {
  margin: 8px 0 18px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--panel-gap);
  align-items: stretch;
}

.start-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--box-bg);
  padding: var(--panel-pad);
  display: flex;
  flex-direction: column;
}

.start-card h3 {
  margin: 8px 0;
  font-size: 1.2rem;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}

.start-card p {
  margin: 0 0 10px;
  color: var(--muted);
  min-height: 3.3em;
}

.start-card .eyebrow {
  min-height: 1.2em;
  display: block;
}

.start-card .btn {
  margin-top: auto;
  width: 100%;
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  font-family: "Cinzel", serif;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--text);
}

.bio-panel,
.bridge-panel {
  padding: var(--panel-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--box-bg);
}

.challenge-cta {
  padding: var(--panel-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--box-bg);
}

.challenge-cta p {
  margin: 0 0 14px;
  color: var(--muted);
}

.bundle-cta {
  border-color: rgba(132, 201, 160, 0.48);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(132, 201, 160, 0.16), transparent 58%),
    radial-gradient(820px 460px at -6% 118%, rgba(201, 168, 76, 0.12), transparent 56%),
    var(--box-bg);
}

.bundle-cta h3 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.bundle-layout {
  display: block;
}

.bundle-copy p {
  max-width: 64ch;
}

.bundle-btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.8rem;
}

.book-page-main {
  padding-bottom: 24px;
}

.book-hero {
  border: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: var(--radius);
  padding: clamp(18px, 2.8vw, 30px);
  background:
    radial-gradient(760px 420px at 100% -10%, rgba(201, 168, 76, 0.16), transparent 60%),
    radial-gradient(660px 340px at -6% 110%, rgba(132, 201, 160, 0.11), transparent 60%),
    var(--box-bg);
}

.book-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(16px, 2.2vw, 28px);
  align-items: center;
}

.book-cover-frame {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.book-cover-art {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.book-title {
  margin: 2px 0 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.04;
  font-weight: 700;
  color: #fff;
}

.book-subtitle {
  margin: 0 0 10px;
  color: #ded0ba;
  font-size: 1.05rem;
}

.book-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.52;
  max-width: 62ch;
}

.book-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.book-stat {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.13);
  color: #efe4d0;
  font-family: "Cinzel", serif;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-section-panel {
  padding: var(--panel-pad);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--box-bg);
}

.book-section-panel h2 {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
}

.book-section-panel p {
  margin: 0 0 12px;
  color: var(--muted);
}

.book-points {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.book-points li {
  color: #e7dccb;
}

.book-spotlight {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(760px 380px at 92% -14%, rgba(201, 168, 76, 0.18), transparent 58%),
    radial-gradient(620px 360px at -6% 118%, rgba(132, 201, 160, 0.12), transparent 60%),
    var(--box-bg);
}

.book-spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr minmax(240px, 360px);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: center;
}

.book-kicker {
  margin: -2px 0 10px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.73rem;
  color: #d9c9ac;
}

.book-lede {
  margin: 0 0 16px;
  color: #efe3cf;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.52;
  max-width: 56ch;
}

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

.book-value-card {
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.82), rgba(11, 10, 9, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.book-value-card h4 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.book-value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.book-pull {
  margin-top: 6px;
  padding: 12px 14px;
  border-left: 3px solid rgba(201, 168, 76, 0.56);
  background: rgba(201, 168, 76, 0.08);
  color: #f2e7d5;
  font-size: 1.02rem;
  font-style: italic;
}

.book-quote {
  margin: 14px 0 4px;
  padding: 12px 14px;
  border-left: 3px solid rgba(201, 168, 76, 0.58);
  background: rgba(201, 168, 76, 0.08);
  color: #f1e7d7;
  font-size: 1.02rem;
}

.book-cta-panel {
  border-color: rgba(132, 201, 160, 0.46);
}

.bio-copy {
  column-count: 2;
  column-gap: 30px;
}

.bio-copy p {
  margin: 0 0 14px;
  break-inside: avoid;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--panel-gap);
}

.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--box-bg);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: var(--panel-pad);
}

.work-card.no-cover {
  grid-template-columns: 1fr;
}

.work-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-ad-cover {
  max-width: 360px;
  width: min(100%, 360px);
  margin: 0 auto 6px;
  display: block;
  border-radius: 12px;
}

.work-cover-logo {
  background: #070707;
  padding: 18px;
  object-fit: contain;
}

.work-body h4 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.28;
  min-height: 2.56em;
}

.work-body {
  display: flex;
  flex-direction: column;
}

.work-body p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
  min-height: 4.65em;
}

.work-actions {
  margin-top: auto;
}

.hero-actions,
.work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: rgba(132, 201, 160, 0.24);
  color: #f0fff7;
  border-color: rgba(132, 201, 160, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  background: rgba(201, 168, 76, 0.22);
  color: var(--text);
  border-color: rgba(201, 168, 76, 0.52);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(201, 168, 76, 0.3);
}

.ecosystem-bridge p {
  color: var(--muted);
  margin: 0 0 18px;
}

.bridge-panel-spotlight {
  padding: clamp(22px, 3vw, 34px);
  border-color: rgba(201, 168, 76, 0.52);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(860px 480px at 92% -16%, rgba(201, 168, 76, 0.2), transparent 58%),
    radial-gradient(760px 420px at -4% 118%, rgba(132, 201, 160, 0.12), transparent 56%),
    var(--box-bg);
}

.bridge-panel-spotlight h3 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.bridge-panel-spotlight p {
  font-size: clamp(1.02rem, 1.24vw, 1.18rem);
  line-height: 1.6;
  max-width: 72ch;
}

.ecosystem-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.ecosystem-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(201, 168, 76, 0.44);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.14);
  color: #efe4d0;
  font-family: "Cinzel", serif;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ecosystem-actions .btn {
  min-height: 48px;
  font-size: 0.78rem;
  padding: 0 18px;
}

.daily-tools-panel {
  border-width: 1.5px;
  border-color: rgba(201, 168, 76, 0.38);
  max-width: var(--container-max);
  width: min(var(--container-max), calc(100% - 48px));
  margin: 0 auto;
  background:
    radial-gradient(760px 340px at 50% -16%, rgba(201, 168, 76, 0.12), transparent 62%),
    var(--box-bg);
}

.daily-tools-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}

.daily-tools-copy {
  text-align: left;
}

.daily-tools-panel h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.14;
}

.daily-tools-panel p {
  max-width: 62ch;
}

.daily-tools-logo {
  width: 164px;
  height: 164px;
  object-fit: contain;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  justify-self: end;
  align-self: center;
}

.daily-tools-actions .btn {
  min-width: 190px;
}

.daily-tools-links {
  justify-content: flex-start;
}

.daily-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.daily-tools-card {
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.78), rgba(10, 9, 8, 0.9));
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.daily-tools-label {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Cinzel", serif;
  font-size: 0.64rem;
}

.daily-tools-card h4 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 1.02rem;
  line-height: 1.32;
  font-weight: 700;
}

.daily-tools-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.48;
}

.daily-tools-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-tools-thumb-app {
  object-fit: contain;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.14), rgba(10, 10, 10, 0.86));
  padding: 18px;
}

.daily-tools-btn {
  width: 100%;
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0 28px;
  color: #a99d8b;
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 980px) {
  .start-grid {
    grid-template-columns: 1fr;
  }

  .bio-copy {
    column-count: 1;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .bundle-layout {
    display: block;
  }

  .book-hero-grid {
    grid-template-columns: 1fr;
  }

  .book-cover-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .book-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .book-value-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .shell {
    width: min(1120px, calc(100% - 28px));
  }

  .site-header {
    position: static;
    backdrop-filter: none;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand .eyebrow {
    display: none;
  }

  .brand-title {
    font-size: 1rem;
    margin: 0;
  }

  .site-nav {
    gap: 6px;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 2px;
  }

  .site-nav a {
    white-space: nowrap;
    border: 1px solid rgba(201, 168, 76, 0.22);
    background: rgba(20, 18, 16, 0.42);
    padding: 6px 8px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #cbbda8;
    border-radius: 8px;
  }

  .work-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .work-cover {
    max-width: 180px;
  }

  .landing-hero-v2 {
    padding: 54px 0 26px;
  }

  .hero-author::after {
    width: min(48vw, 250px);
    right: -18px;
    top: 42%;
    height: min(58vh, 360px);
    transform: translateY(-50%);
    opacity: 0.4;
    border-radius: 18px;
    -webkit-mask-image: radial-gradient(120% 106% at 58% 50%, #000 62%, rgba(0, 0, 0, 0.56) 82%, transparent 100%);
    mask-image: radial-gradient(120% 106% at 58% 50%, #000 62%, rgba(0, 0, 0, 0.56) 82%, transparent 100%);
  }

  .hero-v2-copy {
    max-width: 62%;
    position: relative;
    z-index: 2;
  }

  .hero-v2-copy > .eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.11em;
  }

  .hero-v2-title {
    font-size: clamp(42px, 12vw, 70px);
    line-height: 0.96;
  }

  .hero-v2-lead {
    font-size: 17px;
    max-width: none;
    line-height: 1.42;
  }

  .hero-v2-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .work-actions .btn,
  .start-card .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
  }

  .section {
    padding: 28px 0 0;
  }

  .bio-panel,
  .bridge-panel,
  .challenge-cta {
    padding: 18px;
  }

  .bridge-panel-spotlight h3 {
    font-size: 1.45rem;
  }

  .bridge-panel-spotlight p {
    font-size: 1rem;
  }

  .ecosystem-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ecosystem-actions .btn {
    width: 100%;
  }

  .daily-tools-grid {
    grid-template-columns: 1fr;
  }

  .daily-tools-panel {
    width: min(1120px, calc(100% - 28px));
  }

  .daily-tools-links .btn {
    width: 100%;
  }

  .daily-tools-head {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    text-align: left;
    align-items: center;
  }

  .daily-tools-copy {
    text-align: left;
  }

  .daily-tools-links {
    justify-content: flex-start;
  }

  .daily-tools-logo {
    width: 120px;
    height: 120px;
    padding: 0;
    justify-self: end;
  }

  .book-lede {
    font-size: 1rem;
  }

  .book-value-card {
    padding: 14px;
  }
}

@media (max-width: 430px) {
  .shell {
    width: calc(100% - 20px);
  }

  .daily-tools-panel {
    width: calc(100% - 20px);
  }

  .header-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .site-nav {
    gap: 5px;
  }

  .site-nav a {
    font-size: 0.64rem;
    padding: 5px 7px;
  }

  .landing-hero-v2 {
    padding: 42px 0 18px;
  }

  .hero-v2-title {
    font-size: clamp(36px, 13vw, 56px);
  }

  .hero-v2-lead {
    font-size: 16px;
    line-height: 1.34;
  }

  .hero-author::after {
    width: min(52vw, 220px);
    height: min(48vh, 290px);
    right: -22px;
    top: 40%;
    transform: translateY(-50%);
    opacity: 0.42;
  }

  .hero-v2-copy {
    max-width: 64%;
  }

  .hero-v2-copy > .eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.09em;
  }

  .section h3 {
    font-size: 1.2rem;
    margin: 6px 0 12px;
    line-height: 1.25;
  }

  .start-card,
  .work-card {
    padding: 16px;
  }

  .btn {
    min-height: 40px;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    padding: 0 12px;
  }

  .section {
    padding: 24px 0 0;
  }

  .bio-panel,
  .bridge-panel,
  .challenge-cta {
    padding: 16px;
  }
}
