:root {
  --ink: #14110d;
  --ink-2: #2c251f;
  --paper: #f4eee5;
  --paper-2: #e8dfd1;
  --panel: rgba(21, 18, 14, 0.82);
  --panel-2: rgba(255, 248, 236, 0.08);
  --line: rgba(255, 248, 236, 0.18);
  --line-dark: rgba(34, 27, 20, 0.16);
  --copper: #c6753b;
  --copper-2: #f0a76d;
  --kicker: #9a4f1e;
  --surface: #fff9ef;
  --surface-2: #fbf5eb;
  --forest: #18201a;
  --ink-deep: #0f0d0a;
  --sage: #6f7e67;
  --steel: #6f8d95;
  --cream: #fff8ec;
  --danger: #e75b40;
  --shadow: 0 24px 80px rgba(15, 11, 7, 0.28);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--ink);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(20, 17, 13, 0.86);
  border-bottom: 1px solid rgba(255, 248, 236, 0.12);
  backdrop-filter: blur(18px);
  color: var(--cream);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  margin-right: auto;
  text-decoration: none;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.header-cta {
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.brand-wordmark {
  display: inline-block;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(20, 17, 13, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-active .brand-mark {
  border-color: rgba(255, 248, 236, 0.4);
  background: rgba(255, 248, 236, 0.1);
}

.site-nav {
  gap: 1.2rem;
}

.site-nav a {
  color: rgba(20, 17, 13, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-header.is-scrolled .site-nav a,
.site-header.nav-active .site-nav a {
  color: rgba(255, 248, 236, 0.82);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.nav-active .site-nav a:hover,
.site-header.nav-active .site-nav a:focus-visible {
  color: var(--cream);
}

.nav-toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 236, 0.8),
      rgba(232, 223, 209, 0.56)
    ),
    var(--paper);
  color: var(--ink);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.28;
  filter: saturate(0.78) contrast(0.88);
  mix-blend-mode: multiply;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 229, 0.98) 0%,
      rgba(244, 238, 229, 0.96) 42%,
      rgba(244, 238, 229, 0.82) 66%,
      rgba(244, 238, 229, 0.94) 100%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(111, 141, 149, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 14% 84%,
      rgba(198, 117, 59, 0.12),
      transparent 32%
    );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(360px, 440px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 100svh;
  padding: clamp(7rem, 11vw, 10rem) clamp(1.25rem, 5vw, 5rem)
    clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.offer-label {
  margin: 0 0 1rem;
  color: var(--kicker);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Kickers on dark surfaces keep the lighter copper for legibility */
.final-cta .eyebrow,
.outcome-box .offer-label,
.departments .section-kicker,
.guarantee-card .section-kicker {
  color: var(--copper-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 6vw, 5.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.8vw, 4.5rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-lede,
.section-lede,
.split-heading p {
  color: rgba(20, 17, 13, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-lede {
  max-width: 660px;
  color: rgba(20, 17, 13, 0.74);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-actions {
  margin: 2rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--copper-2);
  color: #17100b;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc087;
}

.button-ghost {
  border-color: rgba(20, 17, 13, 0.2);
  color: var(--ink);
  background: rgba(255, 248, 236, 0.58);
}

.final-cta .button-ghost,
.departments .button-ghost {
  border-color: rgba(255, 248, 236, 0.24);
  color: var(--cream);
  background: rgba(255, 248, 236, 0.07);
}

.hero-proof {
  padding: 0;
  margin-left: 0;
  list-style: none;
}

.hero-proof li {
  border: 1px solid rgba(20, 17, 13, 0.16);
  border-radius: 999px;
  padding: 0.4rem 0.68rem;
  color: rgba(20, 17, 13, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.hero-panel,
.calculator {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  width: 100%;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--cream);
}

.panel-header,
.prime-gauge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(255, 248, 236, 0.1);
  padding: 1rem 0;
}

.metric-row span,
.prime-gauge span {
  color: rgba(255, 248, 236, 0.68);
}

.metric-row strong {
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.35;
  text-align: right;
}

.metric-row.warning strong {
  color: var(--danger);
}

.prime-gauge {
  position: relative;
  min-height: 8rem;
  margin: 1rem 0;
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
}

.prime-gauge::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: calc(var(--value) * 1%);
  max-height: 100%;
  background: linear-gradient(
    0deg,
    rgba(231, 91, 64, 0.66),
    rgba(240, 167, 109, 0.2)
  );
}

.prime-gauge span,
.prime-gauge strong {
  position: relative;
  z-index: 1;
}

.prime-gauge strong {
  font-size: 2rem;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.94rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  scroll-margin-top: 5rem;
}

.diagnostic,
.dashboard,
.about,
.why-jane,
.case-study {
  background: var(--paper);
}

.problem,
.framework,
.objections,
.reviews,
.mechanism {
  background: var(--surface-2);
}

.proof {
  background: var(--paper-2);
}

.departments {
  background: var(--ink);
  color: var(--cream);
}

.diagnostic-layout,
.dashboard-layout,
.split-heading,
.about-card,
.why-jane-card,
.framework,
.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.relief-note {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--panel-2);
}

.relief-note span {
  color: rgba(255, 248, 236, 0.68);
}

.relief-note strong {
  color: var(--copper-2);
  line-height: 1.35;
}

.offer-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 20px 60px rgba(50, 34, 20, 0.08);
}

.offer-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.offer-card p {
  color: rgba(20, 17, 13, 0.68);
}

.offer-card .button {
  width: 100%;
}

.why-jane-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: 0 20px 80px rgba(50, 34, 20, 0.08);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.outcome-box {
  margin-top: 2rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}

.outcome-box .offer-label {
  margin-bottom: 0.75rem;
}

.outcome-head h3 {
  margin: 0;
  max-width: 18ch;
  color: var(--cream);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.outcome-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  padding: 0;
}

.outcome-list li {
  border-top: 1px solid rgba(255, 248, 236, 0.18);
  padding-top: 1rem;
}

.outcome-list span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--copper-2);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-size: 0.95rem;
}

.outcome-list p {
  margin: 0;
  color: var(--cream);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.3;
}

.diagnostic-details,
.problem-grid,
.department-grid,
.pain-grid,
.case-grid,
.offer-stack,
.review-grid,
.mechanism-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.diagnostic-details article,
.problem-grid article,
.department-grid article,
.pain-grid article,
.case-grid article,
.offer-stack article,
.review-grid article,
.mechanism-steps article {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  padding: 1.25rem;
}

.diagnostic-details span,
.department-grid span,
.case-grid span,
.offer-stack span,
.review-grid span,
.mechanism-steps span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--kicker);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Same labels on dark cards take the lighter copper */
.department-grid span,
.mechanism-steps span {
  color: var(--copper-2);
}

.diagnostic-details p,
.problem-grid p,
.department-grid h3,
.pain-grid p,
.case-grid p,
.offer-stack p,
.review-grid p,
.mechanism-steps p {
  margin-bottom: 0;
  color: rgba(20, 17, 13, 0.72);
}

.problem-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.problem-grid article {
  min-height: 15rem;
  background: var(--ink);
  color: var(--cream);
}

.problem-grid h3 {
  color: var(--cream);
}

.problem-grid p {
  color: rgba(255, 248, 236, 0.68);
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-grid article {
  background: var(--surface);
}

.case-impact {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.case-impact span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--copper-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-impact strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.case-impact p {
  margin: 0;
  color: rgba(255, 248, 236, 0.72);
}

.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-grid article,
.offer-stack article {
  background: var(--surface);
}

.review-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.review-grid article {
  background: var(--surface);
}

.case-close {
  max-width: 920px;
  margin: 2rem 0 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.1rem 1.3rem;
  color: rgba(20, 17, 13, 0.72);
  font-weight: 700;
}

.case-note {
  max-width: 920px;
  margin: 0.75rem 0 0;
  color: rgba(20, 17, 13, 0.6);
  font-size: 0.9rem;
}

/* Scannable emphasis inside the case study */
.case-grid p strong,
.case-close strong {
  color: var(--ink);
  font-weight: 800;
}

.testimonial {
  background: var(--surface-2);
}

.testimonial-inner {
  max-width: 940px;
}

.testimonial blockquote {
  margin: 0;
}

.testimonial blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.7;
  color: var(--copper);
}

.testimonial blockquote p {
  margin: 0 0 1.5rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.42;
  color: var(--ink);
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.testimonial footer span {
  color: rgba(20, 17, 13, 0.64);
  font-weight: 600;
  font-size: 0.95rem;
}

.offer-stack {
  margin-top: 2rem;
}

.offer-extras {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1rem;
  margin-top: 1rem;
}

.bonus-card,
.guarantee-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(50, 34, 20, 0.08);
}

.bonus-card h3,
.guarantee-card h3 {
  max-width: 780px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.14;
}

.bonus-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.bonus-list li {
  display: flex;
  gap: 0.6rem;
  color: rgba(20, 17, 13, 0.72);
}

.bonus-list li::before {
  content: "";
  flex: none;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--copper);
}

.guarantee-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
}

.guarantee-card h3 {
  color: var(--cream);
}

.guarantee-card p {
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.72);
}

.price-frame {
  margin: 1rem 0 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 249, 239, 0.72);
  padding: 1.1rem 1.3rem;
  color: rgba(20, 17, 13, 0.74);
  font-weight: 800;
}

.mechanism-steps article {
  background: var(--ink);
  color: var(--cream);
}

.mechanism-steps h3 {
  color: var(--cream);
}

.mechanism-steps p {
  color: rgba(255, 248, 236, 0.68);
}

.snapshot-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.snapshot-list li {
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.9rem 1rem;
}

.pathway-list,
.objection-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.pathway-list {
  padding: 0;
  list-style: none;
}

.pathway-list li,
.objection-grid article {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.pathway-list span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--kicker);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pathway-list p,
.objection-grid p {
  margin-bottom: 0;
  color: rgba(20, 17, 13, 0.72);
}

.objection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.calculator {
  color: var(--cream);
  padding: 1.25rem;
}

.calculator label {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.1rem;
  color: rgba(255, 248, 236, 0.78);
  font-weight: 700;
}

.calculator output {
  color: var(--cream);
  font-family: "IBM Plex Mono", monospace;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--copper-2);
}

.calculator-result {
  margin-top: 1.4rem;
  border: 1px solid rgba(255, 248, 236, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--panel-2);
}

.calculator-result span {
  color: rgba(255, 248, 236, 0.64);
}

.calculator-result strong {
  display: block;
  color: var(--copper-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 3rem;
  line-height: 1.1;
}

.calculator-result p {
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.74);
}

.department-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.department-grid article {
  border-color: rgba(255, 248, 236, 0.14);
  background: rgba(255, 248, 236, 0.06);
}

.department-grid h3 {
  color: rgba(255, 248, 236, 0.86);
}

.framework-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.framework-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 18px 60px rgba(50, 34, 20, 0.1);
}

.about-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: 0 20px 80px rgba(50, 34, 20, 0.08);
}

.about-portrait {
  margin: 1.75rem 0 0;
}

.about-portrait img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-portrait figcaption {
  margin-top: 0.6rem;
  color: rgba(20, 17, 13, 0.66);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}

.about-copy p {
  color: rgba(20, 17, 13, 0.72);
}

.press-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.press-links a {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.press-links a:hover,
.press-links a:focus-visible {
  border-color: var(--copper);
  color: var(--copper);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 5vw, 5rem);
  background: var(--forest);
  color: var(--cream);
}

.final-cta h2 {
  margin-bottom: 0.6rem;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.72);
}

.final-cta .final-note {
  margin-top: 0.85rem;
  color: rgba(255, 248, 236, 0.86);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1.25rem, 5vw, 5rem);
  background: var(--ink-deep);
  color: rgba(255, 248, 236, 0.7);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  animation: rise 650ms ease both;
}

.hero-panel.reveal {
  animation-delay: 140ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .problem-grid,
  .department-grid,
  .objection-grid,
  .pain-grid,
  .case-grid,
  .offer-stack,
  .review-grid,
  .mechanism-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid article {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  /* TODO: add a mobile-friendly persistent CTA (the desktop header button is hidden here) */
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 0.25rem;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(20, 17, 13, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 248, 236, 0.5);
    padding: 0.65rem;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.nav-active .nav-toggle {
    border-color: rgba(255, 248, 236, 0.28);
    background: rgba(255, 248, 236, 0.08);
  }

  .site-header.is-scrolled .nav-toggle span:not(.sr-only),
  .site-header.nav-active .nav-toggle span:not(.sr-only) {
    background: var(--cream);
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.2rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 248, 236, 0.12);
    border-radius: var(--radius);
    background: rgba(20, 17, 13, 0.96);
    padding: 0.45rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
    padding-top: 7.5rem;
  }

  .hero-panel {
    max-width: none;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .metric-row strong {
    text-align: left;
  }

  .diagnostic-layout,
  .dashboard-layout,
  .split-heading,
  .about-card,
  .why-jane-card,
  .framework,
  .case-layout,
  .outcome-box,
  .offer-extras {
    grid-template-columns: 1fr;
  }

  .diagnostic-details,
  .framework-images {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .problem-grid,
  .department-grid,
  .objection-grid,
  .pain-grid,
  .case-grid,
  .offer-stack,
  .review-grid,
  .mechanism-steps,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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