@import url('./site-generated.css');

:root {
  --color-ink: #0e0f0d;
  --color-surface: #161714;
  --color-paper: #f0ede6;
  --color-paper-muted: rgba(240, 237, 230, .66);
  --color-accent: #c9a56b;
  --color-accent-hover: #e2c592;
  --color-divider: rgba(240, 237, 230, .12);
  --font-sans: Montserrat, 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif: 'Sorts Mill Goudy', Georgia, serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --container-wide: 1240px;
  --container-reading: 760px;
  --radius-sm: 2px;
  --transition-fast: 180ms ease;
  --layer-nav: 200;
  --bp-nav: 1100px;
  --bp-mobile: 920px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-ink); color-scheme: dark; }
body { margin: 0; background: var(--color-ink); color: var(--color-paper); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; text-wrap: wrap; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-accent-hover); }
::selection { background: rgba(201, 165, 107, .28); }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 4px; }
[data-menubtn] { display: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.resource-page [data-menubtn] { background: transparent; font-family: var(--font-sans); }
.site-container { width: min(100% - 96px, var(--container-wide)); margin-inline: auto; }
.button { align-items: center; justify-content: center; }
.text-display, h1 { font-family: var(--font-sans); }
.text-h2, h2 { text-wrap: wrap; }
.text-body, p { text-wrap: wrap; }
.mobile-only-copy { display: none; }
.pricing-comparison-note { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.6fr); gap: 42px; align-items: start; max-width: 1000px; margin: 0 0 44px; padding: 24px 0; border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); }
.pricing-comparison-note__title { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 500; line-height: 1.5; color: var(--color-paper); }
.pricing-comparison-note__title span { width: 22px; height: 1px; flex: none; background: #77906a; }
.pricing-comparison-note p { max-width: 620px; margin: 0; font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--color-paper-muted); }

@media (max-width: 1240px) and (min-width: 1101px) {
  [data-nav="1"] { padding-left: 26px; padding-right: 26px; gap: 18px; }
  [data-navlinks="1"] { gap: 18px; }
  [data-navlinks="1"] a { font-size: 14px; letter-spacing: .06em; }
  [data-mob="hide"] { gap: 14px; }
  [data-mob="hide"] a:last-child { padding: 11px 15px; font-size: 14px; letter-spacing: .1em; }
}

@media (max-width: 1100px) {
  [data-navlinks="1"], [data-mob="hide"] { display: none !important; }
  [data-menubtn] { display: flex !important; }
}

@media (max-width: 920px) {
  :root {
    --mobile-gutter: 20px;
    --mobile-section: 56px;
  }
  section { padding: var(--mobile-section) var(--mobile-gutter) !important; }
  section:first-of-type, #top { padding-top: 132px !important; }
  [data-nav="1"] { padding-left: var(--mobile-gutter) !important; padding-right: var(--mobile-gutter) !important; gap: 14px !important; }
  [data-mob="stack"] { grid-template-columns: 1fr !important; gap: 18px !important; }
  [data-mob="rows"] { grid-template-columns: 1fr !important; gap: 1px !important; }
  [data-mob="rows"] > div { padding: 22px 0 !important; }
  [data-mob="two"] { grid-template-columns: 1fr 1fr !important; }
  [data-mob="wrap"] { flex-wrap: wrap !important; gap: 26px !important; }
  [data-mob="col"] { flex-direction: column !important; align-items: flex-start !important; }
  [data-mob="col"] > div { min-width: 0; max-width: 100% !important; }
  [data-mob-img="1"] { width: 100% !important; }
  h1, .text-display { font-size: clamp(30px, 8.2vw, 36px) !important; line-height: 1.15 !important; }
  h2, .text-h2 { font-size: clamp(24px, 6.5vw, 29px) !important; line-height: 1.25 !important; }
  h3, .text-h3 { font-size: 19px !important; line-height: 1.35 !important; }
  h4, .text-h4 { font-size: 16px !important; line-height: 1.4 !important; }
  p, li, .text-body { font-size: min(var(--authored-size, 1em), 18px); }
  .button { min-height: 46px; padding: 13px 22px !important; white-space: normal; text-align: center; }
  h2 span, p span { white-space: normal !important; }
  footer { padding: 56px var(--mobile-gutter) 28px !important; }
  footer [data-mob="col"] { gap: 36px !important; }
  footer [data-mob="wrap"] { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 46px 22px !important; }
  footer [data-mob="wrap"] > div { gap: 0 !important; padding-top: 18px !important; border-top: 1px solid var(--color-divider); }
  footer [data-mob="wrap"] a { display: block; min-height: 40px; padding: 10px 0 !important; line-height: 1.35 !important; }
  footer > div > div:last-child { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; margin-top: 40px !important; }
  [data-fit] { position: relative; max-width: 100%; overflow: hidden !important; max-height: none !important; cursor: zoom-in; }
  [data-fit]::after { content: "Tap to zoom dashboard"; position: absolute; right: 8px; bottom: 8px; z-index: 4; padding: 7px 9px; border-radius: 2px; background: rgba(14,15,13,.82); color: #f0ede6; font-size: 10px; font-weight: 600; line-height: 1; letter-spacing: .1em; text-transform: uppercase; pointer-events: none; }
  [data-fit-inner="1"] { transform-origin: top left; }
  [data-appnav="1"], [data-conv-stage="1"], [data-cueslot="1"], [data-alt-btn] { display: none !important; }
  [data-convmob="1"], [data-mob="drop"] { display: block !important; }
  [data-mob="conv"], [data-mob="conv"] > div { height: auto !important; min-height: 0 !important; max-height: none !important; overflow: visible !important; }
  [data-r] { animation-duration: .6s !important; }
  img, svg, canvas, video { max-width: 100%; }
  [data-brandpane="1"] { display: none !important; }
  [data-formpane="1"] { width: 100% !important; min-width: 0; padding: 72px var(--mobile-gutter) 48px !important; }
  [data-mobmark="1"] { display: flex !important; }

  /* Homepage: compact the mobile narrative while preserving the desktop rhythm. */
  section:first-of-type > div:has(> [data-fit]) { margin-top: 54px !important; }
  section[data-screen-label="Fragmentation"] { padding-top: 34px !important; }
  section[data-screen-label="Fragmentation"] > [data-mob="conv"] > div:first-child { padding-top: 0 !important; }
  [data-convmob="1"] { margin-top: 22px !important; }
  [data-convmob="1"] .ds-331 { padding: 5px 8px; font-size: 12px; line-height: 1.3; }
  [data-convmob="1"] > div:nth-child(2) { gap: 8px !important; padding: 18px 0 16px !important; }
  [data-convmob="1"] > div:nth-child(3) { border-radius: 6px 6px 0 0 !important; box-shadow: none !important; }
  [data-convmob="1"] > div:nth-child(4) { margin-top: 0 !important; border-top: 1px solid rgba(240,237,230,.1) !important; border-radius: 0 0 6px 6px !important; }
  [data-convmob="1"] > div:nth-child(4) > div:last-child { font-size: 15px !important; line-height: 1.45 !important; }
  [data-mob="drop"] { margin-top: 40px !important; padding-top: 38px !important; }
  [data-mob="drop"] > div:first-child { margin-bottom: 22px !important; gap: 8px !important; }
  [data-mob="drop"] > div:first-child > span:last-child { margin-left: 0 !important; font-size: 10px !important; line-height: 1.45; letter-spacing: .02em; }
  [data-mob="drop"] .mobile-section-heading { font-size: 28px !important; font-weight: 300 !important; line-height: 1.25 !important; letter-spacing: -.015em !important; text-transform: none !important; color: #1a1a17 !important; }
  [data-mob="drop"] .mobile-section-source { font-size: 10px !important; }
  .desktop-only-copy { display: none !important; }
  .mobile-only-copy { display: inline !important; }
  .pricing-comparison-note { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; padding: 20px 0; }
  .pricing-comparison-note__title { font-size: 16px; }
  .pricing-comparison-note p { font-size: 15px !important; line-height: 1.6; }
  [data-mob-even="1"] > div { padding: 22px 0 !important; text-align: left !important; }
  #roles > div:last-child > div:first-child { margin-bottom: 38px !important; }
  #roles h2 { font-size: 30px !important; line-height: 1.2 !important; }
  #roles [data-mob="stack"] > div { padding: 24px 20px !important; }
  #roles [data-mob="stack"] > div > div:first-child { margin-bottom: 12px !important; font-size: 14px !important; }
  #roles h3 { margin-bottom: 10px !important; font-size: 18px !important; }
  #roles [data-mob="stack"] p { font-size: 16px !important; line-height: 1.6 !important; }
  #roles [data-mob="stack"] + div { margin-top: 42px !important; padding-top: 32px !important; }
  section[data-screen-label="Statement"] > div > div:first-child { margin-bottom: 24px !important; font-size: 18px !important; line-height: 1.5 !important; }
  section[data-screen-label="Statement"] blockquote { font-size: 31px !important; line-height: 1.3 !important; }

  /* Keep cards and metrics on one clean left edge. */
  section[data-screen-label="AI hero"] [data-mob="stack"] { margin-top: 54px !important; }
  section[data-screen-label="AI hero"] [data-mob="stack"] > div { padding: 20px 0 !important; border-left: 0 !important; border-top: 1px solid rgba(240,237,230,.14); text-align: left !important; }
  section[data-screen-label="AI hero"] [data-mob="stack"] > div:first-child { border-top: 0; padding-top: 0 !important; }
  section[data-screen-label="Pricing"] [data-mob="stack"] > div,
  section[data-screen-label="Beliefs"] [data-mob="stack"] > div { padding: 22px 0 !important; }

  /* Product charts remain legible at a glance and can be tapped to inspect. */
  section[data-screen-label="AI usage"] > div > p,
  section[data-screen-label="AI financial"] > div > p { margin-bottom: 36px !important; }
  section[data-screen-label="AI usage"] [data-fit] { border: 1px solid #e7e3da; border-radius: 4px; background: #faf9f5; }

  /* Mobile calls to action use the compact About-page treatment. */
  section[data-screen-label$="CTA"] [data-mob="col"],
  section[data-screen-label="CTA"] [data-mob="col"] { gap: 24px !important; }
  section[data-screen-label$="CTA"] h2,
  section[data-screen-label="CTA"] h2 { margin-bottom: 10px !important; font-size: 25px !important; line-height: 1.28 !important; }
  section[data-screen-label$="CTA"] p,
  section[data-screen-label="CTA"] p,
  .ds-309 { max-width: 100% !important; font-size: 15px !important; line-height: 1.55 !important; white-space: normal !important; }
  section[data-screen-label$="CTA"] .ds-064,
  section[data-screen-label="CTA"] .ds-064 { width: 100%; gap: 10px !important; }
  section[data-screen-label$="CTA"] .ds-064 a,
  section[data-screen-label="CTA"] .ds-064 a { min-height: 44px; padding: 12px 18px !important; font-size: 14px !important; }
  #demo .ds-055 a.button { display: inline-flex; min-height: 48px; padding: 13px 22px !important; font-size: 14px !important; }
  [data-mobile-hide="1"] { display: none !important; }

  /* Writing cards look and behave like tappable cards; articles read at phone scale. */
  section[data-screen-label="Article list"] .ds-115 { position: relative; display: block !important; margin-bottom: 14px; padding: 20px 44px 20px 18px !important; border: 1px solid #d4cfc4; border-radius: 4px; background: #faf9f5; }
  section[data-screen-label="Article list"] .ds-115::after { content: "Read guide  →"; position: absolute; right: 16px; bottom: 18px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #87642f; }
  section[data-screen-label="Article list"] .ds-115 > div:first-child { display: flex; gap: 12px; margin-bottom: 14px; }
  section[data-screen-label="Article list"] .ds-258 { margin-bottom: 10px; font-size: 20px !important; line-height: 1.3 !important; }
  section[data-screen-label="Article list"] .ds-239 { padding-bottom: 32px; font-size: 15px !important; line-height: 1.6 !important; }
  section[data-screen-label="Article"] h1 { font-size: 28px !important; line-height: 1.18 !important; }
  section[data-screen-label="Article"] .ds-307 { font-size: 16px !important; line-height: 1.6 !important; }
  section[data-screen-label="Article body"] .ds-300 { margin-bottom: 16px !important; font-size: 16px !important; line-height: 1.68 !important; }
  section[data-screen-label="Article body"] .ds-312 { margin: 34px 0 12px !important; font-size: 22px !important; line-height: 1.35 !important; }

  /* Calculator options remain comfortably tappable without dominating the form. */
  section[data-screen-label="Calculator"] [data-mob="rows"] > div,
  section[data-screen-label="Worth it"] [data-mob="rows"] > div { padding: 24px 18px !important; }
  section[data-screen-label="Calculator"] [data-mob="rows"] > div:first-child,
  section[data-screen-label="Worth it"] [data-mob="rows"] > div:first-child { gap: 26px !important; }
  [data-roi-q] .ds-228,
  [data-roi-q] .ds-229 { margin-bottom: 11px !important; font-size: 13px !important; line-height: 1.35 !important; letter-spacing: .13em !important; }
  [data-roi-opt] { min-height: 42px; padding: 9px 12px !important; font-size: 15px !important; line-height: 1.35 !important; }

  /* Comparison matrix: keep the comparison intact and make horizontal movement explicit. */
  [data-odau-compare="1"] section[data-screen-label="Categories"] { padding-top: 44px !important; }
  [data-odau-compare="1"] section[data-screen-label="Categories"] .ds-316 > .ds-117:first-child { padding-top: 0 !important; }
  [data-odau-compare="1"] section[data-screen-label="Categories"] .ds-117 > div:nth-child(2) { padding-top: 8px; }
  [data-odau-compare="1"] section[data-screen-label="Categories"] .ds-232 { padding-top: 12px; }
  [data-mob-hint="1"] { display: flex !important; font-size: 12px !important; }
  [data-mob-table="1"] { max-width: 100%; overflow-x: auto !important; overflow-y: hidden !important; padding-bottom: 10px; scroll-snap-type: x proximity; scrollbar-color: #c9a56b rgba(240,237,230,.12); }
  [data-mob-table="1"] > div { min-width: 770px !important; }
  [data-mob-table="1"] > div > div { grid-template-columns: 190px repeat(5, 92px) 92px !important; }
  [data-mob-table="1"] > div > div > * { display: block !important; min-width: 0; padding: 12px 10px !important; font-size: 12.5px !important; line-height: 1.4; }
  [data-mob-table="1"] .ds-005 { color: rgba(240,237,230,.8) !important; }
  [data-mob-table="1"] .ds-006 { color: rgba(240,237,230,.86) !important; }
  [data-mob-table="1"] > div > div > :nth-child(7n + 1) { position: sticky; left: 0; z-index: 2; color: rgba(240,237,230,.86) !important; }
  section[data-screen-label="Matrix"] > div > p { margin-bottom: 34px !important; color: rgba(240,237,230,.76) !important; }
  section[data-screen-label="Matrix"] [data-mob-table] + div { margin-top: 28px !important; padding: 20px !important; }
  section[data-screen-label="Matrix"] [data-mob-table] + div > div { margin-bottom: 10px !important; font-size: 17px !important; line-height: 1.35 !important; }
  section[data-screen-label="Matrix"] [data-mob-table] + div > p { font-size: 15px !important; line-height: 1.65 !important; }
}

@media (max-width: 520px) {
  footer [data-mob="wrap"] { grid-template-columns: 1fr !important; gap: 30px !important; }
  [data-mob="two"] { grid-template-columns: 1fr !important; }
}

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

.visual-zoom { position: fixed; inset: 0; z-index: 1000; display: grid; grid-template-rows: auto 1fr; background: rgba(14,15,13,.98); color: #f0ede6; }
.visual-zoom__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border-bottom: 1px solid rgba(240,237,230,.14); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.visual-zoom__close { min-height: 40px; padding: 8px 12px; border: 1px solid rgba(240,237,230,.25); border-radius: 2px; background: transparent; color: #f0ede6; font: inherit; cursor: pointer; }
.visual-zoom__surface { overflow: auto; padding: 18px; background: #0e0f0d; -webkit-overflow-scrolling: touch; }
.visual-zoom__surface > [data-fit-inner] { transform: none !important; transform-origin: top left !important; }

/* Resources hub, reports and interactive tools. These pages use semantic,
   static HTML while retaining the established Odau palette and rhythm. */
.resource-page { --resource-paper: #f6f4ef; --resource-copy: #1a1a17; --resource-muted: #5c574e; --resource-sage: #53634a; }
.resource-page [data-nav="1"] { column-gap: 26px; }
.resource-page [data-r] { opacity: 0; transform: translateY(22px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.resource-page [data-r].is-visible { opacity: 1; transform: none; }
.resource-nav-current { color: var(--color-accent) !important; }
.resource-kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 28px; color: var(--color-accent); font-size: 14px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.resource-kicker::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.resource-hero { position: relative; padding: 176px 48px 112px; overflow: hidden; background: #0e0f0d; }
.resource-hero::after { content: ''; display: none; pointer-events: none; }
.resource-shell { position: relative; z-index: 1; width: min(100%, 1240px); margin-inline: auto; }
.resource-hero h1 { max-width: 970px; margin: 0 0 28px; color: #f0ede6; font-size: clamp(44px, 5.4vw, 74px); font-weight: 300; line-height: 1.08; letter-spacing: -.035em; }
.resource-hero__intro { max-width: 790px; margin: 0; color: rgba(240,237,230,.7); font-size: 20px; font-weight: 300; line-height: 1.75; }
.resource-index { padding: 34px 48px; border-top: 1px solid rgba(240,237,230,.1); border-bottom: 1px solid rgba(240,237,230,.1); background: #161714; }
.resource-index__inner { display: flex; align-items: center; gap: 12px 34px; flex-wrap: wrap; }
.resource-index__label { margin-right: 8px; color: rgba(240,237,230,.42); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.resource-index a { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; color: rgba(240,237,230,.82); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.resource-index a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
.resource-index a:nth-of-type(3)::before { background: var(--resource-sage); }
.resource-section { padding: 110px 48px; background: var(--resource-paper); color: var(--resource-copy); }
.resource-section--dark { background: #0e0f0d; color: #f0ede6; }
.resource-section--sage { background: var(--resource-paper); color: var(--resource-copy); }
.resource-section__head { display: grid; grid-template-columns: minmax(170px,.55fr) minmax(0,1.45fr); gap: 40px; align-items: start; margin-bottom: 54px; }
.resource-section__type { padding-top: 8px; color: #87642f; font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.resource-section--dark .resource-section__type { color: var(--color-accent); }
.resource-section--sage .resource-section__type { color: #53634a; }
.resource-section__head h2 { max-width: 800px; margin: 0 0 16px; color: inherit; font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.18; letter-spacing: -.025em; }
.resource-section__head p { max-width: 720px; margin: 0; color: var(--resource-muted); font-size: 18px; font-weight: 300; line-height: 1.7; }
.resource-section--dark .resource-section__head p { color: rgba(240,237,230,.64); }
.resource-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.resource-card { position: relative; display: flex; flex-direction: column; min-height: 330px; padding: 32px; overflow: hidden; border: 1px solid #ded8cb; border-radius: 4px; background: #fbfaf6; color: var(--resource-copy); transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s ease, box-shadow .35s ease; }
.resource-card:hover { color: var(--resource-copy); transform: translateY(-5px); border-color: rgba(135,100,47,.55); box-shadow: 0 28px 60px -40px rgba(14,15,13,.5); }
.resource-card--featured { grid-column: 1 / -1; min-height: 410px; padding: 42px; background: #151611; border-color: rgba(201,165,107,.28); color: #f0ede6; }
.resource-card--featured:hover { color: #f0ede6; border-color: rgba(201,165,107,.68); }
.resource-card--featured::after { content: ''; position: absolute; width: 440px; height: 440px; right: -150px; bottom: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(201,165,107,.2), rgba(201,165,107,0) 68%); }
.resource-card--tool { border-color: rgba(83,99,74,.28); }
.resource-card__meta { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 16px; margin-bottom: 58px; color: #87642f; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.resource-card--featured .resource-card__meta { color: var(--color-accent); }
.resource-card--tool .resource-card__meta { color: #53634a; }
.resource-card h3 { position: relative; z-index: 1; max-width: 820px; margin: auto 0 14px; color: inherit; font-size: clamp(27px,3vw,42px); font-weight: 300; line-height: 1.2; letter-spacing: -.02em; }
.resource-card:not(.resource-card--featured) h3 { font-size: 27px; }
.resource-card p { position: relative; z-index: 1; max-width: 780px; margin: 0 0 30px; color: #706c63; font-size: 16px; font-weight: 300; line-height: 1.7; }
.resource-card--featured p { color: rgba(240,237,230,.66); font-size: 18px; }
.resource-card__action { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 10px; color: #87642f; font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.resource-card--featured .resource-card__action { color: var(--color-accent); }
.resource-card--tool .resource-card__action { color: #53634a; }
.resource-card__action::after { content: '→'; transition: transform .25s ease; }
.resource-card:hover .resource-card__action::after { transform: translateX(5px); }
.resource-email { padding: 100px 48px; background: #161714; }
.resource-email__inner { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr); gap: 70px; align-items: end; }
.resource-email h2 { max-width: 700px; margin: 0 0 18px; color: #f0ede6; font-size: clamp(34px,4.2vw,56px); font-weight: 300; line-height: 1.15; letter-spacing: -.025em; }
.resource-email p { max-width: 680px; margin: 0; color: rgba(240,237,230,.66); font-size: 17px; font-weight: 300; line-height: 1.7; }
.resource-email__form { display: grid; grid-template-columns: minmax(0,1fr) auto; }
.resource-email__form input { min-width: 0; height: 54px; padding: 0 17px; border: 1px solid rgba(240,237,230,.22); border-right: 0; border-radius: 2px 0 0 2px; background: rgba(14,15,13,.4); color: #f0ede6; font: 300 16px var(--font-sans); }
.resource-email__form button { min-height: 54px; padding: 0 22px; border: 0; border-radius: 0 2px 2px 0; background: var(--color-accent); color: #0e0f0d; font: 600 12px var(--font-sans); letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.resource-email__fine { grid-column: 1 / -1; margin-top: 12px !important; font-size: 13px !important; color: rgba(240,237,230,.48) !important; }
.resource-email__status { min-height: 24px; grid-column: 1 / -1; margin-top: 10px; color: var(--color-accent); font-size: 13px; line-height: 1.5; }

/* Report */
.report-hero { position: relative; padding: 180px 48px 120px; overflow: hidden; background: #0e0f0d; }
.report-hero::before { content: ''; display: none; }
.report-hero__number { margin-bottom: 28px; color: var(--color-accent); font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.report-hero h1 { max-width: 990px; margin: 0 0 30px; color: #f0ede6; font-size: clamp(54px,7vw,94px); font-weight: 300; line-height: 1.02; letter-spacing: -.045em; }
.report-hero__intro { max-width: 840px; margin: 0 0 36px; color: rgba(240,237,230,.7); font-size: 21px; font-weight: 300; line-height: 1.72; }
.report-hero__note { display: inline-flex; align-items: center; gap: 12px; color: rgba(240,237,230,.5); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.report-hero__note::before { content: ''; width: 28px; height: 1px; background: var(--color-accent); }
.report-scene { padding: 118px 48px; background: var(--resource-paper); color: var(--resource-copy); }
.report-scene--dark { background: #11120f; color: #f0ede6; }
.report-scene--sage { background: var(--resource-paper); }
.report-scene__grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(440px,1.22fr); gap: 84px; align-items: start; }
.report-scene__copy { position: sticky; top: 132px; }
.report-scene__label { margin-bottom: 22px; color: #87642f; font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.report-scene--dark .report-scene__label { color: var(--color-accent); }
.report-scene--sage .report-scene__label { color: #53634a; }
.report-scene h2 { max-width: 630px; margin: 0 0 24px; color: inherit; font-size: clamp(34px,4.3vw,58px); font-weight: 300; line-height: 1.12; letter-spacing: -.03em; }
.report-scene__copy p { max-width: 650px; margin: 0 0 18px; color: #666158; font-size: 17px; font-weight: 300; line-height: 1.76; }
.report-scene--dark .report-scene__copy p { color: rgba(240,237,230,.66); }
.report-takeaway { margin-top: 34px !important; padding: 22px 0 0 28px; border-top: 1px solid #d8d1c4; border-left: 2px solid var(--color-accent); color: #272720 !important; font-size: 20px !important; line-height: 1.55 !important; }
.report-scene--dark .report-takeaway { border-color: rgba(240,237,230,.14); border-left-color: var(--color-accent); color: #f0ede6 !important; }
.report-visual { min-width: 0; padding: 34px; border: 1px solid #ddd6c9; border-radius: 5px; background: #fbfaf6; }
.report-scene--dark .report-visual { border-color: rgba(240,237,230,.14); background: #171814; }
.report-source { margin-top: 22px; color: #7b766d; font-size: 11px; line-height: 1.55; }
.report-scene--dark .report-source { color: rgba(240,237,230,.42); }
.report-source a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.report-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.report-stat { display: flex; min-height: 240px; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid #e0d9ce; background: #f4f0e8; }
.report-stat--gold { background: #c7a164; color: #0e0f0d; }
.report-stat__value { font-family: var(--font-serif); font-size: clamp(54px,6vw,84px); line-height: 1; letter-spacing: -.04em; }
.report-stat__label { max-width: 220px; font-size: 14px; font-weight: 500; line-height: 1.5; letter-spacing: .06em; text-transform: uppercase; }
.report-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.report-path { position: relative; min-height: 142px; padding: 22px; border: 1px solid #ddd6c9; background: #f6f2e9; }
.report-path::after { content: '↘'; position: absolute; right: 18px; bottom: 14px; color: #87642f; font-size: 22px; }
.report-path span { display: block; }
.report-path__from { margin-bottom: 28px; color: #777168; font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.report-path__to { color: #272720; font-size: 18px; line-height: 1.35; }
.report-surprise { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 24px; background: #d8d1c4; }
.report-surprise > div { padding: 24px; background: #151611; color: #f0ede6; }
.report-surprise strong { display: block; margin-bottom: 6px; color: var(--color-accent); font-family: var(--font-serif); font-size: 45px; font-weight: 400; }
.report-surprise span { color: rgba(240,237,230,.64); font-size: 13px; line-height: 1.5; }
.report-cost-wheel { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.report-cost { min-height: 146px; padding: 22px; border: 1px solid rgba(240,237,230,.12); background: #1b1c18; }
.report-cost:nth-child(3n+2) { border-color: rgba(113,129,101,.5); }
.report-cost__number { margin-bottom: 20px; color: var(--color-accent); font-family: var(--font-serif); font-size: 27px; }
.report-cost h3 { margin: 0 0 8px; color: #f0ede6; font-size: 18px; font-weight: 400; }
.report-cost p { margin: 0; color: rgba(240,237,230,.55); font-size: 13px; line-height: 1.55; }
.report-framework-note { margin-top: 18px; color: rgba(240,237,230,.45); font-size: 12px; line-height: 1.55; }
.report-bars { display: grid; gap: 19px; }
.report-bar__top { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 8px; color: #4f4b44; font-size: 13px; }
.report-bar__top strong { color: #272720; font-family: var(--font-serif); font-size: 23px; font-weight: 400; }
.report-bar__track { height: 11px; overflow: hidden; background: #ded9cf; }
.report-bar__fill { height: 100%; width: var(--bar); background: #b38b4d; transform-origin: left; animation: reportGrow 1.1s cubic-bezier(.16,1,.3,1) both; }
.report-bar:nth-child(even) .report-bar__fill { background: #718165; }
@keyframes reportGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.report-adoption { display: grid; gap: 12px; }
.report-adoption__row { display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 22px; align-items: center; padding: 21px 0; border-bottom: 1px solid rgba(240,237,230,.12); }
.report-adoption__value { color: var(--color-accent); font-family: var(--font-serif); font-size: 46px; line-height: 1; }
.report-adoption__row span:last-child { color: rgba(240,237,230,.7); font-size: 15px; line-height: 1.5; }
.report-record { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.report-record__item { min-height: 134px; padding: 22px; border: 1px solid #cfd5ca; background: rgba(255,255,255,.38); }
.report-record__item strong { display: block; margin-bottom: 30px; color: #53634a; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.report-record__item span { color: #35362f; font-size: 18px; font-weight: 300; }
.report-record__center { grid-column: 1 / -1; padding: 28px; background: #151611; color: #f0ede6; }
.report-record__center strong { color: var(--color-accent); }
.report-decision { border: 1px solid #d8d2c7; background: #faf9f5; }
.report-decision__question { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; padding: 25px 24px; border-bottom: 1px solid #d8d2c7; }
.report-decision__question span,
.report-decision__result > span { color: #53634a; font-size: 11px; font-style: normal; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.report-decision__question strong { color: #25251f; font-family: var(--font-serif); font-size: 27px; font-weight: 400; line-height: 1.2; }
.report-decision__header,
.report-decision__row { display: grid; grid-template-columns: .65fr .9fr 1.45fr; gap: 18px; padding: 0 24px; }
.report-decision__header { padding-top: 14px; padding-bottom: 10px; color: #918b81; font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.report-decision__row { min-height: 67px; align-items: center; border-top: 1px solid #e7e2d9; }
.report-decision__row strong { color: #53634a; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.report-decision__row span { color: #302f29; font-size: 15px; }
.report-decision__row em { color: #8b857b; font-size: 12px; font-style: normal; line-height: 1.45; }
.report-decision__connector { display: grid; height: 42px; place-items: center; border-top: 1px solid #d8d2c7; }
.report-decision__connector span { position: relative; display: block; width: 1px; height: 26px; background: #b8935a; }
.report-decision__connector span::after { content: ''; position: absolute; left: -4px; bottom: 0; width: 7px; height: 7px; border-right: 1px solid #b8935a; border-bottom: 1px solid #b8935a; transform: rotate(45deg); }
.report-decision__result { padding: 25px 24px 27px; background: #151611; color: #f0ede6; }
.report-decision__result > span { display: block; margin-bottom: 11px; color: #c9a56b; }
.report-decision__result strong { display: block; margin-bottom: 8px; font-size: 20px; font-weight: 400; }
.report-decision__result p { margin: 0; color: rgba(240,237,230,.58); font-size: 13px; line-height: 1.55; }
.report-method { margin-top: 20px; color: #67695f; font-size: 12px; line-height: 1.55; }
.report-check { padding: 110px 48px; background: #0e0f0d; }
.report-check__intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.report-check h2 { max-width: 760px; margin: 0; color: #f0ede6; font-size: clamp(38px,5vw,66px); font-weight: 300; line-height: 1.08; letter-spacing: -.035em; }
.report-check__intro p { margin: 0; color: rgba(240,237,230,.64); font-size: 18px; font-weight: 300; line-height: 1.7; }
.report-check__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.report-check__item { display: grid; grid-template-columns: 26px 1fr; gap: 16px; align-items: start; min-height: 92px; padding: 22px; border: 1px solid rgba(240,237,230,.14); background: #161714; color: rgba(240,237,230,.74); font: 300 16px/1.55 var(--font-sans); text-align: left; cursor: pointer; }
.report-check__item::before { content: ''; width: 20px; height: 20px; margin-top: 2px; border: 1px solid rgba(240,237,230,.3); }
.report-check__item[aria-pressed="true"] { border-color: rgba(113,129,101,.72); background: #1c2119; color: #f0ede6; }
.report-check__item[aria-pressed="true"]::before { content: '✓'; display: grid; place-items: center; border-color: #718165; background: #718165; color: #0e0f0d; font-weight: 600; }
.report-check__result { display: flex; justify-content: space-between; gap: 30px; margin-top: 22px; padding: 24px 0; border-top: 1px solid rgba(240,237,230,.14); }
.report-check__count { color: var(--color-accent); font-size: 13px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.report-check__message { max-width: 650px; color: rgba(240,237,230,.68); font-size: 16px; line-height: 1.6; text-align: right; }
.report-closing { padding: 94px 48px; background: #c4a064; color: #0e0f0d; }
.report-closing h2 { max-width: 980px; margin: 0; font-size: clamp(36px,5vw,66px); font-weight: 300; line-height: 1.12; letter-spacing: -.03em; }
.report-sources { padding: 82px 48px; background: #f6f3ec; color: #272720; }
.report-sources__grid { display: grid; grid-template-columns: minmax(200px,.55fr) minmax(0,1.45fr); gap: 50px; }
.report-sources h2 { margin: 0; font-size: 30px; font-weight: 300; }
.report-sources ol { margin: 0; padding-left: 20px; }
.report-sources li { margin-bottom: 15px; padding-left: 8px; color: #676158; font-size: 14px; line-height: 1.6; }
.report-sources a { color: #5d4727; text-decoration: underline; text-underline-offset: 3px; }
.report-sources__note { margin-top: 28px; padding-top: 22px; border-top: 1px solid #d8d1c4; color: #777168; font-size: 13px; line-height: 1.65; }

/* Implementation calculator */
.implementation-hero { padding: 176px 48px 82px; background: #0e0f0d; }
.implementation-hero h1 { max-width: 880px; margin: 0 0 24px; color: #f0ede6; font-size: clamp(46px,5.8vw,78px); font-weight: 300; line-height: 1.08; letter-spacing: -.035em; }
.implementation-hero p { max-width: 730px; margin: 0; color: rgba(240,237,230,.68); font-size: 19px; font-weight: 300; line-height: 1.72; }
.implementation-section { padding: 80px 48px 112px; background: #f6f3ec; color: #272720; }
.implementation-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(340px,.8fr); gap: 30px; align-items: start; }
.implementation-form { display: grid; gap: 16px; }
.implementation-question { padding: 26px; border: 1px solid #ddd6c9; background: #fbfaf6; }
.implementation-question h2 { margin: 0 0 18px; color: #514d45; font-size: 14px; font-weight: 600; line-height: 1.4; letter-spacing: .15em; text-transform: uppercase; }
.implementation-options { display: flex; gap: 9px; flex-wrap: wrap; }
.implementation-option { min-height: 44px; padding: 10px 14px; border: 1px solid #cfc8bc; border-radius: 2px; background: transparent; color: #514d45; font: 300 15px/1.35 var(--font-sans); cursor: pointer; }
.implementation-option[aria-pressed="true"] { border-color: #1a1a17; background: #1a1a17; color: #f6f3ec; }
.implementation-results { position: sticky; top: 124px; padding: 30px; border-radius: 4px; background: #151611; color: #f0ede6; }
.implementation-results__progress { margin-bottom: 30px; color: #718165; font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.implementation-result { padding: 22px 0; border-top: 1px solid rgba(240,237,230,.12); }
.implementation-result:first-of-type { border-top: 0; padding-top: 0; }
.implementation-result__value { margin-bottom: 8px; color: var(--color-accent); font-family: var(--font-serif); font-size: 48px; line-height: 1; }
.implementation-result__unit { color: rgba(240,237,230,.72); font-size: 15px; line-height: 1.5; }
.implementation-results__note { margin: 20px 0 0; padding-top: 20px; border-top: 1px solid rgba(240,237,230,.12); color: rgba(240,237,230,.58); font-size: 13px; line-height: 1.65; }
.implementation-disclaimer { max-width: 780px; margin: 34px 0 0; color: #777168; font-size: 13px; line-height: 1.7; }

@media (min-width: 1101px) {
  .resource-page [data-navlinks="1"] { position: static; left: auto; transform: none; margin-left: auto; gap: 24px; }
  .resource-page [data-navlinks="1"] a { font-size: 13px; letter-spacing: .09em; }
  .resource-page [data-mob="hide"] { gap: 18px; }
}

@media (max-width: 920px) {
  .resource-hero, .report-hero, .implementation-hero { padding: 138px 20px 64px !important; }
  .resource-hero h1 { font-size: 36px !important; line-height: 1.14 !important; }
  .resource-hero__intro, .report-hero__intro, .implementation-hero p { font-size: 16px !important; line-height: 1.65 !important; }
  .resource-index { padding: 18px 20px !important; }
  .resource-index__inner { gap: 4px 20px; }
  .resource-index__label { width: 100%; margin: 0 0 4px; }
  .resource-section, .resource-email, .report-scene, .report-check, .report-closing, .report-sources, .implementation-section { padding: 58px 20px !important; }
  .resource-section__head, .resource-email__inner, .report-scene__grid, .report-check__intro, .report-sources__grid, .implementation-grid { grid-template-columns: 1fr; gap: 26px; }
  .resource-section__head { margin-bottom: 34px; }
  .resource-section__type { padding-top: 0; }
  .resource-section__head h2 { font-size: 30px !important; }
  .resource-section__head p { font-size: 16px !important; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card, .resource-card--featured { grid-column: auto; min-height: 0; padding: 24px; }
  .resource-card__meta { margin-bottom: 44px; }
  .resource-card h3, .resource-card:not(.resource-card--featured) h3 { font-size: 24px !important; }
  .resource-card p, .resource-card--featured p { font-size: 15px !important; line-height: 1.62 !important; }
  .resource-email__inner { gap: 30px; }
  .resource-email h2 { font-size: 31px !important; }
  .resource-email__form { grid-template-columns: 1fr; gap: 9px; }
  .resource-email__form input { border-right: 1px solid rgba(240,237,230,.22); border-radius: 2px; }
  .resource-email__form button { border-radius: 2px; }
  .report-hero h1 { font-size: 46px !important; }
  .report-hero__intro { margin-bottom: 28px; }
  .report-scene__copy { position: static; }
  .report-scene h2 { font-size: 32px !important; }
  .report-scene__copy p { font-size: 16px !important; line-height: 1.68 !important; }
  .report-takeaway { padding-left: 18px; font-size: 18px !important; }
  .report-visual { padding: 20px; }
  .report-pair, .report-paths, .report-cost-wheel, .report-record, .report-check__grid { grid-template-columns: 1fr; }
  .report-stat { min-height: 180px; }
  .report-surprise { grid-template-columns: 1fr; }
  .report-record__center { grid-column: auto; }
  .report-decision__question { display: block; }
  .report-decision__question span { display: block; margin-bottom: 9px; }
  .report-decision__question strong { font-size: 23px; }
  .report-decision__header { display: none; }
  .report-decision__row { grid-template-columns: .8fr 1.2fr; gap: 8px 14px; min-height: 0; padding-top: 16px; padding-bottom: 16px; }
  .report-decision__row em { grid-column: 1 / -1; padding-top: 7px; border-top: 1px solid #ebe6dd; }
  .report-decision__row em::before { content: 'Missing: '; color: #87642f; font-weight: 600; }
  .report-check__intro { margin-bottom: 34px; }
  .report-check h2, .report-closing h2 { font-size: 34px !important; }
  .report-check__result { flex-direction: column; gap: 12px; }
  .report-check__message { text-align: left; }
  .implementation-hero h1 { font-size: 39px !important; }
  .implementation-results { position: static; order: -1; }
  .implementation-question { padding: 20px; }
  .implementation-result__value { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .resource-page [data-r] { opacity: 1; transform: none; transition: none; }
  .report-bar__fill { animation: none; }
}

/* Resources consistency pass.
   These values deliberately reuse the established Odau page scale instead of
   creating a separate visual system for Resources. Sage remains an accent. */
.resource-page {
  --resource-paper: #f6f4ef;
  --resource-copy: #1a1a17;
  --resource-muted: #5c574e;
  --resource-sage: #53634a;
}
.resource-hero,
.report-hero,
.implementation-hero {
  padding: 190px 48px 60px;
  background: #0e0f0d;
}
.resource-hero::after,
.report-hero::before {
  display: none;
}
.resource-hero h1,
.report-hero h1,
.implementation-hero h1 {
  max-width: 1000px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -.025em;
}
.resource-hero__intro,
.report-hero__intro,
.implementation-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}
.report-hero__intro { max-width: 780px; margin-bottom: 28px; }
.resource-kicker { margin-bottom: 26px; }
.resource-index { padding: 18px 48px; }
.resource-section,
.report-scene,
.report-check,
.report-closing,
.report-sources,
.implementation-section,
.resource-email {
  padding: 120px 48px;
}
.resource-section--sage,
.report-scene--sage,
.report-sources,
.implementation-section {
  background: #f6f4ef;
}
.resource-section__head {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 44px;
}
.resource-section__head h2,
.resource-email h2,
.report-scene h2,
.report-check h2,
.report-closing h2 {
  max-width: 1000px;
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.resource-section__head p,
.resource-email p,
.report-check__intro p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}
.resource-section--sage .resource-section__type { color: var(--resource-sage); }
.resource-grid { gap: 16px; }
.resource-card,
.resource-card--featured {
  min-height: 0;
  padding: 34px;
  border-color: #e0dbd1;
  border-radius: 3px;
  background: #faf9f5;
  color: #1a1a17;
}
.resource-card--featured {
  padding: 38px;
  background: #161714;
  color: #f0ede6;
}
.resource-card--featured::after { display: none; }
.resource-section--dark .resource-card {
  border-color: rgba(240,237,230,.14);
  background: #161714;
  color: #f0ede6;
}
.resource-section--dark .resource-card__meta,
.resource-section--dark .resource-card__action { color: var(--color-accent); }
.resource-card__meta { margin-bottom: 34px; }
.resource-card h3,
.resource-card:not(.resource-card--featured) h3 {
  margin: 0 0 13px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.006em;
}
.resource-card--featured h3 { font-size: 30px; }
.resource-card p,
.resource-card--featured p {
  margin: 0 0 26px;
  color: #5c574e;
  font-size: 17px;
  line-height: 1.72;
}
.resource-section--dark .resource-card p,
.resource-card--featured p { color: rgba(240,237,230,.66); }
.resource-card--tool { border-color: rgba(83,99,74,.34); }
.resource-card--tool .resource-card__meta,
.resource-card--tool .resource-card__action { color: var(--resource-sage); }
.resource-email { background: #161714; }
.resource-email__inner { gap: 60px; }
.report-scene__grid { gap: 64px; }
.report-scene h2 { max-width: 630px; }
.report-scene__copy p { font-size: 18px; line-height: 1.75; }
.report-scene--sage .report-scene__label,
.report-record__item strong { color: var(--resource-sage); }
.report-record__item {
  border-color: #d8d2c7;
  background: #faf9f5;
}
.report-check__intro { margin-bottom: 44px; }
.report-closing {
  background: #0e0f0d;
  color: #f0ede6;
}
.report-closing h2 {
  margin: 0;
  background-image: linear-gradient(100deg,#b8935a,#ebd5a9 42%,#c9a56b 78%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.report-sources h2 { font-size: 28px; line-height: 1.3; }
.implementation-grid { gap: 44px; }
.implementation-results__progress { color: #9aad91; }

/* The Resources hub follows the same editorial layout as the original Writing
   page: eyebrow, heading, short introduction, then restrained content rows. */
.resource-section__head {
  display: block;
  margin-bottom: 40px;
}
.resource-section__type {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: .24em;
}
.resource-section__type::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}
.resource-section__head h2 { margin-bottom: 16px; }
.resource-section__head p { max-width: 680px; }
.resource-grid {
  display: block;
  border-top: 1px solid #e7e3da;
}
.resource-section--dark .resource-grid { border-top-color: rgba(240,237,230,.1); }
.resource-card,
.resource-card--featured {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr) auto;
  grid-template-areas:
    'meta title action'
    '. body action';
  gap: 10px 44px;
  align-items: start;
  padding: 38px 0;
  border: 0;
  border-bottom: 1px solid #e7e3da;
  border-radius: 0;
  background: transparent;
  color: #1a1a17;
  box-shadow: none;
}
.resource-card:hover,
.resource-card--featured:hover {
  transform: none;
  border-color: #e7e3da;
  box-shadow: none;
  opacity: .72;
}
.resource-section--dark .resource-card {
  border: 0;
  border-bottom: 1px solid rgba(240,237,230,.1);
  background: transparent;
  color: #f0ede6;
}
.resource-card__meta {
  grid-area: meta;
  display: grid;
  justify-content: start;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.resource-card h3,
.resource-card:not(.resource-card--featured) h3,
.resource-card--featured h3 {
  grid-area: title;
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.006em;
}
.resource-card p,
.resource-card--featured p {
  grid-area: body;
  max-width: 760px;
  margin: 0;
  color: #5c574e;
  font-size: 18px;
  line-height: 1.75;
}
.resource-section--dark .resource-card p { color: rgba(240,237,230,.66); }
.resource-card__action {
  grid-area: action;
  align-self: center;
  min-width: 136px;
  justify-content: flex-end;
  white-space: nowrap;
}
.resource-card--featured .resource-card__meta,
.resource-card--featured .resource-card__action { color: #87642f; }

@media (max-width: 920px) {
  .resource-hero,
  .report-hero,
  .implementation-hero { padding: 138px 20px 60px !important; }
  .resource-hero h1,
  .report-hero h1,
  .implementation-hero h1 { font-size: 32px !important; line-height: 1.15 !important; }
  .resource-hero__intro,
  .report-hero__intro,
  .implementation-hero p { font-size: 16px !important; line-height: 1.65 !important; }
  .resource-index { padding: 16px 20px !important; }
  .resource-section,
  .resource-email,
  .report-scene,
  .report-check,
  .report-closing,
  .report-sources,
  .implementation-section { padding: 74px 20px !important; }
  .resource-section__head { margin-bottom: 30px; }
  .resource-section__head h2,
  .resource-email h2,
  .report-scene h2,
  .report-check h2,
  .report-closing h2 { font-size: 24px !important; line-height: 1.3 !important; }
  .resource-section__head p,
  .resource-email p,
  .report-scene__copy p,
  .report-check__intro p { font-size: 16px !important; line-height: 1.68 !important; }
  .resource-card,
  .resource-card--featured { padding: 22px; }
  .resource-card__meta { margin-bottom: 28px; }
  .resource-card h3,
  .resource-card:not(.resource-card--featured) h3 { font-size: 20px !important; line-height: 1.3 !important; }
  .resource-card--featured h3 { font-size: 24px !important; }
  .resource-card p,
  .resource-card--featured p { font-size: 15px !important; line-height: 1.62 !important; }
  .report-visual { padding: 16px; }
  .report-takeaway { font-size: 17px !important; }
  .report-sources h2 { font-size: 24px; }
  .implementation-grid { gap: 26px; }
  .resource-section__head { margin-bottom: 30px; }
  .resource-section__type { margin-bottom: 18px; }
  .resource-grid,
  .resource-section--dark .resource-grid { border-top: 0; }
  .resource-card,
  .resource-card--featured {
    display: block;
    margin-bottom: 14px;
    padding: 20px;
    border: 1px solid #d4cfc4;
    border-radius: 4px;
    background: #faf9f5;
  }
  .resource-section--dark .resource-card {
    border: 1px solid rgba(240,237,230,.14);
    background: #161714;
  }
  .resource-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
  }
  .resource-card h3,
  .resource-card:not(.resource-card--featured) h3,
  .resource-card--featured h3 { margin-bottom: 10px; }
  .resource-card p,
  .resource-card--featured p { margin-bottom: 20px; }
  .resource-card__action { justify-content: flex-start; white-space: normal; }
}

/* Distinct Resources layouts, expressed with the established Odau system. */
#reports .resource-grid { border-top: 0; }
#reports .resource-card--featured {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(260px,.85fr);
  grid-template-areas:
    'meta signal'
    'title signal'
    'body signal'
    'action signal';
  gap: 0 56px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(240,237,230,.14);
  border-radius: 4px;
  background: #161714;
  color: #f0ede6;
}
#reports .resource-card--featured:hover {
  border-color: rgba(201,165,107,.42);
  opacity: 1;
}
#reports .resource-card__meta { margin-bottom: 48px; color: #c9a56b; }
#reports .resource-card--featured h3 { margin-bottom: 14px; font-size: 30px; }
#reports .resource-card--featured p { margin-bottom: 28px; color: rgba(240,237,230,.66); }
#reports .resource-card--featured .resource-card__action { justify-self: start; color: #c9a56b; }
.resource-report-signal {
  grid-area: signal;
  align-self: stretch;
  display: grid;
  grid-template-rows: repeat(3,1fr);
  min-height: 250px;
  border-left: 1px solid rgba(240,237,230,.12);
}
.resource-report-signal span {
  display: grid;
  grid-template-columns: 92px minmax(0,1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(240,237,230,.12);
  color: rgba(240,237,230,.7);
}
.resource-report-signal span:last-child { border-bottom: 0; }
.resource-report-signal strong { color: #c9a56b; font-family: var(--font-serif); font-size: 34px; font-weight: 400; line-height: 1; }
.resource-report-signal span:last-child strong { color: #9aad91; }
.resource-report-signal small { color: rgba(240,237,230,.6); font-size: 10px; font-weight: 600; line-height: 1.45; letter-spacing: .1em; text-transform: uppercase; }

#guides .resource-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0;
  border-top: 1px solid rgba(240,237,230,.1);
}
#guides .resource-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 38px 38px 38px 0;
  border: 0;
  border-bottom: 1px solid rgba(240,237,230,.1);
  border-radius: 0;
  background: transparent;
}
#guides .resource-card:nth-child(even) {
  padding-right: 0;
  padding-left: 38px;
  border-left: 1px solid rgba(240,237,230,.1);
}
#guides .resource-card__meta { display: flex; justify-content: space-between; margin-bottom: 52px; }
#guides .resource-card h3 { margin: auto 0 13px; }
#guides .resource-card p { margin-bottom: 26px; }
#guides .resource-card__action { align-self: flex-start; justify-content: flex-start; color: #c9a56b; }

#tools .resource-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  border-top: 0;
}
#tools .resource-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px;
  border: 1px solid #d9d4ca;
  border-top: 2px solid #53634a;
  border-radius: 3px;
  background: #faf9f5;
}
#tools .resource-card__meta { display: flex; justify-content: space-between; margin-bottom: 46px; }
#tools .resource-card h3 { margin: auto 0 13px; }
#tools .resource-card p { margin-bottom: 26px; }
#tools .resource-card__action { align-self: flex-start; justify-content: flex-start; color: #53634a; }

@media (max-width: 920px) {
  #reports .resource-card--featured,
  #guides .resource-card,
  #guides .resource-card:nth-child(even),
  #tools .resource-card {
    display: block;
    min-height: 0;
    margin-bottom: 14px;
    padding: 22px;
  }
  #reports .resource-card__meta,
  #guides .resource-card__meta,
  #tools .resource-card__meta { margin-bottom: 28px; }
  #reports .resource-card--featured h3 { font-size: 24px; }
  #reports .resource-card--featured p,
  #guides .resource-card p,
  #tools .resource-card p { margin-bottom: 20px; }
  .resource-report-signal { display: none; }
  #guides .resource-grid,
  #tools .resource-grid { display: block; border-top: 0; }
  #guides .resource-card,
  #guides .resource-card:nth-child(even) {
    border: 1px solid rgba(240,237,230,.14);
    background: #161714;
  }
}

/* Shared visual-report language. */
.report-progress { position: fixed; inset: 0 0 auto; z-index: 260; height: 2px; background: rgba(240,237,230,.08); }
.report-progress span { display: block; width: 0; height: 100%; background: #c9a56b; }
.report-return { position: fixed; z-index: 92; left: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 0 15px; border: 1px solid rgba(240,237,230,.18); border-radius: 2px; background: rgba(14,15,13,.94); color: #f0ede6; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; box-shadow: 0 8px 24px rgba(14,15,13,.16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.report-return span { color: #c9a56b; font-size: 16px; transition: transform .2s ease; }
.report-return:hover { color: #fff; }
.report-return:hover span { transform: translateX(-2px); }
.report-return:focus-visible { outline: 2px solid #c9a56b; outline-offset: 3px; }
.report-back { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; color: rgba(240,237,230,.62); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.report-back::before { content: '←'; color: #c9a56b; }
.report-back:hover { color: #f0ede6; }
.report-rail { position: fixed; z-index: 90; left: 18px; top: 50%; display: grid; gap: 11px; transform: translateY(-50%); }
.report-rail a { width: 24px; height: 2px; overflow: hidden; background: rgba(201,165,107,.35); color: transparent; transition: width .25s ease, background .25s ease; }
.report-rail a:hover,
.report-rail a:focus { width: 38px; background: #c9a56b; }
.report-sixty { padding: 0 48px 84px; background: #0e0f0d; color: #f0ede6; }
.report-sixty__label { margin-bottom: 18px; color: rgba(240,237,230,.46); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.report-sixty__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; background: rgba(240,237,230,.12); }
.report-sixty__item { min-height: 210px; padding: 24px; background: #161714; }
.report-sixty__value { margin-bottom: 28px; color: #c9a56b; font-family: var(--font-serif); font-size: clamp(42px,4.8vw,68px); line-height: 1; letter-spacing: -.035em; }
.report-sixty__name { min-height: 44px; color: #f0ede6; font-size: 14px; font-weight: 500; line-height: 1.5; }
.report-sixty__delta { margin-top: 12px; color: rgba(240,237,230,.48); font-size: 11px; line-height: 1.45; }
.report-sixty__source { margin-top: 5px; color: rgba(240,237,230,.36); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.report-contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #d8d1c4; }
.report-contrast > div { min-height: 230px; padding: 28px; background: #faf9f5; }
.report-contrast strong { display: block; margin-bottom: 24px; color: #87642f; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.report-contrast p { margin: 0; color: #4f4b44; font-size: 17px; font-weight: 300; line-height: 1.7; }
.report-budget { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; counter-reset: budget; }
.report-budget__item { min-height: 150px; padding: 22px; border: 1px solid #ddd6c9; background: #faf9f5; counter-increment: budget; }
.report-budget__item::before { content: '0' counter(budget); display: block; margin-bottom: 22px; color: #87642f; font-family: var(--font-serif); font-size: 25px; }
.report-budget__item h3 { margin: 0 0 7px; color: #1a1a17; font-size: 18px; font-weight: 400; }
.report-budget__item p { margin: 0; color: #686258; font-size: 13px; line-height: 1.55; }
.report-risk-table { display: grid; border-top: 1px solid #d8d1c4; }
.report-risk-row { display: grid; grid-template-columns: .72fr 1.15fr 1.13fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid #d8d1c4; }
.report-risk-row strong { color: #1a1a17; font-size: 13px; line-height: 1.45; }
.report-risk-row span { color: #686258; font-size: 13px; line-height: 1.5; }
.report-patterns { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; counter-reset: pattern; }
.report-pattern { min-height: 205px; padding: 24px; border: 1px solid #ddd6c9; background: #faf9f5; counter-increment: pattern; }
.report-pattern::before { content: counter(pattern, decimal-leading-zero); display: block; margin-bottom: 26px; color: #87642f; font-family: var(--font-serif); font-size: 28px; }
.report-pattern--field { border-color: rgba(201,165,107,.62); background: #161714; color: #f0ede6; }
.report-pattern--field::before { color: #c9a56b; }
.report-pattern h3 { margin: 0 0 8px; color: inherit; font-size: 18px; font-weight: 400; }
.report-pattern p { margin: 0 0 14px; color: #686258; font-size: 13px; line-height: 1.58; }
.report-pattern--field p { color: rgba(240,237,230,.64); }
.report-pattern a { color: #87642f; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.report-pattern--field a { color: #c9a56b; }
.report-traits { display: grid; gap: 1px; background: rgba(240,237,230,.12); }
.report-trait { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 23px; background: #161714; }
.report-trait strong { color: #c9a56b; font-family: var(--font-serif); font-size: 30px; font-weight: 400; }
.report-trait span { color: rgba(240,237,230,.72); font-size: 15px; line-height: 1.55; }
.report-functions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.report-function { min-height: 190px; padding: 24px; border: 1px solid #ddd6c9; background: #faf9f5; }
.report-function__share { margin-bottom: 28px; color: #87642f; font-family: var(--font-serif); font-size: 35px; }
.report-function h3 { margin: 0 0 8px; color: #1a1a17; font-size: 19px; font-weight: 400; }
.report-function p { margin: 0; color: #686258; font-size: 13px; line-height: 1.55; }
.report-value-metrics { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 1px; background: rgba(240,237,230,.12); }
.report-value-metric { min-height: 145px; padding: 20px; background: #161714; }
.report-value-metric strong { display: block; margin-bottom: 30px; color: #c9a56b; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.report-value-metric span { color: rgba(240,237,230,.68); font-size: 13px; line-height: 1.5; }
.report-equation { padding: 32px; border: 1px solid rgba(240,237,230,.14); background: #161714; color: #f0ede6; text-align: center; }
.report-equation__top { color: #c9a56b; font-family: var(--font-serif); font-size: clamp(28px,3.2vw,42px); line-height: 1.25; }
.report-equation__line { height: 1px; margin: 22px auto; max-width: 620px; background: rgba(240,237,230,.2); }
.report-equation__bottom { color: rgba(240,237,230,.72); font-size: 15px; line-height: 1.6; }

/* Shared interactive-check language. */
.resource-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 34px; color: rgba(240,237,230,.44); font: 500 11px/1.5 var(--font-sans); letter-spacing: .08em; text-transform: uppercase; }
.resource-breadcrumb a { color: #c9a56b; }
.resource-breadcrumb a:hover { color: #e2c592; }
.resource-breadcrumb > span:last-child { color: rgba(240,237,230,.68); }
.check-hero { padding: 190px 48px 70px; background: #0e0f0d; }
.check-hero h1 { max-width: 900px; margin: 0 0 22px; color: #f0ede6; font-size: clamp(34px,4.2vw,58px); font-weight: 300; line-height: 1.16; letter-spacing: -.025em; }
.check-hero p { max-width: 720px; margin: 0; color: rgba(240,237,230,.68); font-size: 18px; font-weight: 300; line-height: 1.75; }
.check-section { padding: 80px 48px 120px; background: #f6f4ef; color: #1a1a17; }
.check-shell { max-width: 980px; margin: 0 auto; }
.check-privacy { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: #53634a; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.check-privacy::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #53634a; }
.check-instruction { max-width: 760px; margin: 0 0 24px; color: #5c574e; font-size: 13px; line-height: 1.6; }
.check-progress { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; margin-bottom: 24px; }
.check-progress__track { height: 3px; background: #dfdad0; }
.check-progress__fill { width: 0; height: 100%; background: #b8935a; transition: width .3s ease; }
.check-progress__text { color: #6d675e; font-size: 12px; }
.check-questions { max-width: 760px; overflow: hidden; }
.check-question { min-height: 330px; padding: 46px; border: 1px solid #d9d4ca; background: #faf9f5; }
.check-question[hidden] { display: none; }
.check-question.is-entering-next { animation: check-enter-next .26s ease both; }
.check-question.is-entering-back { animation: check-enter-back .26s ease both; }
.check-question__meta { margin-bottom: 13px; color: #87642f; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.check-question h2 { max-width: 620px; margin: 0 0 34px; color: #1a1a17; font-size: 26px; font-weight: 300; line-height: 1.42; }
.check-options { display: flex; gap: 8px; flex-wrap: wrap; }
.check-option { min-width: 132px; min-height: 50px; padding: 12px 18px; border: 1px solid #cfc8bc; border-radius: 2px; background: transparent; color: #514d45; font: 400 14px/1.3 var(--font-sans); cursor: pointer; }
.check-option[aria-pressed='true'] { border-color: #1a1a17; background: #1a1a17; color: #f6f4ef; }
[data-check-mode='portfolio'] .check-options { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
[data-check-mode='portfolio'] .check-option { min-width: 0; }
.check-actions { display: flex; max-width: 760px; justify-content: flex-start; gap: 18px; align-items: center; margin-top: 20px; }
.check-back { min-height: 42px; padding: 10px 0; border: 0; background: transparent; color: #87642f; font: 600 11px/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.check-back::before { content: '←'; margin-right: 8px; }
.check-back[hidden],
.check-submit { display: none; }
.check-submit,
.check-restart { min-height: 48px; padding: 13px 20px; border: 0; border-radius: 2px; background: #b8935a; color: #0e0f0d; font: 600 12px/1 var(--font-sans); letter-spacing: .13em; text-transform: uppercase; cursor: pointer; }
.check-submit:disabled { cursor: not-allowed; opacity: .42; }
.check-restart { border: 1px solid rgba(240,237,230,.2); background: transparent; color: #f0ede6; }
.check-help { color: #777168; font-size: 13px; line-height: 1.55; }
.check-results { margin-top: 54px; padding: 44px; background: #0e0f0d; color: #f0ede6; }
.check-results[hidden] { display: none; }
.check-results__label { margin-bottom: 16px; color: #c9a56b; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.check-results h2 { max-width: 780px; margin: 0 0 16px; font-size: clamp(28px,3.2vw,42px); font-weight: 300; line-height: 1.28; }
.check-results__intro { max-width: 720px; margin: 0 0 34px; color: rgba(240,237,230,.66); font-size: 16px; line-height: 1.7; }
.check-overall { display: grid; grid-template-columns: 190px minmax(0,1fr); gap: 28px; align-items: center; margin: 0 0 34px; padding: 26px; border: 1px solid rgba(240,237,230,.14); background: #161714; }
.check-overall__label { margin-bottom: 10px; color: #c9a56b; font-size: 14px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.check-overall__number { color: #f0ede6; font-size: 68px; font-weight: 300; line-height: .95; letter-spacing: -.04em; }
.check-overall__number small { margin-left: 5px; color: rgba(240,237,230,.48); font-size: 16px; font-weight: 400; letter-spacing: 0; }
.check-overall__summary { margin-bottom: 15px; color: #f0ede6; font-size: 20px; font-weight: 400; line-height: 1.4; }
.check-overall__track { height: 4px; margin-bottom: 14px; overflow: hidden; background: rgba(240,237,230,.12); }
.check-overall__fill { width: 0; height: 100%; background: #8fa083; transition: width .45s ease; }
.check-overall__method { color: rgba(240,237,230,.58); font-size: 14px; line-height: 1.6; }
.check-result-grid { display: grid; gap: 8px; }
.check-result-item { display: grid; grid-template-columns: 110px minmax(0,1fr) auto; gap: 20px; align-items: start; padding: 20px; border: 1px solid rgba(240,237,230,.12); background: #161714; }
.check-result-item__state { color: #c9a56b; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.check-result-item[data-state='clear'] .check-result-item__state { color: #9aad91; }
.check-result-item h3 { margin: 0 0 7px; color: #f0ede6; font-size: 16px; font-weight: 400; }
.check-result-item p { margin: 0; color: rgba(240,237,230,.58); font-size: 13px; line-height: 1.55; }
.check-result-item a { color: #c9a56b; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.check-results__footer { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(240,237,230,.12); }
.check-results__footer p { margin: 0; color: rgba(240,237,230,.56); font-size: 13px; line-height: 1.6; }
.check-email { display: grid; grid-template-columns: minmax(0,.8fr) minmax(300px,1.2fr); gap: 28px; align-items: end; margin-top: 30px; padding: 26px; border: 1px solid rgba(240,237,230,.12); background: #161714; }
.check-email strong { display: block; margin-bottom: 8px; color: #f0ede6; font-size: 17px; font-weight: 400; }
.check-email p { margin: 0; color: rgba(240,237,230,.56); font-size: 13px; line-height: 1.6; }
.check-email form { display: grid; grid-template-columns: minmax(0,1fr) auto; }
.check-email input { min-width: 0; min-height: 46px; padding: 11px 14px; border: 1px solid rgba(240,237,230,.22); border-right: 0; border-radius: 0; background: transparent; color: #f0ede6; font: 300 14px/1.3 var(--font-sans); }
.check-email button { min-height: 46px; padding: 11px 16px; border: 0; background: #b8935a; color: #0e0f0d; font: 600 11px/1 var(--font-sans); letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.check-email .resource-email__status { grid-column: 1 / -1; margin-top: 8px; }
.is-showing-results .check-privacy,
.is-showing-results .check-instruction,
.is-showing-results .check-progress,
.is-showing-results .check-questions,
.is-showing-results .check-actions { display: none; }
.is-showing-results .check-results { margin-top: 0; }

@keyframes check-enter-next {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes check-enter-back {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1100px) { .report-rail { display: none; } }
@media (max-width: 920px) {
  .report-return { left: 14px; bottom: 14px; min-height: 38px; padding: 0 12px; font-size: 10px; }
  .report-sixty { padding: 0 20px 58px !important; }
  .report-sixty__grid { grid-template-columns: 1fr 1fr; }
  .report-sixty__item { min-height: 170px; padding: 20px; }
  .report-sixty__value { font-size: 42px; }
  .report-contrast,
  .report-budget,
  .report-patterns,
  .report-functions { grid-template-columns: 1fr; }
  .report-risk-row { grid-template-columns: 1fr; gap: 7px; }
  .report-risk-row strong { color: #87642f; }
  .report-value-metrics { grid-template-columns: 1fr; }
  .report-value-metric { min-height: 0; }
  .report-trait { grid-template-columns: 42px 1fr; gap: 14px; }
  .check-hero { padding: 138px 20px 60px !important; }
  .check-hero h1 { font-size: 32px !important; line-height: 1.15 !important; }
  .check-hero p { font-size: 16px; line-height: 1.65; }
  .check-section { padding: 58px 20px 74px !important; }
  .check-question { min-height: 360px; padding: 28px 22px; }
  .check-question h2 { margin-bottom: 28px; font-size: 22px !important; line-height: 1.4 !important; }
  .check-option { flex: 1; min-width: 82px; }
  [data-check-mode='portfolio'] .check-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .check-results__footer { flex-direction: column; align-items: stretch; }
  .check-actions { align-items: center; }
  .check-results { margin-inline: -20px; padding: 40px 20px; }
  .check-results h2 { font-size: 24px !important; }
  .check-overall { grid-template-columns: 1fr; gap: 20px; padding: 22px; }
  .check-overall__number { font-size: 58px; }
  .check-result-item { grid-template-columns: 1fr; gap: 9px; }
  .check-result-item a { white-space: normal; }
  .check-email { grid-template-columns: 1fr; padding: 20px; }
  .check-email form { grid-template-columns: 1fr; gap: 8px; }
  .check-email input { border-right: 1px solid rgba(240,237,230,.22); }
}

/* Practical guide system: compact reading rhythm and visuals that explain the method. */
.guide-page section[data-screen-label="Article"] { padding: 168px 48px 42px; }
.guide-page section[data-screen-label="Article"] .ds-352 { width: 100%; max-width: 1120px; margin: 0 auto; }
.guide-page section[data-screen-label="Article"] h1 { max-width: 1040px; font-size: clamp(44px,4.5vw,68px); line-height: 1.12; }
.guide-page section[data-screen-label="Article"] .ds-307 { max-width: 980px; font-size: 19px; line-height: 1.68; }
.guide-page section[data-screen-label="Article body"] { padding: 28px 48px 112px; }
.guide-page section[data-screen-label="Article body"] > .ds-316 { max-width: 1000px; margin: 0 auto; }
.guide-page section[data-screen-label="Article body"] .ds-300 { max-width: 860px; margin: 0 0 18px; color: rgba(240,237,230,.62); font-size: 17px; line-height: 1.72; }
.guide-page section[data-screen-label="Article body"] .ds-312 { max-width: 900px; margin: 58px 0 18px; padding-top: 30px; border-top: 1px solid rgba(240,237,230,.12); color: #f0ede6; font-size: clamp(25px,2.5vw,34px); font-weight: 300; line-height: 1.3; scroll-margin-top: 128px; }
.guide-page section[data-screen-label="Article body"] .ds-298 { display: grid; max-width: 900px; gap: 1px; margin: 28px 0 44px; padding: 1px; background: rgba(240,237,230,.12); }
.guide-page section[data-screen-label="Article body"] .ds-048 { display: grid; grid-template-columns: 12px minmax(0,1fr); gap: 16px; align-items: start; padding: 20px 22px; background: #161714; color: rgba(240,237,230,.67); font-size: 15px; line-height: 1.65; }
.guide-page section[data-screen-label="Article body"] .ds-387 { width: 7px; height: 7px; margin-top: 8px; border: 0; border-radius: 50%; background: #718165; }
.guide-page section[data-screen-label="Article body"] .ds-265 { display: block; margin-bottom: 4px; color: #f0ede6; font-weight: 500; }
.guide-page section[data-screen-label="Article body"] .ds-311 { max-width: 900px; margin: 32px 0 44px; padding: 27px 30px; border: 1px solid rgba(201,165,107,.34); border-left: 2px solid #c9a56b; background: #161714; color: #f0ede6; font-family: var(--font-serif); font-size: 23px; line-height: 1.52; }
.guide-page .ds-290 { max-width: 900px; margin-top: 68px; }

.guide-route { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); max-width: 1000px; margin: 34px 0 62px; border: 1px solid rgba(240,237,230,.14); background: #151611; }
.guide-route a { min-width: 0; min-height: 148px; padding: 19px 16px; border-left: 1px solid rgba(240,237,230,.1); color: #f0ede6; }
.guide-route a:first-child { border-left: 0; }
.guide-route a:hover { background: #1b1d18; color: #f0ede6; }
.guide-route span { display: block; margin-bottom: 28px; color: #c9a56b; font-family: var(--font-serif); font-size: 24px; line-height: 1; }
.guide-route strong { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 500; }
.guide-route small { display: block; color: rgba(240,237,230,.46); font-size: 10px; line-height: 1.45; }

.guide-visual-label { margin-bottom: 22px; color: #87642f; font-size: 11px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.guide-seat-model,
.guide-time-model,
.guide-decision-matrix { max-width: 1000px; margin: 38px 0 54px; padding: 30px; border: 1px solid #d8d2c7; border-radius: 4px; background: #f7f5f0; color: #1a1a17; }
.guide-seat-model__flow { display: grid; grid-template-columns: 1fr .62fr 1fr .62fr 1fr; align-items: stretch; }
.guide-seat-model__node { min-height: 170px; padding: 22px; border: 1px solid #d8d2c7; background: #fbfaf6; }
.guide-seat-model__node > span { display: block; margin-bottom: 36px; color: #87642f; font-family: var(--font-serif); font-size: 26px; }
.guide-seat-model__node strong { display: block; margin-bottom: 8px; font-size: 17px; font-weight: 500; }
.guide-seat-model__node small { color: #777168; font-size: 11px; line-height: 1.45; }
.guide-seat-model__node--active { border-color: #aeb9a7; background: #edf0ea; }
.guide-seat-model__gap { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 16px 12px; text-align: center; }
.guide-seat-model__gap strong { color: #b8935a; font-family: var(--font-serif); font-size: 34px; font-weight: 400; }
.guide-seat-model__gap span { color: #7b756c; font-size: 10px; line-height: 1.4; }
.guide-seat-model > p,
.guide-time-model > p { max-width: 770px; margin: 24px 0 0; color: #676158; font-size: 13px; line-height: 1.65; }

.guide-time-model__row { display: grid; grid-template-columns: 145px minmax(0,1fr); gap: 20px; align-items: center; padding: 18px 0; border-top: 1px solid #ded8cd; }
.guide-time-model__row > strong { color: #4f4b44; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.guide-time-model__track { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.guide-time-model__track::before { content: ''; position: absolute; z-index: 0; left: 8%; right: 8%; top: 8px; height: 1px; background: #cfc8bb; }
.guide-time-model__track span { position: relative; z-index: 1; padding-top: 23px; color: #6d675e; font-size: 11px; line-height: 1.4; text-align: center; }
.guide-time-model__track span::before { content: ''; position: absolute; top: 3px; left: 50%; width: 10px; height: 10px; border: 2px solid #f7f5f0; border-radius: 50%; background: #a9a398; transform: translateX(-50%); }
.guide-time-model__row--ai .guide-time-model__track::before { background: #b8935a; }
.guide-time-model__row--ai .guide-time-model__track span:nth-child(2) { color: #53634a; font-weight: 600; }
.guide-time-model__row--ai .guide-time-model__track span:nth-child(2)::before { width: 14px; height: 14px; top: 1px; background: #718165; }
.guide-time-model__row--ai .guide-time-model__track span:last-child { color: #87642f; }

.guide-decision-matrix__axis--top { display: grid; grid-template-columns: 1fr 1fr; padding: 0 0 10px 116px; color: #777168; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.guide-decision-matrix__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #d8d2c7; }
.guide-decision-matrix__cell { min-height: 176px; padding: 22px; background: #fbfaf6; }
.guide-decision-matrix__cell > span { display: block; margin-bottom: 34px; color: #777168; font-size: 9px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.guide-decision-matrix__cell strong { display: block; margin-bottom: 7px; font-size: 19px; font-weight: 400; }
.guide-decision-matrix__cell small { color: #777168; font-size: 11px; line-height: 1.5; }
.guide-decision-matrix__cell--risk { background: #efe5d6; }
.guide-decision-matrix__cell--risk strong { color: #87642f; }
.guide-decision-matrix__cell--value,
.guide-decision-matrix__cell--signal { background: #edf0ea; }
.guide-decision-matrix__cell--value strong,
.guide-decision-matrix__cell--signal strong { color: #53634a; }

@media (max-width: 920px) {
  .guide-page section[data-screen-label="Article"] { padding: 132px 20px 30px !important; }
  .guide-page section[data-screen-label="Article"] h1 { font-size: 34px !important; }
  .guide-page section[data-screen-label="Article"] .ds-307 { font-size: 16px !important; line-height: 1.62 !important; }
  .guide-page section[data-screen-label="Article body"] { padding: 24px 20px 80px !important; }
  .guide-page section[data-screen-label="Article body"] .ds-300 { font-size: 16px !important; line-height: 1.68 !important; }
  .guide-page section[data-screen-label="Article body"] .ds-312 { margin: 42px 0 14px !important; padding-top: 24px; font-size: 23px !important; }
  .guide-page section[data-screen-label="Article body"] .ds-048 { padding: 17px; font-size: 14px; }
  .guide-page section[data-screen-label="Article body"] .ds-311 { padding: 22px; font-size: 20px; }
  .guide-route { grid-template-columns: 1fr 1fr; margin: 28px 0 46px; }
  .guide-route a { min-height: 118px; border-top: 1px solid rgba(240,237,230,.1); }
  .guide-route a:nth-child(odd) { border-left: 0; }
  .guide-route a:nth-child(-n+2) { border-top: 0; }
  .guide-route span { margin-bottom: 20px; }
  .guide-seat-model,
  .guide-time-model,
  .guide-decision-matrix { margin: 30px 0 42px; padding: 18px; }
  .guide-seat-model__flow { grid-template-columns: 1fr; }
  .guide-seat-model__node { min-height: 0; padding: 19px; }
  .guide-seat-model__node > span { margin-bottom: 18px; }
  .guide-seat-model__gap { min-height: 78px; }
  .guide-seat-model__gap strong { line-height: .8; }
  .guide-time-model__row { grid-template-columns: 1fr; gap: 14px; }
  .guide-time-model__track { gap: 4px; }
  .guide-time-model__track span { font-size: 10px; }
  .guide-decision-matrix__axis--top { display: none; }
  .guide-decision-matrix__grid { grid-template-columns: 1fr; }
  .guide-decision-matrix__cell { min-height: 0; }
  .guide-decision-matrix__cell > span { margin-bottom: 20px; }
}

/* Guide brand-alignment pass: editorial rules, not dashboard widgets. */
#reports .resource-grid { border-top: 1px solid #e7e3da; }
#reports .resource-card__meta { margin: 0; color: #87642f; }
#reports .resource-card h3 { margin: 0 0 8px; }
#reports .resource-card p { margin: 0; }
@media (max-width: 920px) {
  #reports .resource-grid { border-top: 0; }
  #reports .resource-card__meta { margin-bottom: 16px; }
  #reports .resource-card h3 { margin-bottom: 10px; }
  #reports .resource-card p { margin-bottom: 20px; }
}

.guide-page section[data-screen-label="Article"] { padding-bottom: 34px; }
.guide-page section[data-screen-label="Article body"] { padding-top: 20px; }
.guide-page section[data-screen-label="Article body"] > .ds-316 { max-width: 940px; }
.guide-page section[data-screen-label="Article body"] .ds-300 { max-width: 780px; color: rgba(240,237,230,.72); }
.guide-page section[data-screen-label="Article body"] .ds-312 { max-width: 820px; margin-top: 54px; }

.guide-route { max-width: 940px; margin: 36px 0 60px; border-width: 1px 0; background: transparent; }
.guide-route a { min-height: 128px; padding: 19px 14px; border-color: rgba(240,237,230,.1); background: transparent; }
.guide-route a:hover { background: transparent; }
.guide-route span { margin-bottom: 24px; color: #c9a56b; }
.guide-route strong { font-weight: 400; }
.guide-route small { color: rgba(240,237,230,.56); }

.guide-seat-model,
.guide-time-model,
.guide-spend-compare { max-width: 940px; margin: 38px 0 58px; padding: 30px 0; border-width: 1px 0; border-style: solid; border-color: rgba(240,237,230,.14); border-radius: 0; background: transparent; color: #f0ede6; }
.guide-visual-label { margin-bottom: 28px; color: #c9a56b; }
.guide-seat-model__flow { gap: 0; }
.guide-seat-model__node { min-height: 154px; padding: 22px 18px 18px 0; border: 0; border-top: 1px solid rgba(240,237,230,.12); background: transparent; }
.guide-seat-model__node > span { margin-bottom: 32px; color: #c9a56b; }
.guide-seat-model__node strong { color: #f0ede6; font-weight: 400; }
.guide-seat-model__node small { color: rgba(240,237,230,.58); }
.guide-seat-model__node--active { border-color: rgba(113,129,101,.65); background: transparent; }
.guide-seat-model__node--active > span,
.guide-seat-model__node--active strong { color: #9aad91; }
.guide-seat-model__gap { border-top: 1px solid rgba(240,237,230,.12); }
.guide-seat-model__gap strong { color: #c9a56b; }
.guide-seat-model__gap span { color: rgba(240,237,230,.58); font-size: 11px; }
.guide-seat-model > p,
.guide-time-model > p { max-width: 760px; margin: 26px 0 0; padding-top: 24px; border-top: 1px solid rgba(240,237,230,.1); color: rgba(240,237,230,.72); font-family: var(--font-serif); font-size: 21px; line-height: 1.5; }

.guide-time-model__row { grid-template-columns: 160px minmax(0,1fr); padding: 22px 0; border-color: rgba(240,237,230,.12); }
.guide-time-model__row > strong { color: rgba(240,237,230,.7); font-weight: 500; }
.guide-time-model__track::before { background: rgba(240,237,230,.18); }
.guide-time-model__track span { color: rgba(240,237,230,.62); }
.guide-time-model__track span::before { border-color: #0e0f0d; background: #79776f; }
.guide-time-model__row--ai .guide-time-model__track::before { background: rgba(201,165,107,.55); }
.guide-time-model__row--ai .guide-time-model__track span:nth-child(2) { color: #9aad91; }
.guide-time-model__row--ai .guide-time-model__track span:nth-child(2)::before { background: #718165; }
.guide-time-model__row--ai .guide-time-model__track span:last-child { color: #c9a56b; }

.guide-spend-compare__case { display: grid; grid-template-columns: 150px 150px minmax(0,1fr); gap: 24px; align-items: center; min-height: 105px; padding: 22px 0; border-top: 1px solid rgba(240,237,230,.12); }
.guide-spend-compare__case:last-child { border-bottom: 1px solid rgba(240,237,230,.12); }
.guide-spend-compare__case span { color: rgba(240,237,230,.6); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.guide-spend-compare__case strong { color: #9aad91; font-family: var(--font-serif); font-size: 25px; font-weight: 400; line-height: 1.35; }
.guide-spend-compare__case--waste strong { color: #c9a56b; }

@media (max-width: 920px) {
  .guide-page section[data-screen-label="Article"] { padding-bottom: 26px !important; }
  .guide-page section[data-screen-label="Article body"] { padding-top: 18px !important; }
  .guide-route { grid-template-columns: 1fr; margin: 28px 0 44px; }
  .guide-route a { display: grid; grid-template-columns: 38px 92px minmax(0,1fr); gap: 12px; align-items: center; min-height: 0; padding: 15px 0; border: 0; border-top: 1px solid rgba(240,237,230,.1); }
  .guide-route a:nth-child(-n+2),
  .guide-route a:nth-child(odd) { border-top: 1px solid rgba(240,237,230,.1); }
  .guide-route a:first-child { border-top: 0; }
  .guide-route span,
  .guide-route strong,
  .guide-route small { margin: 0; }
  .guide-route span { font-size: 21px; }
  .guide-seat-model,
  .guide-time-model,
  .guide-spend-compare { margin: 30px 0 44px; padding: 26px 0; }
  .guide-seat-model__node { min-height: 0; padding: 18px 0; }
  .guide-seat-model__node > span { margin-bottom: 18px; }
  .guide-seat-model__gap { display: grid; grid-template-columns: 34px 1fr; gap: 12px; min-height: 0; padding: 15px 0; text-align: left; }
  .guide-seat-model__gap strong { font-size: 28px; }
  .guide-seat-model__gap span br { display: none; }
  .guide-seat-model > p,
  .guide-time-model > p { font-size: 19px; }
  .guide-time-model__row { grid-template-columns: 1fr; }
  .guide-spend-compare__case { grid-template-columns: 1fr 1fr; gap: 9px 14px; padding: 20px 0; }
  .guide-spend-compare__case strong { grid-column: 1 / -1; margin-top: 8px; font-size: 22px; }
}

/* Guides use the site's paper sections for sustained reading, with a dark entry and close. */
.guide-page section[data-screen-label="Article body"] { border-top: 1px solid #e1dcd2; background: #f6f4ef; color: #1a1a17; }
.guide-page section[data-screen-label="Article body"] .ds-300 { color: #5c574e; }
.guide-page section[data-screen-label="Article body"] .ds-312 { border-top-color: #d8d2c7; color: #1a1a17; }
.guide-page section[data-screen-label="Article body"] .ds-298 { background: #d8d2c7; }
.guide-page section[data-screen-label="Article body"] .ds-048 { background: #faf9f5; color: #5c574e; }
.guide-page section[data-screen-label="Article body"] .ds-265 { color: #1a1a17; }
.guide-page section[data-screen-label="Article body"] .ds-311 { border-color: rgba(201,165,107,.34); border-left-color: #c9a56b; background: #161714; color: #f0ede6; }

.guide-route { border-color: #d8d2c7; background: transparent; }
.guide-route a { border-color: #e2ddd3; color: #1a1a17; }
.guide-route a:hover { color: #87642f; }
.guide-route span { color: #87642f; }
.guide-route small { color: #777168; }

.guide-seat-model,
.guide-time-model,
.guide-spend-compare { border-color: #d8d2c7; color: #1a1a17; }
.guide-visual-label { color: #87642f; }
.guide-seat-model__node { border-top-color: #d8d2c7; }
.guide-seat-model__node > span { color: #87642f; }
.guide-seat-model__node strong { color: #1a1a17; }
.guide-seat-model__node small { color: #777168; }
.guide-seat-model__node--active { border-color: rgba(83,99,74,.62); }
.guide-seat-model__node--active > span,
.guide-seat-model__node--active strong { color: #53634a; }
.guide-seat-model__gap { border-top-color: #d8d2c7; }
.guide-seat-model__gap strong { color: #b8935a; }
.guide-seat-model__gap span { color: #7b756c; }
.guide-seat-model > p,
.guide-time-model > p { border-top-color: #d8d2c7; color: #36352f; }

.guide-time-model__row { border-color: #d8d2c7; }
.guide-time-model__row > strong { color: #5c574e; }
.guide-time-model__track::before { background: #cfc8bb; }
.guide-time-model__track span { color: #6d675e; }
.guide-time-model__track span::before { border-color: #f6f4ef; background: #9a958c; }
.guide-time-model__row--ai .guide-time-model__track::before { background: rgba(184,147,90,.75); }
.guide-time-model__row--ai .guide-time-model__track span:nth-child(2) { color: #53634a; }
.guide-time-model__row--ai .guide-time-model__track span:nth-child(2)::before { background: #718165; }
.guide-time-model__row--ai .guide-time-model__track span:last-child { color: #87642f; }

.guide-spend-compare__case { border-color: #d8d2c7; }
.guide-spend-compare__case span { color: #6d675e; }
.guide-spend-compare__case strong { color: #53634a; }
.guide-spend-compare__case--waste strong { color: #87642f; }

.guide-page .ds-290 { max-width: 940px; margin-top: 52px; padding: 0; border: 0; background: transparent; }
.guide-page .ds-318 { color: rgba(240,237,230,.74); }

@media (max-width: 920px) {
  .guide-route a,
  .guide-route a:nth-child(-n+2),
  .guide-route a:nth-child(odd) { border-top-color: #ddd7cc; }
  .guide-page .ds-290 { margin-top: 42px; padding: 0; }
}

/* Final Resources type and reading-layout normalization. */
.resource-page,
.guide-page { --font-serif: var(--font-sans); font-family: var(--font-sans); }
#reports, #guides, #tools, #checks { scroll-margin-top: 96px; }

#reports .resource-grid { display: block; border-top: 1px solid #e2ddd3; }
#reports .resource-card {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr) 160px;
  grid-template-areas: 'meta title action' 'meta body action';
  gap: 10px 34px;
  align-items: start;
  min-height: 0;
  padding: 32px 0;
  border: 0;
  border-bottom: 1px solid #e2ddd3;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
#reports .resource-card__meta { grid-area: meta; display: grid; justify-content: start; gap: 7px; margin: 0; }
#reports .resource-card h3 { grid-area: title; margin: 0; font-size: 23px; }
#reports .resource-card p { grid-area: body; margin: 0; font-size: 16px; line-height: 1.65; }
#reports .resource-card__action { grid-area: action; align-self: center; justify-content: flex-end; }

.report-hero h1 { max-width: 860px; font-size: clamp(38px,4.7vw,64px); line-height: 1.12; }
.report-scene h2 { font-size: clamp(28px,3.3vw,44px); line-height: 1.22; }
.report-scene__copy p { max-width: 620px; font-size: 16px; line-height: 1.7; }

.resource-page .report-scene--dark { background: var(--resource-paper); color: var(--resource-copy); }
.resource-page .report-scene--dark .report-scene__label { color: #87642f; }
.resource-page .report-scene--dark .report-scene__copy p { color: var(--resource-muted); }
.resource-page .report-scene--dark .report-takeaway { border-color: #d8d2c7; border-left-color: var(--color-accent); color: #1a1a17 !important; }
.resource-page .report-scene--dark .report-visual { border-color: #d8d2c7; background: #faf9f5; color: #1a1a17; }
.resource-page .report-scene--dark .report-source { color: #777168; }
.resource-page .report-traits,
.resource-page .report-value-metrics { background: #d8d2c7; }
.resource-page .report-trait,
.resource-page .report-value-metric { background: #faf9f5; }
.resource-page .report-trait strong,
.resource-page .report-value-metric strong { color: #87642f; }
.resource-page .report-trait span,
.resource-page .report-value-metric span { color: #5c574e; }
.resource-page .report-equation { border-color: #d8d2c7; background: #faf9f5; color: #1a1a17; }
.resource-page .report-equation__top { color: #87642f; }
.resource-page .report-equation__line { background: #d8d2c7; }
.resource-page .report-equation__bottom { color: #5c574e; }

.guide-page section[data-screen-label="Article"] { padding: 154px 48px 48px; }
.guide-page section[data-screen-label="Article"] .ds-352,
.guide-page section[data-screen-label="Article body"] > .ds-316 { width: 100%; max-width: 1120px; margin-inline: auto; }
.guide-page section[data-screen-label="Article"] h1 { max-width: 900px; font-size: clamp(38px,4.1vw,58px); line-height: 1.15; }
.guide-page section[data-screen-label="Article"] .ds-307 { max-width: 760px; font-size: 17px; line-height: 1.68; }
.guide-page section[data-screen-label="Article body"] { padding: 44px 48px 112px; }
.guide-page section[data-screen-label="Article body"] .ds-300 { max-width: 740px; margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.guide-page section[data-screen-label="Article body"] .ds-312 { max-width: 760px; margin: 48px 0 16px; padding-top: 26px; font-size: 27px; line-height: 1.34; }
.guide-page section[data-screen-label="Article body"] .ds-311 { max-width: 760px; font-family: var(--font-sans); font-size: 18px; line-height: 1.6; }
.guide-route,
.guide-seat-model,
.guide-time-model,
.guide-spend-compare,
.guide-decision-matrix { max-width: 1000px; }
.guide-route span,
.guide-seat-model__node > span,
.guide-seat-model__gap strong,
.guide-time-model > p,
.guide-spend-compare__case strong { font-family: var(--font-sans); }
.guide-page .resource-breadcrumb { margin-bottom: 28px; }
.guide-route { grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid #d8d2c7; }
.guide-route a { min-height: 118px; padding: 22px; border: 0; border-left: 1px solid #e2ddd3; border-top: 1px solid #e2ddd3; }
.guide-route a:nth-child(3n+1) { border-left: 0; }
.guide-route a:nth-child(-n+3) { border-top: 0; }
.guide-route span { margin-bottom: 18px; }

@media (max-width: 920px) {
  .resource-breadcrumb { gap: 6px; margin-bottom: 24px; font-size: 9px; letter-spacing: .06em; }
  .resource-breadcrumb > span:last-child { flex-basis: 100%; margin-top: 2px; }
  #reports .resource-grid { border-top: 0; }
  #reports .resource-card { display: block; margin-bottom: 12px; padding: 22px; border: 1px solid #ddd7cc; border-radius: 3px; background: #faf9f5; }
  #reports .resource-card__meta { display: flex; justify-content: space-between; margin-bottom: 18px; }
  #reports .resource-card h3 { margin-bottom: 9px; font-size: 20px !important; }
  #reports .resource-card p { margin-bottom: 18px; font-size: 15px !important; }
  #reports .resource-card__action { justify-content: flex-start; }
  .guide-page section[data-screen-label="Article"] { padding: 126px 20px 34px !important; }
  .guide-page section[data-screen-label="Article"] h1 { font-size: 32px !important; line-height: 1.18 !important; }
  .guide-page section[data-screen-label="Article"] .ds-307 { max-width: 34rem; font-size: 16px !important; }
  .guide-page section[data-screen-label="Article body"] { padding: 34px 20px 80px !important; }
  .guide-page section[data-screen-label="Article body"] .ds-312 { margin-top: 38px !important; font-size: 22px !important; }
  .guide-page section[data-screen-label="Article body"] .ds-311 { font-size: 17px; }
  .guide-route { grid-template-columns: 1fr; }
  .guide-route a,
  .guide-route a:nth-child(3n+1),
  .guide-route a:nth-child(-n+3) { min-height: 0; border-left: 0; border-top: 1px solid #ddd7cc; }
  .guide-route a:first-child { border-top: 0; }
  .report-hero h1 { font-size: 32px !important; }
  .check-hero { padding: 112px 20px 38px !important; }
  .check-hero h1 { font-size: 28px !important; }
  .check-hero p { font-size: 15px; line-height: 1.6; }
  .check-hero .resource-kicker { margin-bottom: 18px; }
  .check-section { padding: 28px 20px 70px !important; }
  .check-privacy { margin-bottom: 18px; font-size: 10px; line-height: 1.5; }
  .check-instruction { margin-bottom: 14px; padding: 0; font-size: 11px; line-height: 1.5; }
  .check-progress { margin-bottom: 18px; }
  .check-question { min-height: 330px; }
}

/* One strict type scale for every Resources surface.
   Display 56 · Section 40 · Component 24 · Lead 18 · Body 16 · Small 13 · Label 12/11. */
.resource-page .resource-hero h1,
.resource-page .report-hero h1,
.resource-page .implementation-hero h1,
.resource-page .check-hero h1,
.guide-page section[data-screen-label="Article"] h1 {
  font-size: clamp(40px,4.45vw,56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.resource-page .resource-section__head h2,
.resource-page .resource-email h2,
.resource-page .report-scene h2,
.resource-page .report-check h2,
.resource-page .report-closing h2 {
  font-size: clamp(32px,3.2vw,40px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.resource-page .resource-card h3,
.resource-page #reports .resource-card h3,
.resource-page #guides .resource-card h3,
.resource-page #tools .resource-card h3,
.guide-page section[data-screen-label="Article body"] .ds-312,
.resource-page .check-question h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.01em;
}

.resource-page .report-sources h2 { font-size: 24px !important; line-height: 1.35; }
.resource-page .check-results h2 { font-size: 32px; line-height: 1.3; }
.resource-page .report-scene h3,
.resource-page .report-visual h3 { font-size: 18px !important; line-height: 1.4; }

.resource-page .resource-hero__intro,
.resource-page .report-hero__intro,
.resource-page .implementation-hero p,
.resource-page .check-hero p,
.guide-page section[data-screen-label="Article"] .ds-307,
.resource-page .resource-section__head p,
.resource-page .resource-email p,
.resource-page .report-check__intro p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.resource-page .resource-card p,
.resource-page #reports .resource-card p,
.resource-page #guides .resource-card p,
.resource-page #tools .resource-card p,
.resource-page .report-scene__copy p,
.guide-page section[data-screen-label="Article body"] .ds-300 {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.resource-page .report-takeaway,
.guide-page .guide-seat-model > p,
.guide-page .guide-time-model > p {
  font-size: 18px !important;
  font-weight: 400;
  line-height: 1.6;
}

.resource-page .report-visual p,
.resource-page .check-result-item p,
.resource-page .check-help,
.resource-page .check-instruction,
.resource-page .check-email p {
  font-size: 13px;
  line-height: 1.6;
}

.resource-page .resource-kicker,
.resource-page .resource-section__type,
.resource-page .resource-card__meta,
.resource-page .resource-card__action,
.resource-page .report-scene__label,
.guide-page .guide-visual-label,
.resource-page .check-question__meta,
.resource-page .check-progress__text {
  font-size: 12px;
  line-height: 1.5;
}

.resource-page .ds-301 { font-size: 40px; line-height: 1.25; }
.guide-page section[data-screen-label="Article body"] .ds-048 { font-size: 16px; line-height: 1.7; }
.guide-page .guide-route strong { font-size: 16px; line-height: 1.4; }
.guide-page .guide-route small,
.guide-page .guide-seat-model__node small,
.guide-page .guide-seat-model__gap span,
.guide-page .guide-spend-compare__case span { font-size: 13px; line-height: 1.5; }
.guide-page .guide-seat-model__node > span,
.guide-page .guide-seat-model__gap strong { font-size: 24px; }
.guide-page .guide-seat-model__node strong { font-size: 18px; line-height: 1.4; }
.guide-page .guide-spend-compare__case strong { font-size: 24px; line-height: 1.4; }
.guide-page section[data-screen-label="Article body"] .ds-265 { font-size: 16px; }

@media (max-width: 920px) {
  .resource-page .resource-hero h1,
  .resource-page .report-hero h1,
  .resource-page .implementation-hero h1,
  .resource-page .check-hero h1,
  .guide-page section[data-screen-label="Article"] h1 { font-size: 32px !important; line-height: 1.18 !important; }

  .resource-page .resource-section__head h2,
  .resource-page .resource-email h2,
  .resource-page .report-scene h2,
  .resource-page .report-check h2,
  .resource-page .report-closing h2 { font-size: 26px !important; line-height: 1.32 !important; }

  .resource-page .resource-card h3,
  .resource-page #reports .resource-card h3,
  .resource-page #guides .resource-card h3,
  .resource-page #tools .resource-card h3,
  .guide-page section[data-screen-label="Article body"] .ds-312,
  .resource-page .check-question h2 { font-size: 20px !important; line-height: 1.4 !important; }

  .resource-page .resource-hero__intro,
  .resource-page .report-hero__intro,
  .resource-page .implementation-hero p,
  .resource-page .check-hero p,
  .guide-page section[data-screen-label="Article"] .ds-307,
  .resource-page .resource-section__head p,
  .resource-page .resource-email p,
  .resource-page .report-check__intro p { font-size: 16px !important; line-height: 1.65 !important; }

  .resource-page .resource-card p,
  .resource-page #reports .resource-card p,
  .resource-page #guides .resource-card p,
  .resource-page #tools .resource-card p,
  .resource-page .report-scene__copy p,
  .guide-page section[data-screen-label="Article body"] .ds-300 { font-size: 15px !important; line-height: 1.68 !important; }

  .resource-page .report-takeaway,
  .guide-page .guide-seat-model > p,
  .guide-page .guide-time-model > p { font-size: 16px !important; }
  .resource-page .report-sources h2 { font-size: 20px !important; }
  .resource-page .ds-301 { font-size: 26px !important; }
  .guide-page .guide-route strong,
  .guide-page section[data-screen-label="Article body"] .ds-265,
  .guide-page section[data-screen-label="Article body"] .ds-048 { font-size: 15px; }
  .guide-page .guide-route small,
  .guide-page .guide-seat-model__node small,
  .guide-page .guide-seat-model__gap span,
  .guide-page .guide-spend-compare__case span { font-size: 12px; }
}

/* Resources readability floor.
   Supporting text and labels may be quieter in color or weight, but never smaller
   than 14px. This keeps the hierarchy consistent without tiny text outliers. */
.resource-page [data-navlinks="1"] a,
.guide-page [data-navlinks="1"] a,
.resource-breadcrumb,
.resource-page .resource-kicker,
.resource-page .resource-index__label,
.resource-page .resource-section__type,
.resource-page .resource-card__meta,
.resource-page .resource-card__action,
.resource-page .resource-email__form button,
.resource-page .resource-email__fine,
.resource-page .resource-email__status,
.resource-page .report-hero__number,
.resource-page .report-hero__note,
.resource-page .report-scene__label,
.resource-page .report-source,
.resource-page .report-path__from,
.resource-page .report-surprise span,
.resource-page .report-cost p,
.resource-page .report-framework-note,
.resource-page .report-bar__top,
.resource-page .report-record__item strong,
.resource-page .report-decision__result > span,
.resource-page .report-decision__question span,
.resource-page .report-decision__header,
.resource-page .report-decision__row strong,
.resource-page .report-decision__row em,
.resource-page .report-decision__result p,
.resource-page .report-method,
.resource-page .report-check__count,
.resource-page .report-sources__note,
.resource-page .resource-report-signal small,
.resource-page .report-back,
.resource-page .report-return,
.resource-page .report-sixty__label,
.resource-page .report-sixty__delta,
.resource-page .report-sixty__source,
.resource-page .report-contrast strong,
.resource-page .report-contrast p,
.resource-page .report-budget__item p,
.resource-page .report-risk-row strong,
.resource-page .report-risk-row span,
.resource-page .report-pattern p,
.resource-page .report-pattern a,
.resource-page .report-function p,
.resource-page .report-value-metric strong,
.resource-page .report-value-metric span,
.resource-page .implementation-results__progress,
.resource-page .implementation-results__note,
.resource-page .implementation-disclaimer,
.resource-page .check-privacy,
.resource-page .check-instruction,
.resource-page .check-progress__text,
.resource-page .check-question__meta,
.resource-page .check-back,
.resource-page .check-restart,
.resource-page .check-help,
.resource-page .check-results__label,
.resource-page .check-result-item__state,
.resource-page .check-result-item p,
.resource-page .check-result-item a,
.resource-page .check-results__footer p,
.resource-page .check-email p,
.resource-page .check-email button,
.resource-page [data-roi-q] .ds-228,
.resource-page [data-roi-q] .ds-229,
.guide-page .ds-207,
.guide-page .ds-282,
.guide-page .guide-route small,
.guide-page .guide-visual-label,
.guide-page .guide-seat-model__node small,
.guide-page .guide-seat-model__gap span,
.guide-page .guide-time-model__row > strong,
.guide-page .guide-time-model__track span,
.guide-page .guide-decision-matrix__axis--top,
.guide-page .guide-decision-matrix__cell > span,
.guide-page .guide-decision-matrix__cell small,
.guide-page .guide-spend-compare__case span {
  font-size: 14px !important;
}

/* One compact spacing rhythm for Resources: 88 section · 36 component · 16 text. */
.resource-page .resource-hero,
.resource-page .report-hero,
.resource-page .implementation-hero,
.resource-page .check-hero { padding: 154px 48px 56px; }

.resource-page .resource-section,
.resource-page .report-scene,
.resource-page .report-check,
.resource-page .report-closing,
.resource-page .report-sources,
.resource-page .implementation-section { padding: 88px 48px; }
.resource-page .resource-email { padding: 76px 48px; }
.resource-page .resource-section__head { margin-bottom: 36px; }

.resource-page #guides .resource-card,
.resource-page #tools .resource-card {
  min-height: 0;
}
.resource-page #guides .resource-card { padding-top: 28px; padding-bottom: 28px; }
.resource-page #tools .resource-card { padding: 28px; }
.resource-page #guides .resource-card__meta,
.resource-page #tools .resource-card__meta { margin-bottom: 24px; }
.resource-page #guides .resource-card h3,
.resource-page #tools .resource-card h3 { margin: 0 0 10px; }
.resource-page #guides .resource-card p,
.resource-page #tools .resource-card p { margin: 0 0 20px; }

.resource-page .check-section { padding: 56px 48px 88px; }
.resource-page .check-question { min-height: 260px; padding: 36px; }
.resource-page .check-question h2 { margin-bottom: 26px; }
.resource-page .check-results { margin-top: 36px; padding: 36px; }

.guide-page section[data-screen-label="Article"] { padding-bottom: 40px; }
.guide-page section[data-screen-label="Article body"] { padding: 32px 48px 88px; }
.guide-page section[data-screen-label="Article body"] .ds-300 { margin-bottom: 12px; }
.guide-page section[data-screen-label="Article body"] .ds-312 { margin: 32px 0 12px; padding-top: 20px; }
.guide-page section[data-screen-label="Article body"] .ds-298 { margin: 20px 0 32px; }
.guide-page section[data-screen-label="Article body"] .ds-048 { padding: 16px 18px; }
.guide-page .guide-route { margin: 24px 0 36px; }
.guide-page .guide-seat-model,
.guide-page .guide-time-model,
.guide-page .guide-spend-compare,
.guide-page .guide-decision-matrix { margin: 28px 0 40px; padding-top: 24px; padding-bottom: 24px; }
.guide-page .ds-290 { margin-top: 36px; }

@media (max-width: 920px) {
  .resource-page .resource-hero,
  .resource-page .report-hero,
  .resource-page .implementation-hero { padding: 120px 20px 42px !important; }
  .resource-page .check-hero { padding: 108px 20px 34px !important; }
  .resource-page .resource-section,
  .resource-page .resource-email,
  .resource-page .report-scene,
  .resource-page .report-check,
  .resource-page .report-closing,
  .resource-page .report-sources,
  .resource-page .implementation-section { padding: 54px 20px !important; }
  .resource-page .resource-section__head { margin-bottom: 26px; }
  .resource-page #guides .resource-card,
  .resource-page #guides .resource-card:nth-child(even),
  .resource-page #tools .resource-card { padding: 20px; }
  .resource-page #guides .resource-card__meta,
  .resource-page #tools .resource-card__meta { margin-bottom: 18px; }
  .resource-page .check-section { padding: 24px 20px 54px !important; }
  .resource-page .check-question { min-height: 250px; padding: 24px 20px; }
  .resource-page .check-question h2 { margin-bottom: 22px; }
  .resource-page .check-results { padding: 30px 20px; }
  /* Tool metadata remains on one row without dropping below the 14px floor. */
  .resource-page #tools .resource-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    width: 100%;
    font-size: 14px !important;
    letter-spacing: .045em;
    white-space: nowrap;
  }
  .guide-page section[data-screen-label="Article"] { padding-bottom: 28px !important; }
  .guide-page section[data-screen-label="Article body"] { padding: 26px 20px 62px !important; }
  .guide-page section[data-screen-label="Article body"] .ds-312 { margin-top: 28px !important; padding-top: 18px; }
  .guide-page section[data-screen-label="Article body"] .ds-298 { margin: 18px 0 26px; }
  .guide-page .guide-route { margin: 20px 0 28px; }
  .guide-page .guide-seat-model,
  .guide-page .guide-time-model,
  .guide-page .guide-spend-compare,
  .guide-page .guide-decision-matrix { margin: 24px 0 32px; padding-top: 20px; padding-bottom: 20px; }
  .guide-page .ds-290 { margin-top: 28px; }
}

/* Odau evidence is visibly distinct from third-party benchmark data. */
.report-field-note {
  display: grid;
  grid-template-columns: 190px minmax(0,1fr);
  gap: 24px;
  align-items: start;
  margin: 0 0 20px;
  padding: 20px 22px;
  border-left: 3px solid #b8935a;
  background: #eee9df;
}
.report-field-note strong,
.report-field-stamp,
.report-pattern__origin {
  color: #87642f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.report-field-note p { margin: 0; color: #4f4b44; font-size: 16px; line-height: 1.65; }
.report-field-stamp { display: inline-flex; margin-bottom: 18px; padding: 7px 10px; border: 1px solid rgba(135,100,47,.42); }
.report-pattern__origin { margin-bottom: 12px; color: #c9a56b; }
.resource-page .report-pattern--field .report-pattern__story { margin-bottom: 14px; color: rgba(240,237,230,.76); font-size: 16px !important; line-height: 1.65; }
.report-pattern__lesson { display: block; margin-bottom: 18px; color: #f0ede6; font-size: 14px; font-weight: 500; line-height: 1.6; }

@media (max-width: 920px) {
  .report-field-note { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
}

/* Resources component contract.
   Elements with the same job share one token and one rule across reports,
   guides, checks and calculators. Page-specific CSS may change layout or color,
   but not the component's type scale or control sizing. */
.resource-page,
.guide-page {
  --resource-type-page-title: clamp(40px, 4.15vw, 56px);
  --resource-type-section-title: clamp(28px, 3vw, 40px);
  --resource-type-subsection-title: 20px;
  --resource-type-body: 16px;
  --resource-type-label: 14px;
  --resource-type-metric: clamp(38px, 3.45vw, 46px);
  --resource-control-height: 46px;
  --resource-control-text: 14px;
  --resource-section-space: 88px;
  --resource-component-space: 36px;
  --resource-text-space: 16px;
}

/* Page titles */
.resource-page .resource-hero h1,
.resource-page .report-hero h1,
.resource-page .implementation-hero h1,
.resource-page .check-hero h1,
.guide-page section[data-screen-label="Article"] h1 {
  font-size: var(--resource-type-page-title) !important;
  font-weight: 300;
  line-height: 1.15 !important;
  letter-spacing: -.025em;
}

/* Section titles */
.resource-page .resource-section__head h2,
.resource-page .resource-email h2,
.resource-page .report-scene h2,
.resource-page .report-check h2,
.resource-page .report-closing h2,
.resource-page .report-sources h2,
.resource-page .implementation-section h2,
.resource-page .check-results h2,
.guide-page section[data-screen-label="Article body"] .ds-312 {
  font-size: var(--resource-type-section-title) !important;
  font-weight: 300;
  line-height: 1.28 !important;
  letter-spacing: -.02em;
}

/* Card and subsection titles */
.resource-page .resource-card h3,
.resource-page .report-pattern h3,
.resource-page .report-function h3,
.resource-page .report-budget__item h3,
.resource-page .check-result-item h3,
.guide-page .guide-decision-matrix__cell strong {
  font-size: var(--resource-type-subsection-title) !important;
  font-weight: 400;
  line-height: 1.35;
}

/* Body copy */
.resource-page .resource-section__head p,
.resource-page .resource-card p,
.resource-page .report-hero__intro,
.resource-page .report-scene__copy p,
.resource-page .report-pattern p,
.resource-page .report-function p,
.resource-page .report-budget__item p,
.resource-page .implementation-section p,
.resource-page .check-results__intro,
.resource-page .check-result-item p,
.guide-page section[data-screen-label="Article"] .ds-307,
.guide-page section[data-screen-label="Article body"] .ds-300 {
  font-size: var(--resource-type-body) !important;
  line-height: 1.68 !important;
}

/* Headline metrics: one size, format and numeric rhythm in every report. */
.resource-page .report-sixty__value,
.resource-page .report-stat__value,
.resource-page .report-adoption__value {
  font-family: var(--font-sans) !important;
  font-size: var(--resource-type-metric) !important;
  font-weight: 300;
  line-height: 1 !important;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums lining-nums;
}
.resource-page .report-sixty__item { min-height: 188px; }
.resource-page .report-sixty__value { margin-bottom: 22px; }

/* Primary actions */
.resource-page .button,
.resource-page .resource-card__action,
.resource-page .resource-email__form button,
.resource-page .check-restart,
.resource-page .implementation-submit {
  min-height: var(--resource-control-height);
  font-family: var(--font-sans);
  font-size: var(--resource-control-text) !important;
  font-weight: 600;
  line-height: 1.2;
}

/* Choice controls */
.resource-page .check-option,
.resource-page [data-est-opt],
.resource-page [data-roi-opt] {
  min-height: var(--resource-control-height);
  font-family: var(--font-sans);
  font-size: var(--resource-control-text) !important;
  line-height: 1.3;
}

.resource-page [data-menubtn],
.resource-page [data-menubtn] span,
.guide-page [data-menubtn],
.guide-page [data-menubtn] span {
  font-size: var(--resource-type-label) !important;
}

/* Report section boundaries.
   A visible rule carries the separation so spacing does not have to do all of
   the work. Every report uses the same compact boundary rhythm. */
.resource-page .report-sixty { padding-top: 0 !important; padding-bottom: 56px; }
.resource-page .report-scene,
.resource-page .report-check,
.resource-page .report-closing,
.resource-page .report-sources,
.resource-page .report-related {
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 1px solid #ded8cd;
}
.resource-page .report-related { background: #f6f4ef; color: #1a1a17; }
.report-related__label {
  margin-bottom: 16px;
  color: #87642f;
  font-size: var(--resource-type-label);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.report-related__row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 32px;
  align-items: center;
}
.report-related h2 {
  margin: 0 0 10px;
  color: #1a1a17;
  font-size: var(--resource-type-section-title);
  font-weight: 300;
  line-height: 1.28;
}
.report-related p {
  max-width: 720px;
  margin: 0;
  color: #5c574e;
  font-size: var(--resource-type-body);
  line-height: 1.68;
}
.report-related a {
  display: inline-flex;
  align-items: center;
  min-height: var(--resource-control-height);
  padding: 12px 18px;
  border: 1px solid #b8935a;
  color: #87642f;
  font-size: var(--resource-control-text);
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.report-related a::after { content: '→'; margin-left: 10px; }

@media (max-width: 920px) {
  .resource-page,
  .guide-page {
    --resource-type-page-title: 32px;
    --resource-type-section-title: 24px;
    --resource-type-subsection-title: 19px;
    --resource-type-body: 16px;
    --resource-type-label: 14px;
    --resource-type-metric: 36px;
    --resource-section-space: 54px;
    --resource-component-space: 26px;
  }
  .resource-page .report-sixty__item { min-height: 154px; padding: 18px; }
  .resource-page .report-sixty__value { margin-bottom: 18px; }
  .resource-page .report-sixty { padding-top: 0 !important; padding-bottom: 44px !important; }
  .resource-page .report-scene,
  .resource-page .report-check,
  .resource-page .report-closing,
  .resource-page .report-sources,
  .resource-page .report-related { padding-top: 44px !important; padding-bottom: 44px !important; }
  .report-related__row { grid-template-columns: 1fr; gap: 22px; }
  .report-related a { justify-self: start; white-space: normal; }
}

/* Site-wide natural wrapping.
   Headings and copy use the available measure before wrapping. Deliberate block
   spans in authored headlines still create intentional, meaningful breaks. */
h1, h2, h3, h4, h5, h6,
.text-display, .text-h2, .text-h3, .text-h4,
p, li {
  text-wrap: wrap;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* Narrative headings may use the full content measure; body copy stops at a
   readable line length. */
.guide-page section[data-screen-label="Article"] h1 { max-width: 1060px; }
.guide-page section[data-screen-label="Article"] .ds-307 { max-width: 860px; }
.guide-page section[data-screen-label="Article body"] .ds-312 { max-width: 1040px; }
.guide-page section[data-screen-label="Article body"] .ds-300 { max-width: 840px; }
.resource-page .report-hero h1 { max-width: 1100px; }
.resource-page .report-hero__intro { max-width: 860px; }
.resource-page .report-scene__grid {
  grid-template-columns: minmax(0,.95fr) minmax(440px,1.05fr);
}
.resource-page .report-scene h2 { max-width: 100%; }
.resource-page .report-scene__copy p { max-width: 700px; }

@media (max-width: 920px) {
  .guide-page section[data-screen-label="Article"] h1,
  .guide-page section[data-screen-label="Article"] .ds-307,
  .guide-page section[data-screen-label="Article body"] .ds-312,
  .guide-page section[data-screen-label="Article body"] .ds-300,
  .resource-page .report-hero h1,
  .resource-page .report-hero__intro,
  .resource-page .report-scene h2,
  .resource-page .report-scene__copy p { max-width: 100%; }
  .resource-page .report-scene__grid { grid-template-columns: 1fr; }
}

/* Shared card metadata hierarchy.
   The resource type is the label; duration/question count is supporting detail.
   This contract applies to every report, guide, calculator and check card. */
.resource-page .resource-card__meta {
  align-items: baseline;
  column-gap: 16px;
}
.resource-page .resource-card__kind {
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
}
.resource-page .resource-card__detail {
  flex: 0 0 auto;
  color: #777168;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.35;
  text-transform: none;
  white-space: nowrap;
}
.resource-page .resource-section--dark .resource-card__detail,
.resource-page .resource-card--featured .resource-card__detail {
  color: rgba(240,237,230,.56);
}
.resource-page #tools .resource-card__detail { color: #65705d; }

@media (max-width: 920px) {
  .resource-page #reports .resource-card__meta,
  .resource-page #guides .resource-card__meta,
  .resource-page #tools .resource-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    column-gap: 14px;
    width: 100%;
    white-space: nowrap;
  }
  .resource-page .resource-card__kind { font-size: 13px; letter-spacing: .075em; }
  .resource-page .resource-card__detail { font-size: 11px !important; letter-spacing: .025em; }
}
