    @font-face { font-family: "Nunito QT"; src: url("fonts/nunito-400.woff2") format("woff2"); font-weight: 400 600; font-style: normal; font-display: swap; }
    @font-face { font-family: "Nunito QT"; src: url("fonts/nunito-700.woff2") format("woff2"); font-weight: 700 900; font-style: normal; font-display: swap; }
    @font-face { font-family: "Fredoka QT"; src: url("fonts/fredoka-display.woff2") format("woff2"); font-weight: 400 900; font-style: normal; font-display: swap; }
:root {
      --ink: #18233b;
      --cream: #fff9ed;
      --paper: #fffdf8;
      --violet: #7652df;
      --violet-soft: #e8deff;
      --coral: #e77b60;
      --coral-soft: #ffd9cf;
      /* Coral is a background colour. As *text* it only clears WCAG AA once it is
         this dark — verified 4.5:1 or better on every surface used on this page,
         including the coral-soft card (its worst case, 4.51:1). */
      --coral-text: #b43a1b;
      --lime: #c8ee6f;
      --lime-soft: #eff9cf;
      --yellow: #ffd563;
      --sky: #99d8f3;
      --muted: #59647b;
      --line: rgba(24, 35, 59, .14);
      --shadow: 0 22px 42px rgba(24, 35, 59, .13);
      --sans: "Nunito QT", ui-rounded, "Avenir Next", "Segoe UI", sans-serif;
      --display: "Fredoka QT", "Nunito QT", ui-rounded, "Avenir Next", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 18px/1.65 var(--sans); }
a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: 4px; cursor: pointer; }
a:hover { color: var(--coral-text); }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--ink); outline-offset: 5px; }
.wrap { width: min(1100px, calc(100% - 40px)); margin-inline: auto; }
header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 24px; padding-block: 22px; border-bottom: 2px solid var(--ink); }
header a, footer a, .breadcrumbs a, .text-link { display: inline-flex; align-items: center; min-height: 44px; }
.brand { font: 700 30px/1.2 var(--display); text-decoration: none; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; font-weight: 600; text-wrap: balance; overflow-wrap: anywhere; }
h1 { font-size: clamp(38px, 6vw, 68px); max-width: 20ch; margin: 16px 0 24px; }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 25px; }
p, li { overflow-wrap: anywhere; }
.prose, .cross-sell, details { max-width: 72ch; }
.prose p, .prose ul { max-width: 72ch; }
.prose h2 { margin-top: 40px; }
.prose h2:first-child { margin-top: 24px; }
.prose ul { padding-left: 24px; }
.kicker { color: var(--coral-text); font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.intro { padding-block: 24px 16px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0 12px; align-items: center; font-size: 15px; margin-top: 16px; }
.breadcrumbs > * + *::before { content: '›'; margin-right: 12px; text-decoration: none; }
section { margin-block: 52px; }
.cards { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.panel { background: var(--paper); border: 1px solid var(--ink); border-radius: 18px; padding: 22px; }
.panel h3 { margin: 18px 0 12px; }
.panel p { font-size: 16px; color: var(--muted); }
.panel > a { display: flex; min-height: 44px; align-items: center; font-weight: 700; }
.samples { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; max-width: 960px; }
figure { margin: 0; min-width: 0; }
figure a { display: block; }
img { display: block; width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; }
figcaption { font-size: 15px; color: var(--muted); margin-top: 12px; }
.cross-sell { background: var(--lime-soft); border: 2px solid var(--ink); border-radius: 24px; padding: clamp(22px, 4vw, 42px); margin-block: 52px; box-shadow: 6px 6px 0 var(--lime); }
.cross-sell h2 { margin-top: 8px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 14px 22px; border: 2px solid var(--ink); border-radius: 12px; background: var(--ink); color: var(--cream); font-weight: 800; text-decoration: none; }
.button:hover { background: var(--cream); color: var(--ink); }
details { border-top: 1px solid var(--line); padding: 12px 0; }
summary { cursor: pointer; min-height: 44px; padding-block: 8px; font-weight: 700; }
footer { border-top: 2px solid var(--ink); margin-top: 64px !important; padding-block: 32px; }
footer nav { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 16px; }
footer p { font-size: 14px; color: var(--muted); }
.skip { position: absolute; top: -100px; left: 16px; padding: 12px; background: var(--paper); z-index: 10; }
.skip:focus { top: 8px; }
@media (max-width: 800px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { body { font-size: 17px; } .wrap { width: calc(100% - 32px); } .cards, .samples { grid-template-columns: minmax(0, 1fr); } .samples { padding-inline: 16px; } section { margin-block: 36px; } .button { width: 100%; } }

.prose > h2:first-of-type { background: var(--violet-soft); border: 1px solid var(--ink); border-bottom: 0; border-radius: 18px 18px 0 0; margin-bottom: 0; padding: 22px 24px 8px; }
.prose > ul:first-of-type { background: var(--violet-soft); border: 1px solid var(--ink); border-top: 0; border-radius: 0 0 18px 18px; margin-top: 0; padding: 8px 24px 22px 44px; }
