    /* ========== ROOT (unified palette from all CSS files) ========== */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Arial, Helvetica, "Inter", sans-serif;
      background: #ffffff;
      color: #333333;
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
    }
    :root {
      --paper: #ffffff;
      --paper-2: #f0f7ff;
      --paper-3: #e8f4ff;
      --line: #dbe8f5;
      --line-soft: #eaf0f8;
      --blue: #007BFF;
      --blue-deep: #0056c7;
      --blue-bright: #3399FF;
      --blue-soft: #eef4ff;
      --gold: #FFC000;
      --gold-soft: #fff3cc;
      --gold-deep: #e6ac00;
      --text-ink: #333333;
      --text-ink-dim: #666666;
      --max-width: 1240px;
      --mono: "JetBrains Mono", ui-monospace, monospace;
    }
    h1, h2, h3, h4 { font-weight: 400; letter-spacing: -0.02em; line-height: 1.08; }
    h1 { font-size: clamp(2.4rem, 5vw, 4.25rem); }
    h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
    h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
    em { font-style: normal; color: var(--gold); }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

    /* ===== UTILITY ===== */
    .eyebrow-bar {
      display: inline-block;
      width: 56px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .eyebrow-text {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: #fff;
      padding: 12px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
    }
    .btn:hover { background: var(--gold-deep); transform: translateY(-2px); }
    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.4);
      color: #fff;
    }
    .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
    .btn-outline {
      background: transparent;
      border: 1px solid var(--blue);
      color: var(--blue);
    }
    .btn-outline:hover { background: var(--blue-soft); border-color: var(--blue-deep); }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      padding: 96px 0 80px;
      background: linear-gradient(135deg, #007BFF 0%, #0056c7 60%, #003f9e 100%);
    }
    .hero-grid {
      display: grid;
      gap: 48px;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 64px; }
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .hero h1 em { color: var(--gold); }
    .hero .lede {
      margin-top: 28px;
      max-width: 576px;
      color: rgba(255,255,255,0.85);
      font-size: 18px;
      line-height: 1.6;
    }
    .hero-actions {
      margin-top: 36px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
    }
    .hero-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/3;
    }
    @media (min-width: 1024px) {
      .hero-img-wrap img { aspect-ratio: auto; height: 520px; }
    }
    .hero-badge {
      position: absolute;
      top: 16px; left: 16px;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(4px);
      color: #fff;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      padding: 6px 12px;
      border-radius: 4px;
    }
    .stats {
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.25);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 560px;
    }
    .stat .v { font-size: 30px; font-weight: 700; color: var(--gold); }
    .stat .l { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.15em; }

    /* ===== SECTIONS ===== */
.section { padding: 110px 24px; background: var(--paper); }
.section.alt {
  background: var(--paper-2);
  color: var(--text-ink);
}
    .section-head {
      text-align: center;
      max-width: 768px;
      margin: 0 auto 64px;
    }
    .section-head h2 { margin-bottom: 20px; color: var(--blue-deep); }
    .section-head p { color: var(--text-ink-dim); font-size: 18px; line-height: 1.6; }

    /* ===== CARDS GRID ===== */
    .cards-grid {
      display: grid;
      gap: 24px;
      margin-top: 64px;
    }
    @media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-top: 3px solid var(--blue);
      border-radius: 12px;
      padding: 32px;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .card:hover {
      border-color: var(--gold);
      box-shadow: 0 20px 60px -30px rgba(0,123,255,0.5);
      transform: translateY(-4px);
    }
    .card-meta {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .card-num { font-size: 12px; font-family: var(--mono); letter-spacing: 0.2em; color: var(--text-ink-dim); }
    .card-bar { width: 40px; height: 2px; background: var(--gold); transition: width 0.3s; }
    .card:hover .card-bar { width: 64px; }
    .card h3 { font-size: 24px; margin-bottom: 16px; color: var(--blue-deep); }
    .card p { color: var(--text-ink-dim); line-height: 1.6; }

    /* ===== TWO COLUMN ===== */
    .two-col {
      display: grid;
      gap: 48px;
      align-items: center;
    }
    @media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } }
    .two-col h2 { margin-bottom: 24px; color: var(--blue-deep); }
    .two-col p { color: var(--text-ink-dim); line-height: 1.7; margin-bottom: 20px; }
    .two-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .two-col li { display: flex; gap: 12px; color: var(--text-ink-dim); line-height: 1.6; }
    .two-col li::before { content: "▸"; color: var(--gold); font-weight: 700; flex-shrink: 0; }
    .img-frame {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(0,123,255,0.08);
    }
    .img-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

    /* ===== CHART / BAR ===== */
    .chart-box {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 32px;
      margin-top: 48px;
    }
    .chart-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-ink-dim); margin-bottom: 24px; }
    .bar-row { margin-bottom: 20px; }
    .bar-row:last-child { margin-bottom: 0; }
    .bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
    .bar-label .pct { font-family: var(--mono); font-weight: 700; color: var(--blue-deep); }
    .bar-track { height: 12px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
    .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); }
    .bar-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }

    /* ===== TABLE ===== */
    .table-wrap {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      overflow: hidden;
      margin-top: 48px;
    }
    .table-head {
      display: grid;
      grid-template-columns: 1.1fr 1.5fr 1.5fr;
      background: var(--paper-2);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--text-ink-dim);
    }
    .table-head > div { padding: 16px 24px; }
    .table-head > div + div { border-left: 1px solid var(--line); }
    .table-row {
      display: grid;
      grid-template-columns: 1.1fr 1.5fr 1.5fr;
      border-top: 1px solid var(--line);
    }
    .table-row > div { padding: 20px 24px; }
    .table-row > div + div { border-left: 1px solid var(--line); }
    .table-row .prog { font-weight: 600; display: flex; align-items: center; gap: 12px; color: var(--blue-deep); }
    .table-row .prog::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
    .table-row .desc { color: var(--text-ink-dim); font-size: 14px; line-height: 1.6; }
    @media (max-width: 767px) {
      .table-head { display: none; }
      .table-row { display: block; padding: 16px 24px; grid-template-columns: 1fr; }
      .table-row > div { padding: 8px 0; border-left: none !important; }
    }

    /* ===== ADVANTAGE ===== */
    .adv-grid {
      display: grid;
      gap: 32px;
      margin-top: 64px;
    }
    @media (min-width: 768px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
    .adv-card {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 40px;
      background: #fff;
      transition: border-color 0.2s;
    }
    .adv-card:hover { border-color: var(--gold); }
    .adv-icon {
      width: 48px; height: 48px;
      border-radius: 8px;
      background: var(--gold-soft);
      color: var(--gold-deep);
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      font-size: 22px;
      font-weight: 700;
    }
    .adv-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--blue-deep); }
    .adv-card p { color: var(--text-ink-dim); line-height: 1.7; }


    /* ===== RESPONSIVE ===== */
    @media (max-width: 767px) {
      .hero { padding: 72px 0 48px; }
      .stats { grid-template-columns: 1fr 1fr; }
      .section { padding: 64px 0; }
      .two-col { gap: 32px; }
    }