:root {
  --ink: #0b0b0c;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #6f706f;
  --line: #d7d8d5;
  --teal: #0b8177;
  --teal-dark: #075d56;
  --teal-soft: #d9f0eb;
  --lilac: #e5e1f2;
  --pink: #f4dce6;
  --yellow: #f4edc7;
  --green: #e5efdb;
  --max: 1240px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
button, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button:focus-visible, a:focus-visible, textarea:focus-visible { outline: 3px solid #45b8ac; outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; background: var(--white); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 247, 244, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 850; letter-spacing: .02em; }
.brand-mark { display: grid; place-items: center; width: 28px; height: 32px; border: 2px solid var(--teal); color: var(--teal); font-family: Georgia, serif; font-size: 1.2rem; }
.desktop-nav { display: flex; align-items: center; gap: 1.5rem; font-size: .9rem; font-weight: 700; }
.desktop-nav a { text-decoration: none; color: #3b3c3c; }
.desktop-nav a:hover { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.icon-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.pdf-link { display: inline-flex; align-items: center; gap: 1rem; padding: .68rem 1rem; background: var(--ink); color: var(--white); text-decoration: none; font-size: .88rem; font-weight: 800; border-radius: 999px; }
.pdf-link:hover { background: var(--teal-dark); }
.reading-progress { position: fixed; top: 71px; left: 0; right: 0; height: 3px; z-index: 31; }
.reading-progress span { display: block; height: 100%; width: 0; background: var(--teal); }

.hero, .section, .closing-section, footer { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.hero { min-height: calc(100vh - 72px); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); align-items: center; gap: 6vw; padding: 5rem 0; }
.eyebrow { margin: 0 0 1.1rem; color: var(--teal-dark); font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 780px; font-size: clamp(3.3rem, 7.8vw, 7.2rem); line-height: .89; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 span { color: var(--teal); }
.hero-deck { margin: 2rem 0 .75rem; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-style: italic; }
.hero-intro { max-width: 770px; color: #414241; font-size: 1.05rem; }
.hero-buttons { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; }
.primary-button, .text-button { display: inline-flex; justify-content: center; align-items: center; gap: 1rem; border: 0; text-decoration: none; cursor: pointer; font-weight: 850; }
.primary-button { padding: .9rem 1.25rem; border-radius: 999px; background: var(--teal); color: var(--white); }
.primary-button:hover { background: var(--teal-dark); }
.text-button { padding: .65rem 0; background: transparent; border-bottom: 2px solid currentColor; color: var(--ink); }
.hero-route { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 2rem; background: var(--ink); color: var(--white); border-radius: 28px; box-shadow: 0 24px 80px rgba(0,0,0,.16); }
.mini-label { margin: 0 0 1rem; color: #83d8ce; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.hero-route ol { list-style: none; padding: 0; margin: 0; }
.hero-route li { display: grid; grid-template-columns: 34px 1fr auto; gap: .8rem; align-items: baseline; padding: .78rem 0; border-bottom: 1px solid #343434; }
.hero-route li > span { color: #83d8ce; font-size: .72rem; font-weight: 800; }
.hero-route li strong { font-size: 1.03rem; }
.hero-route li small { color: #aaa; text-align: right; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 1.5rem -2rem -2rem; background: #303030; border-radius: 0 0 28px 28px; overflow: hidden; }
.hero-stats div { display: flex; flex-direction: column; padding: 1.25rem; background: #171717; }
.hero-stats strong { color: #83d8ce; font-size: 1.8rem; line-height: 1; }
.hero-stats span { color: #b9b9b9; font-size: .72rem; }

.section { padding: 7rem 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 860px; margin-bottom: 3rem; }
.section-heading.compact { max-width: 1000px; }
.section h2, .closing-section h2 { margin: 0 0 1rem; font-size: clamp(2.25rem, 5vw, 4.6rem); line-height: .98; letter-spacing: -.05em; }
.section-heading > p:last-child, .split-heading > p { color: #4f504f; font-size: 1.08rem; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); gap: 4rem; align-items: end; margin-bottom: 3rem; }
.split-heading h2 { max-width: 850px; }
.split-heading > p { margin: 0; }

.program-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1rem; }
.lead-card, .function-card { padding: 2rem; border-radius: var(--radius); min-height: 265px; }
.lead-card { grid-row: span 2; min-height: 548px; }
.dark-card { background: var(--ink); color: var(--white); }
.dark-card h3 { font-size: clamp(2rem, 3.6vw, 3.3rem); line-height: 1; letter-spacing: -.045em; }
.dark-card p:not(.card-number) { color: #c9c9c9; }
.card-number, .function-index { color: #7dd2c8; font-weight: 850; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.function-card { background: var(--teal-soft); }
.function-card.lilac { background: var(--lilac); }
.function-card.yellow { grid-column: 2 / 4; background: var(--yellow); min-height: 265px; }
.function-card h3 { margin: 2.2rem 0 .8rem; font-size: 1.6rem; }
.principle-banner { display: grid; grid-template-columns: .6fr 1.4fr; gap: 3rem; margin-top: 1rem; padding: 2rem; border: 1px solid var(--ink); border-radius: var(--radius); }
.principle-banner p, .principle-banner strong { margin: 0; }
.principle-banner strong { font-size: 1.35rem; line-height: 1.35; }

.product-switch { display: inline-flex; padding: .3rem; border: 1px solid var(--line); border-radius: 999px; margin-bottom: 1.2rem; }
.product-tab { border: 0; border-radius: 999px; padding: .75rem 1.5rem; background: transparent; cursor: pointer; font-weight: 850; }
.product-tab.active { background: var(--ink); color: var(--white); }
.product-panel { display: grid; grid-template-columns: .65fr 1.35fr; gap: 1px; background: var(--ink); border: 1px solid var(--ink); border-radius: 22px; overflow: hidden; }
.product-panel > div { padding: clamp(1.8rem, 4vw, 3rem); background: var(--white); }
.product-panel .product-name { display: flex; flex-direction: column; justify-content: space-between; min-height: 330px; background: var(--teal); color: var(--white); }
.product-name span { font-size: 6rem; font-weight: 900; line-height: 1; opacity: .3; }
.product-name h3 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; }
.product-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.product-details h4 { margin: 0 0 .7rem; font-size: .78rem; color: var(--teal-dark); letter-spacing: .12em; text-transform: uppercase; }
.product-details p { margin-top: 0; font-size: 1.12rem; }

.cluster-shell { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; }
.cluster-tabs { display: flex; flex-direction: column; gap: .5rem; }
.cluster-tab { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; text-align: left; font-weight: 800; }
.cluster-tab.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.cluster-tab span:last-child { color: var(--teal); }
.cluster-panel { min-height: 430px; padding: clamp(2rem, 5vw, 4rem); border-radius: 22px; background: var(--lilac); }
.cluster-panel .cluster-kicker { color: #5f577b; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: .75rem; }
.cluster-panel h3 { margin: .7rem 0 2.5rem; font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: .95; letter-spacing: -.05em; }
.cluster-definition { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.cluster-definition h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.cluster-definition p { font-size: 1.18rem; }

.journey-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.journey-card { position: relative; min-height: 310px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.journey-card::before { content: attr(data-step); position: absolute; right: -6px; bottom: -30px; color: #eef0ed; font-size: 9rem; font-weight: 950; line-height: 1; }
.journey-card > * { position: relative; }
.journey-card small { color: var(--teal-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.journey-card h3 { margin: 1rem 0; font-size: 1.35rem; line-height: 1.1; }
.journey-card p { margin: .5rem 0; color: #505250; }
.journey-card strong { display: block; color: var(--ink); }
.logic-line { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; align-items: center; margin-top: 1rem; padding: 1.2rem; background: var(--green); border-radius: 14px; font-size: .84rem; font-weight: 800; }
.logic-line b { color: var(--teal-dark); }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.role-grid article { padding: 2rem; border-top: 8px solid var(--teal); background: var(--white); }
.role-grid article:nth-child(2) { border-color: #8c7baa; }
.role-grid article:nth-child(3) { border-color: #bda438; }
.role-grid span { color: var(--muted); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.role-grid h3 { margin: 1rem 0 1.5rem; font-size: 1.55rem; }
.role-grid p { color: #4f504f; }
.role-grid strong { color: var(--ink); }

.method-layout { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.6fr); gap: 1.5rem; }
.method-list { display: flex; flex-direction: column; gap: .5rem; }
.method-button { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: .75rem; width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; text-align: left; font-weight: 850; }
.method-button b { color: var(--teal); font-size: .72rem; }
.method-button.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.method-detail { min-height: 430px; padding: clamp(2rem, 5vw, 4rem); background: var(--teal-soft); border-radius: 22px; }
.method-detail .method-number { color: var(--teal-dark); font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.method-detail h3 { margin: .8rem 0 1.3rem; font-size: clamp(2.6rem, 5vw, 4.7rem); line-height: .9; letter-spacing: -.055em; }
.method-detail p { max-width: 820px; font-size: 1.1rem; }
.method-output { margin-top: 2rem; padding: 1.25rem; border-left: 4px solid var(--teal); background: rgba(255,255,255,.7); }
.method-output strong { display: block; margin-bottom: .3rem; }
blockquote { margin: 1.5rem 0 0; padding: 2rem; border: 0; background: var(--ink); color: var(--white); border-radius: var(--radius); font-family: Georgia, serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-style: italic; }

.priority-stack { display: grid; gap: .6rem; }
.priority-item { display: grid; grid-template-columns: 80px 260px 1fr; align-items: center; gap: 1rem; padding: 1rem 1.3rem; border-radius: 14px; background: var(--white); border: 1px solid var(--line); }
.priority-item .priority-index { color: var(--teal); font-size: .75rem; font-weight: 900; }
.priority-item strong { font-size: 1rem; }
.priority-item p { margin: 0; color: #555; }
.priority-item:nth-child(1) { margin-right: 0; }
.priority-item:nth-child(2) { margin-right: 3%; }
.priority-item:nth-child(3) { margin-right: 6%; }
.priority-item:nth-child(4) { margin-right: 9%; }
.priority-item:nth-child(5) { margin-right: 12%; }
.priority-item:nth-child(6) { margin-right: 15%; }
.rule-card { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 2rem; align-items: center; margin-top: 1rem; padding: 2rem; border-radius: var(--radius); background: var(--yellow); }
.rule-card span { color: #71631e; font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.rule-card strong { font-size: 1.2rem; }
.rule-card p { margin: 0; }

.clinic-browser { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 1.2rem; align-items: start; }
.clinic-nav { position: sticky; top: 94px; display: flex; flex-direction: column; gap: .55rem; }
.clinic-nav-button { display: grid; grid-template-columns: 40px 1fr; gap: .8rem; width: 100%; padding: 1rem; border: 1px solid var(--line); background: transparent; border-radius: 12px; text-align: left; cursor: pointer; }
.clinic-nav-button span { color: var(--teal); font-size: .76rem; font-weight: 900; }
.clinic-nav-button strong { line-height: 1.2; }
.clinic-nav-button.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.clinic-content { min-width: 0; border: 1px solid var(--line); border-radius: 24px; background: var(--white); overflow: hidden; }
.clinic-hero { padding: clamp(2rem, 5vw, 4.5rem); background: var(--ink); color: var(--white); }
.clinic-hero .session-label { color: #84d9cf; font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.clinic-hero h3 { max-width: 820px; margin: 1rem 0; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .93; letter-spacing: -.055em; text-transform: uppercase; }
.clinic-hero .conference { font-family: Georgia, serif; color: #bfbfbf; font-style: italic; }
.clinic-focus { padding: 1.4rem clamp(2rem, 5vw, 4.5rem); background: var(--lilac); }
.clinic-focus strong { display: block; font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .3rem; }
.clinic-body { padding: clamp(2rem, 5vw, 4.5rem); }
.clinic-body h4 { margin: 2.8rem 0 1rem; font-size: clamp(1.5rem, 2.7vw, 2.2rem); line-height: 1.1; letter-spacing: -.025em; }
.clinic-body h4:first-child { margin-top: 0; }
.clinic-summary { color: #414342; font-size: 1.05rem; }
.clinic-summary p:first-child::first-letter { float: left; margin: .08rem .5rem 0 0; color: var(--teal); font-family: Georgia, serif; font-size: 4.4rem; line-height: .75; }
.purpose-box { margin-top: 2rem; padding: 1.4rem; background: var(--teal-soft); border-radius: 14px; }
.purpose-box strong { color: var(--teal-dark); }
.input-grid, .question-grid, .criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.check-item { position: relative; padding: .85rem 1rem .85rem 2.6rem; border: 1px solid var(--line); border-radius: 10px; background: #fafaf8; }
.check-item::before { content: ""; position: absolute; left: 1rem; top: 1.15rem; width: 10px; height: 10px; border: 2px solid var(--teal); border-radius: 50%; }
.entry-condition { margin-top: 1rem; padding: 1rem 1.2rem; background: var(--yellow); border-radius: 12px; }
.route-list { display: grid; gap: .5rem; counter-reset: route; }
.route-step { display: grid; grid-template-columns: 45px 130px 1fr; gap: 1rem; align-items: start; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; }
.route-step .step-number { color: var(--teal); font-size: .75rem; font-weight: 900; }
.route-step strong { font-size: .9rem; }
.route-step p { margin: 0; color: #4f504f; }
.question-grid blockquote { margin: 0; padding: 1rem; background: #f1f2ef; color: var(--ink); border-radius: 10px; font-family: inherit; font-size: 1rem; font-style: normal; }
.question-grid blockquote::before { content: "?"; display: block; color: var(--teal); font-weight: 950; }
.alert-list { display: grid; gap: .5rem; }
.alert-item { display: flex; gap: .9rem; padding: .85rem 1rem; background: #fff5f5; border-left: 4px solid #b04d54; }
.alert-item::before { content: "!"; display: grid; place-items: center; flex: 0 0 24px; height: 24px; border-radius: 50%; background: #b04d54; color: white; font-size: .75rem; font-weight: 950; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.comparison-grid article { padding: 1.5rem; border: 1px solid var(--line); border-radius: 14px; }
.comparison-grid article:first-child { border-top: 6px solid #8b82aa; }
.comparison-grid article:last-child { border-top: 6px solid #c67994; }
.comparison-grid span { color: var(--muted); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.cluster-filter-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.mini-cluster-button { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: .83rem; font-weight: 800; }
.mini-cluster-button.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.session-cluster-panel { padding: 1.4rem; background: var(--lilac); border-radius: 14px; font-size: 1.08rem; }
.evidence-box { margin-top: 1rem; padding: 1.4rem; background: var(--yellow); border-left: 5px solid #ac9428; }
.clinic-next { display: flex; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.clinic-next button { border: 0; background: transparent; cursor: pointer; color: var(--teal-dark); font-weight: 850; }

.agreement-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 5rem; }
.agreement-intro { position: sticky; top: 110px; align-self: start; }
.agreement-intro h2 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.agreement-form { display: grid; gap: 1rem; }
.agreement-form label { display: block; padding: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.agreement-form label > span { display: block; font-weight: 900; }
.agreement-form label > small { display: block; color: var(--muted); margin-bottom: .8rem; }
.agreement-form textarea { width: 100%; resize: vertical; min-height: 92px; padding: 1rem; border: 1px solid var(--line); border-radius: 10px; background: #fafaf8; color: var(--ink); }
.agreement-form textarea:focus { border-color: var(--teal); background: white; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: .5rem; }
.form-actions #saveStatus { color: var(--muted); font-size: .8rem; }

.closing-section { margin-top: 2rem; padding: clamp(3rem, 8vw, 7rem); border-radius: 30px; background: var(--ink); color: var(--white); }
.closing-section .eyebrow { color: #83d8ce; }
.closing-section h2 { max-width: 940px; }
.closing-section > p:not(.eyebrow) { max-width: 760px; color: #c4c4c4; font-size: 1.05rem; }
.pdf-link.inverse { margin-top: 1rem; background: var(--white); color: var(--ink); }
footer { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 3rem 0; font-size: .84rem; color: var(--muted); }
footer a { font-weight: 800; color: var(--ink); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-route { min-height: 620px; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .lead-card { grid-column: 1 / -1; grid-row: auto; min-height: 420px; }
  .function-card.yellow { grid-column: auto; }
  .journey-flow { grid-template-columns: 1fr 1fr; }
  .clinic-browser, .agreement-section { grid-template-columns: 1fr; }
  .clinic-nav { position: static; display: grid; grid-template-columns: repeat(3, 1fr); }
  .agreement-intro { position: static; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { height: 64px; padding-inline: 18px; }
  .reading-progress { top: 63px; }
  .topbar .pdf-link { display: none; }
  .hero, .section, .closing-section, footer { width: min(100% - 28px, var(--max)); }
  .hero { min-height: auto; padding: 3.5rem 0; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.9rem); }
  .hero-route { min-height: 0; padding: 1.3rem; border-radius: 20px; }
  .hero-route li { grid-template-columns: 28px 1fr; }
  .hero-route li small { display: none; }
  .hero-stats { margin: 1.5rem -1.3rem -1.3rem; border-radius: 0 0 20px 20px; }
  .section { padding: 4.5rem 0; }
  .split-heading, .principle-banner, .product-panel, .cluster-shell, .method-layout, .rule-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .program-grid, .journey-flow, .role-grid, .product-details, .cluster-definition, .input-grid, .question-grid, .criteria-grid, .comparison-grid { grid-template-columns: 1fr; }
  .lead-card { min-height: auto; }
  .function-card.yellow { grid-column: auto; }
  .cluster-tabs { flex-direction: row; overflow-x: auto; padding-bottom: .5rem; }
  .cluster-tab { flex: 0 0 auto; width: auto; }
  .method-list { display: grid; grid-template-columns: 1fr 1fr; }
  .method-button { grid-template-columns: 25px 1fr; }
  .method-button span:last-child { display: none; }
  .priority-item { grid-template-columns: 45px 1fr; margin-right: 0 !important; }
  .priority-item p { grid-column: 2; }
  .clinic-nav { display: flex; flex-direction: row; overflow-x: auto; padding-bottom: .5rem; }
  .clinic-nav-button { flex: 0 0 210px; }
  .route-step { grid-template-columns: 35px 1fr; }
  .route-step p { grid-column: 2; }
  .clinic-next { align-items: flex-start; gap: 1rem; }
  .closing-section { border-radius: 22px; }
  footer { flex-direction: column; text-align: center; }
}

@media print {
  .topbar, .reading-progress, .hero-buttons, .product-switch, .cluster-tabs, .method-list, .clinic-nav, .form-actions, .clinic-next, footer { display: none !important; }
  body { background: white; color: black; }
  .hero, .section, .closing-section { width: 100%; break-inside: avoid; padding: 2rem 0; }
  .hero { min-height: auto; grid-template-columns: 1fr 1fr; }
  .hero-route, .closing-section, .clinic-hero { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .clinic-browser, .agreement-section { grid-template-columns: 1fr; }
}
