    :root {
      --font-body: var(--font-serif);
      --font-body-italic: var(--font-serif);
      --font-heading: var(--font-sans);
      --font-hand: 'Caveat', cursive; /* For John's annotations */
    }

    * { margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ===== Site Header ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
    }
    .site-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1.5rem;
    }
    .site-header__brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .site-header__logo {
      height: 36px;
      width: auto;
    }
    .site-header__wordmark {
      font-family: var(--font-ui);
      font-size: var(--wb-p3);
      color: var(--color-text);
      margin-left: 0.5rem;
      white-space: nowrap;
    }
    .site-nav {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .site-nav__program {
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--color-text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .site-nav__link {
      font-family: var(--font-sans);
      font-size: var(--wb-p3);
      color: var(--color-text-secondary);
      text-decoration: none;
    }
    .site-nav__link:hover {
      color: var(--color-text);
    }
    #dark-mode-toggle {
      background: none;
      border: none;
      cursor: pointer;
      font-size: var(--wb-p1, 1.5rem);
      padding: 0.25rem;
      color: var(--color-text-secondary);
      transition: color 0.15s ease;
      line-height: 1;
    }
    #dark-mode-toggle:hover {
      color: var(--color-text);
    }

    /* ===== Mobile Header ===== */
    @media (max-width: 640px) {
      .site-header__wordmark { display: none; }
      .site-nav__program { display: none; }
    }

    /* ===== Site Footer ===== */
    .site-footer {
      margin-top: 4rem;
      padding: 2rem 1.5rem;
      text-align: center;
      font-family: var(--font-ui);
      font-size: var(--wb-p3, 1.042rem);
      color: var(--color-text-muted);
    }
    .site-footer a {
      color: var(--color-text-secondary);
      text-decoration: none;
    }
    .site-footer a:hover {
      color: var(--color-text);
    }

    /* Progress bar */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: var(--fx-orange-400);
      width: 0%;
      z-index: 1001;
      transition: width 0.1s linear;
    }

    /* Opening - Editorial Bold */
    .opening {
      min-height: calc(100vh - 61px);
      min-height: calc(100svh - 61px);
      display: grid;
      grid-template-rows: 1fr auto;
      padding: 32px 5vw;
      position: relative;
      overflow: hidden;
    }

    .opening-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      opacity: 0;
      animation: fadeIn 0.8s ease 0.2s forwards;
    }

    .opening-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .opening-logo-img {
      height: 36px;
      width: auto;
    }

    .opening-logo-text {
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--color-text-secondary);
      letter-spacing: 0.02em;
    }

    .opening-tag {
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--color-text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .opening-main {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0;
    }

    .opening h1 {
      font-size: var(--h-display);
      margin: 0;
      letter-spacing: -0.03em;
    }

    .opening h1 .line {
      display: block;
      overflow: hidden;
      padding-bottom: 0.18em;
      margin-bottom: -0.18em;
    }

    .opening h1 .line-inner {
      display: block;
      transform: translateY(100%);
      animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .opening h1 .line:nth-child(1) .line-inner { animation-delay: 0.3s; }
    .opening h1 .line:nth-child(2) .line-inner { animation-delay: 0.4s; }
    .opening h1 .line:nth-child(3) .line-inner { animation-delay: 0.5s; }

    .opening h1 em {
      font-style: normal;
      color: var(--fx-orange-600);
    }

    .opening-columns {
      display: flex;
      gap: 5vw;
      margin-top: 48px;
      opacity: 0;
      animation: fadeIn 0.8s ease 1s forwards;
    }

    .opening-sub {
      font-size: clamp(18px, 2.2vw, 26px);
      color: var(--color-text);
      line-height: 1.5;
      flex: 1;
      margin: 0;
    }

    .opening-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      opacity: 0;
      animation: fadeIn 0.8s ease 1.2s forwards;
    }

    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

    /* Opening responsive */
    @media (max-width: 1200px) {
      .opening-columns {
        margin-top: 32px;
      }
      .opening-sub {
        font-size: clamp(16px, 2vw, 22px);
      }
      .opening {
        padding: 24px 4vw;
      }
    }
    @media (max-width: 768px) {
      .opening-columns {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
      }
      .opening-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
      }
    }

    /* Section: The Setup */
    .setup {
      padding: 160px 10vw;
      max-width: 100%;
      margin: 0;
    }

    .setup p {
      font-size: clamp(22px, 2.5vw, 32px);
      line-height: 1.7;
      margin-bottom: 40px;
      color: var(--color-text-secondary);
      max-width: 900px;
    }

    .setup p:first-of-type::first-letter {
      font-size: 96px;
      float: left;
      line-height: 1;
      margin-right: 16px;
      margin-top: 8px;
      font-family: var(--font-heading);
      color: var(--color-text);
    }

    .setup strong {
      color: var(--color-text);
      font-weight: normal;
    }

    /* Cohort Section - Editorial Bold */
    .cohort-section {
      padding: 0 5vw 120px;
      position: relative;
      background: var(--color-bg-subtle);
      color: var(--color-text);
      border-top: 3px solid var(--fx-blue-600);
    }

    .cohort-header {
      max-width: 700px;
      margin: 0 auto 64px;
      padding-top: 100px;
      text-align: center;
    }

    .cohort-header h2 {
      font-size: var(--h2);
      letter-spacing: -0.02em;
      color: var(--color-text);
      margin-bottom: 20px;
    }

    .cohort-header p {
      font-size: var(--wb-p2);
      line-height: 1.75;
      color: var(--color-text);
    }

    .cohort-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .cohort-card {
      background: var(--color-bg);
      padding: 36px 32px;
      position: relative;
      border-top: 3px solid transparent;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 3px rgba(16, 15, 15, 0.06);
    }

    .cohort-card:nth-child(1) { border-top-color: var(--fx-blue-600); }
    .cohort-card:nth-child(2) { border-top-color: var(--fx-orange-600); }
    .cohort-card:nth-child(3) { border-top-color: var(--fx-purple-600); }

    .cohort-card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .cohort-card-photo {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      filter: grayscale(100%);
      transition: filter 0.4s ease;
    }

    .cohort-card-context {
      font-family: var(--font-ui);
      font-size: var(--badge-size);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 5px 10px;
      border-radius: 20px;
      background: var(--color-bg-subtle);
      color: var(--color-text-secondary);
      white-space: nowrap;
    }

    .cohort-card-name {
      font-family: var(--font-heading);
      font-size: var(--h5);
      margin-bottom: 4px;
      color: var(--color-text);
    }

    .cohort-card-org {
      font-size: var(--wb-p3);
      color: var(--color-text-muted);
      margin-bottom: 20px;
    }

    .cohort-card-outcome {
      font-size: var(--wb-p2);
      color: var(--color-text-secondary);
      line-height: 1.7;
      padding-top: 20px;
      border-top: 1px solid var(--color-border);
      margin-top: auto;
      max-width: 38ch;
    }

    @media (max-width: 1100px) {
      .cohort-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 650px) {
      .cohort-grid { grid-template-columns: 1fr; }
    }

    /* Divider */
    .divider {
      height: 20vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .divider-line {
      width: 1px;
      height: 80px;
      background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
    }

    /* Read more link */
    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 32px;
      font-family: var(--font-ui);
      font-size: 15px;
      color: var(--color-text);
      text-decoration: none;
      padding-bottom: 4px;
      border-bottom: 1px solid var(--color-text);
      transition: all 0.2s ease;
    }

    .read-more:hover {
      gap: 14px;
      color: var(--fx-orange-600);
      border-color: var(--fx-orange-600);
    }

    /* Closing / CTA */
    .closing {
      padding: 160px 5vw 80px;
      background: var(--color-text);
      color: var(--color-bg);
    }

    .closing-inner {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .closing-left h2 {
      margin-bottom: 24px;
      color: var(--color-bg);
    }

    .closing-left p {
      font-size: 18px;
      color: var(--color-border);
      line-height: 1.6;
    }

    .closing-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
    }

    .closing-register-btn {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    @media (max-width: 800px) {
      .closing-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    /* Footer */
    footer {
      padding: 48px 24px;
      border-top: 1px solid rgba(28, 27, 26, 0.08);
      text-align: center;
      background: var(--color-bg);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .footer-logo-mark {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--fx-orange-400);
    }

    .footer-logo-text {
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--color-text-secondary);
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 16px;
    }

    .footer-links a {
      font-family: var(--font-ui);
      font-size: 12px;
      color: var(--color-text-muted);
      text-decoration: none;
    }

    .footer-links a:hover { color: var(--color-text); }

    /* Argument section */
    .argument-quote {
      padding: 120px 5vw;
      background: var(--fx-orange-600);
    }

    .argument-quote-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .argument {
      padding: 80px 5vw 140px;
      background: var(--color-bg);
    }

    .argument-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .argument-blockquote {
      margin: 0;
      padding: 0;
      border: none;
      font-family: var(--font-body);
      font-size: var(--wb-p1);
      line-height: 1.7;
      color: var(--color-bg);
      font-style: italic;
    }

    .argument-blockquote p {
      margin: 0 0 20px;
    }

    .argument-blockquote cite {
      display: block;
      font-style: normal;
      font-family: var(--font-ui);
      font-size: var(--wb-p3);
      color: rgba(255, 252, 240, 0.85);
      margin-top: 16px;
    }

    .argument-blockquote cite::before {
      content: "— ";
    }

    .argument-section {
      margin-bottom: 56px;
    }

    .argument-section:last-child {
      margin-bottom: 0;
    }

    .argument-section h2 {
      font-size: var(--h5);
      margin-bottom: 28px;
    }

    .argument-section p {
      font-size: var(--wb-p2);
      line-height: 1.75;
      color: var(--color-text);
      margin-bottom: 24px;
    }

    .argument-section p:last-child {
      margin-bottom: 0;
    }

    /* Full Story expandable */
    /* Program section */
    .program {
      padding: 120px 5vw 140px;
      background: var(--color-bg);
    }

    .program-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .program-description h2 {
      font-size: var(--h4);
      margin-bottom: 28px;
    }

    .program-description > p {
      font-size: var(--wb-p2);
      line-height: 1.75;
      color: var(--color-text);
      margin-bottom: 24px;
    }

    .program-card {
      background: var(--color-bg-subtle);
      border-radius: 12px;
      padding: 36px 40px;
      border: 1px solid var(--color-border);
      margin-top: 56px;
    }

    .program-card-item {
      padding: 16px 0;
      border-bottom: 1px solid var(--color-border);
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 12px;
      align-items: baseline;
    }

    .program-card-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .program-card-item:first-child {
      padding-top: 0;
    }

    .program-card-label {
      font-family: var(--font-ui);
      font-size: var(--wb-p3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-text-secondary);
    }

    .program-card-value {
      font-size: var(--wb-p2);
      color: var(--color-text);
      line-height: 1.5;
    }

    @media (max-width: 500px) {
      .program-card-item {
        grid-template-columns: 1fr;
        gap: 4px;
      }
    }

    /* How Cohort 2 Works */
    .cohort-2-works { padding: 100px 5vw 120px; background: var(--color-bg); }
    .cohort-2-works-inner { max-width: 700px; margin: 0 auto; }
    .cohort-2-works h2 { font-size: var(--h4); margin-bottom: 16px; }
    .cohort-2-works > .cohort-2-works-inner > p { font-size: var(--wb-p2); line-height: 1.75; color: var(--color-text); margin-bottom: 48px; }
    .session-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
    .session-item { padding: 28px 0; border-top: 1px solid var(--color-border); }
    .session-item:last-child { border-bottom: 1px solid var(--color-border); }
    .session-item strong { font-family: var(--font-heading); font-size: var(--wb-p2); color: var(--color-text); display: block; margin-bottom: 6px; }
    .session-item p { font-size: var(--wb-p2); line-height: 1.75; color: var(--color-text-secondary); margin: 0; }

    /* Fee section */
    .fee {
      padding: 80px 5vw 100px;
      background: var(--color-bg-subtle);
      text-align: center;
    }

    .fee-inner {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      gap: 32px;
      justify-content: center;
    }

    .fee-tier {
      flex: 1;
      max-width: 280px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 12px;
      padding: 40px 32px;
      text-align: center;
    }

    .fee-tier--early {
      border-color: var(--fx-orange-400);
      box-shadow: 0 0 0 1px var(--fx-orange-400);
    }

    .fee-tier-label {
      font-family: var(--font-ui);
      font-size: var(--wb-p3);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-text-muted);
      margin-bottom: 12px;
    }

    .fee-tier-price {
      font-family: var(--font-heading);
      font-size: clamp(36px, 5vw, 48px);
      color: var(--color-text);
      line-height: 1;
      margin-bottom: 8px;
    }

    .fee-tier-note {
      font-size: var(--wb-p3);
      color: var(--color-text-secondary);
    }

    .fee-invoice {
      max-width: 700px;
      margin: 32px auto 0;
      font-size: var(--wb-p3);
      color: var(--color-text-secondary);
    }

    .fee-invoice a {
      color: var(--color-text-secondary);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .fee-invoice a:hover {
      color: var(--color-text);
    }

    @media (max-width: 600px) {
      .fee-inner {
        flex-direction: column;
        align-items: center;
      }
      .fee-tier {
        max-width: 100%;
        width: 100%;
      }
    }

    /* Closing questions line */
    .closing-questions {
      margin-top: 16px;
      font-size: var(--wb-p3);
      color: var(--color-border);
    }

    .closing-questions a {
      color: var(--color-bg);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .closing-questions a:hover {
      opacity: 0.8;
    }

    /* Latest Updates */
    .latest-updates {
      padding: 120px 5vw;
      background: var(--color-bg-subtle);
      display: none;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .latest-updates.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .latest-updates__header {
      max-width: 900px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .latest-updates__label {
      font-family: var(--font-ui);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--color-text-secondary);
      margin-bottom: 12px;
    }

    .latest-updates__title {
      font-size: var(--h4);
    }

    .latest-updates__cards {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .update-card {
      display: flex;
      flex-direction: column;
      background: var(--color-bg);
      border-radius: 8px;
      padding: 28px 24px;
      text-decoration: none;
      color: var(--color-text);
      border: 1px solid var(--color-border);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .update-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(28, 27, 26, 0.08);
      border-color: var(--fx-orange-400);
    }

    .update-card__title {
      font-family: var(--font-heading);
      font-size: 16px;
      line-height: 1.2;
      margin-bottom: 12px;
      color: var(--color-text);
    }

    .update-card__excerpt {
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 1.6;
      color: var(--color-text-secondary);
      flex: 1;
      margin-bottom: 16px;
    }

    .update-card__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-ui);
      font-size: 12px;
      color: var(--color-text-muted);
    }

    .update-card__read-more {
      color: var(--fx-orange-400);
      font-weight: 500;
      transition: color 0.2s;
    }

    .update-card:hover .update-card__read-more {
      color: var(--fx-orange-600);
    }

    .latest-updates__subscribe {
      max-width: 480px;
      margin: 48px auto 0;
      text-align: center;
    }

    .latest-updates__subscribe-text {
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--color-text-secondary);
      margin-bottom: 12px;
    }

    .latest-updates__subscribe-form {
      display: flex;
      gap: 8px;
    }

    .latest-updates__subscribe-input {
      flex: 1;
      padding: 12px 16px;
      font-family: var(--font-body);
      font-size: 15px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: 6px;
      color: var(--color-text);
      outline: none;
      transition: border-color 0.2s;
    }

    .latest-updates__subscribe-input:focus {
      border-color: var(--fx-orange-400);
    }

    .latest-updates__subscribe-input::placeholder {
      color: var(--color-text-muted);
    }

    .latest-updates__subscribe-btn {
      padding: 12px 20px;
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 500;
      background: var(--color-text);
      color: var(--color-bg);
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .latest-updates__subscribe-btn:hover {
      background: var(--fx-orange-400);
      color: var(--color-text);
    }

    .latest-updates__subscribe-note {
      font-size: 12px;
      color: var(--color-text-secondary);
      margin-top: 8px;
    }

    @media (max-width: 800px) {
      .latest-updates__cards {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .latest-updates {
        padding: 80px 5vw;
      }

      .latest-updates__subscribe-form {
        flex-direction: column;
      }
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .contributor-inner,
      .contributor-inner.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .contributor-visual {
        position: relative;
        top: 0;
        max-width: 200px;
      }
      .contributor-inner.reverse .contributor-visual { order: 0; }
      .contributor-content {
        max-width: 100%;
      }
    }

    /* ===== Dark Mode — Report-specific ===== */
    html.dark .cohort-section {
      border-top-color: var(--fx-blue-400);
    }

    html.dark .cohort-card {
      box-shadow: none;
    }

    html.dark .cohort-card-context {
      background: rgba(255,255,255,0.08);
    }

    html.dark .latest-updates {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    html.dark .latest-updates__subscribe-input {
      background: var(--color-bg-subtle);
    }

    html.dark .fee-tier--early {
      border-color: var(--fx-orange-400);
      box-shadow: 0 0 0 1px var(--fx-orange-400);
    }

    /* Argument section links */
    .argument-section a {
      color: var(--color-link);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .argument-section a:hover {
      color: var(--color-text);
    }

    /* Report overlay */
    .report-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .report-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    .report-overlay-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(16, 15, 15, 0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .report-overlay-panel {
      position: relative;
      background: #fff;
      border: 1.5px solid var(--color-border);
      border-radius: 12px;
      box-shadow: 0 24px 64px rgba(16, 15, 15, 0.18);
      max-width: 480px;
      width: 100%;
      padding: 48px 40px 40px;
      transform: translateY(16px);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .report-overlay.is-open .report-overlay-panel {
      transform: translateY(0);
    }

    .report-overlay-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border: none;
      background: transparent;
      cursor: pointer;
      color: var(--color-text-muted);
      font-size: 1.25rem;
      line-height: 1;
      border-radius: 6px;
      transition: color 0.15s ease, background 0.15s ease;
    }

    .report-overlay-close:hover {
      color: var(--color-text);
      background: var(--color-surface);
    }

    html.dark .report-overlay-backdrop {
      background: rgba(16, 15, 15, 0.7);
    }

    html.dark .report-overlay-panel {
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    }

    @media (max-width: 600px) {
      .report-overlay {
        align-items: flex-end;
        padding: 0;
      }

      .report-overlay-panel {
        border-radius: 16px 16px 0 0;
        padding: 40px 24px 32px;
        max-width: 100%;
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
        transform: translateY(24px);
      }

    }

    /* FAQ section */
    .faq {
      padding: 120px 5vw 140px;
      background: var(--color-bg);
    }

    .faq-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .faq h2 {
      font-size: var(--h5);
      margin-bottom: 48px;
    }

    .faq-item {
      margin-bottom: 40px;
    }

    .faq-item:last-child {
      margin-bottom: 0;
    }

    .faq-item h3 {
      font-size: var(--wb-p2);
      margin-bottom: 12px;
    }

    .faq-item p {
      font-size: var(--wb-p2);
      line-height: 1.75;
      color: var(--color-text);
    }

    .faq-item p a {
      color: var(--color-link);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .faq-item p a:hover {
      color: var(--color-text);
    }

    .faq-contact {
      margin-top: 48px;
      font-size: var(--wb-p2);
      line-height: 1.75;
      color: var(--color-text-secondary);
    }

    .faq-contact a {
      color: var(--color-link);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .faq-contact a:hover {
      color: var(--color-text);
    }

    /* Cohort download */
    .cohort-download {
      max-width: 700px;
      margin: 72px auto 0;
      text-align: center;
    }

    .cohort-download p {
      font-size: var(--wb-p2);
      line-height: 1.75;
      color: var(--color-text);
      margin-bottom: 32px;
    }

    /* What You'll Do */
    .what-youll-do {
      margin-top: 56px;
    }

    .what-youll-do h3 {
      font-size: var(--h5);
      margin-bottom: 32px;
    }

    .what-youll-do-grid {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-bottom: 40px;
    }

    .what-youll-do-item h4 {
      font-size: var(--wb-p2);
      margin-bottom: 6px;
    }

    .what-youll-do-item p {
      font-size: var(--wb-p3);
      line-height: 1.7;
      color: var(--color-text);
    }

    /* Session toggle */
    .session-toggle {
      border: 1px solid var(--color-border);
      border-radius: 8px;
      background: var(--color-bg-subtle);
      overflow: hidden;
    }

    .session-toggle summary {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 16px 20px;
      font-family: var(--font-ui);
      font-size: var(--wb-p3);
      color: var(--color-text-secondary);
      cursor: pointer;
      list-style: none;
      transition: color 0.15s ease;
    }

    .session-toggle summary::-webkit-details-marker { display: none; }

    .session-toggle summary::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(-45deg);
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    .session-toggle[open] summary::before {
      transform: rotate(45deg);
    }

    .session-toggle summary:hover {
      color: var(--color-text);
    }

    .session-toggle-body {
      padding: 0 20px 24px;
    }

    .session-item {
      padding: 16px 0;
      border-bottom: 1px solid var(--color-border);
    }

    .session-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .session-item-label {
      font-family: var(--font-ui);
      font-size: var(--wb-p3);
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 4px;
    }

    .session-item-desc {
      font-size: var(--wb-p3);
      line-height: 1.65;
      color: var(--color-text-secondary);
    }

    .session-toggle-note {
      padding-top: 12px;
      font-size: var(--wb-p3);
      color: var(--color-text-muted);
      font-style: italic;
    }

    /* Schedule section */
    .schedule {
      padding: 80px 5vw 100px;
      background: var(--color-bg);
    }

    .schedule-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .schedule h2 {
      font-size: var(--h5);
      margin-bottom: 8px;
    }

    .schedule-sub {
      font-size: var(--wb-p2);
      color: var(--color-text-secondary);
      margin-bottom: 32px;
    }

    .schedule-list {
      list-style: none;
      padding: 0;
    }

    .schedule-list li {
      display: flex;
      align-items: baseline;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid var(--color-border);
      font-size: var(--wb-p2);
    }

    .schedule-list li:last-child {
      border-bottom: none;
    }

    .schedule-date {
      font-family: var(--font-ui);
      font-size: var(--wb-p3);
      color: var(--color-text-muted);
      min-width: 100px;
      flex-shrink: 0;
    }

    .schedule-topic {
      color: var(--color-text);
    }

