:root {
  --wheat: #F2E5C0;
  --butter: #F0E2B8;
  --espresso: #29160E;
  --ink: #0F0E0E;
  --amber: #FAC75E;
  --amber-deep: #E9AE38;
  --amber-wash: #FBE6B4;
  --white: #FDFDFD;
  --slate: #5A554E;
  --mist: #A2A2A2;
  --success: #5A8A52;
  --danger: #B96A55;
  --line: rgba(41,22,14,.12);
  --line-soft: rgba(41,22,14,.07);
  --line-strong: rgba(41,22,14,.22);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 18px 50px -24px rgba(41,22,14,.45);
  --shadow-lg: 0 28px 70px -30px rgba(41,22,14,.5);
  --radius: 22px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
body { margin: 0; color: var(--slate); background: var(--wheat); font: 400 1rem/1.65 var(--sans); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1.25rem; border-radius: 999px; background: var(--amber); color: var(--espresso); font-weight: 600; }
.skip-link:focus { top: 1rem; }

.sidebar { position: fixed; inset: 0 auto 0 0; z-index: 20; width: 280px; padding: 28px 22px 24px; display: flex; flex-direction: column; color: var(--wheat); background: var(--espresso); }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 50%; }
.brand span { display: flex; flex-direction: column; }
.brand strong { color: var(--white); font-size: .88rem; letter-spacing: .13em; text-transform: uppercase; }
.brand small { color: rgba(242,229,192,.62); font-size: .78rem; }
.side-nav { display: grid; gap: 6px; margin-top: 52px; }
.nav-link { width: 100%; display: flex; align-items: center; gap: 13px; padding: 13px 14px; border: 0; border-radius: 14px; color: rgba(242,229,192,.68); background: transparent; font: 500 .91rem/1.35 var(--sans); text-align: left; cursor: pointer; transition: .2s var(--ease); }
.nav-link span { color: rgba(242,229,192,.42); font-size: .74rem; font-weight: 600; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(253,253,253,.09); }
.nav-link.active span { color: var(--amber); }
.sidebar-note { margin-top: auto; display: flex; align-items: center; gap: 11px; padding: 14px; border: 1px solid rgba(242,229,192,.15); border-radius: 14px; }
.sidebar-note div { display: flex; flex-direction: column; }
.sidebar-note strong { color: var(--white); font-size: .82rem; }
.sidebar-note small { color: rgba(242,229,192,.54); font-size: .7rem; }
.status-dot { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(90,138,82,.14); }
.internal-note { margin: 12px 4px 0; color: rgba(242,229,192,.48); font-size: .68rem; line-height: 1.5; }

.main { margin-left: 280px; min-width: 0; }
.topbar { min-height: 370px; padding: 60px clamp(28px,5vw,72px) 54px; display: flex; align-items: flex-end; justify-content: space-between; gap: 42px; border-bottom: 1px solid var(--line); }
.topbar h1 { max-width: 760px; margin: 15px 0 0; color: var(--ink); font: 500 clamp(2.7rem,5.5vw,5rem)/1.02 var(--serif); letter-spacing: -.6px; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0; color: #817767; font-size: .72rem; font-weight: 600; letter-spacing: .2em; }
.eyebrow span { display: block; width: min(180px,14vw); height: 1px; background: var(--line-strong); }
.quick-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 47px; padding: 11px 23px; border: 1px solid transparent; border-radius: 999px; font: 600 .87rem/1.2 var(--sans); text-decoration: none; white-space: nowrap; cursor: pointer; transition: .2s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--wheat); background: var(--espresso); }
.button.primary:hover { background: #3A2115; }
.button.secondary { color: var(--espresso); border-color: var(--line); background: var(--butter); }

.section { padding: clamp(58px,8vw,100px) clamp(28px,5vw,72px); }
.section-white { background: var(--white); }
.tab-panel[hidden] { display: none; }
.section-heading { max-width: 850px; margin-bottom: 42px; }
.section-heading h2 { margin: 14px 0 14px; color: var(--ink); font: 500 clamp(2.45rem,4.6vw,4.2rem)/1.04 var(--serif); letter-spacing: -.5px; }
.section-heading > p:last-child { max-width: 760px; margin: 0; font-size: 1.06rem; font-weight: 300; }
.subsection { margin-top: clamp(64px,9vw,112px); }
.subsection-heading { max-width: 760px; margin-bottom: 30px; }
.subsection-heading.compact { margin-bottom: 24px; }
.subsection-heading h3, .support-panel h3, .capability-panel h3 { margin: 11px 0 10px; color: var(--ink); font: 500 clamp(2rem,3.2vw,3rem)/1.08 var(--serif); }
.subsection-heading p:last-child { margin: 0; }

.truth-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.truth-card { min-height: 210px; padding: 27px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.truth-card.inverse { color: var(--wheat); background: var(--espresso); }
.truth-number { color: var(--ink); font: 500 3.25rem/1 var(--serif); }
.truth-card.inverse .truth-number { color: var(--white); }
.truth-unit { margin-left: 4px; color: #8c7f68; font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.truth-card p { margin: 44px 0 0; font-size: .88rem; line-height: 1.55; }
.truth-card.inverse p { color: rgba(242,229,192,.72); }

.stage-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.stage-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(253,253,253,.68); }
.stage-card.featured { background: var(--white); box-shadow: var(--shadow); }
.stage-card.featured::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--amber); }
.stage-index { color: #c6b894; font: 500 3rem/1 var(--serif); }
.stage-title { display: flex; flex-direction: column; margin: 26px 0 19px; }
.stage-title span { color: var(--ink); font: 500 2.1rem/1 var(--serif); }
.stage-title small { margin-top: 8px; color: var(--espresso); font-size: .77rem; font-weight: 600; }
.stage-card p { margin: 0; font-size: .9rem; }
.stage-card ul { margin: 22px 0 0; padding: 19px 0 0; border-top: 1px dashed var(--line-strong); list-style: none; }
.stage-card li { position: relative; margin: 8px 0; padding-left: 17px; font-size: .82rem; }
.stage-card li::before { content: ""; position: absolute; left: 0; top: .69em; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

.journey-rail { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7,minmax(130px,1fr)); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); list-style: none; overflow-x: auto; }
.journey-rail li { min-height: 190px; padding: 24px 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.journey-rail li:last-child { border: 0; }
.journey-rail li > span { color: #b4a17a; font: 500 1.55rem/1 var(--serif); }
.journey-rail strong { margin-top: 47px; color: var(--espresso); font-size: .88rem; }
.journey-rail small { margin-top: 8px; color: var(--slate); font-size: .71rem; line-height: 1.45; }

.two-column { margin-top: clamp(64px,9vw,112px); display: grid; grid-template-columns: 1.12fr .88fr; gap: 20px; align-items: stretch; }
.support-panel, .capability-panel { padding: clamp(30px,4vw,52px); border-radius: var(--radius); }
.support-panel { color: var(--wheat); background: var(--espresso); }
.support-panel h3 { color: var(--white); }
.inverse-eyebrow { color: rgba(242,229,192,.55); }
.inverse-eyebrow span { background: rgba(242,229,192,.22); }
.support-list { margin-top: 32px; display: grid; gap: 0; }
.support-list div { padding: 17px 0; border-top: 1px solid rgba(242,229,192,.14); }
.support-list strong { color: var(--white); font-size: .91rem; }
.support-list p { margin: 4px 0 0; color: rgba(242,229,192,.68); font-size: .82rem; line-height: 1.55; }
.support-footnote { margin: 25px 0 0; padding: 17px 19px; border-radius: 14px; color: var(--espresso); background: var(--amber); font-size: .79rem; font-weight: 500; }
.support-clarifier { margin: 13px 2px 0; color: rgba(242,229,192,.6); font-size: .74rem; line-height: 1.5; }
.capability-panel { border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.capability-list { margin-top: 26px; border-top: 1px solid var(--line); }
.capability-list details { border-bottom: 1px solid var(--line); }
.capability-list summary { position: relative; padding: 17px 28px 17px 0; color: var(--espresso); cursor: pointer; font-size: .88rem; font-weight: 600; list-style: none; }
.capability-list summary::-webkit-details-marker { display: none; }
.capability-list summary::after { content: "+"; position: absolute; right: 4px; color: #9b8965; font-size: 1.2rem; font-weight: 400; }
.capability-list details[open] summary::after { content: "−"; }
.capability-list details p { margin: -3px 0 17px; font-size: .82rem; line-height: 1.55; }

.guarantee-note, .timeline-note { margin-top: 22px; padding: 28px 31px; display: grid; gap: 26px; align-items: center; border-radius: var(--radius); }
.guarantee-note { grid-template-columns: .75fr 1.25fr; border: 1px solid rgba(250,199,94,.7); background: var(--amber-wash); }
.guarantee-note h3 { margin: 9px 0 0; color: var(--ink); font: 500 1.65rem/1.12 var(--serif); }
.guarantee-note p, .timeline-note p { margin: 0; font-size: .84rem; line-height: 1.6; }
.note-label { color: var(--espresso); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.timeline-note { grid-template-columns: 150px 1fr; border: 1px solid var(--line); background: rgba(253,253,253,.55); }
.timeline-note strong { color: var(--espresso); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }

.audience-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.audience-card { position: relative; min-height: 330px; padding: 31px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--butter); overflow: hidden; }
.audience-card.featured { color: var(--wheat); border-color: var(--espresso); background: var(--espresso); }
.audience-index { position: absolute; top: 17px; right: 24px; color: rgba(65,34,19,.1); font: 500 5.4rem/1 var(--serif); }
.audience-card.featured .audience-index { color: rgba(242,229,192,.1); }
.audience-label { margin: 0 0 30px; color: #8d765b; font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.audience-card.featured .audience-label { color: var(--amber); }
.audience-card h3 { position: relative; max-width: 560px; margin: 0 0 14px; color: var(--ink); font: 500 clamp(1.55rem,2.6vw,2.2rem)/1.15 var(--serif); }
.audience-card.featured h3 { color: var(--white); }
.audience-card > p:not(.audience-label) { position: relative; max-width: 620px; margin: 0; font-size: .86rem; }
.audience-card.featured > p { color: rgba(242,229,192,.72); }
.fit-route { margin-top: auto; padding-top: 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); }
.audience-card.featured .fit-route { border-color: rgba(242,229,192,.16); }
.fit-route strong { color: var(--espresso); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.audience-card.featured .fit-route strong { color: var(--amber); }
.fit-route span { font-size: .78rem; font-weight: 600; text-align: right; }
.audience-principle { margin-top: 20px; padding: 24px 28px; display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: center; border-radius: var(--radius); color: var(--espresso); background: var(--amber); }
.audience-principle span { font-size: .69rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.audience-principle p { margin: 0; font-size: .84rem; font-weight: 500; }
.fit-table-wrap { margin-top: clamp(64px,8vw,96px); }
.fit-table { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.fit-row { display: grid; grid-template-columns: .8fr 1.35fr 1fr; }
.fit-row + .fit-row { border-top: 1px solid var(--line); }
.fit-row span { padding: 18px 21px; font-size: .78rem; line-height: 1.5; }
.fit-row span + span { border-left: 1px solid var(--line); }
.fit-row span:first-child { color: var(--espresso); font-weight: 600; }
.fit-header { color: var(--espresso); background: var(--butter); }
.fit-header span { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.offer-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.offer-card { min-height: 275px; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.offer-card.dark { color: var(--wheat); border-color: var(--espresso); background: var(--espresso); }
.offer-kicker { color: #8d765b; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.offer-card.dark .offer-kicker { color: var(--amber); }
.offer-card h3 { margin: 12px 0 24px; color: var(--ink); font: 500 1.9rem/1.12 var(--serif); }
.offer-card.dark h3 { color: var(--white); }
.offer-card ul, .responsibility-grid ul { margin: 0; padding: 0; list-style: none; }
.offer-card li, .responsibility-grid li { position: relative; margin: 10px 0; padding-left: 18px; font-size: .82rem; }
.offer-card li::before, .responsibility-grid li::before { content: ""; position: absolute; left: 0; top: .73em; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-deep); }
.offer-card.dark li { color: rgba(242,229,192,.72); }
.offer-card.dark li::before { background: var(--amber); }
.support-path, .responsibility-block, .curriculum-block { margin-top: clamp(64px,9vw,108px); }
.support-path-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.support-path-grid article { min-height: 225px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(253,253,253,.65); }
.support-path-grid span { color: #927c5c; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.support-path-grid h4 { margin: 27px 0 9px; color: var(--ink); font: 500 1.36rem/1.15 var(--serif); }
.support-path-grid p { margin: 0; font-size: .76rem; line-height: 1.55; }
.responsibility-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.responsibility-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.responsibility-grid article.highlight { border-color: var(--amber); background: var(--amber-wash); }
.responsibility-grid article > span { color: var(--espresso); font: 500 1.45rem/1.2 var(--serif); }
.responsibility-grid ul { margin-top: 22px; padding-top: 17px; border-top: 1px solid var(--line); }
.responsibility-grid li { font-size: .78rem; }
.responsibility-truth { margin: 18px 0 0; padding: 22px 26px; border-radius: 16px; color: var(--wheat); background: var(--espresso); font-size: .85rem; font-weight: 500; text-align: center; }
.curriculum-list { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.curriculum-list details + details { border-top: 1px solid var(--line); }
.curriculum-list summary { position: relative; padding: 20px 58px 20px 23px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 15px; cursor: pointer; list-style: none; }
.curriculum-list summary::-webkit-details-marker { display: none; }
.curriculum-list summary::after { content: "+"; position: absolute; right: 25px; color: #998460; font-size: 1.4rem; }
.curriculum-list details[open] summary::after { content: "−"; }
.curriculum-list summary > span { color: #b29d72; font: 500 1.55rem/1 var(--serif); }
.curriculum-list summary div { display: flex; flex-direction: column; }
.curriculum-list summary strong { color: var(--espresso); font-size: .9rem; }
.curriculum-list summary small { margin-top: 4px; font-size: .72rem; }
.curriculum-content { padding: 0 66px 21px 80px; }
.curriculum-content p { margin: 7px 0 0; font-size: .78rem; line-height: 1.55; }
.curriculum-content b { color: var(--espresso); }
.offer-guarantee { margin-top: 24px; }

.prospect-map { max-width: 970px; margin: 0 auto; }
.prospect-step { display: grid; grid-template-columns: 80px 1fr; gap: 24px; }
.step-marker { position: relative; display: flex; justify-content: center; }
.step-marker::after { content: ""; position: absolute; top: 42px; bottom: 0; width: 1px; background: var(--line-strong); }
.step-marker span { position: relative; z-index: 1; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: var(--espresso); background: var(--butter); font-size: .74rem; font-weight: 700; box-shadow: 0 0 0 8px var(--white); }
.step-body { margin-bottom: 22px; padding: 27px 29px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 42px -28px rgba(41,22,14,.4); }
.step-meta { display: flex; justify-content: space-between; gap: 20px; color: #8f826d; font-size: .69rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.step-body h3 { margin: 13px 0 9px; color: var(--ink); font: 500 1.7rem/1.15 var(--serif); }
.step-body p { margin: 0; font-size: .88rem; }
.step-body .framework-note { margin-top: 15px; padding: 13px 15px; border-left: 3px solid var(--amber-deep); border-radius: 0 10px 10px 0; background: var(--amber-wash); font-size: .76rem; }
.step-body .framework-note strong { color: var(--espresso); }
.script-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--espresso); background: var(--butter); text-decoration: none; font-size: .72rem; font-weight: 600; transition: .2s var(--ease); }
.script-link:hover { transform: translateY(-2px); background: #ECDCA8; }
.message-chip { margin-top: 18px; padding: 11px 14px; border-radius: 12px; color: var(--espresso); background: var(--amber-wash); font-size: .75rem; font-weight: 500; }
.message-chip.dark { color: var(--wheat); background: var(--espresso); }
.final-step .step-marker::after { display: none; }
.final-step .step-marker span { color: var(--espresso); background: var(--amber); }
.final-step .step-body { border-color: rgba(250,199,94,.55); }

.resource-heading { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.resource-heading > div:first-child { max-width: 780px; }
.legend { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 16px; font-size: .7rem; }
.legend span { display: flex; align-items: center; gap: 7px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.share { background: var(--success); }
.legend-dot.demo { background: var(--danger); }
.legend-dot.drive { background: var(--amber-deep); }
.resource-nav { position: sticky; top: 14px; z-index: 10; width: fit-content; max-width: 100%; margin: 0 0 40px; padding: 6px; display: flex; gap: 4px; overflow-x: auto; border: 1px solid var(--line); border-radius: 999px; background: rgba(253,253,253,.91); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.resource-nav a { padding: 8px 15px; border-radius: 999px; color: var(--espresso); text-decoration: none; font-size: .75rem; font-weight: 600; white-space: nowrap; }
.resource-nav a:hover { background: var(--butter); }
.resource-group { margin-top: 58px; }
.group-heading { margin-bottom: 19px; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.group-heading h3 { margin: 0 0 12px; color: var(--ink); font: 500 1.8rem/1.15 var(--serif); }
.group-heading span { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.resource-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.resource-grid.two-up { grid-template-columns: repeat(2,minmax(0,1fr)); }
.resource-card { min-height: 100%; border: 1px solid var(--line-soft); border-radius: var(--radius); color: inherit; background: var(--white); box-shadow: var(--shadow); text-decoration: none; overflow: hidden; transition: .22s var(--ease); }
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-card.visual { display: flex; flex-direction: column; }
.resource-image { height: 235px; overflow: hidden; background: #e6ded0; }
.resource-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .35s var(--ease); }
.resource-card:hover .resource-image img { transform: scale(1.018); }
.resource-image.landscape img { object-fit: cover; }
.resource-content { padding: 23px; }
.resource-content h4 { margin: 13px 0 8px; color: var(--ink); font: 500 1.35rem/1.18 var(--serif); }
.resource-content p { margin: 0; font-size: .79rem; line-height: 1.55; }
.badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: .61rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.badge.proof { color: #365d31; background: #e7f0e4; }
.badge.demo { color: #8f4433; background: #f5e4df; }
.badge.drive { color: #755416; background: var(--amber-wash); }
.badge.academy { color: var(--espresso); background: var(--butter); }
.open-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; color: var(--espresso); font-size: .73rem; font-weight: 600; }
.open-link b { font-size: .9rem; }
.resource-card.simple { padding: 23px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; }
.resource-card.simple .resource-content { padding: 0; }
.resource-symbol { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; color: var(--espresso); background: var(--butter); font: 500 1.22rem/1 var(--serif); }
.resource-card.restricted { border-color: rgba(185,106,85,.28); }
.resource-card.restricted .resource-symbol { color: #8f4433; background: #f5e4df; }
.resource-card.wide-card { grid-column: span 2; display: grid; grid-template-columns: 1.25fr .75fr; }
.resource-card.wide-card .resource-image { height: 100%; min-height: 260px; }
.resource-card.horizontal { display: grid; grid-template-columns: .72fr 1.28fr; }
.resource-card.horizontal .resource-image { height: 100%; min-height: 330px; }

footer { padding: 30px clamp(28px,5vw,72px); display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line); background: var(--butter); }
footer img { border-radius: 50%; }
footer div { display: flex; flex-direction: column; }
footer strong { color: var(--espresso); font-size: .8rem; }
footer span { font-size: .68rem; }
footer a { margin-left: auto; color: var(--espresso); font-size: .75rem; font-weight: 600; text-decoration: none; }

@media (max-width: 1120px) {
  .sidebar { width: 230px; }
  .main { margin-left: 230px; }
  .truth-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .journey-rail { grid-template-columns: repeat(7,150px); }
  .resource-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .support-path-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 840px) {
  html { scroll-padding-top: 94px; }
  .sidebar { inset: 0 0 auto 0; width: auto; height: 80px; padding: 12px 18px; flex-direction: row; align-items: center; gap: 24px; }
  .brand img { width: 42px; height: 42px; }
  .brand small, .sidebar-note, .internal-note { display: none; }
  .side-nav { margin: 0 0 0 auto; display: flex; gap: 2px; overflow-x: auto; }
  .nav-link { width: auto; flex: 0 0 auto; padding: 10px 11px; white-space: nowrap; }
  .nav-link span { display: none; }
  .main { margin: 80px 0 0; }
  .topbar { min-height: 310px; align-items: flex-end; }
  .stage-grid, .two-column, .responsibility-grid { grid-template-columns: 1fr; }
  .resource-card.wide-card { grid-column: auto; display: flex; }
  .guarantee-note { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: .96rem; }
  .sidebar { height: 72px; padding: 10px 14px; }
  .brand span { display: none; }
  .brand img { width: 39px; height: 39px; }
  .side-nav { gap: 0; }
  .nav-link { padding: 9px 8px; font-size: .64rem; }
  .main { margin-top: 72px; }
  .topbar { min-height: auto; padding-top: 38px; display: block; }
  .quick-actions { margin-top: 28px; justify-content: flex-start; }
  .truth-grid, .resource-grid, .resource-grid.two-up, .audience-grid, .offer-grid, .support-path-grid { grid-template-columns: 1fr; }
  .truth-card { min-height: 185px; }
  .prospect-step { grid-template-columns: 40px 1fr; gap: 11px; }
  .step-marker span { width: 35px; height: 35px; box-shadow: 0 0 0 5px var(--white); }
  .step-marker::after { top: 34px; }
  .step-body { padding: 22px; }
  .step-meta { display: block; }
  .step-meta small { display: block; margin-top: 3px; }
  .resource-heading { display: block; }
  .legend { margin-top: 22px; justify-content: flex-start; }
  .resource-nav { width: 100%; }
  .resource-card.wide-card, .resource-card.horizontal { display: flex; flex-direction: column; }
  .resource-card.horizontal .resource-image, .resource-card.wide-card .resource-image { min-height: 230px; }
  .timeline-note { grid-template-columns: 1fr; gap: 9px; }
  .audience-principle { grid-template-columns: 1fr; gap: 8px; }
  .fit-table { overflow-x: auto; }
  .fit-row { min-width: 690px; }
  .curriculum-list summary { padding-left: 18px; grid-template-columns: 34px 1fr; }
  .curriculum-content { padding: 0 25px 20px 67px; }
  footer { align-items: flex-start; }
  footer a { display: none; }
}

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