    :root {
      /* Brand palette — main */
      --red: #AE0B0B;
      --purple: #36063E;
      --gold: #C27604;
      --teal: #007061;
      --blue: #284C74;

      /* 50% tints — used whenever a color sits on another main color */
      --red-50: #D68585;
      --purple-50: #9A829E;
      --gold-50: #E0BA81;
      --teal-50: #7FB7B0;
      --blue-50: #C9D2DC;

      /* 25% tints — surfaces / backgrounds */
      --red-25: #EBC2C2;
      --purple-25: #CDC1CF;
      --gold-25: #F0DDC0;
      --teal-25: #BFDBD7;
      --blue-25: #F1F4F6;

      --paper: #FAF8F5;
      --ink: #1A1A1A;

      --font-display: 'Baloo 2', 'Fredoka', sans-serif;
      --font-body: 'Inter', system-ui, sans-serif;

      --radius: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--paper);
      line-height: 1.5;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
    }

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

    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      * {
        animation: none !important;
        transition: none !important;
      }
    }

    .eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      font-family: var(--font-display);
    }

    .section-inner > .eyebrow {
      font-size: 1.5rem;
    }

    .section {
      padding: 3.5rem 1.5rem;
    }

    .section-inner {
      max-width: 960px;
      margin: 0 auto;
    }

    /* ---------- NAV ---------- */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--blue);
      color: var(--blue-25);
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .site-nav .logo {
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: 0.02em;
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
    }

    .site-nav ul {
      list-style: none;
      display: flex;
      gap: 1.25rem;
      margin: 0;
      padding: 0;
      font-size: 0.85rem;
    }

    .site-nav a {
      text-decoration: none;
      opacity: 0.9;
    }

    .site-nav a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    @media (max-width: 640px) {
      .site-nav ul {
        display: none;
      }
    }

    /* ---------- BUTTONS ----------
     Rule: full-saturation color only when sitting on paper/white/tint
     backgrounds. Anything sitting on a main color uses the 50% tint. */
    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.7rem 1.6rem;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      border: none;
    }

    .btn-gold-on-light {
      background: var(--gold);
      color: #FFF7EC;
    }

    .btn-gold-on-dark {
      background: var(--gold-50);
      color: #2B1600;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    /* ---------- HERO ---------- */
    .hero {
      height: 450px;
      padding: 1.875rem 1.5rem;
      background: linear-gradient(180deg, var(--blue-25) 0%, var(--paper) 100%);
    }

    .hero-inner {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 430px minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

    .hero-content {
      text-align: center;
    }

    .hero-illustration {
      width: 390px;
      height: 390px;
      margin: 0 auto;
      border-radius: 50%;
      /* makes it perfectly round */
      background: transparent;
      /* keeps the colour */
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      /* removes the dotted line */
      object-fit: contain;
      /* makes the SVG fit nicely */
    }

    /* Replace .hero-illustration with the actual donut-card SVG/img when available */

    .hero h1 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      color: var(--blue);
      margin: 0 0 0.75rem;
      line-height: 1.15;
    }

    .hero h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
    }

    .hero p.lede {
      font-size: 1.2rem;
      color: #555;
      max-width: 480px;
      margin: 0 auto 1.5rem;
    }

    @media (max-width: 700px) {
      .hero {
        height: auto;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .hero-illustration {
        width: min(390px, 100%);
        height: auto;
      }
    }

    .wave {
      display: block;
      width: 100%;
      height: 34px;
    }

    /* ---------- OVERVIEW ---------- */
    .overview {
      background: #fff;
      padding: 1rem 1.5rem 3rem;
    }

    .overview-grid {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2fr);
      gap: 1.5rem;
      align-items: center;
      text-align: center;
    }

    .section-lead {
      max-width: 320px;
      margin: 0 auto;
      color: var(--blue);
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
    }

    .overview-gallery {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      width: 100%;
      margin-top: 0;
    }

    .overview-gallery img {
      width: 100%;
      height: 150px;
      object-fit: contain;
    }

    @media (max-width: 700px) {
      .overview-grid {
        grid-template-columns: 1fr;
      }

      .overview-gallery {
        grid-template-columns: 1fr;
        margin-top: 2rem;
      }

      .overview-gallery img {
        height: 120px;
      }
    }

    .overview-grid .icon {
      font-size: 1.75rem;
    }

    .overview-grid b {
      display: block;
      margin-top: 0.4rem;
      font-size: 0.95rem;
    }

    .overview-grid span {
      display: block;
      color: #777;
      font-size: 0.85rem;
      margin-top: 0.2rem;
    }

    /* ---------- CHOOSE YOUR PATH ---------- */
    .paths {
      background: var(--blue-25);
    }

    .paths h2,
    .paths > .section-inner > .lede {
      text-align: center;
    }

    .paths > .section-inner > .eyebrow {
      text-align: center;
      margin: 0 0 0.6rem;
    }

    .paths h2 {
      color: var(--purple);
      font-family: var(--font-display);
      margin: 0 0 0.6rem;
    }

    .paths > .section-inner > .lede {
      max-width: 480px;
      margin: 0 auto 2rem;
      color: #5a4c5d;
      font-size: 0.95rem;
    }

    .paths .story-split {
      margin-top: 0;
    }

    .legacy-your-story {
      display: none;
    }

    .legacy-game {
      display: none;
    }

    .paths-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.25rem;
    }

    .path-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 1.5rem;
    }

    .path-card.org {
      border-top: 4px solid var(--teal);
    }

    .path-card.org h3 {
      color: var(--teal);
    }

    .path-card.family {
      border-top: 4px solid var(--red);
    }

    .path-card.family h3 {
      color: var(--red);
    }

    .path-card h3 {
      font-family: var(--font-display);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin: 0 0 0.5rem;
      font-size: 1rem;
      text-align: center;
    }

    .path-card p {
      margin: 0;
      color: #666;
      font-size: 0.9rem;
    }

    .path-card a {
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* ---------- FOUNDERS ---------- */
    .founders {
      background: #fff;
      text-align: center;
    }

    .legacy-founders {
      display: none;
    }

    .founders .eyebrow {
      font-size: 1.5rem;
    }

    .founder-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2rem;
      margin-top: 1.5rem;
    }

    .founder {
      width: auto;
      background: var(--purple-25);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      color: var(--blue);
    }

    @media (max-width: 700px) {
      .founder-grid {
        grid-template-columns: 1fr;
      }
    }

    .founder .avatar {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      margin: 0 auto 0.6rem;
      background: var(--purple-25);
    }

    .founder:nth-child(2) .avatar {
      background: var(--blue-50);
    }

    .founder b {
      display: block;
      font-size: 0.95rem;
    }

    .founder p {
      font-size: 0.8rem;
      color: var(--blue);
      margin: 0.25rem 0 0;
    }

    .founders .teaser {
      font-size: 0.85rem;
      color: var(--blue);
      margin-top: 1rem;
    }

    /* ---------- CHAPTERS (map) ---------- */
    .chapters {
      background: var(--purple);
      color: var(--blue-25);
    }

    .chapters .eyebrow {
      color: var(--purple-25);
      text-align: center;
      display: block;
    }

    .chapters h2 {
      font-family: var(--font-display);
      text-align: center;
      font-size: 1.4rem;
      margin: 0.25rem 0 1.5rem;
      color: #fff;
    }

    #story-heading span + span {
      display: inline-block;
    }

    #story-heading,
    #game-heading,
    #how-it-works-heading,
    #your-story-heading,
    #value-heading {
      scroll-margin-top: 4.5rem;
    }

    .chapter-map {
      display: flex;
      gap: 0.6rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
    }

    .chapter-tile {
      min-width: 140px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 0.9rem;
      font-size: 0.8rem;
      text-decoration: none;
      color: inherit;
      display: block;
      transition: background 0.15s ease;
    }

    a.chapter-tile:hover,
    a.chapter-tile:focus-visible {
      background: rgba(255, 255, 255, 0.18);
    }

    .chapter-tile b {
      display: block;
      margin-bottom: 0.2rem;
    }

    .chapter-tile.quote {
      background: var(--gold-25);
      color: #6B4402;
    }

    /* ---------- FULL CHAPTER NARRATIVE ---------- */
    .chapter-narrative {
      background: var(--paper);
    }

    .chapter-list {
      max-width: 620px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .chapter-entry .eyebrow {
      color: var(--gold);
      font-size: 1rem;
      margin: 0 0 0.25rem;
      display: block;
    }

    .chapter-entry .eyebrow {
      scroll-margin-top: 4.5rem;
    }

    .chapter-entry p {
      margin: 0;
      font-size: 0.9rem;
      color: #444;
    }

    .chapter-entry p + p {
      margin-top: 0.85rem;
    }

    .pull-quote {
      background: var(--gold-25);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      font-size: 0.85rem;
      color: #6B4402;
      text-align: center;
    }

    /* ---------- GAME'S STORY ---------- */
    .game-story {
      background: #fff;
      padding-bottom: 2rem;
    }

    .game-story .eyebrow {
      text-align: center;
      display: block;
      color: var(--blue);
      margin-bottom: 1.25rem;
    }

    #game-heading {
      text-align: center;
    }

    .game-story-grid {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .game-story-text {
      flex: 1;
      min-width: 260px;
    }

    .game-story-text p {
      font-size: 0.9rem;
      margin: 0 0 0.5rem;
    }

    .game-fun-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      align-items: center;
      margin: 1rem 0;
    }

    .game-fun-heading {
      color: var(--blue);
      font-family: var(--font-display);
      font-size: 1rem !important;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
    }

    .game-host-card {
      background: var(--blue);
      border-radius: var(--radius);
      color: #fff;
      padding: 1.25rem;
      width: 100%;
    }

    .game-host-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      margin: 0 0 0.5rem;
    }

    .game-host-card p {
      font-size: 0.8rem;
      margin: 0 0 0.75rem;
      color: var(--blue-25);
    }

    .game-host-card .game-host-availability {
      font-size: 0.75rem;
      opacity: 0.8;
    }

    .game-host-card .btn {
      font-size: 0.8rem;
      padding: 0.55rem 1rem;
    }

    @media (max-width: 700px) {
      .game-fun-row {
        grid-template-columns: 1fr;
      }
    }

    .game-name-block {
      background: var(--teal-25);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      width: 100%;
      text-align: center;
    }

    @media (max-width: 700px) {
      .game-name-block {
        width: auto;
      }
    }

    .spec-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.5rem;
      margin: 0.75rem 0;
      width: 100%;
    }

    .spec-strip > div {
      background: var(--gold-25);
      border-radius: 8px;
      padding: 0.8rem 0.65rem;
      text-align: center;
      color: #2B1600;
    }

    .spec-strip b,
    .spec-strip span {
      display: block;
    }

    .spec-strip b {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .spec-strip span {
      margin-top: 0.3rem;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .game-host-image {
      display: block;
      width: 100%;
      max-height: 260px;
      margin: 0;
      object-fit: contain;
    }

    .game-how-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 1.5rem;
      align-items: stretch;
      margin: 1rem 0;
    }

    .game-how-card {
      background: var(--blue-25);
      border-radius: var(--radius);
      padding: 1.25rem;
      color: var(--blue);
    }

    .game-how-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      margin: 0 0 0.75rem;
    }

    .game-how-card p {
      font-size: 0.85rem;
      margin: 0 0 0.75rem;
    }

    .game-how-card .game-how-note {
      font-size: 0.75rem;
      margin-bottom: 0;
    }

    .game-card-counts {
      text-align: center;
      width: 100%;
      margin-top: 2.5rem;
      font-size: 1.25rem;
    }

    .card-showcase {
      background: #fff;
    }

    .card-showcase .game-card-counts {
      margin-top: 0;
    }

    .game-card-gallery {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.5rem;
      width: 100%;
      margin: 0.75rem 0;
    }

    .game-card-gallery img {
      width: 100%;
      height: 180px;
      object-fit: contain;
    }

    @media (max-width: 700px) {
      .game-how-row {
        grid-template-columns: 1fr;
      }

      .game-card-counts {
        width: auto;
      }

      .game-card-gallery {
        width: auto;
      }
    }

    @media (max-width: 700px) {
      .spec-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: auto;
      }
    }

    /* ---------- YOUR STORY (split screen) ---------- */
    .your-story {
      background: var(--purple-25);
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    .your-story .eyebrow {
      text-align: center;
      display: block;
      color: var(--purple);
      margin-bottom: 0.3rem;
    }

    .your-story h2 {
      font-family: var(--font-display);
      text-align: center;
      font-size: 1.6rem;
      color: var(--purple);
      margin: 0.2rem 0 0.6rem;
    }

    .your-story>.section-inner>p.lede {
      text-align: center;
      max-width: 480px;
      margin: 0 auto 2rem;
      color: #5a4c5d;
      font-size: 0.95rem;
    }

    .story-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    @media (max-width: 700px) {
      .story-split {
        grid-template-columns: 1fr;
      }
    }

    .story-panel {
      background: #fff;
      border-radius: var(--radius);
      padding: 2.25rem 1.75rem;
      box-shadow: 0 8px 24px rgba(54, 6, 62, 0.12);
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .story-panel:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(54, 6, 62, 0.18);
    }

    .story-panel.org {
      border-top: 5px solid var(--teal);
    }

    .story-panel.family {
      border-top: 5px solid var(--red);
    }

    .story-illustration {
      width: 96px;
      height: 96px;
      margin: -0.25rem auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .story-illustration svg {
      width: 72px;
      height: 72px;
    }

    .story-panel.org .story-illustration > svg {
      display: none;
    }

    .story-panel.org .story-illustration img {
      width: 88px;
      height: 88px;
      object-fit: contain;
    }

    .story-panel.org .story-illustration {
      background: var(--teal-25);
    }

    .story-panel.family .story-illustration {
      background: var(--red-25);
    }

    .story-panel.family .story-illustration svg {
      width: 88px;
      height: 88px;
    }

    .story-panel .eyebrow {
      display: block;
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .story-panel.org .eyebrow {
      color: var(--teal);
    }

    .story-panel.family .eyebrow {
      color: var(--red);
    }

    .story-panel h3 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.15rem;
      margin: 0 0 0.6rem;
      color: var(--ink);
    }

    .story-panel .intro-line {
      font-size: 0.88rem;
      color: #555;
      margin: 0 0 1.1rem;
    }

    .story-panel ul {
      margin: 0;
      padding-left: 1.1rem;
      font-size: 0.85rem;
      color: #444;
      line-height: 1.8;
      text-align: left;
    }

    /* ---------- VALUE (quote strip) ---------- */
    .value {
      background: #fff;
    }

    .value .eyebrow {
      text-align: center;
      display: block;
      color: var(--blue);
      margin-bottom: 1.25rem;
    }

    .quote-strip {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .quote-strip blockquote {
      margin: 0;
      max-width: 260px;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      border-left: none;
      padding-left: 0;
      text-align: center;
    }

    .quote-strip blockquote + blockquote {
      border-left: 3px solid var(--gold);
      padding-left: 0.9rem;
    }

    /* ---------- FAQ ---------- */
    .faq {
      background: var(--blue);
      color: var(--blue-25);
      padding-top: 3.5rem;
    }

    .faq .eyebrow {
      text-align: center;
      display: block;
      color: var(--blue-50);
      margin-bottom: 1.25rem;
    }

    .faq-list {
      max-width: 560px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 0.9rem 1rem;
    }

    .faq-item b {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
    }

    .faq-item p {
      margin: 0;
      font-size: 0.8rem;
      opacity: 0.85;
    }

    .faq-cta {
      text-align: center;
      margin-top: 1.5rem;
    }

    .faq-cta .soft-link {
      font-size: 0.8rem;
      opacity: 0.8;
      margin: 0.9rem 0 0;
    }

    .faq-cta .soft-link a {
      text-decoration: underline;
    }

    .faq-cta .privacy-note {
      font-size: 0.7rem;
      opacity: 0.5;
      margin: 0.4rem 0 0;
    }

    /* ---------- FINAL CTA ---------- */
    .final-cta {
      background: var(--blue);
      color: #fff;
      text-align: center;
      padding: 2.5rem 1.5rem 3.5rem;
    }

    .final-cta h2 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      margin: 0 0 0.5rem;
    }

    .final-cta .cta-copy {
      max-width: 440px;
      margin: 0 auto 0.4rem;
      font-size: 0.85rem;
      opacity: 0.85;
    }

    .final-cta .availability {
      font-size: 0.75rem;
      opacity: 0.6;
      margin: 0 0 1.25rem;
    }

    .final-cta .soft-link {
      font-size: 0.8rem;
      opacity: 0.8;
      margin: 0.9rem 0 0;
    }

    .final-cta .soft-link a {
      text-decoration: underline;
    }

    .final-cta .privacy-note {
      font-size: 0.7rem;
      opacity: 0.5;
      margin: 0.4rem 0 0;
    }

    /* ---------- FOOTER ---------- */
    .site-footer {
      background: #1F3A5A;
      color: var(--blue-50);
      padding: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }

    .site-footer a {
      text-decoration: underline;
    }

    .site-footer .social {
      display: flex;
      gap: 0.75rem;
    }
