/* === GLOBAL / NAV / FOOTER === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple:       #553C7B;
      --purple-mid:   #9B59B6;
      --purple-dark:  #3A2857;
      --purple-tint:  #F8F7FF;
      --purple-100:   #E8E0F5;
      --purple-200:   #D0C4E8;
      --green:        #27AE60;
      --orange:       #F39C12;
      --red:          #E74C3C;
      --text:         #1A1A1A;
      --text-muted:   #6B6580;
      --white:        #FFFFFF;
      --border:       #E2DAEA;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      color: var(--text);
      background: var(--purple-tint);
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 2px solid var(--purple-100);
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      box-shadow: 0 2px 8px rgba(85,60,123,0.08);
    }
    .nav-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.2rem;
      color: var(--purple);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--purple); }

    /* ── HERO STAT STRIP ── */
    .hero-strip {
      background: var(--purple);
      padding: 2.5rem 2rem;
    }
    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .hero-stat {
      text-align: center;
      padding: 1rem 1.5rem;
      position: relative;
    }
    .hero-stat:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255,255,255,0.2);
    }
    .hero-stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: 4rem;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.5rem;
      display: block;
    }
    .hero-stat-label {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
    }

    /* ── HOW SCORING WORKS ── */
    .scoring-section {
      background: var(--white);
      padding: 2.5rem 2rem;
      border-bottom: 1px solid var(--border);
    }
    .scoring-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem;
      color: var(--purple-dark);
    }
    .section-rule {
      flex: 1;
      height: 1px;
      background: var(--purple-100);
    }
    .criteria-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }
    .criterion-block {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }
    .criterion-num {
      width: 32px;
      height: 32px;
      min-width: 32px;
      border-radius: 50%;
      background: var(--purple);
      color: var(--white);
      font-size: 0.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }
    .criterion-info {
      flex: 1;
    }
    .criterion-name-sm {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--purple-dark);
      line-height: 1.3;
      margin-bottom: 0.2rem;
    }
    .criterion-pts {
      font-size: 0.72rem;
      color: var(--text-muted);
      letter-spacing: 0.03em;
    }

    /* ── REVIEWS SECTION ── */
    .reviews-section {
      padding: 2.5rem 2rem;
    }
    .reviews-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ── DISTRICT CARDS GRID ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .district-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(85,60,123,0.06);
      transition: box-shadow 0.15s, transform 0.15s;
    }
    .district-card:hover {
      box-shadow: 0 6px 20px rgba(85,60,123,0.13);
      transform: translateY(-2px);
    }
    .card-top {
      padding: 1.25rem 1.25rem 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .district-name {
      font-family: 'DM Serif Display', serif;
      font-size: 1.05rem;
      color: var(--purple-dark);
      line-height: 1.3;
    }
    .state-badge {
      background: var(--purple-100);
      color: var(--purple);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 0.2rem 0.55rem;
      border-radius: 3px;
      white-space: nowrap;
      margin-top: 3px;
    }
    .card-score-row {
      padding: 0.75rem 1.25rem 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-bottom: 1px solid var(--purple-100);
    }
    .composite-score {
      font-family: 'DM Serif Display', serif;
      font-size: 3rem;
      line-height: 1;
      font-weight: 400;
    }
    .score-green { color: var(--green); }
    .score-orange { color: var(--orange); }
    .score-red { color: var(--red); }

    .score-meta {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }
    .score-denom {
      font-size: 0.78rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .score-tier {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .tier-green { color: var(--green); }
    .tier-orange { color: var(--orange); }
    .tier-red { color: var(--red); }

    .card-criteria {
      padding: 0.85rem 1.25rem;
    }
    .mini-bar-row {
      display: grid;
      grid-template-columns: 100px 1fr 28px;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }
    .mini-bar-row:last-child { margin-bottom: 0; }
    .mini-label {
      font-size: 0.7rem;
      font-weight: 500;
      color: var(--text-muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .score-bar-track {
      background: #E0D9F0;
      height: 8px;
      border-radius: 4px;
      overflow: hidden;
    }
    .score-bar-fill {
      height: 8px;
      border-radius: 4px;
    }
    .score-high { background: var(--green); }
    .score-mid  { background: var(--orange); }
    .score-low  { background: var(--red); }

    .mini-score-num {
      font-size: 0.68rem;
      font-weight: 700;
      text-align: right;
    }

    .card-footer {
      padding: 0.75rem 1.25rem;
      border-top: 1px solid var(--purple-100);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .meeting-date {
      font-size: 0.72rem;
      color: var(--text-muted);
    }
    .read-more {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--purple);
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: color 0.15s;
    }
    .read-more:hover { color: var(--purple-mid); }

    /* ── LEADERBOARD ── */
    .leaderboard {
      background: var(--purple-100);
      border-top: 1px solid var(--purple-200);
      border-bottom: 1px solid var(--purple-200);
      padding: 2.5rem 2rem;
    }
    .leaderboard-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .podium-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .podium-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 2px 6px rgba(85,60,123,0.06);
    }
    .podium-rank {
      font-family: 'DM Serif Display', serif;
      font-size: 2.2rem;
      color: var(--purple-200);
      line-height: 1;
      min-width: 2rem;
    }
    .podium-rank.gold   { color: #F4C542; }
    .podium-rank.silver { color: #A8A8A8; }
    .podium-rank.bronze { color: #C08040; }
    .podium-info {
      flex: 1;
    }
    .podium-district {
      font-family: 'DM Serif Display', serif;
      font-size: 1rem;
      color: var(--purple-dark);
      margin-bottom: 0.15rem;
    }
    .podium-score {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--green);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--purple);
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    footer p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: repeat(3, 1fr); }
      .hero-stat-number { font-size: 2.8rem; }
      .criteria-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
      .podium-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      nav { padding: 0 1rem; }
      .nav-links { gap: 1.25rem; }
      .hero-strip { padding: 1.75rem 1rem; }
      .hero-inner { grid-template-columns: 1fr; gap: 0; }
      .hero-stat::after { display: none; }
      .hero-stat { padding: 0.75rem 1rem; }
      .hero-stat-number { font-size: 3rem; }
      .criteria-grid { grid-template-columns: 1fr 1fr; }
      .cards-grid { grid-template-columns: 1fr; }
      .reviews-section, .scoring-section, .leaderboard { padding: 2rem 1rem; }
    }

/* === ABOUT / METHODOLOGY PAGE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple:       #553C7B;
      --white:        #FFFFFF;
      --lavender:     #E8E0F5;
      --dark-purple:  #3A2857;
      --pale-lavender:#F5F0FF;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      color: #1a1a2e;
      background: var(--white);
    }

    /* ── NAV ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--dark-purple);
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }
    .nav-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.25rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.01em;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.active { color: var(--white); border-bottom: 2px solid var(--lavender); padding-bottom: 2px; }

    /* ── PAGE HEADER ── */
    .page-header {
      background: var(--dark-purple);
      padding: 3.5rem 2rem 3rem;
    }
    .page-header-inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .page-tag {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lavender);
      opacity: 0.8;
      margin-bottom: 0.75rem;
    }
    .page-header h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      color: var(--white);
      line-height: 1.25;
    }

    /* ── CONTENT ── */
    .content {
      max-width: 760px;
      margin: 0 auto;
      padding: 3.5rem 2rem 5rem;
    }

    .method-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid #e8e2f0;
    }
    .method-section:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
    }

    .method-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.5rem;
      color: var(--dark-purple);
      margin-bottom: 1rem;
    }

    .method-section p {
      font-size: 0.975rem;
      line-height: 1.8;
      color: #2d2540;
      margin-bottom: 1rem;
    }
    .method-section p:last-child { margin-bottom: 0; }

    /* Criteria list */
    .criteria-list {
      list-style: none;
      margin-top: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
    .criteria-list li {
      background: var(--pale-lavender);
      border-left: 3px solid var(--purple);
      border-radius: 0 6px 6px 0;
      padding: 0.9rem 1.1rem;
    }
    .criteria-list li strong {
      font-weight: 600;
      color: var(--dark-purple);
      display: block;
      margin-bottom: 0.2rem;
      font-size: 0.9rem;
    }
    .criteria-list li span {
      font-size: 0.875rem;
      color: #3d3455;
      line-height: 1.6;
    }

    /* Callout box */
    .callout {
      background: var(--pale-lavender);
      border: 1px solid var(--lavender);
      border-radius: 8px;
      padding: 1.25rem 1.4rem;
      margin-top: 1.25rem;
      font-size: 0.9rem;
      line-height: 1.7;
      color: #2d2540;
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--dark-purple);
      color: rgba(255,255,255,0.72);
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'DM Serif Display', serif;
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }
    .footer p {
      font-size: 0.82rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 0.4rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav { padding: 0 1rem; }
      .nav-links { gap: 1.25rem; }
      .page-header { padding: 2.5rem 1.25rem 2rem; }
      .content { padding: 2.5rem 1.25rem 3.5rem; }
      .footer { padding: 2rem 1.25rem; }
    }

/* === REVIEW PAGES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple:       #553C7B;
      --white:        #FFFFFF;
      --lavender:     #E8E0F5;
      --dark-purple:  #3A2857;
      --pale-lavender:#F5F0FF;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      color: #1a1a2e;
      background: var(--white);
    }

    /* ── NAV ── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--dark-purple);
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }
    .nav-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.25rem;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 0.01em;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--white); }

    /* ── REVIEW HEADER ── */
    .review-header {
      background: var(--dark-purple);
      padding: 3.5rem 2rem 3rem;
    }
    .review-header-inner {
      max-width: 780px;
      margin: 0 auto;
    }
    .pub-name {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.6rem;
    }
    .review-type-tag {
      display: inline-block;
      background: rgba(232,224,245,0.18);
      border: 1px solid rgba(232,224,245,0.35);
      color: var(--lavender);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 3px;
      margin-bottom: 1.1rem;
    }
    .review-header h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.6rem, 4vw, 2.25rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }
    .review-header .meeting-label {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      font-weight: 300;
      margin-bottom: 1.25rem;
    }
    .review-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
    }
    .review-meta span {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
    }
    .review-meta span strong {
      color: rgba(255,255,255,0.78);
      font-weight: 500;
    }
    .composite-score {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      background: rgba(255,255,255,0.08);
      border: 2px solid rgba(232,224,245,0.3);
      border-radius: 10px;
      padding: 1.1rem 1.75rem;
      min-width: 140px;
    }
    .composite-score .score-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 0.35rem;
    }
    .composite-score .score-number {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      color: var(--white);
      line-height: 1;
    }
    .composite-score .score-denom {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      font-weight: 300;
      margin-top: 0.15rem;
    }
    .composite-score .score-tier-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #f0a0a0;
      margin-top: 0.35rem;
    }
    .transcript-tag {
      display: inline-block;
      background: rgba(39,174,96,0.2);
      border: 1px solid rgba(39,174,96,0.4);
      color: #7dffb3;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 3px;
      margin-bottom: 0.6rem;
      margin-left: 0.5rem;
    }

    /* ── SCORE BREAKDOWN ── */
    .score-breakdown {
      background: var(--pale-lavender);
      padding: 2.5rem 2rem;
      border-bottom: 1px solid #e2daea;
    }
    .score-breakdown-inner {
      max-width: 780px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 1.5rem;
    }
    .criterion-row {
      display: grid;
      grid-template-columns: 170px 1fr 52px;
      align-items: start;
      gap: 0.75rem 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(85,60,123,0.1);
    }
    .criterion-row:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    .criterion-left {
      padding-top: 2px;
    }
    .criterion-name {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--dark-purple);
      display: block;
      margin-bottom: 0.25rem;
    }
    .criterion-center {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .bar-track {
      height: 8px;
      background: rgba(85,60,123,0.15);
      border-radius: 4px;
      overflow: hidden;
      margin-top: 6px;
    }
    .bar-fill {
      height: 100%;
      background: var(--purple);
      border-radius: 4px;
    }
    .criterion-note {
      font-size: 0.82rem;
      color: #5a5075;
      line-height: 1.55;
    }
    .criterion-score {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--purple);
      text-align: right;
      padding-top: 4px;
      white-space: nowrap;
    }

    /* ── REVIEW BODY ── */
    .review-body {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .review-section {
      padding: 2.5rem 0;
      border-bottom: 1px solid #e8e2f0;
    }
    .review-section:last-of-type { border-bottom: none; }

    .review-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.35rem;
      color: var(--dark-purple);
      margin-bottom: 1rem;
    }
    .review-section p {
      font-size: 0.975rem;
      line-height: 1.8;
      color: #2d2540;
      margin-bottom: 0.9rem;
    }
    .review-section p:last-child { margin-bottom: 0; }

    /* Strengths / Issues */
    .highlight-box {
      background: var(--pale-lavender);
      border-left: 3px solid var(--purple);
      border-radius: 0 6px 6px 0;
      padding: 1rem 1.25rem;
      margin-bottom: 1rem;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #2d2540;
    }
    .highlight-box:last-child { margin-bottom: 0; }
    .highlight-box strong {
      color: var(--dark-purple);
      font-weight: 600;
      display: block;
      margin-bottom: 0.25rem;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Recommendation */
    .recommendation-box {
      background: var(--dark-purple);
      color: var(--white);
      border-radius: 8px;
      padding: 1.75rem;
      margin-top: 0.5rem;
    }
    .recommendation-box .rec-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lavender);
      opacity: 0.75;
      margin-bottom: 0.75rem;
    }
    .recommendation-box p {
      font-size: 0.95rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.85);
      margin-bottom: 0;
    }

    /* Takeaway */
    .takeaway-box {
      background: var(--lavender);
      border-radius: 8px;
      padding: 1.75rem;
      margin-top: 0.5rem;
    }
    .takeaway-box .tak-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple);
      opacity: 0.8;
      margin-bottom: 0.75rem;
    }
    .takeaway-box p {
      font-size: 0.975rem;
      line-height: 1.8;
      color: var(--dark-purple);
      font-style: italic;
      font-family: 'DM Serif Display', serif;
      margin-bottom: 0;
    }

    /* Disclaimer */
    .disclaimer {
      max-width: 780px;
      margin: 0 auto;
      padding: 2rem 2rem 3.5rem;
    }
    .disclaimer p {
      font-size: 0.8rem;
      line-height: 1.7;
      color: #8a82a0;
      font-style: italic;
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--dark-purple);
      color: rgba(255,255,255,0.72);
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'DM Serif Display', serif;
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }
    .footer p {
      font-size: 0.82rem;
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 0.4rem;
    }

    /* ── TIME USE STRIP (review pages) ── */
    .time-use-strip { background: #2e1f47; border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 2rem; }
    .time-use-inner { max-width: 780px; margin: 0 auto; display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
    .time-stat { display: flex; flex-direction: column; }
    .time-stat-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: #fff; line-height: 1; }
    .time-stat-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .2rem; font-weight: 500; }
    .time-use-note { font-size: .8rem; color: rgba(255,255,255,.45); font-style: italic; flex: 1; min-width: 200px; line-height: 1.55; }

    /* ── REVIEW BODY SECTIONS ── */
    .review-body { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
    .review-section { padding: 2.5rem 0; border-bottom: 1px solid #e8e2f0; }
    .review-section:last-of-type { border-bottom: none; }
    .review-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; color: #3A2857; margin-bottom: 1rem; }
    .review-section p { font-size: .975rem; line-height: 1.8; color: #2d2540; margin-bottom: .9rem; }
    .review-section p:last-child { margin-bottom: 0; }

    .highlight-box { background: #F5F0FF; border-left: 3px solid #553C7B; border-radius: 0 6px 6px 0; padding: 1rem 1.25rem; margin-bottom: 1rem; font-size: .95rem; line-height: 1.7; color: #2d2540; }
    .highlight-box strong { color: #3A2857; font-weight: 600; display: block; margin-bottom: .25rem; font-size: .875rem; text-transform: uppercase; letter-spacing: .05em; }

    .transcript-quote { background: #fff; border: 1px solid #e2daea; border-left: 3px solid #27AE60; border-radius: 0 6px 6px 0; padding: 1rem 1.25rem; margin: 1rem 0; font-size: .9rem; line-height: 1.7; color: #2d2540; }
    .transcript-quote .quote-text { font-style: italic; color: #3A2857; margin-bottom: .35rem; }
    .transcript-quote .quote-source { font-size: .75rem; font-weight: 600; color: #6B6580; letter-spacing: .04em; text-transform: uppercase; }

    .recommendation-box { background: #3A2857; color: #fff; border-radius: 8px; padding: 1.75rem; margin-top: .5rem; }
    .recommendation-box .rec-label { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #E8E0F5; opacity: .75; margin-bottom: .75rem; }
    .recommendation-box p { font-size: .95rem; line-height: 1.75; color: rgba(255,255,255,.85); margin-bottom: 0; }

    .takeaway-box { background: #E8E0F5; border-radius: 8px; padding: 1.75rem; margin-top: .5rem; }
    .takeaway-box .tak-label { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #553C7B; opacity: .8; margin-bottom: .75rem; }
    .takeaway-box p { font-size: .975rem; line-height: 1.8; color: #3A2857; font-style: italic; font-family: 'DM Serif Display', serif; margin-bottom: 0; }

    /* ── SCORE TABLE (review pages) ── */
    .score-table { width: 100%; border-collapse: collapse; font-size: .85rem; margin-top: 1rem; }
    .score-table th { background: #3A2857; color: #fff; padding: .6rem .85rem; text-align: left; font-weight: 600; font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; }
    .score-table td { padding: .55rem .85rem; border-bottom: 1px solid #e8e2f0; color: #2d2540; line-height: 1.4; }
    .score-table tr:last-child td { border-bottom: none; }
    .score-table tr.area-row td { background: #F5F0FF; font-weight: 600; color: #3A2857; font-size: .8rem; }
    .score-table tr.total-row td { background: #3A2857; color: #fff; font-weight: 700; }
    .q-score { font-weight: 700; text-align: right; white-space: nowrap; }
    .q-red { color: #E74C3C; }
    .q-orange { color: #F39C12; }
    .q-green { color: #27AE60; }

    .disclaimer { max-width: 780px; margin: 0 auto; padding: 2rem 2rem 3.5rem; }
    .disclaimer p { font-size: .8rem; line-height: 1.7; color: #8a82a0; font-style: italic; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav { padding: 0 1rem; }
      .nav-links { gap: 1.25rem; }
      .review-header { padding: 2.5rem 1.25rem 2rem; }
      .score-breakdown { padding: 2rem 1.25rem; }
      .review-body { padding: 0 1.25rem; }
      .disclaimer { padding: 1.5rem 1.25rem 3rem; }
      .time-use-strip { padding: 1rem 1.25rem; }
      .time-use-inner { gap: 1.5rem; }
      .criterion-row {
        grid-template-columns: 130px 1fr 44px;
        gap: 0.5rem 0.75rem;
      }
      .criterion-name { font-size: 0.82rem; }
      .footer { padding: 2rem 1.25rem; }
    }
