/* ==========================================================================
   Power Sponsorship — redesign design system
   One stylesheet. Tokens, primitives, components, utilities.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* Brand — the existing purple/orange, rebalanced.
     Purple becomes the dark surface. Orange becomes the action colour only. */
  --plum-900: #1E0621;
  --plum-800: #2A0B2E;
  --plum-700: #3D0F44;
  --plum-600: #52145A;
  --plum-500: #660066; /* the original brand purple */
  --plum-400: #8A2E8E;
  --plum-300: #B36FB6;
  --plum-200: #DDBFDF;
  --plum-100: #F2E6F3;

  --orange-700: #B34600;
  --orange-600: #D95400;
  --orange-500: #FF6600; /* the original brand orange */
  --orange-400: #FF8534;
  --orange-200: #FFD1B0;
  --orange-100: #FFF0E6;

  --ink: #22101F;
  --ink-soft: #4A3A4B;
  --muted: #6E5C70;
  --line: #E6DEE6;
  --line-strong: #CFC0D0;

  --paper: #FFFFFF;
  --sand: #FAF6F5;
  --sand-deep: #F3EBEB;

  --ok: #1F7A4D;

  /* Type */
  --font: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --step--2: clamp(0.72rem, 0.70rem + 0.10vw, 0.78rem);
  --step--1: clamp(0.84rem, 0.81rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.12rem);
  --step-1:  clamp(1.18rem, 1.10rem + 0.38vw, 1.40rem);
  --step-2:  clamp(1.42rem, 1.28rem + 0.70vw, 1.85rem);
  --step-3:  clamp(1.62rem, 1.42rem + 0.95vw, 2.25rem);
  --step-4:  clamp(1.90rem, 1.60rem + 1.45vw, 2.85rem);
  --step-5:  clamp(2.25rem, 1.75rem + 2.45vw, 3.90rem);

  /* Space */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;

  --section-y: clamp(3.25rem, 2rem + 5vw, 6.5rem);

  /* Shell */
  --wrap: 1200px;
  --wrap-wide: 1400px;
  --wrap-text: 68ch;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(34, 16, 31, 0.06), 0 2px 6px rgba(34, 16, 31, 0.05);
  --shadow: 0 2px 6px rgba(34, 16, 31, 0.06), 0 12px 28px -10px rgba(34, 16, 31, 0.18);
  --shadow-lg: 0 4px 12px rgba(34, 16, 31, 0.07), 0 32px 60px -22px rgba(34, 16, 31, 0.30);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset ----------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
  border-radius: 3px;
}

::selection { background: var(--orange-200); color: var(--plum-800); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--plum-800); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Type ------------------------------------------------------ */

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--plum-800);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); letter-spacing: -0.032em; }
h2 { font-size: var(--step-4); letter-spacing: -0.028em; }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); letter-spacing: -0.015em; }
h5 { font-size: var(--step-0); letter-spacing: 0; }

p { text-wrap: pretty; }
p + p { margin-top: 1em; }

a { color: var(--plum-600); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--orange-600); }

strong, b { font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: var(--step--2);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: var(--orange-400); }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

.tagline {
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--plum-600);
}

.small { font-size: var(--step--1); }
.muted { color: var(--muted); }
.center { text-align: center; }
.measure { max-width: var(--wrap-text); }
.measure-wide { max-width: 82ch; }
.center.measure, .center.measure-wide { margin-inline: auto; }

.mark { color: var(--orange-500); }
.mark-underline {
  background-image: linear-gradient(transparent 62%, var(--orange-200) 62%);
  background-repeat: no-repeat;
}

/* ---------- 4. Layout ---------------------------------------------------- */

.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap-wide { width: min(100% - (var(--gutter) * 2), var(--wrap-wide)); margin-inline: auto; }
.wrap-narrow { width: min(100% - (var(--gutter) * 2), 860px); margin-inline: auto; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.6); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

.section--sand { background: var(--sand); }
.section--sand-deep { background: var(--sand-deep); }
.section--plum { background: var(--plum-800); color: #F0E4F1; }
.section--plum h2, .section--plum h3, .section--plum h4 { color: #fff; }
.section--plum .lede { color: #D9C4DB; }
/* Buttons carry their own colour — this must not repaint them. */
.section--plum a:not(.btn):not(.card):not(.tile):not(.article-card) { color: var(--orange-400); }

.section-head { max-width: 44rem; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; }
.section-head > .lede { margin-top: var(--sp-4); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 62rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.25fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.25fr; }
  .split--sidebar { grid-template-columns: 1fr 20rem; align-items: start; }
  .split--reverse > :first-child { order: 2; }
}

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.rule { height: 1px; background: var(--line); border: 0; margin-block: var(--sp-7); }
.rule-accent {
  width: 64px; height: 5px; border: 0; border-radius: 3px;
  background: var(--orange-500); margin: 0 0 var(--sp-5);
}
.center > .rule-accent, .center .rule-accent { margin-inline: auto; }

/* ---------- 5. Buttons --------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55em;
  padding: 0.85em 1.6em;
  font-size: var(--step-0);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    border-color 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--orange-600); color: #fff; box-shadow: var(--shadow); }

.btn--plum { background: var(--plum-600); color: #fff; }
.btn--plum:hover { background: var(--plum-700); color: #fff; }

.btn--outline { border-color: var(--plum-600); color: var(--plum-600); background: transparent; }
.btn--outline:hover { background: var(--plum-600); color: #fff; }

.btn--ghost-light { border-color: rgba(255,255,255,0.45); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--plum-800); border-color: #fff; }

.btn--sm { padding: 0.6em 1.15em; font-size: var(--step--1); }
.btn--lg { padding: 1em 2em; font-size: var(--step-1); }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-4);
  align-items: center;
}
.center .btn-row, .btn-row.center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 700; text-decoration: none;
  color: var(--plum-600);
}
.link-arrow::after {
  content: "→"; transition: transform 0.18s var(--ease); display: inline-block;
}
.link-arrow:hover { color: var(--orange-600); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- 6. Header / nav ---------------------------------------------- */

.utility-bar {
  background: var(--plum-900);
  color: var(--plum-200);
  font-size: var(--step--2);
  letter-spacing: 0.01em;
}
.utility-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); min-height: 38px; flex-wrap: wrap;
}
.utility-bar a { color: var(--plum-200); text-decoration: none; }
.utility-bar a:hover { color: #fff; }
.utility-bar__links { display: flex; gap: var(--sp-4); align-items: center; flex-wrap: wrap; }
.utility-bar__socials { display: flex; gap: var(--sp-3); align-items: center; }
.utility-bar__socials a { display: grid; place-items: center; width: 26px; height: 26px; }
.utility-bar__socials svg { width: 15px; height: 15px; fill: currentColor; }
@media (max-width: 46rem) { .utility-bar { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow); }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-weight: 900; font-size: 1.02rem; letter-spacing: -0.02em;
  color: var(--plum-700); text-transform: uppercase;
}
.brand__name span { color: var(--orange-500); }
.brand__tag {
  font-size: 0.63rem; letter-spacing: 0.06em; color: var(--muted);
  margin-top: 3px; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: var(--sp-2); }
@media (max-width: 66rem) { .nav { display: none; } }

.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.3em;
  padding: 0.6rem 0.85rem;
  font-weight: 600; font-size: 0.98rem;
  color: var(--plum-800); text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav__link:hover, .nav__item:focus-within .nav__link { color: var(--orange-600); }
.nav__link[aria-current="page"] { color: var(--orange-600); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.1rem;
  height: 2px; background: var(--orange-500); border-radius: 2px;
}
.nav__caret { width: 9px; height: 9px; fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform 0.2s var(--ease); }
.nav__item:hover .nav__caret, .nav__item:focus-within .nav__caret { transform: rotate(180deg); }

.mega {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 34rem; padding: var(--sp-5);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.nav__item:hover > .mega, .nav__item:focus-within > .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 2px);
}
.mega--right { left: auto; right: 0; transform: translate(0, 8px); min-width: 24rem; }
.nav__item:hover > .mega--right, .nav__item:focus-within > .mega--right { transform: translate(0, 2px); }

.mega__grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mega--right .mega__grid { grid-template-columns: 1fr; }
.mega__title {
  font-size: var(--step--2); font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange-600); margin-bottom: var(--sp-3);
}
.mega__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.mega__link {
  display: block; padding: 0.5rem 0.65rem; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--plum-800); font-weight: 600; font-size: 0.94rem;
  line-height: 1.35;
}
.mega__link small { display: block; font-weight: 400; color: var(--muted); font-size: 0.79rem; margin-top: 1px; }
.mega__link:hover { background: var(--orange-100); color: var(--plum-800); }
.mega__foot {
  margin-top: var(--sp-5); padding-top: var(--sp-4); border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  flex-wrap: wrap;
}

.header__cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
@media (max-width: 66rem) { .header__cta .btn { display: none; } }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--radius-sm);
  align-items: center; justify-content: center; color: var(--plum-800);
}
@media (max-width: 66rem) { .nav-toggle { display: inline-flex; } }
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--plum-900); color: #fff;
  padding: calc(var(--header-h) + 1.5rem) var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.28s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav__group + .mobile-nav__group { margin-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--sp-5); }
.mobile-nav__title {
  font-size: var(--step--2); font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange-400); margin-bottom: var(--sp-3);
}
.mobile-nav a {
  display: block; padding: 0.55rem 0; color: #F0E4F1; text-decoration: none;
  font-weight: 600; font-size: 1.05rem;
}
.mobile-nav a:hover { color: var(--orange-400); }
.mobile-nav .btn { margin-top: var(--sp-5); }
body.nav-open { overflow: hidden; }

/* ---------- 7. Hero ------------------------------------------------------ */

.hero {
  position: relative; overflow: hidden;
  background: var(--plum-800);
  color: #F3E8F4;
  padding-block: clamp(2.75rem, 2.25rem + 3.2vw, 5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70rem 40rem at 12% -10%, rgba(255, 102, 0, 0.28), transparent 62%),
    radial-gradient(55rem 34rem at 95% 108%, rgba(138, 46, 142, 0.55), transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero .lede { color: #D9C4DB; }

.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 62rem) { .hero__grid { grid-template-columns: 1.1fr 0.9fr; } }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero__badge {
  position: absolute; bottom: -1.25rem; left: -1rem;
  background: var(--orange-500); color: #fff;
  padding: 0.85rem 1.15rem; border-radius: var(--radius);
  font-weight: 800; line-height: 1.15; font-size: var(--step--1);
  box-shadow: var(--shadow);
  max-width: 15rem;
}
@media (max-width: 40rem) { .hero__badge { left: 0.5rem; bottom: -1rem; } }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-6); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: var(--step--1); color: #CBB0CD;
}
.hero__proof span { display: inline-flex; align-items: center; gap: 0.45em; }
.hero__proof svg { width: 16px; height: 16px; fill: var(--orange-400); flex-shrink: 0; }

/* Compact page hero */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--plum-800); color: #F3E8F4;
  padding-block: clamp(2.75rem, 2rem + 4vw, 4.75rem);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50rem 26rem at 8% -30%, rgba(255, 102, 0, 0.26), transparent 60%),
    radial-gradient(46rem 26rem at 100% 130%, rgba(138, 46, 142, 0.5), transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: var(--step-4); }
.page-hero .lede { color: #D9C4DB; margin-top: var(--sp-4); max-width: 46rem; }
.page-hero__grid { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 62rem) {
  .page-hero__grid--media { grid-template-columns: 1.25fr 0.75fr; }
}
.page-hero__media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1; object-fit: cover; width: 100%;
}
.page-hero .btn-row { margin-top: var(--sp-6); }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.5em; align-items: center;
  font-size: var(--step--2); color: var(--plum-300);
  margin-bottom: var(--sp-4); list-style: none; padding: 0;
}
.breadcrumb a { color: var(--plum-200); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5em; opacity: 0.5; }

/* ---------- 8. Cards ----------------------------------------------------- */

.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  height: 100%;
}
.card--link { text-decoration: none; color: inherit; }
.card--link:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--plum-200); color: inherit;
}
.card__icon {
  width: 46px; height: 46px; border-radius: var(--radius);
  display: grid; place-items: center; margin-bottom: var(--sp-4);
  background: var(--orange-100); color: var(--orange-600); flex-shrink: 0;
}
.card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.card__text { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; }
.card__foot { margin-top: auto; padding-top: var(--sp-5); }
.card--tint { background: var(--sand); border-color: transparent; }
.card--plum { background: var(--plum-700); border-color: transparent; color: #EBD9EC; }
.card--plum .card__title { color: #fff; }
.card--plum .card__text { color: #D3BAD5; }
.card--plum .card__icon { background: rgba(255,255,255,0.12); color: var(--orange-400); }

/* Audience cards */
.audience-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem);
  text-decoration: none; color: inherit; height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.audience-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: var(--orange-500);
}
.audience-card--alt::after { background: var(--plum-500); }
.audience-card__kicker {
  font-size: var(--step--2); font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-3);
}
.audience-card h3 { font-size: var(--step-2); margin-bottom: var(--sp-3); }
.audience-card ul { margin: var(--sp-4) 0 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.audience-card li { position: relative; padding-left: 1.6rem; font-size: var(--step--1); color: var(--ink-soft); }
.audience-card li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--orange-500);
}
.audience-card--alt li::before { background: var(--plum-400); }

/* Service tile with image */
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 17rem; display: flex; align-items: flex-end;
  padding: var(--sp-6); text-decoration: none; color: #fff;
  background: var(--plum-700); isolation: isolate;
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; transition: transform 0.4s var(--ease);
}
.tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(30, 6, 33, 0.92) 8%, rgba(30, 6, 33, 0.55) 55%, rgba(30, 6, 33, 0.25) 100%);
}
.tile:hover { color: #fff; }
.tile:hover img { transform: scale(1.05); }
.tile h3 { color: #fff; font-size: var(--step-1); margin-bottom: var(--sp-2); }
.tile p { font-size: var(--step--1); color: #E0CFE2; }
.tile__kicker {
  font-size: var(--step--2); font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange-400); margin-bottom: var(--sp-2);
}

/* ---------- 9. Lists ----------------------------------------------------- */

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.ticks li { position: relative; padding-left: 2rem; line-height: 1.55; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.35em;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--orange-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D95400' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 0.72rem no-repeat;
}
.section--plum .ticks li::before {
  background-color: rgba(255, 133, 52, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8534' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.ticks--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); gap: 0.7rem var(--sp-6); }

.numbered { list-style: none; padding: 0; margin: 0; counter-reset: n; display: grid; gap: var(--sp-5); }
.numbered li { position: relative; padding-left: 3.5rem; counter-increment: n; }
.numbered li::before {
  content: counter(n, decimal-leading-zero);
  position: absolute; left: 0; top: -0.1em;
  font-size: var(--step-1); font-weight: 900; color: var(--orange-500);
  letter-spacing: -0.03em;
}
.numbered h4 { margin-bottom: var(--sp-2); }
.numbered p { color: var(--ink-soft); font-size: var(--step--1); }

.plain-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.plain-list li { position: relative; padding-left: 1.1rem; font-size: var(--step--1); color: var(--ink-soft); }
.plain-list li::before { content: "—"; position: absolute; left: 0; color: var(--plum-300); }

/* ---------- 10. Proof ---------------------------------------------------- */

.stats {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}
.stat__num {
  font-size: var(--step-4); font-weight: 900; letter-spacing: -0.04em;
  color: var(--orange-500); line-height: 1;
}
.stat__label { margin-top: var(--sp-2); font-size: var(--step--1); color: var(--ink-soft); font-weight: 600; }
.section--plum .stat__label { color: #C9AECB; }

.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  display: flex; flex-direction: column; height: 100%;
}
.quote__mark { font-size: 3rem; line-height: 0.6; color: var(--orange-200); font-weight: 900; margin-bottom: var(--sp-3); }
.quote p { font-size: var(--step-0); line-height: 1.6; color: var(--ink); }
.quote__cite {
  margin-top: auto; padding-top: var(--sp-5);
  font-size: var(--step--1); font-style: normal; color: var(--muted); line-height: 1.45;
}
.quote__cite strong { display: block; color: var(--plum-700); font-size: var(--step-0); }
.quote--feature {
  background: var(--plum-700); border-color: transparent; color: #fff;
}
.quote--feature p { color: #fff; font-size: var(--step-1); font-weight: 500; }
.quote--feature .quote__mark { color: var(--orange-400); }
.quote--feature .quote__cite { color: #C9AECB; }
.quote--feature .quote__cite strong { color: #fff; }

/* Long testimonial lists: masonry columns so wildly uneven quote lengths don't
   leave a grid full of holes. */
.quote-columns { columns: 3 22rem; column-gap: var(--sp-5); }
.quote-columns > .quote { break-inside: avoid; margin-bottom: var(--sp-5); display: block; }
.quote--flow blockquote > p + p { margin-top: 0.8em; }
@media (max-width: 46rem) { .quote-columns { columns: 1; } }

.logo-wall {
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center;
  list-style: none; padding: 0; margin: 0;
}
.logo-wall li {
  list-style: none;
  flex: 1 1 9rem; max-width: 13rem;
  display: grid; place-items: center; text-align: center;
  padding: var(--sp-4) var(--sp-3);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  font-weight: 700; font-size: var(--step--1); color: var(--plum-700);
  line-height: 1.25; min-height: 4.5rem;
}
.section--plum .logo-wall li { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); color: #EBD9EC; }

/* ---------- 11. CTA bands ------------------------------------------------ */

.cta-band {
  position: relative; overflow: hidden;
  background: var(--plum-700); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(40rem 22rem at 100% 0%, rgba(255,102,0,0.35), transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: var(--step-3); }
.cta-band p { color: #DCC7DE; margin-top: var(--sp-3); max-width: 42rem; }
.cta-band__inner {
  display: flex; flex-wrap: wrap; gap: var(--sp-6);
  align-items: center; justify-content: space-between;
}
.cta-band__inner > div:first-child { flex: 1 1 26rem; }

.cta-band--orange { background: var(--orange-500); }
.cta-band--orange::before { background: radial-gradient(40rem 22rem at 100% 0%, rgba(102,0,102,0.4), transparent 60%); }
.cta-band--orange p { color: #FFEFE4; }

/* ---------- 12. Forms ---------------------------------------------------- */

.form { display: grid; gap: var(--sp-4); }
.form-row { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: var(--step--1); color: var(--plum-800); }
.field label .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: #fff; font-size: var(--step-0); color: var(--ink);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange-500);
  box-shadow: 0 0 0 3px var(--orange-100);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field__help { font-size: var(--step--2); color: var(--muted); }

.form-note { font-size: var(--step--2); color: var(--muted); }

.signup {
  background: var(--sand); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
}
.signup--plum { background: var(--plum-700); border-color: transparent; color: #EBD9EC; }
.signup--plum h3 { color: #fff; }
.signup--plum .field label { color: #EBD9EC; }
.signup--plum .form-note { color: #C0A3C2; }
.signup__inline { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.signup__inline .field { flex: 1 1 14rem; }

/* ---------- 13. Accordion / tabs ----------------------------------------- */

.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--sp-4); padding: 1.15rem 0; text-align: left;
  font-weight: 700; font-size: var(--step-0); color: var(--plum-800); line-height: 1.4;
}
.accordion__btn:hover { color: var(--orange-600); }
.accordion__icon {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 0.15em;
  position: relative;
}
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--orange-500);
  transform: translate(-50%, -50%); transition: transform 0.22s var(--ease), opacity 0.22s var(--ease);
}
.accordion__icon::before { width: 14px; height: 2.5px; border-radius: 2px; }
.accordion__icon::after { width: 2.5px; height: 14px; border-radius: 2px; }
.accordion__btn[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}
.accordion__panel > div { overflow: hidden; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel .inner { padding-bottom: 1.35rem; color: var(--ink-soft); max-width: var(--wrap-text); }
.accordion__panel .inner > * + * { margin-top: 0.85em; }

/* On the dark plum surface the default ink would be invisible. */
.section--plum .accordion { border-top-color: rgba(255, 255, 255, 0.18); }
.section--plum .accordion__item { border-bottom-color: rgba(255, 255, 255, 0.18); }
.section--plum .accordion__btn { color: #fff; }
.section--plum .accordion__btn:hover { color: var(--orange-400); }
.section--plum .accordion__panel .inner { color: #D3BAD5; }

.tabs__list {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  border-bottom: 1px solid var(--line); margin-bottom: var(--sp-6);
}
.tabs__btn {
  padding: 0.7rem 1.15rem; font-weight: 700; font-size: var(--step--1);
  color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -1px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tabs__btn:hover { color: var(--plum-700); background: var(--sand); }
.tabs__btn[aria-selected="true"] { color: var(--plum-800); border-bottom-color: var(--orange-500); }
.tabs__panel[hidden] { display: none; }

/* ---------- 14. Articles ------------------------------------------------- */

.article-card {
  display: flex; flex-direction: column; height: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; }
.article-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-deep); }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.article-card:hover .article-card__media img { transform: scale(1.04); }
.article-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.article-card__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  font-size: var(--step--2); color: var(--muted); margin-bottom: var(--sp-3);
}
.article-card h3 { font-size: var(--step-1); line-height: 1.28; margin-bottom: var(--sp-3); }
.article-card p { font-size: var(--step--1); color: var(--ink-soft); line-height: 1.55; }
.article-card__foot { margin-top: auto; padding-top: var(--sp-4); font-weight: 700; font-size: var(--step--1); color: var(--orange-600); }

.pill {
  display: inline-flex; align-items: center; padding: 0.25em 0.7em;
  border-radius: var(--radius-pill); font-size: var(--step--2); font-weight: 700;
  background: var(--plum-100); color: var(--plum-600); letter-spacing: 0.01em;
}
.pill--orange { background: var(--orange-100); color: var(--orange-700); }
.pill--solid { background: var(--orange-500); color: #fff; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center;
  padding: var(--sp-4) 0; margin-bottom: var(--sp-6);
  border-block: 1px solid var(--line);
}
.filter-bar__label { font-size: var(--step--2); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-right: var(--sp-2); }
.chip {
  padding: 0.45em 1em; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong); background: #fff;
  font-size: var(--step--1); font-weight: 600; color: var(--ink-soft);
  transition: all 0.15s var(--ease);
}
.chip:hover { border-color: var(--plum-400); color: var(--plum-700); }
.chip[aria-pressed="true"] { background: var(--plum-700); border-color: var(--plum-700); color: #fff; }
.filter-bar__search { margin-left: auto; flex: 0 1 16rem; }
.filter-bar__search input { padding: 0.55rem 0.85rem; font-size: var(--step--1); }
@media (max-width: 50rem) { .filter-bar__search { margin-left: 0; flex-basis: 100%; } }

.article-count { font-size: var(--step--1); color: var(--muted); margin-bottom: var(--sp-5); }

/* ---------- 15. Resources / downloads ------------------------------------ */

.resource {
  display: grid; gap: var(--sp-4) var(--sp-5); align-items: start;
  grid-template-columns: 1fr;
  padding: var(--sp-6) 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 48rem) { .resource { grid-template-columns: 3.5rem 1fr auto; align-items: center; } }
.resource__icon {
  width: 3.25rem; height: 3.25rem; border-radius: var(--radius);
  background: var(--plum-100); color: var(--plum-600);
  display: grid; place-items: center; font-weight: 900; font-size: 0.72rem; letter-spacing: 0.04em;
}
.resource h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.resource p { font-size: var(--step--1); color: var(--ink-soft); }

.book {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) { .book { grid-template-columns: 15rem 1fr; } }
.book__cover img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.book__meta { font-size: var(--step--1); color: var(--muted); margin-bottom: var(--sp-3); }

/* ---------- 16. Pricing -------------------------------------------------- */

.price-card {
  display: flex; flex-direction: column; height: 100%;
  border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-6); background: #fff;
}
.price-card--feature { border-color: var(--orange-500); box-shadow: var(--shadow-lg); position: relative; }
.price-card--feature::before {
  content: "Most popular"; position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--orange-500); color: #fff; padding: 0.3em 1em; border-radius: var(--radius-pill);
  font-size: var(--step--2); font-weight: 800; letter-spacing: 0.04em; white-space: nowrap;
}
.price-card__price { font-size: var(--step-3); font-weight: 900; letter-spacing: -0.035em; color: var(--plum-800); line-height: 1; margin-block: var(--sp-3); }
.price-card__price span { font-size: var(--step--1); font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-card ul { margin-block: var(--sp-5); }
.price-card .btn { margin-top: auto; }

/* ---------- 17. Prose (long-form pages) ---------------------------------- */

.prose { max-width: var(--wrap-text); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: var(--step-2); margin-top: 2em; }
.prose h3 { font-size: var(--step-1); margin-top: 1.75em; }
.prose ul, .prose ol { padding-left: 1.4em; display: grid; gap: 0.45em; }
.prose li::marker { color: var(--orange-500); font-weight: 700; }
.prose blockquote {
  border-left: 4px solid var(--orange-500); padding-left: var(--sp-5);
  font-size: var(--step-1); color: var(--plum-700); font-weight: 500;
}
.pullquote {
  border-left: 5px solid var(--orange-500);
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  margin-block: var(--sp-7) !important;
  font-size: var(--step-2); font-weight: 700; line-height: 1.25;
  letter-spacing: -0.02em; color: var(--plum-600);
}
.prose table { font-size: var(--step--1); margin-block: 1.5em; }
.prose th, .prose td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--sand); font-weight: 800; color: var(--plum-800); }

.toc {
  background: var(--sand); border-radius: var(--radius); padding: var(--sp-5);
  position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.toc__title { font-size: var(--step--2); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-3); }
.toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.toc a { font-size: var(--step--1); text-decoration: none; color: var(--plum-700); font-weight: 600; display: block; padding: 0.2rem 0; }
.toc a:hover { color: var(--orange-600); }

.directory-group + .directory-group { margin-top: var(--sp-7); }
.directory-group__title {
  font-size: var(--step-2); padding-bottom: var(--sp-3);
  border-bottom: 3px solid var(--orange-500); margin-bottom: var(--sp-5);
}
.directory-item {
  padding: var(--sp-5); border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff;
}
.directory-item h4 { margin-bottom: var(--sp-1); }
.directory-item dl { display: grid; grid-template-columns: auto 1fr; gap: 0.2rem 0.75rem; font-size: var(--step--1); margin-top: var(--sp-3); }
.directory-item dt { font-weight: 700; color: var(--muted); }
.directory-item dd { margin: 0; color: var(--ink-soft); }

/* ---------- 18. Footer --------------------------------------------------- */

.site-footer { background: var(--plum-900); color: #C8B0CA; padding-top: var(--section-y); }
.site-footer h4 {
  color: #fff; font-size: var(--step--2); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: var(--sp-4);
}
.site-footer a { color: #C8B0CA; text-decoration: none; }
.site-footer a:hover { color: var(--orange-400); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.site-footer li { font-size: var(--step--1); line-height: 1.4; }

.footer__grid {
  display: grid; gap: var(--sp-7) var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}
.footer__brand { grid-column: 1 / -1; max-width: 24rem; }
@media (min-width: 62rem) { .footer__brand { grid-column: auto; } }
.footer__brand p { font-size: var(--step--1); margin-top: var(--sp-4); }

.footer__contact { font-size: var(--step--1); display: grid; gap: 0.4rem; margin-top: var(--sp-4); }
.footer__contact a { font-weight: 600; color: #fff; }

.footer__socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff;
  transition: background 0.18s var(--ease);
}
.footer__socials a:hover { background: var(--orange-500); }
.footer__socials svg { width: 17px; height: 17px; fill: currentColor; }

.footer__bar {
  margin-top: var(--section-y); padding-block: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  align-items: center; justify-content: space-between;
  font-size: var(--step--2);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

.acknowledgement {
  padding-block: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.12);
  font-size: var(--step--2); line-height: 1.6; color: #9E85A0; max-width: 62rem;
}

/* ---------- 19. Sticky mobile CTA ---------------------------------------- */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(30, 6, 33, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
  display: none; gap: var(--sp-3); align-items: center; justify-content: space-between;
  transform: translateY(110%); transition: transform 0.28s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { color: #fff; font-weight: 700; font-size: var(--step--1); line-height: 1.25; }
.sticky-cta__text span { display: block; font-weight: 500; font-size: var(--step--2); color: #B79AB9; }
@media (max-width: 46rem) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 4.5rem; }
}

/* ---------- 20. Utilities ------------------------------------------------ */

.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }

.flow-sm > * + * { margin-top: var(--sp-3); }

.img-round { border-radius: var(--radius-lg); }
.img-shadow { box-shadow: var(--shadow-lg); }
.ratio-square { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.ratio-4-3 { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.ratio-16-9 { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

.overflow-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.note {
  border-left: 4px solid var(--orange-500);
  background: var(--orange-100);
  padding: var(--sp-5); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--step--1); color: var(--ink-soft);
}
.note strong { color: var(--plum-800); }
.note--plum { background: var(--plum-100); border-left-color: var(--plum-500); }

.callout-box {
  border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--sp-6); background: #fff;
}

/* Prototype-only banner */
.proto-bar {
  background: repeating-linear-gradient(45deg, #1E0621, #1E0621 12px, #2A0B2E 12px, #2A0B2E 24px);
  color: #fff; font-size: 0.78rem; padding: 0.5rem var(--gutter); text-align: center;
  letter-spacing: 0.02em;
}
.proto-bar a { color: var(--orange-400); font-weight: 700; }

/* Page index (prototype nav) */
.page-index { display: grid; gap: var(--sp-5); }
.page-index__group h3 { font-size: var(--step-1); padding-bottom: var(--sp-2); border-bottom: 2px solid var(--orange-500); margin-bottom: var(--sp-4); }
.page-index__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)); }
.page-index__list a { display: block; padding: 0.5rem 0.7rem; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-size: var(--step--1); color: var(--plum-700); }
.page-index__list a:hover { background: var(--orange-100); }
.page-index__list small { display: block; font-weight: 400; color: var(--muted); font-size: 0.75rem; }

/* ---------- 21. Print ---------------------------------------------------- */

@media print {
  .site-header, .utility-bar, .site-footer, .sticky-cta, .proto-bar, .cta-band { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .page-hero { background: #fff !important; color: #000; padding-block: 1rem; }
  .hero h1, .page-hero h1 { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
