
    /* ─────────────────────────────────────────
       DESIGN TOKENS
    ───────────────────────────────────────── */
    :root {
      --paper:   #f7f3ea;
      --ink:     #1f1f1f;
      --pencil:  #3a3a3a;
      --shadow:  rgba(0,0,0,.12);
      --tab-yellow: #f6e6a8;
      --tab-sage:   #cfe6d6;
      --tab-blue:   #cfe2f6;
      --tab-coral:  #f6d1c8;
      --tab-lav:    #e3d6f6;
      --muted:   #5a5a5a;
      --line:    #d7d1c7;
    }

    /* ─────────────────────────────────────────
       BASE
    ───────────────────────────────────────── */
    html, body { height: 100%; overflow-x: hidden; }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { margin-top: 56px; }
    ::-webkit-scrollbar-thumb { background: rgba(58,58,58,.25); border-radius: 999px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(58,58,58,.45); }
    a { text-decoration: none; color: inherit; }
    body {
      margin: 0;
      color: var(--ink);
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background:
        radial-gradient(1200px 800px at 20% 10%, rgba(255,255,255,.55), rgba(255,255,255,0) 55%),
        radial-gradient(900px 700px at 85% 35%, rgba(255,255,255,.35), rgba(255,255,255,0) 60%),
        repeating-linear-gradient(0deg, rgba(0,0,0,.015), rgba(0,0,0,.015) 1px, rgba(0,0,0,0) 3px, rgba(0,0,0,0) 7px),
        linear-gradient(0deg, var(--paper), var(--paper));
    }

    @media print {
      body { background: var(--paper) !important; }
      .no-print { display: none !important; }
      .page { box-shadow: none !important; margin: 0 !important; border: none !important; }
    #hero.page { background: var(--hero-bg, rgba(255,255,255,.18)); transition: background .4s ease; }
      a { color: inherit; text-decoration: none; }
    }

    /* ─────────────────────────────────────────
       LAYOUT
    ───────────────────────────────────────── */
    .wrap {
      padding: 100px 14px 60px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }

    .page {
      width: min(980px, 96vw);
      background: rgba(255,255,255,.18);
      border: 2px solid rgba(58,58,58,.22);
      border-radius: 18px;
      box-shadow: 0 18px 40px var(--shadow);
      position: relative;
      overflow: visible;
      scroll-margin-top: 80px;
    }

    .page::before {
      content: "";
      position: absolute;
      inset: -40px;
      background:
        radial-gradient(60px 60px at 15% 25%, rgba(0,0,0,.03), rgba(0,0,0,0) 65%),
        radial-gradient(70px 70px at 85% 15%, rgba(0,0,0,.03), rgba(0,0,0,0) 62%),
        radial-gradient(80px 80px at 25% 85%, rgba(0,0,0,.02), rgba(0,0,0,0) 62%),
        radial-gradient(70px 70px at 90% 80%, rgba(0,0,0,.02), rgba(0,0,0,0) 62%);
      pointer-events: none;
      transform: rotate(-.35deg);
      opacity: .9;
    }

    .pad { padding: 34px 34px 40px; position: relative; }

    /* ─────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────── */
    .sticky-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(247,243,234,.96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 2px solid rgba(58,58,58,.15);
      padding: 10px 60px 10px 14px;
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

    .sticky-nav button, .sticky-nav a.nav-btn {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 13px;
      padding: 8px 14px;
      border: 2px solid rgba(58,58,58,.25);
      border-radius: 999px;
      background: rgba(255,255,255,.4);
      cursor: pointer;
      transition: all .3s ease;
      color: var(--ink);
      text-decoration: none;
      display: inline-block;
      line-height: 1.2;
    }
    .sticky-nav button:hover, .sticky-nav a.nav-btn:hover { background: rgba(255,255,255,.7); transform: scale(1.05); }
    .sticky-nav button.active, .sticky-nav a.nav-btn.active { background: var(--tab-yellow); border-color: rgba(58,58,58,.4); }

    /* Nav dropdown groups */
    .nav-group { position: relative; display: inline-flex; }
    .nav-group-trigger {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 13px; padding: 8px 14px;
      border: 2px solid rgba(58,58,58,.25);
      border-radius: 999px;
      background: rgba(255,255,255,.4);
      cursor: pointer; transition: all .3s ease; color: var(--ink);
      white-space: nowrap;
    }
    .nav-group-trigger:hover { background: rgba(255,255,255,.7); transform: scale(1.05); }
    .nav-group-trigger.active { background: var(--tab-yellow); border-color: rgba(58,58,58,.4); }
    .nav-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px); left: 50%;
      transform: translateX(-50%);
      background: rgba(247,243,234,.98);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 2px solid rgba(58,58,58,.2);
      border-radius: 14px; padding: 8px;
      box-shadow: 0 8px 28px rgba(0,0,0,.13);
      z-index: 200; min-width: 190px;
      flex-direction: column; gap: 3px;
    }
    .nav-group.open .nav-dropdown { display: flex; }
    .nav-dropdown button, .nav-dropdown a.nav-dropdown-item {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 13px; padding: 8px 14px;
      border: none; border-radius: 9px;
      background: transparent; cursor: pointer;
      text-align: left; color: var(--ink);
      transition: background .15s;
      white-space: nowrap;
      text-decoration: none;
      display: block;
    }
    .nav-dropdown button:hover, .nav-dropdown a.nav-dropdown-item:hover { background: rgba(255,255,255,.7); }
    .nav-dropdown button.active, .nav-dropdown a.nav-dropdown-item.active { background: var(--tab-yellow); }

/* ─────────────────────────────────────────
       MOBILE HEADER + HAMBURGER MENU
    ───────────────────────────────────────── */
    .mobile-header {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; width: 100%;
      z-index: 200;
      background: rgba(247,243,234,.97);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 2px solid rgba(58,58,58,.15);
      padding: 8px 14px;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,.08);
      min-height: 56px;
      box-sizing: border-box;
    }
    .mobile-header-title {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 15px; color: var(--ink);
      flex: 1 1 auto; min-width: 0;
      overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }
    .hamburger-btn { display: none !important; }
    .hamburger-btn-HIDDEN { display: none !important; } /* HAMBURGER: remove this line to restore */
    .hamburger-btn-UNUSED {
      background: none;
      border: 2px solid rgba(58,58,58,.2);
      border-radius: 10px;
      width: 40px; height: 40px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 5px; cursor: pointer; padding: 0;
      flex-shrink: 0; transition: all .2s;
    }
    .hamburger-btn:hover { background: rgba(255,255,255,.6); border-color: rgba(58,58,58,.35); }
    .hamburger-btn .bar { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
    .hamburger-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 56px; left: 0; right: 0; bottom: 0;
      z-index: 199;
      pointer-events: none;
      overflow: hidden;
    }
    .mobile-menu.open { display: block; pointer-events: auto; }
    .mobile-menu-inner {
      background: rgba(247,243,234,.98);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid rgba(58,58,58,.15);
      box-shadow: 0 8px 24px rgba(0,0,0,.12);
      display: flex; flex-direction: column; gap: 8px;
      padding: 12px 16px 16px;
      max-height: calc(100vh - 56px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      animation: slideDown .25s ease;
      box-sizing: border-box;
    }
    /* Desktop: compact right-aligned dropdown from sticky-nav hamburger */
    @media (min-width: 821px) {
      .mobile-menu {
        top: 54px; left: auto; right: 10px; bottom: auto;
        width: 220px;
        border-radius: 14px;
        overflow: visible;
      }
      .mobile-menu-inner {
        border-radius: 14px;
        border: 2px solid rgba(58,58,58,.12);
        border-bottom: 2px solid rgba(58,58,58,.12);
        max-height: 80vh;
        padding: 10px 12px 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,.14);
      }
    }
    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .mob-btn {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 16px; padding: 12px 16px;
      border: 2px solid rgba(58,58,58,.2);
      border-radius: 12px;
      background: rgba(255,255,255,.35);
      cursor: pointer; transition: all .2s;
      color: var(--ink); text-align: left;
      text-decoration: none; display: block;
    }
    .mob-btn:hover { background: rgba(255,255,255,.65); }
    .mob-btn.active { background: var(--tab-yellow); border-color: rgba(58,58,58,.35); }


    /* ─── DESKTOP HAMBURGER ─────────────────── */
    .desk-hamburger { display: none !important; }
    .desk-hamburger-HIDDEN {
      all: unset;
      box-sizing: border-box !important;
      position: absolute !important;
      right: 14px; top: 0; bottom: 0; margin: auto 0;
      background: transparent;
      border: 2px solid rgba(58,58,58,.2) !important;
      border-radius: 10px !important;
      width: 38px !important; height: 38px !important;
      display: flex !important; flex-direction: column !important;
      align-items: center !important; justify-content: center !important;
      gap: 5px; cursor: pointer; padding: 0 !important;
      flex-shrink: 0 !important;
      transition: border-color .2s;
      overflow: hidden;
    }
    .desk-hamburger:hover { border-color: rgba(58,58,58,.4); }
    .desk-hamburger .bar { display: block; width: 16px; height: 2px; flex-shrink: 0; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
    .desk-hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .desk-hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .desk-hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── PROGRESS BAR ─────────────────────── */
    .mob-progress-bar {
      display: none;
      position: fixed;
      top: 56px; left: 0; right: 0;
      height: 3px;
      background: rgba(0,0,0,.07);
      z-index: 199;
      pointer-events: none;
    }
    @media (max-width: 820px) { .mob-progress-bar { display: block; } }
    .mob-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #e8920a, #e04f6a);
      width: 0%;
      transition: width .25s linear;
    }

    /* ─── SCRIM ──────────────────────

    /* ─── SCRIM ─────────────────────────────── */
    .mob-scrim {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,.25);
      z-index: 295;
      opacity: 0;
      transition: opacity .25s ease;
    }
    .mob-scrim.visible { opacity: 1; }
    @media (max-width: 820px) { .mob-scrim { display: block; pointer-events: none; } }
    .mob-scrim.visible { pointer-events: auto; }

    /* ─── SMART NAV PILL ─────────────────────────── */
    .mob-nav-pill {
      display: none;
      position: fixed;
      bottom: calc(14px + env(safe-area-inset-bottom, 0px));
      left: 50%;
      transform: translateX(-50%) translateY(120px);
      z-index: 297;
      background: rgba(28,28,28,.93);
      border-radius: 999px;
      padding: 11px 14px 11px 16px;
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 15px;
      align-items: center;
      gap: 10px;
      box-shadow: 0 6px 28px rgba(0,0,0,.3), 0 0 0 1.5px rgba(255,255,255,.07);
      cursor: pointer;
      max-width: calc(100vw - 32px);
      opacity: 0;
      transition: transform .52s cubic-bezier(.34,1.26,.64,1), opacity .35s ease;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      white-space: nowrap;
    }
    @media (max-width: 820px) {
      .mob-nav-pill { display: flex; }
      .wrap { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important; }
    }
    .mob-nav-pill.pill-in  { transform: translateX(-50%) translateY(0);    opacity: 1; }
    .mob-nav-pill.pill-out { transform: translateX(-50%) translateY(120px); opacity: 0; pointer-events: none; }
    .mob-pill-dot     { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }
    .mob-pill-section { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; color: rgba(255,255,255,.92); }
    .mob-pill-sep     { color: rgba(255,255,255,.22); font-size: 12px; }
    .mob-pill-cta     { color: rgba(255,255,255,.48); font-size: 14px; flex-shrink: 0; }
    .mob-pill-arrow {
      width: 22px; height: 22px;
      background: rgba(255,255,255,.13);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; color: rgba(255,255,255,.7);
      flex-shrink: 0;
      transition: background .15s;
    }
    .mob-nav-pill:active .mob-pill-arrow { background: rgba(255,255,255,.24); }

    /* ─── ANCHOR SHEET ──────────────────────── */
    .mob-anchor-sheet {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 296;
      background: rgba(247,243,234,.99);
      border-top: 2px solid rgba(58,58,58,.15);
      border-radius: 20px 20px 0 0;
      box-shadow: 0 -6px 32px rgba(0,0,0,.13);
      transform: translateY(100%);
      transition: transform .32s cubic-bezier(.4,0,.2,1);
      max-height: 70vh;
      overflow: hidden;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      will-change: transform;
    }
    @media (max-width: 820px) {
      .mob-anchor-sheet { display: block; }
    }
    .mob-anchor-sheet.open {
      transform: translateY(0);
      overflow-y: auto;
    }

    /* ─── SHEET HANDLE + HEADER ─────────────── */
    .mob-sheet-handle-bar {
      width: 36px; height: 4px;
      background: rgba(58,58,58,.22);
      border-radius: 2px;
      margin: 10px auto 4px;
    }
    .mob-sheet-header {
      padding: 4px 18px 12px;
      border-bottom: 1.5px solid rgba(0,0,0,.07);
    }
    .mob-sheet-header-title {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
    }

    /* ─── SHEET ITEMS ───────────────────────── */
    .mob-sheet-items {
      padding: 0 12px 16px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .mob-sheet-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 16px;
      color: var(--ink);
      text-decoration: none;
      transition: background .15s;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .mob-sheet-item:hover { background: rgba(255,255,255,.6); }
    .mob-sheet-item.active { background: var(--tab-yellow); }
    .mob-sheet-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      border: 2px solid rgba(58,58,58,.3);
      flex-shrink: 0;
      transition: background .2s, border-color .2s;
    }
    .mob-sheet-item.active .mob-sheet-dot {
      background: var(--ink);
      border-color: var(--ink);
    }

    /* ─── GROUP TRIGGER ─────────────────────── */
    .mob-sheet-group {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 10px;
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 16px;
      color: var(--ink);
      background: none;
      border: none;
      width: 100%;
      cursor: pointer;
      text-align: left;
      -webkit-tap-highlight-color: transparent;
    }
    .mob-sheet-group:hover { background: rgba(255,255,255,.5); }
    .mob-sheet-group.active { background: var(--tab-yellow); }
    .mob-sheet-group.active .mob-sheet-dot { background: var(--ink); border-color: var(--ink); }
    .mob-sheet-group-label { flex: 1; }
    .mob-sheet-group-count { font-size: 13px; color: var(--muted); }
    .mob-sheet-arrow { font-size: 12px; color: var(--muted); transition: transform .2s; margin-left: auto; }
    .mob-sheet-group.open .mob-sheet-arrow { transform: rotate(180deg); }

    /* ─── GROUP CHILDREN ────────────────────── */
    .mob-sheet-children { display: none; flex-direction: column; gap: 2px; padding-left: 20px; margin-top: 2px; }
    .mob-sheet-children.open { display: flex; }
    .mob-sheet-child {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 12px; border-radius: 8px;
      font-family: "Patrick Hand", ui-rounded, cursive; font-size: 14px;
      color: var(--ink); text-decoration: none; cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .mob-sheet-child:hover { background: rgba(255,255,255,.5); }
    .mob-sheet-child.active { background: var(--tab-yellow); }
    .mob-sheet-child-dot { width: 6px; height: 6px; border-radius: 50%; border: 2px solid rgba(58,58,58,.25); flex-shrink: 0; }
    .mob-sheet-child.active .mob-sheet-child-dot { background: var(--ink); border-color: var(--ink); }


/* ─────────────────────────────────────────
       UPDATE BANNER
    ───────────────────────────────────────── */
    .update-banner {
      position: fixed;
      top: 52px; left: 0; right: 0;
      z-index: 99;
      background: rgba(207,230,214,.92);
      backdrop-filter: blur(6px);
      border-bottom: 1.5px solid rgba(58,58,58,.12);
      padding: 8px 14px;
      text-align: center;
      transition: all .3s ease;
    }
    .update-banner.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
    .update-inner { display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 980px; margin: 0 auto; }
    .update-badge { font-family: "Patrick Hand", cursive; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: rgba(246,209,200,.8); border: 1.5px solid rgba(58,58,58,.2); }
    .update-text { font-size: 13px; color: var(--ink); }
    .update-close { background: none; border: none; cursor: pointer; font-size: 16px; color: var(--muted); padding: 2px 6px; border-radius: 4px; }
    .update-close:hover { background: rgba(0,0,0,.08); }

    /* ─────────────────────────────────────────
       TYPOGRAPHY HELPERS
    ───────────────────────────────────────── */
    h1, h2, h3 { margin: 0; }
    .hand { font-family: "Patrick Hand", ui-rounded, "Comic Sans MS", cursive; letter-spacing: .2px; }
    .title { font-size: 44px; line-height: 1.05; }
    .subtitle { margin-top: 10px; font-size: 16px; color: var(--muted); max-width: 72ch; }

    .marker {
      position: relative;
      display: inline-block;
      padding: 0 6px 2px;
      z-index: 1;
    }
    .marker::after {
      content: "";
      position: absolute;
      left: -2px; right: -2px; bottom: 6px;
      height: 12px;
      background: rgba(246,209,200,.75);
      border-radius: 14px;
      z-index: -1;
      transform: rotate(-1.2deg);
      filter: blur(.1px);
    }

    /* ─────────────────────────────────────────
       HERO ELEMENTS
    ───────────────────────────────────────── */
    .doodle-note {
      position: absolute;
      right: 34px; top: 22px;
      transform: rotate(1.5deg);
      background: rgba(246,230,168,.75);
      border: 2px solid rgba(58,58,58,.35);
      border-radius: 14px;
      padding: 10px 12px;
      box-shadow: 0 10px 22px rgba(0,0,0,.10);
      max-width: 240px;
      z-index: 2;
    }
    .doodle-note .hand { font-size: 18px; }
    .doodle-note p { margin: 6px 0 0; font-size: 12.5px; color: var(--muted); }

    .doodle-bulb {
      width: 64px; height: 64px;
      position: absolute;
      right: 46px; top: 8px;
      transform: rotate(6deg);
      z-index: 3;
      filter: drop-shadow(0 3px 6px rgba(0,0,0,.12));
    }
    .doodle-bulb svg { width: 100%; height: 100%; }

    .authority-boxes {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .auth-box { border: 2px solid rgba(58,58,58,.25); border-radius: 14px; padding: 12px; background: rgba(255,255,255,.22); text-align: center; }
    .auth-box.sage   { background: rgba(207,230,214,.45); }
    .auth-box.blue   { background: rgba(207,226,246,.45); }
    .auth-box.coral  { background: rgba(246,209,200,.45); }
    .auth-box.lav    { background: rgba(227,214,246,.45); }
    .auth-box.yellow { background: rgba(246,230,168,.45); }
    .auth-box.auth-on.sage  { background: rgba(207,230,214,.8); }
    .auth-box.auth-on.blue  { background: rgba(207,226,246,.8); }
    .auth-box.auth-on.coral { background: rgba(246,209,200,.8); }
    .auth-box.auth-on.lav   { background: rgba(227,214,246,.8); }
    .auth-box.auth-on.yellow{ background: rgba(246,230,168,.8); }
    .auth-box .num { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 28px; font-weight: 700; color: var(--muted); }
    .auth-box .label { font-size: 12.5px; margin-top: 4px; color: var(--muted); }
    .auth-box.auth-on .num { color: var(--ink); }
    .auth-box.auth-on .label { color: var(--ink); }

    .hero-btns-wrap { margin-top: 20px; overflow: hidden; transition: height .35s ease; padding: 4px 6px; margin-left: -6px; margin-right: -6px; }
    .hero-btns { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
    .hero-btns.fading { opacity: 0; }
    .hero-btn-more { font-style: italic; opacity: .75; }
    .auth-box { transition: all .2s; opacity: .55; transform: scale(.97); cursor: pointer; }
    .auth-box.auth-on { opacity: 1; transform: scale(1.04); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
    .hero-btns.tint-sage .hero-btn { background: rgba(207,230,214,.38); }
    .hero-btns.tint-blue .hero-btn { background: rgba(207,226,246,.38); }
    .hero-btns.tint-coral .hero-btn { background: rgba(246,209,200,.38); }
    .hero-btns.tint-lav .hero-btn { background: rgba(227,214,246,.38); }
    .hero-btns.tint-yellow .hero-btn { background: rgba(246,230,168,.38); }
    .hero-btns.tint-sage .hero-btn:hover { background: rgba(207,230,214,.7); }
    .hero-btns.tint-blue .hero-btn:hover { background: rgba(207,226,246,.7); }
    .hero-btns.tint-coral .hero-btn:hover { background: rgba(246,209,200,.7); }
    .hero-btns.tint-lav .hero-btn:hover { background: rgba(227,214,246,.7); }
    .hero-btns.tint-yellow .hero-btn:hover { background: rgba(246,230,168,.7); }
    .hero-btn, a.hero-btn {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 16px;
      padding: 12px 16px;
      border: 2px solid rgba(58,58,58,.35);
      border-radius: 16px;
      background: rgba(255,255,255,.25);
      cursor: pointer;
      transition: all .3s ease;
      transform: rotate(.3deg);
      color: var(--ink);
    }
    .hero-btn:hover { background: rgba(255,255,255,.5); transform: rotate(.3deg) scale(1.05); }

    /* ─────────────────────────────────────────
       STICKY / CALLOUT BANNERS
    ───────────────────────────────────────── */
    .sticky {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      background: rgba(246,230,168,.78);
      border: 2px solid rgba(58,58,58,.38);
      border-radius: 16px;
      box-shadow: 0 14px 26px rgba(0,0,0,.12);
      transform: rotate(-.6deg);
    }
    .sticky .hand { font-size: 20px; }
    .sticky small { color: var(--muted); font-weight: 600; }
    .sticky .arrow { font-weight: 800; font-size: 22px; transform: rotate(2deg); }

    /* ─────────────────────────────────────────
       GRID / CARDS
    ───────────────────────────────────────── */
    .grid-2 { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .box {
      background: rgba(255,255,255,.30);
      border: 2px solid rgba(58,58,58,.30);
      border-radius: 16px;
      padding: 14px 14px 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,.08);
      position: relative;
      overflow: visible;
    }
    .box.rotate-a { transform: rotate(.4deg); }
    .box.rotate-b { transform: rotate(-.5deg); }
    .box.rotate-c { transform: rotate(.25deg); }

    .tab {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 12px;
      border: 2px solid rgba(58,58,58,.28);
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 18px;
      line-height: 1;
      margin-bottom: 10px;
      transform: rotate(-.6deg);
      box-shadow: 0 6px 14px rgba(0,0,0,.06);
    }
    .tab.yellow { background: rgba(246,230,168,.82); }
    .tab.sage   { background: rgba(207,230,214,.82); }
    .tab.blue   { background: rgba(207,226,246,.82); }
    .tab.coral  { background: rgba(246,209,200,.82); }
    .tab.lav    { background: rgba(227,214,246,.82); }

    .tag {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 2px solid rgba(58,58,58,.25);
      background: rgba(207,226,246,.55);
      font-weight: 700;
      color: rgba(31,31,31,.9);
      white-space: nowrap;
      transform: rotate(1deg);
    }

    /* ─────────────────────────────────────────
       BULLETS + CHECKS
    ───────────────────────────────────────── */
    .bullets {
      margin: 0; padding-left: 18px;
      display: grid; gap: 6px;
      font-size: 14px; line-height: 1.25;
    }
    .bullets li { margin: 0; }

    .checks { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 8px; font-size: 13.5px; color: rgba(31,31,31,.92); }
    .checks li { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
    .checks li.checked .cb { background: var(--tab-yellow); }
    .cb { width: 14px; height: 14px; border: 2px solid rgba(58,58,58,.55); border-radius: 3px; margin-top: 2px; background: rgba(255,255,255,.2); flex: 0 0 auto; transition: all .2s; }

    /* ─────────────────────────────────────────
       PILLS
    ───────────────────────────────────────── */
    .mini { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
    .pill {
      font-size: 12px;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1.6px dashed rgba(58,58,58,.34);
      background: rgba(255,255,255,.22);
      color: rgba(31,31,31,.92);
      white-space: nowrap;
    }
    .pill.tool-item { display: inline-flex; align-items: center; position: relative; }
    .pill[data-tip] { position: relative; cursor: default; }
    .pill[data-tip]:hover::after {
      content: attr(data-tip);
      position: absolute;
      bottom: calc(100% + 8px); left: 50%;
      transform: translateX(-50%);
      background: rgba(35,35,30,.92);
      color: #f7f3ea;
      font-family: Inter, sans-serif;
      font-size: 12px; line-height: 1.35;
      padding: 8px 12px;
      border-radius: 10px;
      max-width: 260px;
      white-space: normal;
      z-index: 50;
      pointer-events: none;
      box-shadow: 0 6px 16px rgba(0,0,0,.18);
    }
    .pill[data-tip]:hover::before {
      content: "";
      position: absolute;
      bottom: calc(100% + 2px); left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: rgba(35,35,30,.92);
      z-index: 50;
      pointer-events: none;
    }
    .see-all-pill {
      cursor: pointer; font-weight: 800; letter-spacing: 1px;
      color: rgba(50,50,50,.45);
      border-style: solid !important;
      transition: all .2s;
    }
    .see-all-pill:hover { color: rgba(50,50,50,.85); background: rgba(207,230,214,.4); border-color: rgba(50,50,50,.4) !important; }

    /* ─────────────────────────────────────────
       WORKSHEET
    ───────────────────────────────────────── */
    .worksheet {
      margin-top: 18px;
      border: 2px dashed rgba(58,58,58,.35);
      border-radius: 18px;
      padding: 16px;
      background: rgba(255,255,255,.18);
      box-shadow: 0 10px 20px rgba(0,0,0,.07);
    }
    .worksheet-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
    .worksheet h2 { font-size: 26px; font-family: "Patrick Hand", ui-rounded, cursive; }
    .worksheet-grid { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .worksheet-grid-wide { margin-top: 12px; display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 14px; }
    .subcard { border: 2px solid rgba(58,58,58,.22); border-radius: 16px; padding: 12px 12px 10px; background: rgba(255,255,255,.22); }
    .subcard h3 { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 18px; margin-bottom: 8px; }

    /* ─────────────────────────────────────────
       COLLAPSIBLE AREAS
    ───────────────────────────────────────── */
    .collapsible-area { margin-top: 16px; border: 2px solid rgba(58,58,58,.2); border-radius: 14px; padding: 12px; background: rgba(255,255,255,.1); }
    .collapsible-area-header {
      font-family: "Patrick Hand", ui-rounded, cursive;
      font-size: 18px; cursor: pointer; user-select: none;
      display: flex; align-items: center; gap: 8px;
    }
    .collapsible-area-header::before { content: "▸"; display: inline-block; transition: transform .3s; font-size: 16px; }
    .collapsible-area-header.open::before { transform: rotate(90deg); }
    .collapsible-area-content { display: none; margin-top: 12px; }
    .collapsible-area-content.open { display: block; }

    /* Inline collapsibles (inside prompt cards) */
    .collapsible { margin-top: 8px; border-top: 1px solid rgba(58,58,58,.15); padding-top: 8px; }
    .collapsible-btn { font-size: 12px; color: var(--muted); background: none; border: none; cursor: pointer; text-decoration: underline; font-family: Inter; padding: 0; }
    .collapsible-content { display: none; margin-top: 8px; font-size: 12.5px; line-height: 1.4; color: rgba(31,31,31,.85); }
    .collapsible-content.open { display: block; }

    /* ─────────────────────────────────────────
       PROMPT CARDS
    ───────────────────────────────────────── */
    .prompt-row { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .prompt {
      background: rgba(255,255,255,.92);
      border: 2.5px solid rgba(58,58,58,.55);
      border-radius: 16px;
      padding: 30px 16px 14px;
      box-shadow: 0 12px 22px rgba(0,0,0,.10);
      position: relative;
      transform: rotate(.35deg);
    }
    .prompt::before {
      content: "";
      position: absolute;
      width: 74px; height: 18px;
      top: -8px; left: 18px;
      background: rgba(207,230,214,.65);
      border: 1.8px solid rgba(58,58,58,.20);
      border-radius: 10px;
      transform: rotate(-4deg);
    }
    .prompt h3 { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 18px; margin-bottom: 8px; }
    .codeish {
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: 12.5px;
      background: rgba(255,255,255,.22);
      border: 1.8px dashed rgba(58,58,58,.30);
      border-radius: 12px;
      padding: 10px;
      line-height: 1.35;
      color: rgba(31,31,31,.95);
      white-space: pre-wrap;
      word-break: break-word;
    }
    .hint { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
    .prompt-controls { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
    .btn-small {
      font-size: 12px; padding: 6px 10px;
      border: 1.5px solid rgba(58,58,58,.3);
      border-radius: 8px;
      background: rgba(255,255,255,.3);
      cursor: pointer; transition: all .2s;
      font-family: "Patrick Hand", ui-rounded, cursive;
      color: var(--ink);
    }
    .btn-small:hover { background: rgba(255,255,255,.6); }

    /* Share CTA banner */
    .share-cta {
      margin-top: 18px;
      border: 2px dashed rgba(58,58,58,.25);
      border-radius: 16px;
      padding: 16px 20px;
      background: rgba(246,230,168,.12);
      transform: rotate(-.3deg);
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    }

    /* ─────────────────────────────────────────
       TOOLS SECTION
    ───────────────────────────────────────── */
    .tool-search { margin-bottom: 16px; }
    .tool-search input {
      width: 100%; padding: 10px 14px;
      border: 2px solid rgba(58,58,58,.25);
      border-radius: 12px;
      font-family: Inter; font-size: 14px;
      background: rgba(255,255,255,.3);
      box-sizing: border-box;
      color: var(--ink);
    }
    .tool-search input::placeholder { color: var(--muted); }
    .tool-groups { margin-top: 14px; display: grid; gap: 12px; }
    .group { border: 2px solid rgba(58,58,58,.22); border-radius: 16px; padding: 12px; background: rgba(255,255,255,.18); 
      scroll-margin-top: 100px;
    }
    .group .head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
    .group .head h3 { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 18px; }
    .badge { font-size: 12px; font-weight: 800; padding: 5px 9px; border-radius: 999px; border: 2px solid rgba(58,58,58,.22); background: rgba(246,209,200,.55); }

    /* ─────────────────────────────────────────
       CAPABILITIES SECTION
    ───────────────────────────────────────── */
    .box p { font-size: 14px; line-height: 1.45; margin: 0 0 8px; }
    .box p.box-intro { font-weight: 700; }
    .box p:last-child { margin-bottom: 0; }
    .box .bullets { margin-top: 8px; }
    .box .bullets + p { margin-top: 14px; color: var(--muted); font-size: 13px; }
    .cap-desc { margin-top: 8px; font-size: 14px; line-height: 1.4; }
    .cap-example { margin-top: 8px; font-size: 12px; color: var(--muted); }

    /* ─────────────────────────────────────────
       TIMELINE / 30-60-90
    ───────────────────────────────────────── */
    .timeline { margin-top: 14px; border: 2px solid rgba(58,58,58,.22); border-radius: 18px; padding: 14px; background: rgba(255,255,255,.18); }
    .rail { position: relative; height: 24px; margin: 10px 2px 14px; border-top: 3px dashed rgba(58,58,58,.28); }
    .milestones { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
    .ms { border: 2px solid rgba(58,58,58,.20); border-radius: 16px; padding: 10px; background: rgba(255,255,255,.20); position: relative; }
    .ms .dot { width: 14px; height: 14px; border-radius: 999px; border: 2px solid rgba(58,58,58,.45); background: rgba(246,230,168,.55); position: absolute; top: -8px; left: 14px; }
    .ms h3 { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 18px; margin-bottom: 6px; }

    /* ─────────────────────────────────────────
       MATURITY MODEL
    ───────────────────────────────────────── */
    .maturity-steps { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .maturity-card { border: 2px solid rgba(58,58,58,.22); border-radius: 16px; padding: 14px; background: rgba(255,255,255,.2); position: relative; }
    .maturity-card h3 { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 18px; margin-bottom: 8px; }
    .maturity-card .level-num { position: absolute; top: 10px; right: 14px; font-size: 28px; font-weight: 700; opacity: .15; }

    /* Maturity assessment */
    .assess-btn {
      margin-top: 12px;
      font-family: "Patrick Hand", cursive;
      font-size: 20px; padding: 12px 32px;
      border: 2px solid rgba(58,58,58,.35);
      border-radius: 999px;
      background: rgba(207,226,246,.6);
      cursor: pointer; transition: all .25s;
      color: var(--ink);
    }
    .assess-btn:hover { background: rgba(207,226,246,.9); transform: scale(1.05); box-shadow: 0 6px 18px rgba(0,0,0,.12); }
    .assess-result { margin-top: 18px; border: 2px solid rgba(58,58,58,.25); border-radius: 16px; padding: 20px; background: rgba(255,255,255,.3); animation: fadeInUp .4s ease; }
    .assess-level { font-family: "Patrick Hand", cursive; font-size: 28px; margin-bottom: 4px; }
    .assess-score { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
    .assess-bar { height: 10px; border-radius: 999px; background: rgba(58,58,58,.1); margin-bottom: 16px; overflow: hidden; }
    .assess-fill { height: 100%; border-radius: 999px; transition: width .6s ease; }
    .assess-feedback { font-size: 14px; line-height: 1.5; color: var(--ink); }
    .assess-feedback strong { display: block; font-family: "Patrick Hand", cursive; font-size: 17px; margin-top: 12px; margin-bottom: 4px; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    /* ─────────────────────────────────────────
       SHARE PROMPT CTA
    ───────────────────────────────────────── */
    .share-prompt-cta {
      margin-top: 18px;
      border: 2px dashed rgba(58,58,58,.35);
      border-radius: 14px;
      padding: 18px 16px;
      background: rgba(246,230,168,.35);
      transform: rotate(-.8deg);
      text-align: center;
    }
    .share-prompt-cta .hand { font-size: 20px; margin-bottom: 8px; }
    .share-prompt-cta p { margin: 0 0 12px; font-size: 14px; color: var(--muted); }
    .share-prompt-btn {
      font-family: "Patrick Hand", cursive;
      font-size: 15px; padding: 10px 18px;
      border: 2px solid rgba(58,58,58,.3);
      border-radius: 999px;
      background: rgba(207,230,214,.6);
      cursor: pointer; transition: all .2s;
      color: var(--ink); text-decoration: none;
      display: inline-block;
    }
    .share-prompt-btn:hover { background: rgba(207,230,214,.9); transform: scale(1.05); }

    /* ─────────────────────────────────────────
       FEEDBACK BTN
    ───────────────────────────────────────── */
    .feedback-btn {
      position: absolute; top: 14px; right: 14px;
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 2px solid rgba(58,58,58,.2);
      background: rgba(255,255,255,.5);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all .2s; z-index: 10;
      text-decoration: none; color: rgba(58,58,58,.4);
      font-size: 18px; font-weight: 700; line-height: 1;
    }
    .feedback-btn:hover { background: rgba(207,226,246,.6); border-color: rgba(58,58,58,.35); color: rgba(58,58,58,.7); transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
    .feedback-label {
      position: absolute; right: calc(100% + 8px);
      white-space: nowrap;
      font-family: "Patrick Hand", cursive; font-size: 13px; font-weight: 400;
      color: rgba(58,58,58,.6); background: rgba(255,255,255,.85);
      padding: 4px 10px; border-radius: 8px; border: 1.5px solid rgba(58,58,58,.15);
      opacity: 0; transform: translateX(6px); transition: all .2s; pointer-events: none;
    }
    .feedback-btn:hover .feedback-label { opacity: 1; transform: translateX(0); }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .site-footer {
      max-width: min(980px, 96vw);
      margin-top: 40px; padding: 28px 0 12px;
      border-top: 2px dashed rgba(58,58,58,.2);
      text-align: center;
      color: rgba(31,31,31,.55);
      font-size: 12px; font-family: Inter, sans-serif; line-height: 1.7;
    }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    .mob-child { font-size: 14px; padding-left: 28px; }
    .mob-group-trigger { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    .mob-group-trigger .mob-arrow { font-size: 14px; transition: transform .2s; display: inline-block; }
    .mob-group-trigger[aria-expanded="true"] .mob-arrow { transform: rotate(-180deg); }

    @media (max-width: 820px) {
      .sticky-nav { display: none !important; }
      .mobile-header { display: flex; }
      .mob-anchor-sheet { display: block; }
      .mob-progress-bar { display: block; }
      .mob-scrim { display: block; pointer-events: none; }
      .mob-scrim.visible { pointer-events: auto; }
      .wrap { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important; }
      .pad { padding: 26px 18px 30px; }
      .pad > h2 { padding-right: 48px; }
      .grid-2, .worksheet-grid, .prompt-row, .maturity-steps { grid-template-columns: 1fr; }
      .worksheet-grid-wide { grid-template-columns: 1fr 1fr; }
      .doodle-note { position: relative; right: auto; top: auto; transform: rotate(-1deg); margin-bottom: 14px; display: inline-block; }
      .doodle-bulb { display: none; }
      .title { font-size: 32px; }
      .milestones { grid-template-columns: 1fr; }
      .hero-btns { grid-template-columns: 1fr; }
      .sticky { flex-direction: column; text-align: center; transform: none; }
      .pill[data-tip]:hover::after,
      .pill[data-tip]:hover::before { content: none; }
    }
    @media (max-width: 480px) {
      .pad { padding: 20px 14px 24px; }
      .title { font-size: 28px; }
      .subtitle { font-size: 14px; }
      .tab { font-size: 16px; }
      .worksheet h2 { font-size: 22px; }
      .worksheet-grid-wide { grid-template-columns: 1fr; }
    }

    /* ─────────────────────────────────────────
       PROMPT EXPAND / TRUNCATION (mobile-only)
    ───────────────────────────────────────── */
    .codeish-wrap { position: relative; }
    .prompt-expand-btn { display: none; }
    @media (max-width: 820px) {
      .codeish-wrap.truncated { max-height: 120px; overflow: hidden; }
      .codeish-wrap.truncated::after {
        content: "";
        position: absolute; bottom: 0; left: 0; right: 0;
        height: 40px;
        background: linear-gradient(transparent, rgba(255,255,255,.85));
        pointer-events: none; border-radius: 0 0 12px 12px;
      }
      .prompt-expand-btn {
        display: block; width: 100%; margin-top: 6px;
        font-family: "Patrick Hand", ui-rounded, cursive; font-size: 12px;
        color: var(--muted); background: none; border: none; cursor: pointer;
        text-align: center; padding: 4px 0;
        transition: color .15s;
      }
      .prompt-expand-btn:hover { color: var(--ink); }
    }

    /* ─────────────────────────────────────────
       PROMPT TABS (categorized prompt nav)
    ───────────────────────────────────────── */
    .prompt-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 18px 0 6px; padding: 4px 0; }
    .prompt-tab-btn { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 14px; padding: 8px 14px; border: 2px solid rgba(58,58,58,.22); border-radius: 999px; background: rgba(255,255,255,.3); cursor: pointer; transition: all .25s; color: var(--muted); white-space: nowrap; }
    .prompt-tab-btn:hover { background: rgba(255,255,255,.6); color: var(--ink); transform: scale(1.03); }
    .prompt-tab-btn.active { background: var(--tab-yellow); border-color: rgba(58,58,58,.4); color: var(--ink); font-weight: 600; }
    .prompt-tab-count { font-size: 11px; opacity: .7; margin-left: 2px; }
    .prompt-tab-panel { display: none; }
    .prompt-tab-panel.active { display: block; animation: fadeInPanel .3s ease; }
    @keyframes fadeInPanel { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
    .prompt-section-intro { font-size: 14px; color: var(--muted); margin: 10px 0 14px; }
    /* Mobile prompt category dropdown */
    .prompt-select-wrap { display: none; margin: 14px 0 6px; position: relative; user-select: none; scroll-margin-top: 68px; }
    .prompt-select-trigger {
      font-family: "Patrick Hand", ui-rounded, cursive; font-size: 18px;
      width: 100%; padding: 11px 40px 11px 16px; box-sizing: border-box;
      border: 2px solid rgba(58,58,58,.3); border-radius: 12px;
      background: var(--tab-yellow); color: var(--ink);
      cursor: pointer; display: flex; align-items: center; justify-content: space-between;
      transition: border-color .2s;
    }
    .prompt-select-trigger.open { border-color: rgba(58,58,58,.5); border-radius: 12px 12px 0 0; }
    .prompt-select-arrow { font-size: 13px; opacity: .6; margin-left: 8px; transition: transform .2s; flex-shrink: 0; }
    .prompt-select-trigger.open .prompt-select-arrow { transform: rotate(180deg); }
    .prompt-select-menu {
      display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
      background: var(--paper); border: 2px solid rgba(58,58,58,.3); border-top: none;
      border-radius: 0 0 12px 12px; overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,.1);
    }
    .prompt-select-menu.open { display: block; }
    .prompt-select-option {
      font-family: "Patrick Hand", ui-rounded, cursive; font-size: 17px;
      padding: 12px 16px; cursor: pointer; color: var(--ink);
      border-bottom: 1px solid rgba(58,58,58,.08); transition: background .15s;
    }
    .prompt-select-option:last-child { border-bottom: none; }
    .prompt-select-option:hover { background: rgba(246,230,168,.4); }
    .prompt-select-option.active { background: var(--tab-yellow); font-weight: 600; }
    @media (max-width: 820px) {
      .prompt-tabs { display: none; }
      .prompt-select-wrap { display: block; }
    }

    /* === HERO MOBILE: stat pills + chip row === */
    .mob-stat-pills, .mob-chip-wrap { display: none; }
    @media (max-width: 820px) {
      #authBoxes      { display: none !important; }
      .hero-btns-wrap { display: none !important; }
      .mob-stat-pills { display: flex !important; gap: 8px; flex-wrap: nowrap; margin-top: 14px; }
      .mob-stat-pill { font-family: "Patrick Hand", ui-rounded, cursive; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 9px 8px 8px; border: 2px solid rgba(58,58,58,.2); border-radius: 14px; background: rgba(255,255,255,.32); color: var(--muted); cursor: pointer; -webkit-tap-highlight-color: transparent; transition: background .15s, color .15s, border-color .15s; user-select: none; min-width: 0; }
      .mob-stat-pill-num { font-size: 22px; line-height: 1; font-weight: 700; color: var(--muted); transition: color .15s; }
      .mob-stat-pill-lbl { font-size: 11px; line-height: 1.25; margin-top: 3px; color: var(--muted); transition: color .15s; }
      .mob-stat-pill.active-sage   { background: rgba(207,230,214,.8); border-color: rgba(58,58,58,.3); }
      .mob-stat-pill.active-blue   { background: rgba(207,226,246,.8); border-color: rgba(58,58,58,.3); }
      .mob-stat-pill.active-coral  { background: rgba(246,209,200,.8); border-color: rgba(58,58,58,.3); }
      .mob-stat-pill.active-lav    { background: rgba(227,214,246,.8); border-color: rgba(58,58,58,.3); }
      .mob-stat-pill.active-yellow { background: rgba(246,230,168,.8); border-color: rgba(58,58,58,.3); }
      .mob-stat-pill.active-sage .mob-stat-pill-num, .mob-stat-pill.active-blue .mob-stat-pill-num, .mob-stat-pill.active-coral .mob-stat-pill-num, .mob-stat-pill.active-lav .mob-stat-pill-num, .mob-stat-pill.active-yellow .mob-stat-pill-num { color: var(--ink); }
      .mob-stat-pill.active-sage .mob-stat-pill-lbl, .mob-stat-pill.active-blue .mob-stat-pill-lbl, .mob-stat-pill.active-coral .mob-stat-pill-lbl, .mob-stat-pill.active-lav .mob-stat-pill-lbl, .mob-stat-pill.active-yellow .mob-stat-pill-lbl { color: var(--ink); }
      .mob-chip-wrap { display: block !important; position: relative; margin-top: 10px; }
      .mob-chip-hints { display: flex; justify-content: space-between; margin-top: 4px; height: 14px; }
      .mob-chip-hint { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 12px; color: var(--muted); opacity: .6; letter-spacing: .04em; transition: opacity .25s ease; }
      .mob-chip-hint-left { opacity: 0; }
      .mob-chip-wrap.has-left .mob-chip-hint-left  { opacity: .6; }
      .mob-chip-wrap.at-end   .mob-chip-hint-right { opacity: 0; }
      .mob-chip-row { display: flex !important; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 7px; padding-bottom: 4px; }
      .mob-chip-row::-webkit-scrollbar { display: none; }
      .mob-chip { font-family: "Patrick Hand", ui-rounded, cursive; font-size: 13px; padding: 7px 14px; border: 2px solid rgba(58,58,58,.22); border-radius: 999px; background: rgba(255,255,255,.3); color: var(--ink); white-space: nowrap; flex-shrink: 0; cursor: pointer; text-decoration: none; -webkit-tap-highlight-color: transparent; transition: background .15s; }
      .mob-chip:active { background: rgba(255,255,255,.65); }
      .mob-chip-row.tint-sage   .mob-chip { background: rgba(207,230,214,.28); border-color: rgba(58,58,58,.18); }
      .mob-chip-row.tint-blue   .mob-chip { background: rgba(207,226,246,.28); border-color: rgba(58,58,58,.18); }
      .mob-chip-row.tint-coral  .mob-chip { background: rgba(246,209,200,.28); border-color: rgba(58,58,58,.18); }
      .mob-chip-row.tint-lav    .mob-chip { background: rgba(227,214,246,.28); border-color: rgba(58,58,58,.18); }
      .mob-chip-row.tint-yellow .mob-chip { background: rgba(246,230,168,.28); border-color: rgba(58,58,58,.18); }
    }

  /* === FOLD: mobile hero improvements === */
    @media (max-width: 820px) {
      .doodle-note { display: none !important; }
      #hero h1 br  { display: none; }
    }

    /* How to Use sticky -- compact on mobile */
    @media (max-width: 820px) {
      #hero .sticky {
        margin-top: 14px;
        padding: 10px 12px;
        background: rgba(246,230,168,.6);
        border: 1.5px solid rgba(58,58,58,.2);
        border-radius: 12px;
        box-shadow: none;
        transform: rotate(-.6deg);
        flex-direction: row;
        text-align: left;
        gap: 10px;
      }
      #hero .sticky .hand  { font-size: 14px; }
      #hero .sticky small  { font-size: 12px; margin-top: 2px; display: block; }
      #hero .sticky .arrow { font-size: 16px; font-weight: 400; align-self: center; }
    }

  

/* ─── Web playbook nav chrome ─── */
/* Fixed height is the key — nav can never grow regardless of contents */
.sticky-nav.web-nav{
  height:54px!important;
  min-height:54px!important;
  max-height:54px!important;
  padding:0 62px 0 14px!important;
  align-items:center!important;
  flex-wrap:nowrap!important;
  justify-content:flex-start!important;
  overflow:visible!important;
  box-sizing:border-box!important;
}
.site-logo{font-family:"Patrick Hand",ui-rounded,cursive;font-size:20px;color:var(--ink);display:flex;align-items:center;gap:8px;white-space:nowrap;flex-shrink:0;text-decoration:none;height:54px;}
.logo-mark{width:34px;height:34px;background:#f6d1c8;border:2px solid rgba(58,58,58,.3);border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:17px;transform:rotate(-2deg);flex-shrink:0;}
.logo-ai{font-size:13px;background:#f6e6a8;border:1.5px solid rgba(58,58,58,.22);border-radius:6px;padding:1px 5px;margin-left:-3px;transform:rotate(.8deg);display:inline-block;}
/* Pills: absolutely centered, vertically centered in the fixed 54px nav */
.nav-pills-center{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);display:flex;gap:8px;flex-wrap:nowrap;pointer-events:auto;white-space:nowrap;}
.nav-pills-center.pills-hidden{display:none!important;}
/* Hamburger: absolutely flush right, vertically centered */
.site-hamburger{all:unset;box-sizing:border-box!important;position:absolute!important;right:14px!important;top:50%!important;transform:translateY(-50%)!important;border:2px solid rgba(58,58,58,.2)!important;border-radius:10px!important;width:38px!important;height:38px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:5px;cursor:pointer;padding:0!important;flex-shrink:0;transition:border-color .2s;}
.site-hamburger:hover{border-color:rgba(58,58,58,.4)!important;}
.site-hamburger .bar{display:block;width:16px;height:2px;background:var(--ink);border-radius:2px;transition:all .28s ease;}
.site-hamburger.open .bar:nth-child(1){transform:translateY(7px) rotate(45deg)!important;}
.site-hamburger.open .bar:nth-child(2){opacity:0!important;transform:scaleX(0)!important;}
.site-hamburger.open .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important;}
.site-menu{display:none;position:fixed;top:58px;right:10px;z-index:190;background:rgba(247,243,234,.98);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:2px solid rgba(58,58,58,.14);border-radius:14px;box-shadow:0 8px 28px rgba(0,0,0,.13);flex-direction:column;gap:4px;padding:10px 12px 12px;min-width:210px;animation:slideDown .22s ease;}
.site-menu.open{display:flex;}
.site-menu-link{font-family:"Patrick Hand",ui-rounded,cursive;font-size:16px;padding:10px 14px;border:2px solid rgba(58,58,58,.18);border-radius:12px;background:rgba(255,255,255,.35);color:var(--ink);transition:background .18s;text-decoration:none;display:block;}
.site-menu-link:hover{background:rgba(255,255,255,.7);}
@media(max-width:500px){.nav-pills-center{display:none!important;}.site-menu{top:58px;right:0;left:0;border-radius:0 0 14px 14px;min-width:unset;}}
/* Override base CSS which hides .sticky-nav at 820px — web nav must always stay visible */
@media(max-width:820px){.sticky-nav.web-nav{display:flex!important;}}
.site-footer-web{width:100%;background:rgba(247,243,234,.96);border-top:2px solid rgba(58,58,58,.12);margin-top:0;padding:28px 20px 20px;box-sizing:border-box;font-family:Inter,system-ui,sans-serif;}.site-footer-inner{max-width:980px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:14px;text-align:center;}.site-footer-brand{font-family:"Patrick Hand",ui-rounded,cursive;font-size:18px;color:rgba(31,31,31,.8);}.site-footer-tagline{font-size:13px;color:rgba(58,58,58,.55);margin-top:-8px;}.site-footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:6px 20px;}.site-footer-links a{font-size:12.5px;color:rgba(58,58,58,.6);text-decoration:none;transition:color .15s;}.site-footer-links a:hover{color:rgba(31,31,31,.9);}.site-footer-social{display:flex;gap:12px;align-items:center;}.site-footer-social a{display:flex;align-items:center;color:rgba(58,58,58,.45);transition:color .2s;text-decoration:none;}.site-footer-social a:hover{color:rgba(31,31,31,.8);}.site-footer-copy{font-size:11.5px;color:rgba(58,58,58,.4);}



/* ═══════════════════════════════════════════════════════════════
   MOBILE PERFORMANCE OVERRIDES
   All rules are scoped to max-width: 820px so desktop is
   completely unaffected. Comment out any block to revert it.
   ═══════════════════════════════════════════════════════════════ */

/* FIX 1: Remove backdrop-filter on mobile (biggest GPU compositing win).
   Replaced with fully-opaque background so the visual intent is preserved. */
@media (max-width: 820px) {
  .sticky-nav,
  .mobile-header,
  .nav-dropdown,
  .mobile-menu-inner,
  .update-banner,
  .mob-anchor-sheet,
  .site-menu {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(247,243,234,.99) !important;
  }
}

/* FIX 2: Strip decorative rotate() transforms on mobile.
   Cards/tabs/pills have hundreds of these — each creates a GPU layer. */
@media (max-width: 820px) {
  .box,
  .prompt,
  .sticky,
  .tab,
  .tag,
  .pill,
  .hero-btn, a.hero-btn,
  .doodle-note,
  .share-cta,
  .share-prompt-cta {
    transform: none !important;
  }
  /* Preserve interactive scale states */
  .auth-box.auth-on { transform: scale(1.04) !important; }
  .hero-btn:hover   { transform: scale(1.04) !important; }
}

/* FIX 3: Simplify body background on mobile.
   Radial + repeating-linear gradients force a full-page repaint on every
   scroll tick. A flat colour renders instantly. */
@media (max-width: 820px) {
  body {
    background: var(--paper) !important;
  }
}

/* FIX 4: Remove .page::before decorative shadow gradients on mobile.
   Each card's pseudo-element has 4 radial gradients + a rotation. */
@media (max-width: 820px) {
  .page::before { display: none !important; }
}

/* FIX 5: Scope transitions to interaction-only on mobile.
   Broad transitions fire when elements scroll into view, causing frame drops. */
@media (max-width: 820px) {
  .auth-box             { transition: opacity .2s, box-shadow .2s !important; }
  .hero-btn, a.hero-btn { transition: background .15s !important; }
  .btn-small            { transition: background .15s !important; }
  .mob-btn              { transition: background .15s !important; }
}

/* FIX 6: Remove drop-shadow filter from decorative SVG element. */
@media (max-width: 820px) {
  .doodle-bulb { filter: none !important; }
}

/* FIX 7: touch-action on all interactive elements.
   Removes the 300ms tap delay on iOS Safari. Safe on desktop too. */
button, a, [onclick], label {
  touch-action: manipulation;
}

/* FIX 8 removed — content-visibility:auto breaks anchor navigation to child elements */
/* FIX 9: Ensure scroll-margin-top covers the mobile header height (56px)
   so scrollIntoView lands below the fixed nav. */
@media (max-width: 820px) {
  .page  { scroll-margin-top: 68px; }
  .group { scroll-margin-top: 72px; }
}


