@font-face { font-family: "Noto Sans CTS"; src: url("NotoSans-Regular.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Noto Sans CTS"; src: url("NotoSans-Bold.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
  color-scheme: light;
  --ink: #17362f;
  --ink-strong: #102d27;
  --muted: #597069;
  --brand: #20423b;
  --brand-2: #1d797b;
  --brand-3: #459dd0;
  --accent: #d5982d;
  --accent-soft: #fff4d9;
  --paper: #ffffff;
  --wash: #f3f7f3;
  --wash-blue: #f3f7fb;
  --line: #d8e4de;
  --line-strong: #bacdc3;
  --danger: #a84532;
  --success: #23804a;
  --shadow-sm: 0 8px 24px rgba(23, 54, 47, .08);
  --shadow-lg: 0 24px 70px rgba(20, 62, 54, .16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: "Noto Sans CTS", "Fira Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: #146354; text-underline-offset: 3px; }
a:hover, a:focus-visible { color: #9a6519; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(69, 157, 208, .55); outline-offset: 3px; }

.container, .header-inner, .footer-inner, main { width: min(var(--content), calc(100% - 36px)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section.compact { padding: clamp(44px, 6vw, 72px) 0; }
.section.alt { background: var(--paper); }
.section.blue-wash { background: linear-gradient(135deg, #eef8f4, #eff6fb); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 12px; color: var(--brand-2); font-size: .82rem;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 99px; background: var(--accent); }
.section-title { margin: 0; max-width: 820px; color: var(--ink-strong); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.12; letter-spacing: -.035em; }
.section-lead { margin: 18px 0 0; max-width: 760px; color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.22rem); }
.center { text-align: center; }
.center .section-title, .center .section-lead { margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9); color: var(--brand);
  border-bottom: 1px solid rgba(216, 228, 222, .86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 0;
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 26px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; color: var(--brand); text-decoration: none; flex: none; }
.brand-lockup img { width: 47px; height: 47px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-name { font-size: 1.17rem; font-weight: 900; letter-spacing: -.02em; }
.brand-tagline { margin-top: 5px; color: var(--muted); font-size: .72rem; font-weight: 650; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--brand); font-size: 1.2rem; font-weight: 850; text-decoration: none; }
.brand::before { content: ""; width: 42px; height: 42px; flex: none; background: url("chutroso-logo.png") center / contain no-repeat; }
.tagline { margin: 2px 0 0; color: var(--muted); font-size: .88rem; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 10px 11px; border-radius: 10px; color: var(--ink); font-size: .9rem; font-weight: 720; text-decoration: none; }
.main-nav a:hover, .main-nav a[aria-current="page"] { background: #eaf3ef; color: var(--brand-2); }
.header-cta { margin-left: 8px; }
.menu-toggle { display: none; margin-left: auto; width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--brand); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 21px; height: 2px; margin: 5px auto; border-radius: 9px; background: currentColor; transition: .2s ease; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-160%); background: #fff; color: var(--brand); padding: 10px 14px; border-radius: 9px; font-weight: 800; }
.skip-link:focus { transform: none; }

/* Buttons and pills */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 11px 20px; border: 1px solid transparent;
  border-radius: 999px; background: var(--brand); color: #fff;
  font-weight: 800; text-align: center; text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 20px rgba(32, 66, 59, .18); transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { color: #fff; background: #315d52; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(32, 66, 59, .22); }
.button.secondary { background: #fff; color: var(--brand); border-color: var(--line-strong); box-shadow: none; }
.button.secondary:hover { background: #f5faf7; color: var(--brand); }
.button.accent { background: var(--accent); color: #1f2c26; box-shadow: 0 8px 20px rgba(213, 152, 45, .22); }
.button.small { min-height: 42px; padding: 8px 15px; font-size: .88rem; }
.button.disabled { opacity: .68; cursor: not-allowed; pointer-events: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button-row.center { justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.78); color: var(--brand); font-size: .8rem; font-weight: 750; }

/* Hero */
.hero { position: relative; overflow: hidden; min-height: 720px; background: linear-gradient(135deg, #eef8f4 0%, #f8fbfd 48%, #e8f4f8 100%); }
.hero::before { content: ""; position: absolute; width: 600px; height: 600px; right: -180px; top: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(69,157,208,.22), rgba(69,157,208,0) 68%); }
.hero::after { content: ""; position: absolute; width: 460px; height: 460px; left: -260px; bottom: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(109,196,151,.25), rgba(109,196,151,0) 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); align-items: center; gap: clamp(36px, 6vw, 76px); padding: clamp(64px, 8vw, 104px) 0 76px; }
.hero h1 { margin: 12px 0 20px; max-width: 720px; color: var(--ink-strong); font-size: clamp(2.7rem, 6.6vw, 5.6rem); line-height: .98; letter-spacing: -.06em; }
.hero h1 span { color: var(--brand-2); }
.hero-copy > p { max-width: 660px; margin: 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-orb { position: absolute; width: min(410px, 100%); aspect-ratio: 1; border-radius: 46% 54% 58% 42%; background: linear-gradient(145deg, #1d797b, #459dd0); transform: rotate(7deg); box-shadow: var(--shadow-lg); }
.phone-frame { position: relative; z-index: 2; width: min(246px, 62vw); padding: 8px; border: 4px solid #122f29; border-radius: 32px; background: #122f29; box-shadow: 0 24px 66px rgba(17, 47, 41, .3); transform: rotate(1.5deg); }
.phone-frame img { width: 100%; border-radius: 23px; background: #eef1ea; }
.phone-frame .hero-screen { aspect-ratio: 9 / 20; object-fit: cover; object-position: top; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; max-width: 230px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.82); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); font-size: .85rem; font-weight: 800; }
.floating-card i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft); color: #966319; font-style: normal; }
.floating-card.one { left: 0; top: 90px; }
.floating-card.two { right: 0; bottom: 88px; }
.hero-proof { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: -46px; }
.proof-item { padding: 24px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--brand); font-size: 1.5rem; line-height: 1.2; }
.proof-item span { color: var(--muted); font-size: .88rem; }

/* Cards and layouts */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 40px; }
.feature-card { grid-column: span 4; min-height: 250px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 26px rgba(23,54,47,.05); }
.feature-card.wide { grid-column: span 8; }
.feature-card.tall { grid-row: span 2; }
.feature-card.highlight { background: linear-gradient(145deg, #1b5046, #1d797b); color: #fff; border: 0; }
.feature-card.highlight h3, .feature-card.highlight p { color: #fff; }
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 16px; background: #e8f4ef; color: var(--brand-2); font-size: 1.45rem; font-weight: 900; }
.highlight .feature-icon { background: rgba(255,255,255,.14); color: #fff; }
.feature-card h3 { margin: 0 0 10px; color: var(--ink-strong); font-size: 1.25rem; line-height: 1.25; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-card ul { margin: 14px 0 0; padding-left: 20px; }
.feature-card li + li { margin-top: 6px; }
.card { display: block; border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: #fff; text-decoration: none; box-shadow: 0 8px 25px rgba(23,54,47,.05); }
.card strong { display: block; color: var(--brand); margin-bottom: 5px; }
.card span { color: var(--muted); font-size: .94rem; }
.card:hover, .card:focus-visible { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.number-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.number-card .number { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 18px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 900; }
.number-card h3 { margin: 0 0 8px; color: var(--ink-strong); }
.number-card p { margin: 0; color: var(--muted); }

/* Role switcher */
.role-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 28px; margin-top: 40px; }
.role-tabs { display: grid; align-content: start; gap: 8px; }
.role-tab { width: 100%; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); text-align: left; font-weight: 800; cursor: pointer; }
.role-tab[aria-selected="true"] { background: var(--brand); color: #fff; border-color: var(--brand); }
.role-panel { display: none; padding: clamp(24px, 4vw, 42px); border-radius: var(--radius-lg); background: linear-gradient(145deg, #eef8f4, #f5f9fc); border: 1px solid var(--line); }
.role-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.role-panel h3 { margin: 0 0 12px; font-size: 1.75rem; line-height: 1.18; }
.check-list { margin: 16px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin-top: 10px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #dff2e7; color: var(--success); font-size: .72rem; font-weight: 900; }

/* Screenshots */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.shot { position: relative; padding: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #eff7f4, #f5f8fb); text-align: left; }
.shot button { width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.shot img { width: min(230px, 100%); max-height: 460px; margin: 0 auto; border: 4px solid #16362f; border-radius: 26px; object-fit: cover; object-position: top; box-shadow: 0 18px 36px rgba(18, 52, 44, .2); }
.shot h3 { margin: 20px 0 6px; color: var(--ink-strong); font-size: 1.05rem; }
.shot p { margin: 0; color: var(--muted); font-size: .9rem; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(9, 31, 26, .86); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(440px, 90vw); max-height: 88vh; border-radius: 28px; box-shadow: 0 30px 100px #000; }
.lightbox-close { position: fixed; top: 18px; right: 18px; width: 48px; height: 48px; border: 0; border-radius: 50%; background: #fff; color: var(--brand); font-size: 1.5rem; cursor: pointer; }

/* Comparison and pricing */
.table-wrap { margin-top: 36px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; min-width: 700px; }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #edf5f1; color: var(--brand); }
tr:last-child td { border-bottom: 0; }
td.good { background: #f2faf5; color: #1e6b40; font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 34px rgba(23,54,47,.06); }
.price-card.featured { border: 2px solid var(--brand-2); transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.price-badge { position: absolute; top: -14px; right: 22px; padding: 6px 11px; border-radius: 99px; background: var(--accent); color: #1d2a25; font-size: .76rem; font-weight: 900; }
.price-card h3 { margin: 0; font-size: 1.4rem; }
.price { margin: 16px 0 2px; color: var(--brand); font-size: 2.2rem; font-weight: 900; line-height: 1.1; }
.price small { color: var(--muted); font-size: .85rem; font-weight: 600; }
.price-note { min-height: 52px; margin: 8px 0 18px; color: var(--muted); font-size: .88rem; }
.price-card .check-list { flex: 1; margin-bottom: 24px; }
.price-card[id] { scroll-margin-top: 100px; }

/* Guide/article */
.page-hero { padding: clamp(58px, 8vw, 96px) 0; background: linear-gradient(135deg, #eaf7f1, #eff6fb); }
.page-hero h1 { margin: 10px 0 16px; max-width: 900px; font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1.02; letter-spacing: -.05em; }
.page-hero p { max-width: 780px; margin: 0; color: var(--muted); font-size: 1.15rem; }
.content-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 42px; padding: 54px 0 90px; }
.toc { position: sticky; top: 104px; align-self: start; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.toc strong { display: block; margin-bottom: 10px; }
.toc a { display: block; padding: 7px 8px; border-radius: 8px; color: var(--muted); font-size: .88rem; text-decoration: none; }
.toc a:hover { background: #eef6f2; color: var(--brand); }
.article { min-width: 0; }
.article section + section { margin-top: 54px; padding-top: 48px; border-top: 1px solid var(--line); }
.article h2 { margin: 0 0 16px; color: var(--ink-strong); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.2; }
.article h3 { margin-top: 26px; color: var(--brand); }
.article p, .article li { max-width: 78ch; }
.article img.guide-shot { width: min(320px, 100%); margin: 24px auto; border: 5px solid var(--brand); border-radius: 30px; box-shadow: var(--shadow-lg); }
.tip { margin: 22px 0; padding: 16px 18px; border-left: 5px solid var(--brand-3); border-radius: 8px; background: #eef7fc; }
.warning, .notice { margin: 22px 0; padding: 15px 18px; border-left: 5px solid var(--accent); border-radius: 8px; background: #fff8e9; }
.warning { border-color: var(--danger); background: #fff3ef; }
.steps { counter-reset: steps; padding: 0; list-style: none; }
.steps > li { position: relative; min-height: 44px; padding: 4px 0 20px 56px; }
.steps > li::before { counter-increment: steps; content: counter(steps); position: absolute; left: 0; top: 0; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 900; }
.faq-list { display: grid; gap: 11px; margin-top: 34px; }
details { border: 1px solid var(--line); border-radius: 15px; background: #fff; }
summary { padding: 17px 20px; color: var(--ink-strong); font-weight: 800; cursor: pointer; }
details > div { padding: 0 20px 18px; color: var(--muted); }

/* Legal paper compatibility */
main { padding: 28px 0 54px; }
body.marketing main { width: 100%; padding: 0; }
.paper { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: clamp(20px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.paper h1 { margin: 0 0 8px; color: var(--brand); font-size: clamp(1.8rem, 5vw, 2.55rem); line-height: 1.2; }
.paper h2 { margin-top: 32px; color: var(--brand); font-size: 1.35rem; }
.paper h3 { margin-top: 24px; color: var(--brand); font-size: 1.08rem; }
.paper p, .paper li { max-width: 78ch; }
.meta, .muted { color: var(--muted); }
.meta { margin: 0 0 28px; font-size: .94rem; }
code { padding: 2px 5px; border-radius: 5px; background: #eef2ef; }

/* CTA and footer */
.cta-band { position: relative; overflow: hidden; padding: clamp(52px, 7vw, 82px); border-radius: var(--radius-lg); background: linear-gradient(130deg, #173f36, #1d797b 70%, #459dd0); color: #fff; }
.cta-band::after { content: ""; position: absolute; width: 340px; height: 340px; right: -120px; top: -170px; border-radius: 50%; border: 70px solid rgba(255,255,255,.08); }
.cta-band h2 { position: relative; z-index: 1; margin: 0; max-width: 780px; color: #fff; font-size: clamp(2rem, 5vw, 3.7rem); line-height: 1.08; }
.cta-band p { position: relative; z-index: 1; max-width: 700px; color: rgba(255,255,255,.82); }
.cta-band .button-row { position: relative; z-index: 1; }
.site-footer { background: #112e28; color: #d8e7e2; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 38px; }
.footer-brand p { max-width: 340px; color: #a9c2ba; }
.footer-heading { margin: 0 0 14px; color: #fff; font-weight: 850; }
.footer-links { display: grid; gap: 8px; }
.site-footer a { color: #d8e7e2; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #9eb9b0; font-size: .84rem; }
.footer-inner p { margin: 5px 0; }
.top-button { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 46px; height: 46px; display: none; place-items: center; border: 0; border-radius: 50%; background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); cursor: pointer; }
.top-button.show { display: grid; }

@media (max-width: 1020px) {
  .main-nav { position: fixed; inset: 78px 0 auto 0; display: none; padding: 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 13px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p, .hero h1 { margin-inline: auto; }
  .hero-copy .button-row, .trust-row { justify-content: center; }
  .hero-visual { min-height: 510px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-card, .feature-card.wide { grid-column: span 6; }
  .role-layout { grid-template-columns: 1fr; }
  .role-tabs { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container, .header-inner, .footer-inner, main { width: min(100% - 26px, var(--content)); }
  .brand-tagline { display: none; }
  .hero-grid { padding-top: 46px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4.5rem); }
  .hero-visual { min-height: 455px; }
  .hero-orb { width: min(350px, 92vw); }
  .phone-frame { width: min(220px, 62vw); }
  .floating-card { font-size: .75rem; padding: 10px; max-width: 190px; }
  .floating-card.one { left: 0; }
  .floating-card.two { right: 0; }
  .hero-proof { grid-template-columns: 1fr; margin-bottom: -30px; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card.wide { grid-column: 1; }
  .role-tabs { grid-template-columns: 1fr; }
  .role-panel.active { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .shot img { max-height: 520px; }
  .content-layout { grid-template-columns: 1fr; padding-top: 28px; }
  .toc { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .button-row .button { width: 100%; }
  .cta-band { padding: 34px 24px; }
  .paper { border-radius: 14px; }
  ul, ol { padding-left: 22px; }
}

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

@media print {
  body { background: #fff; color: #111; font-size: 11pt; }
  .site-header, .site-footer, .toc, .top-button, .no-print { display: none !important; }
  main, .container { padding: 0; width: 100%; }
  .paper { border: 0; box-shadow: none; padding: 0; }
  a { color: #111; text-decoration: none; }
  h2 { break-after: avoid; }
}
