@font-face {
  font-family: Nunito;
  src: url("/assets/Nunito-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/Nunito-ExtraBold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}
:root {
  color-scheme: light;
  --paper: #fff8e9;
  --paper-bright: #fffdf7;
  --paper-deep: #f4e6c8;
  --ink: #17130e;
  --ink-soft: #4f463c;
  --yolk: #ffc928;
  --yolk-deep: #eab000;
  --cobalt: #1553d8;
  --cobalt-dark: #0b2f8f;
  --coral: #ff654e;
  --pink: #f2a4c3;
  --line: #17130e;
  --shadow: 8px 8px 0 #17130e;
  --radius-sm: 10px;
  --content: 1180px;
  --measure: 760px;
  --section-space: clamp(64px, 8vw, 112px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Nunito, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
body, button, input, select, textarea { font-family: Nunito, Arial, sans-serif; }
a { color: inherit; text-underline-offset: 0.2em; text-decoration-thickness: 0.08em; }
a:hover { text-decoration-thickness: 0.14em; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
summary:focus-visible, textarea:focus-visible, [contenteditable="true"]:focus-visible {
  outline: 4px solid var(--cobalt);
  outline-offset: 4px;
}
img, picture { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p { overflow-wrap: anywhere; }
button, select, textarea, .worksheet-input { font: inherit; }
button, select { min-height: 48px; }
button {
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  background: var(--paper-bright);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}
button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
select {
  max-width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 42px 8px 12px;
  background: var(--paper-bright);
  color: var(--ink);
}
.wrap { width: min(var(--content), calc(100% - 48px)); margin-inline: auto; }
.skip { position: absolute; inset-inline-start: -9999px; inset-block-start: 12px; }
.skip:focus {
  inset-inline-start: 12px;
  z-index: 100;
  border: 2px solid var(--line);
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 800;
}
.site-header {
  position: relative;
  z-index: 20;
  border-block-end: 2px solid var(--line);
  padding-block: 15px;
  background: var(--paper-bright);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 46px; height: 46px; border: 2px solid var(--line); border-radius: 50%; background: var(--yolk); }
.nav-links {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  min-width: 0;
  font-size: 16px;
}
.nav-links a { display: inline-flex; min-height: 40px; align-items: center; font-weight: 800; text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { text-decoration: underline; }
.download, .store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 10px 19px;
  background: var(--ink);
  color: var(--paper-bright);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.download:hover, .store:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--cobalt); }
.store { border-radius: var(--radius-sm); background: var(--paper-bright); color: var(--ink); }
.store.dark { background: var(--ink); color: var(--paper-bright); }
.store small { display: block; font-size: 12px; font-weight: 400; }
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero { position: relative; overflow: hidden; border-block-end: 2px solid var(--line); background: var(--yolk); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  grid-template-rows: auto auto;
  min-height: 720px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-block-start: clamp(56px, 7vw, 92px);
  padding-inline-end: clamp(28px, 5vw, 72px);
}
.hero-actions {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-block-end: clamp(56px, 7vw, 92px);
  padding-inline-end: clamp(28px, 5vw, 72px);
}
.hero-visual {
  position: relative;
  min-width: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
  border-inline-start: 2px solid var(--line);
  background: var(--paper);
}
.hero-visual picture { width: 100%; height: 100%; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.eyebrow, .kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  border: 2px solid var(--line);
  padding: 6px 10px;
  background: var(--paper-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(54px, 6.8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}
.hero-copy > p { max-width: 590px; margin: 0 0 24px; font-size: clamp(19px, 2vw, 23px); line-height: 1.4; }
.situation-picker { display: grid; gap: 14px; max-width: 640px; margin-block-start: 30px; }
.situation-picker > strong { font-size: 14px; letter-spacing: 0.07em; text-transform: uppercase; }
.situation-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.situation-choice { min-height: 80px; border-radius: 0; padding: 13px; background: var(--paper-bright); text-align: start; }
.situation-choice:nth-child(2) { background: var(--cobalt); color: var(--paper-bright); }
.situation-choice:nth-child(3) { background: var(--coral); }
.situation-choice[aria-pressed="true"] { transform: translate(-3px, -3px) rotate(-1deg); box-shadow: 6px 6px 0 var(--ink); }
.practice-preview {
  position: absolute;
  z-index: 3;
  inset-inline-start: clamp(-80px, -6vw, -34px);
  inset-block-end: clamp(28px, 5vw, 58px);
  width: min(460px, calc(100% - 36px));
  border: 2px solid var(--line);
  padding: 22px 24px;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}
.practice-preview .kicker { border: 0; padding: 0; background: transparent; color: var(--cobalt); }
.practice-preview h2 { margin: 8px 0 4px; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.04em; line-height: 1; }
.practice-preview p { margin: 0 0 13px; color: var(--ink-soft); }
.notice { max-width: 620px; margin: 18px 0 0; font-size: 14px; line-height: 1.45; }
.trust-strip { border-block-end: 2px solid var(--line); background: var(--ink); color: var(--paper-bright); }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-item { min-width: 0; padding: 20px 24px; border-inline-end: 1px solid #776f65; }
.trust-item:first-child { padding-inline-start: 0; }
.trust-item:last-child { border-inline-end: 0; padding-inline-end: 0; }
.trust-item strong { display: block; }
.trust-item span { color: #d8d0c3; font-size: 14px; }
.section { padding-block: var(--section-space); }
.section.alt { border-block: 2px solid var(--line); background: var(--paper-bright); }
.section h2, .final h2 {
  max-width: 820px;
  margin: 15px 0 26px;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
}
.lede { max-width: 720px; font-size: clamp(19px, 2vw, 23px); line-height: 1.45; }
.use-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap: 24px;
  margin-block-start: 40px;
}
.use, .feature {
  min-width: 0;
  border: 2px solid var(--line);
  border-radius: 0;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 var(--ink);
}
.use:nth-child(3n + 1), .feature:nth-child(3n + 1) { background: var(--coral); transform: rotate(-0.5deg); }
.use:nth-child(3n + 2), .feature:nth-child(3n + 2) { background: var(--cobalt); color: var(--paper-bright); transform: rotate(0.4deg); }
.use:nth-child(3n), .feature:nth-child(3n) { background: var(--yolk); transform: rotate(-0.25deg); }
.use h2, .feature h2, .use h3, .feature h3, .card-heading {
  margin: 0 0 10px !important;
  font-size: clamp(24px, 2.7vw, 34px) !important;
  letter-spacing: -0.035em !important;
  line-height: 1.04 !important;
}
.use p:last-child, .feature p:last-child { margin-block-end: 0; }
.feature a, .use a { font-weight: 800; }
.collage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}
.collage-media { border: 2px solid var(--line); background: var(--yolk); box-shadow: 12px 12px 0 var(--cobalt); transform: rotate(1deg); }
.collage-media picture { width: 100%; }
.collage-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(38px, 6vw, 72px); align-items: center; }
.art { width: 100%; border: 2px solid var(--line); border-radius: 0; background: var(--yolk); box-shadow: 10px 10px 0 var(--cobalt); }
.number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-block-end: 20px;
  border: 2px solid var(--line);
  background: var(--yolk);
  color: var(--ink);
  font-weight: 800;
}
.list { padding: 0; list-style: none; }
.list li { border-block-end: 2px solid var(--line); padding-block: 17px; font-weight: 800; }
.list li span { display: block; margin-block-start: 4px; color: var(--ink-soft); font-weight: 400; }
.final { position: relative; overflow: hidden; border-block: 2px solid var(--line); padding-block: 78px; background: var(--cobalt); color: var(--paper-bright); }
.final .store { border-color: var(--paper-bright); }
.footer { border-block-start: 2px solid var(--line); padding-block: 42px; background: var(--ink); color: var(--paper-bright); font-size: 15px; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; }
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  border-block-end: 2px solid var(--line);
  padding-block: clamp(64px, 8vw, 98px);
  background: var(--yolk);
}
.page-hero::after {
  position: absolute;
  z-index: -1;
  inset-block: 0;
  inset-inline-end: 0;
  width: 40%;
  border-inline-start: 2px solid var(--line);
  background-image: url("/assets/collage-library.webp");
  background-position: center;
  background-size: cover;
  content: "";
}
body[data-section="worksheets"] .page-hero::after,
body[data-section="support"] .page-hero::after { background-image: url("/assets/collage-tools.webp"); }
body[data-section="practice"] .page-hero::after { background-image: url("/assets/collage-hero.webp"); background-position: 72% center; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: min(64%, 800px);
  margin: 16px 0 14px;
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}
.page-hero .lede { max-width: min(58%, 700px); }
body[data-visual] .page-hero::after { display: none; }
body[data-visual] .page-hero h1 { max-width: 980px; }
body[data-visual] .page-hero .lede { max-width: 780px; }
.article-visual {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 36px));
  margin-block: -52px 72px;
  border: 2px solid var(--line);
  background: var(--paper-bright);
  box-shadow: 12px 12px 0 var(--cobalt);
  transform: rotate(-0.35deg);
}
.article-visual picture { display: block; }
.article-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.article-visual figcaption { border-block-start: 2px solid var(--line); padding: 12px 16px; color: var(--ink-soft); font-size: 14px; }
.visual-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr); gap: clamp(34px, 6vw, 76px); align-items: start; }
.visual-split > :first-child { min-width: 0; }
.channel-grid, .step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 18px;
  margin-block: 30px 44px;
}
.channel-card, .step-card {
  border: 2px solid var(--line);
  padding: 24px;
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 var(--cobalt);
}
.channel-card:nth-child(3n + 2), .step-card:nth-child(3n + 2) { box-shadow: 7px 7px 0 var(--coral); }
.channel-card:nth-child(3n), .step-card:nth-child(3n) { box-shadow: 7px 7px 0 var(--yolk-deep); }
.channel-card h3, .step-card h3 { margin: 0 0 10px; font-size: 25px; line-height: 1.05; }
.channel-card p:last-child, .step-card p:last-child { margin-block-end: 0; }
.step-card .number { margin-block-end: 16px; }
.prompt-box {
  margin-block: 28px;
  border: 2px solid var(--line);
  padding: clamp(20px, 4vw, 30px);
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: 8px 8px 0 var(--coral);
}
.prompt-box pre { margin: 0; white-space: pre-wrap; color: inherit; font: inherit; }
.boundary-box {
  margin-block: 28px;
  border-inline-start: 8px solid var(--coral);
  padding: 20px 24px;
  background: var(--paper-deep);
}
.language-banner { margin-block: 24px; border: 2px solid var(--line); padding: 16px 18px; background: var(--yolk); box-shadow: 5px 5px 0 var(--ink); }
.language-banner strong { display: block; margin-block-end: 4px; }
.language-switcher { display: flex; flex-wrap: wrap; gap: 8px; margin-block: 22px; }
.language-switcher a, .language-switcher span { border: 2px solid var(--line); padding: 8px 11px; background: var(--paper-bright); font-weight: 800; text-decoration: none; }
.language-switcher [aria-current="page"] { background: var(--cobalt); color: var(--paper-bright); }
.meta-line { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-block: 24px; color: var(--ink-soft); font-size: 14px; }
.meta-line > span { border-block-start: 2px solid var(--line); padding-block-start: 7px; }
.crumb {
  width: fit-content;
  max-width: 100%;
  border: 2px solid var(--line);
  padding: 5px 9px;
  background: var(--paper-bright);
  font-size: 14px;
  font-weight: 800;
}
.prose { max-width: var(--measure); }
.prose > :first-child { margin-block-start: 0; }
.prose h2 { margin-block: 58px 18px; font-size: clamp(31px, 4vw, 46px); letter-spacing: -0.04em; line-height: 1.03; }
.prose h3 { margin-block: 38px 12px; font-size: 28px; letter-spacing: -0.025em; line-height: 1.1; }
.prose h4 { margin-block: 26px 8px; font-size: 20px; }
.prose p, .prose li { max-width: 72ch; }
.prose ul, .prose ol { padding-inline-start: 24px; }
.prose li + li { margin-block-start: 9px; }
.prose code {
  border: 1px solid #c6b995;
  padding: 0.08em 0.34em;
  background: var(--paper-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
}
.prose pre {
  overflow-x: auto;
  margin-block: 22px 30px;
  border: 2px solid var(--line);
  padding: 22px;
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: 7px 7px 0 var(--cobalt);
  font-size: 16px;
  line-height: 1.45;
}
.prose pre code { border: 0; padding: 0; background: transparent; color: inherit; font-size: inherit; }
.prose > article { margin-block: 56px; border-block-start: 4px solid var(--line); padding-block-start: 24px; }
.prose > article:nth-of-type(3n + 1) { border-color: var(--coral); }
.prose > article:nth-of-type(3n + 2) { border-color: var(--cobalt); }
.prose details { margin-block: 20px; border: 2px solid var(--line); padding: 15px 18px; background: var(--paper-bright); }
.practice-visual { max-width: 620px; margin: 24px 0 28px; border: 2px solid var(--line); background: var(--paper-bright); box-shadow: 7px 7px 0 var(--cobalt); }
.practice-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.prose summary { cursor: pointer; font-weight: 800; }
.prose table { width: 100%; border-collapse: collapse; margin-block: 26px; font-size: 16px; }
.prose th, .prose td { border-block-end: 1px solid #aa9e82; padding: 12px 10px; text-align: start; vertical-align: top; }
.prose th { border-block-end: 3px solid var(--line); }
.source-note { margin-block-start: 36px; border-block-start: 1px solid #aa9e82; padding-block-start: 18px; color: var(--ink-soft); font-size: 15px; }
.muted { color: var(--ink-soft); }
.faq { max-width: 860px; }
.faq details { border-block-start: 2px solid var(--line); padding-block: 18px; }
.faq details:last-child { border-block-end: 2px solid var(--line); }
.faq summary { cursor: pointer; font-size: 21px; font-weight: 800; }
.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  background-image: url("/assets/collage-hero.webp");
  background-position: center;
  background-size: cover;
}
.not-found > * { width: fit-content; max-width: min(620px, 100%); margin-inline-start: clamp(18px, 7vw, 100px); background: var(--paper-bright); }
.not-found h1 { margin-block: 8px; padding-inline: 12px; font-size: clamp(70px, 14vw, 170px); line-height: 0.8; }
.worksheet-intro .worksheet-note {
  max-width: min(56%, 760px);
  margin-block-start: 24px;
  border: 2px solid var(--line);
  padding: 14px 16px;
  background: var(--paper-bright);
  box-shadow: 5px 5px 0 var(--cobalt);
  font-size: 15px;
}
.worksheet-section { padding-block-start: 56px; }
.worksheet { max-width: 940px; }
.worksheet-actions { margin-block-end: 34px; border: 2px solid var(--line); padding: 20px 22px; background: var(--yolk); box-shadow: 6px 6px 0 var(--ink); }
.worksheet-actions p { margin: 0; }
.worksheet-actions p + p { margin-block-start: 8px; }
.worksheet-actions button { margin-block: 14px 8px; }
#out:focus { outline: 3px solid var(--ink); outline-offset: 7px; }
#out .result-link { display: inline-block; font-weight: 800; }
.prose article[id] { scroll-margin-top: 110px; }
.worksheet-field {
  margin-block: 26px;
  border: 2px solid var(--line);
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 var(--cobalt);
  break-inside: avoid;
}
.worksheet-field:nth-of-type(3n + 2) { box-shadow: 7px 7px 0 var(--coral); }
.worksheet-field:nth-of-type(3n) { box-shadow: 7px 7px 0 var(--yolk-deep); }
.worksheet-field .number { margin-block-end: 14px; }
.worksheet-field h2 { margin: 0 0 8px; font-size: clamp(27px, 3vw, 34px); letter-spacing: -0.035em; line-height: 1.08; }
.worksheet-field p { max-width: 760px; margin: 0 0 17px; }
.worksheet-field label { display: block; margin-block-end: 7px; font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.worksheet-field textarea, .worksheet-input {
  width: 100%;
  min-height: 120px;
  border: 2px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
}
.worksheet-field textarea { resize: vertical; }
.worksheet-source { margin-block-start: 48px; border-block-start: 3px solid var(--line); padding-block-start: 26px; }
.worksheet-source h2 { font-size: 32px; letter-spacing: -0.03em; line-height: 1.1; }
#finder { max-width: 920px; border: 2px solid var(--line); padding: clamp(24px, 5vw, 46px); background: var(--paper-bright); box-shadow: 10px 10px 0 var(--cobalt); }
#finder label { display: block; margin-block: 22px 7px; font-weight: 800; }
#finder select { width: min(100%, 680px); margin-inline-end: 8px; }
#out { margin-block-start: 22px; border-block-start: 2px solid var(--line); padding-block-start: 17px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
@media (max-width: 1100px) {
  .nav { flex-wrap: wrap; }
  .nav-links { order: 3; flex-basis: 100%; }
  .hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr); }
  .practice-preview { inset-inline-start: 24px; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .wrap { width: min(var(--content), calc(100% - 28px)); }
  .site-header { padding-block: 12px; }
  .brand { font-size: 20px; }
  .brand img { width: 40px; height: 40px; }
  .download { min-height: 42px; padding: 8px 13px; font-size: 14px; }
  .nav-links { flex-wrap: wrap; justify-content: flex-start; gap: 2px 16px; overflow-x: visible; padding-block: 4px; }
  .nav-links a { flex: 0 0 auto; min-height: 40px; white-space: nowrap; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { grid-row: 1; padding: 48px 0 28px; }
  .hero-visual { grid-column: 1; grid-row: 2; min-height: 420px; border-block: 2px solid var(--line); border-inline-start: 0; }
  .hero-actions { grid-row: 3; padding: 30px 0 48px; }
  .hero h1 { font-size: clamp(49px, 15.5vw, 74px); }
  .situation-options { grid-template-columns: 1fr; }
  .situation-choice { min-height: 58px; }
  .practice-preview { inset-inline: 14px; inset-block-end: 18px; width: auto; padding: 19px; }
  .trust-strip .wrap { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child, .trust-item:last-child { border-inline-end: 0; border-block-end: 1px solid #776f65; padding: 15px 0; }
  .trust-item:last-child { border-block-end: 0; }
  .section { padding-block: 60px; }
  .collage-section, .split { grid-template-columns: 1fr; gap: 36px; }
  .visual-split { grid-template-columns: 1fr; gap: 30px; }
  .article-visual { width: calc(100% - 28px); margin-block: -28px 48px; box-shadow: 7px 7px 0 var(--cobalt); transform: none; }
  .collage-media { order: -1; }
  .page-hero { min-height: 0; padding-block: 48px 272px; }
  body[data-visual] .page-hero { padding-block: 48px 88px; }
  .page-hero::after { inset-block: auto 0; inset-inline: 0; width: 100%; height: 230px; border-block-start: 2px solid var(--line); border-inline-start: 0; }
  .page-hero h1, .page-hero .lede, .worksheet-intro .worksheet-note { max-width: 100%; }
  .footer-grid { display: block; }
  .footer nav { justify-content: flex-start; margin-block-start: 20px; }
  .store { flex: 1 1 150px; white-space: normal; }
  #finder select { width: 100%; margin: 0 0 10px; }
  #finder button { width: 100%; }
  .prose table { display: block; overflow-x: auto; }
}
@media (max-width: 430px) {
  .nav { gap: 10px; }
  .brand { font-size: 18px; }
  .download { white-space: normal; }
  .hero-visual { min-height: 390px; }
  .practice-preview { box-shadow: 5px 5px 0 var(--ink); }
}
:lang(de) .hero h1, :lang(ru) .hero h1, :lang(de) .page-hero h1, :lang(ru) .page-hero h1 {
  font-size: clamp(43px, 6vw, 82px);
  letter-spacing: -0.045em;
}
[dir="rtl"] .practice-preview, [dir="rtl"] .use, [dir="rtl"] .feature, [dir="rtl"] .collage-media { transform: none; }
@media print {
  @page { size: A4; margin: 12mm; }
  html { scroll-behavior: auto; }
  body { background: #fff; color: #000; font-family: Arial, sans-serif; font-size: 10.5pt; line-height: 1.35; }
  .no-print, .worksheet-actions { display: none !important; }
  .wrap, .worksheet { width: 100%; max-width: none; }
  .page-hero { min-height: 0; border-block-end: 1.5pt solid #000; padding: 0 0 5mm; background: #fff; }
  .page-hero::after { display: none; }
  .page-hero h1 { max-width: none; margin: 0 0 3mm; font-size: 22pt; letter-spacing: -0.02em; }
  .page-hero .lede { max-width: none; margin: 0; font-size: 11pt; }
  .worksheet-section { padding: 3mm 0 0; background: #fff; }
  .worksheet-field { margin: 4mm 0; border: 1pt solid #000; padding: 4mm; background: #fff; box-shadow: none; break-inside: avoid; page-break-inside: avoid; }
  .worksheet-field .number { width: 7mm; height: 7mm; margin: 0 0 2mm; border: 1pt solid #000; background: #fff; color: #000; font-size: 9pt; }
  .worksheet-field h2 { margin: 0 0 1.5mm; font-size: 13.5pt; }
  .worksheet-field p { margin: 0 0 2.5mm; }
  .worksheet-field label { margin-block-end: 1mm; font-size: 8.5pt; }
  .worksheet-field textarea, .worksheet-input { min-height: 26mm; border: 1pt solid #666; padding: 2.5mm; background: #fff; color: #000; overflow: visible; resize: none; }
  .worksheet-source { margin-block-start: 6mm; border-block-start: 1pt solid #000; padding-block-start: 4mm; }
  a { text-decoration: none; }
}

/* ARWP Internal Discovery & Distribution */
.page-utility{display:flex;gap:.55rem;align-items:center;flex-wrap:wrap;margin:1rem 0 0;padding:.65rem .75rem;border:2px solid currentColor;border-radius:14px;background:rgba(255,255,255,.76)}.page-utility__meta{font-weight:800;margin-right:auto}.page-utility button{font:inherit;font-weight:800;border:1px solid currentColor;border-radius:999px;padding:.38rem .65rem;background:#fff;cursor:pointer}.page-utility__status{font-size:.82rem;min-height:1.2em}.internal-continuation{margin-top:2.5rem;padding-top:1.5rem;border-top:2px solid currentColor}.continuation-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem}.continuation-card{display:flex;flex-direction:column;gap:.32rem;padding:1rem;border:2px solid currentColor;border-radius:16px;text-decoration:none;background:rgba(255,255,255,.72)}.continuation-card span{font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.04em}.continuation-card strong{font-size:1.05rem}.continuation-card small{line-height:1.4}@media(max-width:700px){.continuation-grid{grid-template-columns:1fr}}
