<style>
    /* ---------- RESET & DESIGN TOKENS (EXACT SYSTEM) ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #FCFCFD;
      color: #1A2B3C;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    /* CSS Variables - Exact values from design system */
    :root {
      --primary-deep-teal: #0F4C5C;
      --primary-teal-green: #2C7A6E;
      --teal-light: #8BBBB2;
      --teal-glow: #D4F0EC;
      --pure-white: #FFFFFF;
      --off-white: #FCFCFD;
      --soft-ice-blue: #F0F6F9;
      --subtle-mint: #EFF7F4;
      --glass-frost: rgba(255,255,255,0.85);
      --dark-slate: #1A2B3C;
      --slate-gray: #5A6E7C;
      --muted-gray: #8D9EAA;
      --border-light: #E4E9ED;
      --border-subtle: rgba(0,0,0,0.06);
      --error-soft-red: #FDE8E8;
      --error-border: #E07A7A;
      --error-text: #B83E3E;
      --footer-dark-navy: #0F1A2C;
      --footer-text: #B8C7D6;
      --stat-highlight: #2C7A6E;

      --gradient-cta: linear-gradient(105deg, #0F4C5C 0%, #2C7A6E 100%);
      --hero-bg: linear-gradient(145deg, #F0F6F9 0%, #EFF7F4 100%);
      --button-hover: linear-gradient(105deg, #0B3E4A 0%, #236B5F 100%);
      --footer-grad: linear-gradient(180deg, #0F1A2C 0%, #0A1220 100%);
      --glass-nav: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.88));

      --radius-sm: 12px;
      --radius-input: 20px;
      --radius-card: 28px;
      --radius-large-card: 36px;
      --radius-hero: 48px;
      --radius-pill: 9999px;

      --shadow-card: 0 8px 20px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.02);
      --shadow-card-hover: 0 20px 35px -10px rgba(15,76,92,0.12), 0 5px 12px rgba(0,0,0,0.05);
      --shadow-button: 0 8px 18px rgba(44,122,110,0.25);
      --shadow-nav: 0 4px 20px rgba(0,0,0,0.04);
      --shadow-focus: 0 0 0 3px rgba(44,122,110,0.15);
      --shadow-dashboard: 0 20px 35px -12px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.05);
    }

    /* Container & Typography */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    h1 {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--dark-slate);
    }
    h2 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    h3 {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.3;
    }
    .body-large {
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.5;
      color: var(--slate-gray);
    }
    .stat-number {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--stat-highlight);
    }
    .label-text {
      font-size: 0.875rem;
      font-weight: 500;
    }
    .small-text {
      font-size: 0.875rem;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0.9rem 2rem;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.9375rem;
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      text-decoration: none;
      background: var(--gradient-cta);
      color: var(--pure-white);
      box-shadow: var(--shadow-button);
    }
    .btn:hover {
      transform: translateY(-3px);
      background: var(--button-hover);
      box-shadow: 0 12px 24px rgba(44,122,110,0.3);
    }
    .btn-outline {
      background: transparent;
      box-shadow: none;
      border: 1.5px solid var(--primary-teal-green);
      color: var(--primary-teal-green);
    }
    .btn-outline:hover {
      background: rgba(44,122,110,0.08);
      transform: translateY(-2px);
    }

    /* Cards */
    .card {
      background: var(--pure-white);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-card);
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      padding: 1.8rem;
      height: 100%;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-card-hover);
    }

    /* Navbar */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
      background: var(--glass-nav);
      border-bottom: 1px solid var(--border-subtle);
      padding: 1rem 0;
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .logo {
      font-size: 1.7rem;
      font-weight: 800;
      background: var(--gradient-cta);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }
    .tagline {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--slate-gray);
      border-left: 1px solid var(--border-light);
      padding-left: 10px;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--dark-slate);
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover {
      color: var(--primary-teal-green);
    }

    /* Grid system */
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
    }

    /* Target audience grid - custom styling */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5rem;
    }
    .role-category {
      background: var(--pure-white);
      border-radius: var(--radius-card);
      border: 1px solid var(--border-light);
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
    }
    .role-category h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary-deep-teal);
      margin-bottom: 1rem;
      border-left: 3px solid var(--primary-teal-green);
      padding-left: 12px;
    }
    .role-list {
      list-style: none;
    }
    .role-list li {
      font-size: 0.875rem;
      padding: 6px 0;
      border-bottom: 1px solid var(--border-light);
      color: var(--dark-slate);
    }

    /* DASHBOARD STYLES (Hero right side) */
    .dashboard-card {
      background: var(--pure-white);
      border-radius: var(--radius-large-card);
      box-shadow: var(--shadow-dashboard);
      padding: 1.5rem;
      backdrop-filter: blur(2px);
      border: 1px solid rgba(44,122,110,0.15);
      transition: all 0.2s;
    }
    .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.2rem;
      border-bottom: 1px solid var(--border-light);
      padding-bottom: 0.75rem;
    }
    .dashboard-title {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--primary-deep-teal);
      letter-spacing: 0.3px;
    }
    .metric-badge {
      background: var(--teal-glow);
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--primary-deep-teal);
    }
    .kpi-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1.2rem;
    }
    .kpi {
      text-align: center;
      flex: 1;
    }
    .kpi-value {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary-teal-green);
    }
    .kpi-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--slate-gray);
    }
    .progress-section {
      margin: 1rem 0;
    }
    .progress-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.7rem;
      margin-bottom: 4px;
    }
    .progress-bar {
      background: #E9EEF2;
      border-radius: 20px;
      height: 8px;
      overflow: hidden;
    }
    .progress-fill {
      background: var(--gradient-cta);
      width: 68%;
      height: 100%;
      border-radius: 20px;
    }
    .region-stats {
      display: flex;
      gap: 12px;
      margin-top: 1rem;
      justify-content: space-between;
    }
    .region-item {
      text-align: center;
      font-size: 0.7rem;
      font-weight: 500;
    }
    .region-percent {
      font-weight: 800;
      color: var(--primary-deep-teal);
    }
    .live-indicator {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(44,122,110,0.1);
      padding: 5px 12px;
      border-radius: 40px;
    }
    .pulse {
      width: 8px;
      height: 8px;
      background-color: #2C7A6E;
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(44,122,110,0.7);
      animation: pulse-green 1.5s infinite;
    }
    @keyframes pulse-green {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(44,122,110,0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(44,122,110,0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(44,122,110,0); }
    }

    /* Form elements */
    .input-group {
      margin-bottom: 1.2rem;
    }
    input, select {
      width: 100%;
      padding: 0.9rem 1.2rem;
      border-radius: var(--radius-input);
      border: 1px solid var(--border-light);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: all 0.2s;
      background: var(--pure-white);
    }
    input:focus {
      outline: none;
      border-color: var(--primary-teal-green);
      box-shadow: var(--shadow-focus);
    }
    .error-input {
      border-color: var(--error-border);
      background-color: var(--error-soft-red);
    }
    .error-message {
      color: var(--error-text);
      font-size: 0.75rem;
      margin-top: 5px;
      display: block;
    }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary-deep-teal);
      color: white;
      padding: 14px 24px;
      border-radius: var(--radius-pill);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      font-weight: 500;
      backdrop-filter: blur(8px);
      z-index: 1000;
      transform: translateX(400px);
      transition: transform 0.3s ease;
    }
    .toast.show {
      transform: translateX(0);
    }

    /* Footer */
    .footer {
      background: var(--footer-grad);
      color: var(--footer-text);
      padding: 3rem 0 2rem;
      margin-top: 4rem;
    }

    /* Background sections */
    .bg-light {
      background: var(--soft-ice-blue);
      border-radius: var(--radius-large-card);
      padding: 2rem;
    }
    .metrics-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      text-align: center;
      margin: 2rem 0;
    }
    .metric-card {
      flex: 1;
      background: var(--pure-white);
      border-radius: var(--radius-card);
      padding: 1.8rem;
      box-shadow: var(--shadow-card);
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.25rem;
      }
      h2 {
        font-size: 1.75rem;
      }
      .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
      }
      .nav-container {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links {
        flex-wrap: wrap;
        gap: 16px;
      }
      .metrics-row {
        flex-direction: column;
      }
      .container {
        padding: 0 20px;
      }
    }

    section {
      margin: 4rem 0;
    }
    hr {
      margin: 2rem 0;
      border: none;
      border-top: 1px solid var(--border-light);
    }
  </style>