﻿    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy-deep:    #0A0F1E;
      --navy-mid:     #0D1B2A;
      --navy-card:    #1A2640;
      --navy-border:  #2A3A52;
      --teal:         #00D4AA;
      --teal-hover:   #00B896;
      --teal-muted:   rgba(0,212,170,0.10);
      --red:          #E8453C;
      --red-muted:    rgba(232,69,60,0.08);
      --amber:        #F5A623;
      --purple:       #7C6FCD;
      --orange:       #F07030;
      --white:        #FFFFFF;
      --slate:        #B0BEC5;
      --slate-mid:    #78909C;
      --light-bg:     #F4F6F9;
      --light-border: #E2E8F0;
      --text-dark:    #4A5568;
      --font:         'DM Sans', sans-serif;
      --max-w:        1200px;
      --radius:       8px;
      --radius-lg:    12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.65;
      color: var(--white);
      background: var(--navy-deep);
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ─── NAV ─────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10,15,30,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--navy-border);
    }

    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 40px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      border: 2.5px solid var(--teal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      color: var(--teal);
      letter-spacing: -0.5px;
    }

    .logo-text {
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.3px;
    }

    .logo-text span { color: var(--teal); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--slate);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .btn-primary {
      background: var(--teal);
      color: var(--navy-deep);
      border: none;
      padding: 11px 24px;
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: var(--teal-hover);
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.25);
      padding: 11px 24px;
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, transform 0.15s;
    }

    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.6);
      transform: translateY(-1px);
    }

    /* ─── HERO ────────────────────────────────────────────── */
    .hero {
      background: var(--navy-deep);
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(124,111,205,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--teal);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h1 {
      font-size: 72px;
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: -2px;
      color: var(--white);
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--teal);
    }

    .hero-sub {
      font-size: 18px;
      line-height: 1.6;
      color: var(--slate);
      margin-bottom: 40px;
      max-width: 480px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .hero-ctas .btn-primary { font-size: 15px; padding: 14px 28px; }
    .hero-ctas .btn-ghost   { font-size: 15px; padding: 14px 28px; }

    .trust-bar {
      margin-top: 48px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .trust-pill {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      color: var(--slate);
      font-size: 12px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 20px;
      white-space: nowrap;
    }

    /* Dashboard mockup */
    .hero-visual {
      position: relative;
    }

    .dashboard {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    }

    .dash-chrome {
      background: var(--navy-mid);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--navy-border);
    }

    .dash-dots { display: flex; gap: 6px; }
    .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dd-red   { background: #E8453C; }
    .dd-amber { background: #F5A623; }
    .dd-green { background: #00D4AA; }

    .dash-title {
      font-size: 12px;
      color: var(--slate-mid);
      font-weight: 500;
      margin-left: 6px;
    }

    .dash-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }

    .dash-stat {
      background: var(--navy-mid);
      border: 1px solid var(--navy-border);
      border-left: 3px solid var(--teal);
      border-radius: var(--radius);
      padding: 16px 20px;
    }

    .dash-stat-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -1px;
    }

    .dash-stat-label {
      font-size: 12px;
      color: var(--slate-mid);
      margin-top: 2px;
    }

    /* ─── STATS ───────────────────────────────────────────── */
    .stats-section {
      background: var(--white);
      padding: 96px 0;
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .eyebrow-teal { color: var(--teal-hover); }
    .eyebrow-white { color: var(--teal); }

    .stats-section .eyebrow { text-align: center; }

    .stats-intro {
      text-align: center;
      font-size: 32px;
      font-weight: 800;
      color: var(--navy-deep);
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }

    .stats-sub {
      text-align: center;
      font-size: 17px;
      color: var(--text-dark);
      margin-bottom: 64px;
      font-style: italic;
    }

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

    .stat-card {
      background: var(--white);
      border: 1px solid var(--light-border);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }

    .stat-card:nth-child(1)::before { background: var(--red); }
    .stat-card:nth-child(2)::before { background: var(--amber); }
    .stat-card:nth-child(3)::before { background: var(--teal); }

    .stat-number {
      font-size: 80px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -3px;
      margin-bottom: 16px;
    }

    .stat-card:nth-child(1) .stat-number { color: var(--red); }
    .stat-card:nth-child(2) .stat-number { color: var(--amber); }
    .stat-card:nth-child(3) .stat-number { color: var(--teal-hover); }

    .stat-desc {
      font-size: 16px;
      color: var(--text-dark);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .stat-source {
      font-size: 12px;
      color: #9AA5B4;
      font-style: italic;
    }

    /* ─── WHAT IS AISENSA ─────────────────────────────────── */
    .what-section {
      background: var(--white);
      padding: 0 0 96px;
    }

    .what-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .section-h2 {
      font-size: 44px;
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .section-h2-dark { color: var(--navy-deep); }
    .section-h2-light { color: var(--white); }

    .section-p {
      font-size: 17px;
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .section-p-dark { color: var(--text-dark); }
    .section-p-light { color: var(--slate); }

    .trust-note {
      font-size: 13px;
      font-weight: 700;
      color: var(--teal-hover);
      letter-spacing: 0.05em;
      margin-top: 8px;
    }

    .feature-cards { display: flex; flex-direction: column; gap: 16px; }

    .feature-card-light {
      background: var(--white);
      border: 1px solid var(--light-border);
      border-left: 3px solid var(--teal);
      border-radius: var(--radius);
      padding: 24px 28px;
    }

    .feature-card-light h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy-deep);
      margin-bottom: 8px;
    }

    .feature-card-light p {
      font-size: 15px;
      color: var(--text-dark);
      line-height: 1.55;
    }

    /* ─── LIFECYCLE ───────────────────────────────────────── */
    .lifecycle-section {
      background: var(--navy-deep);
      padding: 96px 0;
    }

    .section-header { text-align: center; margin-bottom: 64px; }

    .lifecycle-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .stage-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s;
    }

    .stage-card:hover { transform: translateY(-3px); }

    .stage-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }

    .stage-card:nth-child(1)::before { background: var(--teal); }
    .stage-card:nth-child(2)::before { background: var(--purple); }
    .stage-card:nth-child(3)::before { background: var(--amber); }
    .stage-card:nth-child(4)::before { background: var(--orange); }

    .stage-num {
      font-size: 48px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 4px;
    }

    .stage-card:nth-child(1) .stage-num { color: var(--teal); }
    .stage-card:nth-child(2) .stage-num { color: var(--purple); }
    .stage-card:nth-child(3) .stage-num { color: var(--amber); }
    .stage-card:nth-child(4) .stage-num { color: var(--orange); }

    .stage-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--slate-mid);
      margin-bottom: 16px;
    }

    .stage-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .stage-desc {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .stage-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .stage-features li {
      font-size: 13px;
      color: var(--slate-mid);
      padding-left: 16px;
      position: relative;
    }

    .stage-features li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--slate-mid);
    }

    .lifecycle-cta {
      text-align: center;
      margin-top: 56px;
    }

    .btn-text {
      color: var(--teal);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }

    .btn-text:hover { gap: 10px; }

    /* ─── BEFORE / AFTER ──────────────────────────────────── */
    .compare-section {
      background: var(--light-bg);
      padding: 96px 0;
    }

    .compare-section .section-header { margin-bottom: 56px; }
    .compare-section .section-h2 { color: var(--navy-deep); }

    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .compare-panel {
      border-radius: var(--radius-lg);
      padding: 40px;
    }

    .compare-panel-bad {
      background: var(--red-muted);
      border: 1px solid rgba(232,69,60,0.2);
    }

    .compare-panel-good {
      background: var(--teal-muted);
      border: 1px solid rgba(0,212,170,0.2);
    }

    .compare-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .compare-label-bad  { color: var(--red); }
    .compare-label-good { color: var(--teal-hover); }

    .compare-items { display: flex; flex-direction: column; gap: 14px; }

    .compare-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      line-height: 1.5;
    }

    .compare-item-bad  { color: var(--text-dark); }
    .compare-item-good { color: var(--text-dark); }

    .compare-item.highlight-bad  { color: var(--red);        font-weight: 700; }
    .compare-item.highlight-good { color: var(--navy-deep);  font-weight: 700; }

    .ci-num {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .ci-check {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--teal);
      color: var(--navy-deep);
      font-size: 13px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .ci-check-teal {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--teal-hover);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ─── WHO WE SERVE ────────────────────────────────────── */
    .serve-section {
      background: var(--white);
      padding: 96px 0;
    }

    .serve-section .section-header { margin-bottom: 56px; }
    .serve-section .section-h2 { color: var(--navy-deep); }

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

    .serve-card {
      background: var(--white);
      border: 1px solid var(--light-border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .serve-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

    .serve-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }

    .serve-card:nth-child(1)::before { background: var(--teal); }
    .serve-card:nth-child(2)::before { background: var(--purple); }
    .serve-card:nth-child(3)::before { background: var(--amber); }

    .serve-badge {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
    }

    .serve-card:nth-child(1) .serve-badge { background: rgba(0,212,170,0.1);  color: var(--teal-hover); }
    .serve-card:nth-child(2) .serve-badge { background: rgba(124,111,205,0.1); color: var(--purple); }
    .serve-card:nth-child(3) .serve-badge { background: rgba(245,166,35,0.1);  color: #B07A10; }

    .serve-card h3 {
      font-size: 26px;
      font-weight: 800;
      color: var(--navy-deep);
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }

    .serve-card .serve-desc {
      font-size: 14px;
      color: var(--text-dark);
      font-style: italic;
      line-height: 1.55;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--light-border);
    }

    .serve-card .btn-text {
      display: inline-flex;
      margin-top: 24px;
    }

    .serve-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .serve-list li {
      font-size: 14px;
      color: var(--text-dark);
      padding-left: 18px;
      position: relative;
      line-height: 1.4;
    }

    .serve-list li::before {
      content: '›';
      position: absolute;
      left: 0;
      color: var(--teal-hover);
      font-weight: 700;
    }

    /* ─── HOW WE ENGAGE ───────────────────────────────────── */
    .engage-section {
      background: var(--navy-deep);
      padding: 96px 0;
    }

    .engage-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .engage-step {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      padding: 36px 28px;
      position: relative;
    }

    .engage-step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
    .engage-step:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
    .engage-step:not(:first-child) { border-left: none; }

    .engage-arrow {
      position: absolute;
      right: -14px;
      top: 50%;
      transform: translateY(-50%);
      width: 28px; height: 28px;
      background: var(--navy-deep);
      border: 1px solid var(--navy-border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
      color: var(--slate-mid);
      font-size: 13px;
    }

    .engage-num {
      font-size: 52px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 8px;
    }

    .engage-step:nth-child(1) .engage-num { color: var(--teal); }
    .engage-step:nth-child(2) .engage-num { color: var(--purple); }
    .engage-step:nth-child(3) .engage-num { color: var(--amber); }
    .engage-step:nth-child(4) .engage-num { color: var(--orange); }

    .engage-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .engage-desc {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.6;
    }

    /* ─── CLOSING CTA ─────────────────────────────────────── */
    .cta-section {
      background: var(--navy-mid);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -150px; left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
    }

    .cta-quote {
      font-size: 32px;
      font-weight: 700;
      font-style: italic;
      color: var(--white);
      line-height: 1.35;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }

    .cta-quote-mark {
      color: var(--teal);
      font-size: 48px;
      line-height: 0;
      vertical-align: -12px;
      font-style: normal;
    }

    .cta-divider {
      width: 48px; height: 3px;
      background: var(--teal);
      margin: 32px auto;
      border-radius: 2px;
    }

    .cta-headline {
      font-size: 42px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .cta-sub {
      font-size: 17px;
      color: var(--slate);
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .cta-actions .btn-primary {
      font-size: 16px;
      padding: 16px 36px;
    }

    .cta-email {
      font-size: 15px;
      color: var(--teal);
      text-decoration: none;
      font-weight: 600;
    }

    .cta-email:hover { text-decoration: underline; }

    /* ─── FOOTER ──────────────────────────────────────────── */
    footer {
      background: var(--navy-deep);
      border-top: 1px solid var(--navy-border);
      padding: 40px 0;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 14px;
      color: var(--slate-mid);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .footer-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .footer-badges {
      display: flex;
      gap: 8px;
    }

    .footer-badge {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      color: var(--slate-mid);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 4px;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--slate-mid);
    }

    /* ─── SCROLL ANIMATIONS ───────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up-delay-1 { transition-delay: 0.05s; }
    .fade-up-delay-2 { transition-delay: 0.12s; }
    .fade-up-delay-3 { transition-delay: 0.19s; }
    .fade-up-delay-4 { transition-delay: 0.26s; }

    /* ─── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero h1 { font-size: 56px; }
      .lifecycle-grid { grid-template-columns: repeat(2, 1fr); }
      .engage-grid { grid-template-columns: repeat(2, 1fr); }
      .engage-step:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; border-left: 1px solid var(--navy-border); }
      .engage-step:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); border-top: none; }
      .engage-step:first-child  { border-radius: var(--radius-lg) 0 0 0; }
      .engage-step:last-child   { border-radius: 0 0 var(--radius-lg) 0; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      .nav-inner  { padding: 0 24px; }
      .nav-links  { display: none; }
      .hero { padding: 120px 0 80px; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero h1 { font-size: 44px; letter-spacing: -1px; }
      .hero-visual { display: none; }
      .stats-grid  { grid-template-columns: 1fr; }
      .what-inner  { grid-template-columns: 1fr; }
      .compare-grid { grid-template-columns: 1fr; }
      .serve-grid  { grid-template-columns: 1fr; }
      .lifecycle-grid { grid-template-columns: 1fr; }
      .engage-grid { grid-template-columns: 1fr; }
      .engage-step { border-radius: 0 !important; border-left: 1px solid var(--navy-border) !important; }
      .engage-step:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important; }
      .engage-step:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important; border-top: none; }
      .engage-arrow { display: none; }
      .section-h2 { font-size: 34px; }
      .cta-quote { font-size: 24px; }
      .cta-headline { font-size: 32px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

    .nav-logo-image {
      width: 220px;
      margin-top: 5px;
    }

    .section-copy-narrow-center {
      max-width: 560px;
      margin: 0 auto;
    }

    .section-copy-wide-center {
      font-size: 17px;
      color: var(--slate);
      margin-top: 12px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-copy-light { color: var(--slate); }
    .section-copy-dark { color: var(--text-dark); }

    .title-lg-tight {
      font-size: 44px;
      letter-spacing: -1px;
    }

    .title-md-tight {
      font-size: 40px;
      letter-spacing: -1px;
    }

    .text-teal { color: var(--teal); }

    .mt-28 { margin-top: 28px; }
    .mt-16 { margin-top: 16px; }
    .mb-12 { margin-bottom: 12px; }
    .mb-32 { margin-bottom: 32px; }

    .link-inline-top {
      display: inline-block;
      margin-top: 12px;
    }

    .delivery-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .delivery-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
    }

    .delivery-row-border { border-bottom: 1px solid var(--light-border); }

    .delivery-key {
      font-size: 12px;
      font-weight: 700;
      color: var(--teal);
      min-width: 80px;
    }

    .delivery-value {
      font-size: 14px;
      color: var(--text-dark);
    }

    .section-eyebrow-teal { color: var(--teal); }

    .stage-kicker-spaced { margin-bottom: 20px; }
    .accent-card-top-space { margin-top: 24px; }
    .kicker-orange { color: var(--orange); }

    .output-label-orange { color: var(--orange); }
    .output-label-amber { color: var(--amber); }
    .output-label-teal { color: var(--teal); }
    .output-label-red { color: var(--red); }

    /* ─── PLATFORM PAGE ───────────────────────────────────── */
    .nav-links a.active { color: var(--teal); }

    .btn-primary-lg {
      font-size: 16px;
      padding: 16px 36px;
    }

    .page-hero {
      background: var(--navy-deep);
      padding: 148px 0 96px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .page-hero-inner {
      text-align: center;
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .page-hero h1 {
      font-size: 60px;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      color: var(--white);
      margin-bottom: 24px;
    }

    .page-hero h1 em {
      font-style: normal;
      color: var(--teal);
    }

    .page-hero-sub {
      font-size: 18px;
      line-height: 1.6;
      color: var(--slate);
      margin-bottom: 40px;
    }

    .page-hero .hero-ctas { justify-content: center; }

    .lifecycle-nav {
      background: var(--navy-mid);
      border-bottom: 1px solid var(--navy-border);
      position: sticky;
      top: 68px;
      z-index: 50;
    }

    .lifecycle-nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      gap: 0;
    }

    .lnav-item {
      padding: 18px 28px;
      font-size: 13px;
      font-weight: 700;
      color: var(--slate-mid);
      text-decoration: none;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .lnav-item:hover { color: var(--white); }

    .lnav-item.s1:hover,
    .lnav-item.s1.active {
      color: var(--teal);
      border-bottom-color: var(--teal);
    }

    .lnav-item.s2:hover,
    .lnav-item.s2.active {
      color: var(--purple);
      border-bottom-color: var(--purple);
    }

    .lnav-item.s3:hover,
    .lnav-item.s3.active {
      color: var(--amber);
      border-bottom-color: var(--amber);
    }

    .lnav-item.s4:hover,
    .lnav-item.s4.active {
      color: var(--orange);
      border-bottom-color: var(--orange);
    }

    .lnav-num {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      font-size: 11px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lnav-item.s1 .lnav-num {
      background: rgba(0,212,170,0.15);
      color: var(--teal);
    }

    .lnav-item.s2 .lnav-num {
      background: rgba(124,111,205,0.15);
      color: var(--purple);
    }

    .lnav-item.s3 .lnav-num {
      background: rgba(245,166,35,0.15);
      color: var(--amber);
    }

    .lnav-item.s4 .lnav-num {
      background: rgba(240,112,48,0.15);
      color: var(--orange);
    }

    .stage-section { padding: 96px 0; scroll-margin-top: 130px; }
    .stage-section-dark { background: var(--navy-deep); }
    .stage-section-mid { background: var(--navy-mid); }
    .stage-section-light { background: var(--white); }
    .stage-section-off { background: var(--light-bg); }

    .stage-header {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      margin-bottom: 64px;
    }

    .stage-badge {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .badge-teal { background: rgba(0,212,170,0.12); color: var(--teal); }
    .badge-purple { background: rgba(124,111,205,0.12); color: var(--purple); }
    .badge-amber { background: rgba(245,166,35,0.12); color: var(--amber); }
    .badge-orange { background: rgba(240,112,48,0.12); color: var(--orange); }

    .stage-kicker {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .kicker-teal { color: var(--teal); }
    .kicker-purple { color: var(--purple); }
    .kicker-amber { color: var(--amber); }
    .kicker-orange { color: var(--orange); }
    .kicker-dark { color: var(--teal-hover); }

    .stage-h2 {
      font-size: 40px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }

    .stage-h2-light { color: var(--white); }
    .stage-h2-dark { color: var(--navy-deep); }

    .stage-tagline {
      font-size: 20px;
      font-style: italic;
      font-weight: 700;
    }

    .tl-teal { color: var(--teal); }
    .tl-purple { color: var(--purple); }
    .tl-amber { color: var(--amber); }
    .tl-orange { color: var(--orange); }

    .stage-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

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

    .stage-intro {
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .stage-intro-light { color: var(--slate); }
    .stage-intro-dark { color: var(--text-dark); }

    .feature-block { margin-bottom: 24px; }
    .fh-dark { font-size: 15px; font-weight: 700; color: var(--navy-deep); margin-bottom: 6px; }
    .fp-dark  { font-size: 15px; line-height: 1.6; color: var(--text-dark); margin: 0; }

    .accent-card {
      border-radius: var(--radius);
      padding: 24px 28px;
      border-left: 3px solid;
      margin-bottom: 16px;
    }

    .accent-card-dark {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
    }

    .accent-card-light {
      background: var(--white);
      border: 1px solid var(--light-border);
    }

    .accent-teal { border-left-color: var(--teal) !important; }
    .accent-purple { border-left-color: var(--purple) !important; }
    .accent-amber { border-left-color: var(--amber) !important; }
    .accent-orange { border-left-color: var(--orange) !important; }

    .output-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .output-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg);
      padding: 24px;
    }

    .output-card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .models-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .model-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      text-align: center;
    }

    .model-num {
      font-size: 36px;
      font-weight: 800;
      color: var(--amber);
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

    .model-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .model-desc {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.55;
    }

    .trust-section {
      background: var(--navy-mid);
      border-top: 1px solid var(--navy-border);
      border-bottom: 1px solid var(--navy-border);
      padding: 48px 0;
    }

    .trust-inner { text-align: center; }

    .trust-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--slate-mid);
      margin-bottom: 28px;
    }

    .trust-pills {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .trust-pills .trust-pill {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      color: var(--slate);
      font-size: 13px;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
    }

    .cta-section {
      background: var(--navy-deep);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -150px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }

    .cta-h2 {
      font-size: 44px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .cta-sub {
      font-size: 17px;
      color: var(--slate);
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .cta-email {
      font-size: 15px;
      color: var(--teal);
      text-decoration: none;
      font-weight: 600;
    }

    .cta-email:hover { text-decoration: underline; }

    .section-divider {
      height: 1px;
      background: var(--navy-border);
    }

    @media (max-width: 1024px) {
      .stage-body-3col { grid-template-columns: repeat(2, 1fr); }
      .lifecycle-nav-inner { overflow-x: auto; }
      .lnav-item { padding: 16px 20px; white-space: nowrap; }
    }

    @media (max-width: 768px) {
      .page-hero h1 { font-size: 40px; letter-spacing: -1px; }
      .stage-body { grid-template-columns: 1fr; gap: 40px; }
      .stage-body-3col { grid-template-columns: 1fr; }
      .output-cards { grid-template-columns: 1fr; }
      .models-grid { grid-template-columns: 1fr; }
      .stage-h2 { font-size: 32px; }
      .stage-header { flex-direction: column; gap: 16px; }
    }


/* ===== Imported from about.html ===== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy-deep:    #0A0F1E;
      --navy-mid:     #0D1B2A;
      --navy-card:    #1A2640;
      --navy-border:  #2A3A52;
      --teal:         #00D4AA;
      --teal-hover:   #00B896;
      --teal-muted:   rgba(0,212,170,0.10);
      --amber:        #F5A623;
      --purple:       #7C6FCD;
      --white:        #FFFFFF;
      --slate:        #B0BEC5;
      --slate-mid:    #78909C;
      --light-bg:     #F4F6F9;
      --light-border: #E2E8F0;
      --text-dark:    #4A5568;
      --font:         'DM Sans', sans-serif;
      --max-w:        1200px;
      --radius:       8px;
      --radius-lg:    12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.65;
      color: var(--white);
      background: var(--navy-deep);
      -webkit-font-smoothing: antialiased;
    }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

    /* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,15,30,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--navy-border);
    }

    .nav-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
      height: 68px; display: flex; align-items: center; justify-content: space-between;
    }

    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

    .logo-mark {
      width: 36px; height: 36px; border: 2.5px solid var(--teal);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800; color: var(--teal); letter-spacing: -0.5px;
    }

    .logo-text { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
    .logo-text span { color: var(--teal); }

    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a { color: var(--slate); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.active { color: var(--teal); }

    .btn-primary {
      background: var(--teal); color: var(--navy-deep); border: none;
      padding: 11px 24px; border-radius: var(--radius); font-family: var(--font);
      font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
      display: inline-block; transition: background 0.2s, transform 0.15s; white-space: nowrap;
    }
    .btn-primary:hover { background: var(--teal-hover); transform: translateY(-1px); }
    .btn-primary-lg { font-size: 16px; padding: 16px 36px; }

    .btn-ghost {
      background: transparent; color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.25); padding: 11px 24px;
      border-radius: var(--radius); font-family: var(--font); font-size: 14px;
      font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block;
      transition: border-color 0.2s, transform 0.15s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

    /* â”€â”€â”€ PAGE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .page-hero {
      background: var(--navy-deep); padding: 148px 0 96px;
      position: relative; overflow: hidden;
    }

    .page-hero::before {
      content: ''; position: absolute; top: -100px; left: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(124,111,205,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .page-hero::after {
      content: ''; position: absolute; bottom: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .page-hero-inner {
      max-width: 800px; position: relative; z-index: 1; text-align: center; margin: 0 auto;
    }

    .eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .eyebrow-teal { color: var(--teal); }

    .page-hero h1 {
      font-size: 64px; font-weight: 800; line-height: 1.04;
      letter-spacing: -2px; color: var(--white); margin-bottom: 28px;
    }

    .page-hero h1 em { font-style: normal; color: var(--teal); }

    .page-hero-sub {
      font-size: 20px; line-height: 1.65; color: var(--slate); max-width: 620px; margin: 0 auto 40px;
    }

    /* â”€â”€â”€ MISSION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .mission-section {
      background: var(--white); padding: 96px 0;
    }

    .mission-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }

    .section-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--teal-hover); margin-bottom: 16px;
    }

    .section-h2 {
      font-size: 40px; font-weight: 800; line-height: 1.1;
      letter-spacing: -1px; margin-bottom: 24px;
    }

    .h2-dark  { color: var(--navy-deep); }
    .h2-light { color: var(--white); }

    .body-p {
      font-size: 17px; line-height: 1.7; margin-bottom: 20px;
    }

    .body-p-dark  { color: var(--text-dark); }
    .body-p-light { color: var(--slate); }

    .thesis-block {
      background: var(--navy-deep); border-radius: var(--radius-lg);
      padding: 36px; margin-top: 8px;
    }

    .thesis-block p {
      font-size: 20px; font-weight: 700; font-style: italic;
      color: var(--white); line-height: 1.5; margin-bottom: 0;
    }

    .thesis-block p em { font-style: normal; color: var(--teal); }

    /* â”€â”€â”€ PRINCIPLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .principles-section {
      background: var(--navy-deep); padding: 96px 0;
    }

    .principles-header { text-align: center; margin-bottom: 64px; }

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

    .principle-card {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg); padding: 36px 28px;
      position: relative; overflow: hidden;
      transition: transform 0.2s;
    }

    .principle-card:hover { transform: translateY(-3px); }

    .principle-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    }

    .principle-card:nth-child(1)::before { background: var(--teal); }
    .principle-card:nth-child(2)::before { background: var(--purple); }
    .principle-card:nth-child(3)::before { background: var(--amber); }
    .principle-card:nth-child(4)::before { background: var(--teal); }
    .principle-card:nth-child(5)::before { background: var(--purple); }
    .principle-card:nth-child(6)::before { background: var(--amber); }

    .principle-num {
      font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 12px;
    }

    .principle-card:nth-child(1) .principle-num,
    .principle-card:nth-child(4) .principle-num { color: var(--teal); }
    .principle-card:nth-child(2) .principle-num,
    .principle-card:nth-child(5) .principle-num { color: var(--purple); }
    .principle-card:nth-child(3) .principle-num,
    .principle-card:nth-child(6) .principle-num { color: var(--amber); }

    .principle-card h3 {
      font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px;
    }

    .principle-card p {
      font-size: 15px; color: var(--slate); line-height: 1.6;
    }

    /* â”€â”€â”€ HUMAN FIRST â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .human-section {
      background: var(--light-bg); padding: 96px 0;
    }

    .human-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }

    .pull-quote {
      background: var(--navy-deep); border-radius: var(--radius-lg);
      padding: 48px 40px; position: relative;
    }

    .pull-quote::before {
      content: '"'; position: absolute; top: 16px; left: 28px;
      font-size: 80px; font-weight: 800; color: var(--teal);
      line-height: 1; opacity: 0.4;
    }

    .pull-quote p {
      font-size: 22px; font-weight: 700; font-style: italic;
      color: var(--white); line-height: 1.5; position: relative; z-index: 1;
    }

    .pull-quote-attr {
      margin-top: 20px; font-size: 13px; font-weight: 600;
      color: var(--teal); letter-spacing: 0.05em; text-transform: uppercase;
    }

    .principles-list {
      list-style: none; display: flex; flex-direction: column; gap: 20px;
      margin-top: 8px;
    }

    .principle-item {
      display: flex; align-items: flex-start; gap: 16px;
    }

    .principle-icon {
      width: 36px; height: 36px; border-radius: var(--radius);
      background: var(--teal-muted); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
      font-size: 16px; color: var(--teal); font-weight: 800; margin-top: 2px;
    }

    .principle-item h4 {
      font-size: 16px; font-weight: 700; color: var(--navy-deep); margin-bottom: 4px;
    }

    .principle-item p { font-size: 15px; color: var(--text-dark); line-height: 1.55; }

    /* â”€â”€â”€ DATA RESIDENCY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .residency-section {
      background: var(--navy-mid); padding: 96px 0;
      border-top: 1px solid var(--navy-border);
      border-bottom: 1px solid var(--navy-border);
    }

    .residency-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }

    .residency-visual {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg); padding: 40px; text-align: center;
    }

    .azure-badge {
      display: inline-flex; align-items: center; gap: 12px;
      background: rgba(0,120,212,0.12); border: 1px solid rgba(0,120,212,0.3);
      border-radius: var(--radius-lg); padding: 16px 24px; margin-bottom: 28px;
    }

    .azure-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: #0078D4; flex-shrink: 0;
    }

    .azure-label { font-size: 14px; font-weight: 700; color: #5BA4E6; }

    .residency-regions {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px;
    }

    .region-pill {
      background: var(--navy-mid); border: 1px solid var(--navy-border);
      border-radius: var(--radius); padding: 12px 16px;
      text-align: left;
    }

    .region-pill-label {
      font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--slate-mid); margin-bottom: 4px;
    }

    .region-pill-name {
      font-size: 15px; font-weight: 700; color: var(--white);
    }

    .guarantee-line {
      font-size: 13px; color: var(--teal); font-weight: 600;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }

    .guarantee-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

    .residency-points { display: flex; flex-direction: column; gap: 24px; }

    .residency-point h4 {
      font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px;
    }

    .residency-point p { font-size: 15px; color: var(--slate); line-height: 1.6; }

    /* â”€â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .contact-section {
      background: var(--navy-deep); padding: 120px 0;
      position: relative; overflow: hidden;
    }

    .contact-section::before {
      content: ''; position: absolute; top: -150px; left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 600px;
      background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: start; position: relative; z-index: 1;
    }

    .contact-left h2 {
      font-size: 44px; font-weight: 800; color: var(--white);
      letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1;
    }

    .contact-left p {
      font-size: 17px; color: var(--slate); line-height: 1.65; margin-bottom: 32px;
    }

    .contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

    .contact-cta-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--teal); color: var(--navy-deep);
      border-radius: var(--radius); padding: 14px 24px;
      font-size: 15px; font-weight: 700; text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .contact-cta-primary:hover { background: var(--teal-hover); transform: translateY(-1px); }

    .contact-cta-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      color: var(--teal); font-size: 15px; font-weight: 600; text-decoration: none;
      transition: gap 0.2s;
    }

    .contact-cta-secondary:hover { gap: 14px; }

    .contact-right {
      display: flex; flex-direction: column; gap: 20px;
    }

    .contact-detail {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg); padding: 28px;
    }

    .contact-detail-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
    }

    .contact-detail h4 {
      font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px;
    }

    .contact-detail p { font-size: 15px; color: var(--slate); line-height: 1.55; }

    .contact-detail a { color: var(--teal); text-decoration: none; font-weight: 600; }
    .contact-detail a:hover { text-decoration: underline; }

    /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    footer {
      background: var(--navy-deep); border-top: 1px solid var(--navy-border); padding: 40px 0;
    }

    .footer-inner {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }

    .footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
    .footer-links a { font-size: 14px; color: var(--slate-mid); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--slate); }

    .footer-right { display: flex; align-items: center; gap: 20px; }
    .footer-badges { display: flex; gap: 8px; }
    .footer-badge { background: var(--navy-card); border: 1px solid var(--navy-border); color: var(--slate-mid); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
    .footer-copy { font-size: 13px; color: var(--slate-mid); }

    /* â”€â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.05s; }
    .fade-up-delay-2 { transition-delay: 0.12s; }
    .fade-up-delay-3 { transition-delay: 0.19s; }
    .fade-up-delay-4 { transition-delay: 0.26s; }
    .fade-up-delay-5 { transition-delay: 0.33s; }
    .fade-up-delay-6 { transition-delay: 0.40s; }

    /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 1024px) {
      .principles-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      .nav-inner  { padding: 0 24px; }
      .nav-links  { display: none; }
      .page-hero h1 { font-size: 42px; letter-spacing: -1px; }
      .mission-inner, .human-inner, .residency-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .principles-grid { grid-template-columns: 1fr; }
      .section-h2 { font-size: 32px; }
      .contact-left h2 { font-size: 34px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

/* ===== Imported from legal.html ===== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy-deep:    #0A0F1E;
      --navy-mid:     #0D1B2A;
      --navy-card:    #1A2640;
      --navy-border:  #2A3A52;
      --teal:         #00D4AA;
      --teal-hover:   #00B896;
      --teal-muted:   rgba(0,212,170,0.10);
      --amber:        #F5A623;
      --purple:       #7C6FCD;
      --orange:       #F07030;
      --red:          #E8453C;
      --red-muted:    rgba(232,69,60,0.08);
      --white:        #FFFFFF;
      --slate:        #B0BEC5;
      --slate-mid:    #78909C;
      --light-bg:     #F4F6F9;
      --light-border: #E2E8F0;
      --text-dark:    #4A5568;
      --font:         'DM Sans', sans-serif;
      --max-w:        1200px;
      --radius:       8px;
      --radius-lg:    12px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      font-size: 16px; line-height: 1.65;
      color: var(--white); background: var(--navy-deep);
      -webkit-font-smoothing: antialiased;
    }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

    /* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,15,30,0.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--navy-border);
    }

    .nav-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
      height: 68px; display: flex; align-items: center; justify-content: space-between;
    }

    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

    .logo-mark {
      width: 36px; height: 36px; border: 2.5px solid var(--teal);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800; color: var(--teal); letter-spacing: -0.5px;
    }

    .logo-text { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
    .logo-text span { color: var(--teal); }

    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a { color: var(--slate); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.active { color: var(--teal); }

    .btn-primary {
      background: var(--teal); color: var(--navy-deep); border: none;
      padding: 11px 24px; border-radius: var(--radius); font-family: var(--font);
      font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
      display: inline-block; transition: background 0.2s, transform 0.15s; white-space: nowrap;
    }
    .btn-primary:hover { background: var(--teal-hover); transform: translateY(-1px); }
    .btn-primary-lg { font-size: 16px; padding: 16px 36px; }

    .btn-ghost {
      background: transparent; color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.25); padding: 11px 24px;
      border-radius: var(--radius); font-family: var(--font); font-size: 14px;
      font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block;
      transition: border-color 0.2s, transform 0.15s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

    /* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero {
      background: var(--navy-deep); padding: 148px 0 96px;
      position: relative; overflow: hidden;
    }

    .hero::before {
      content: ''; position: absolute; top: -100px; right: -150px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: ''; position: absolute; bottom: -80px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,69,60,0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; position: relative; z-index: 1;
    }

    .eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 20px;
    }
    .eyebrow-teal  { color: var(--teal); }
    .eyebrow-white { color: var(--teal); }
    .eyebrow-dark  { color: var(--teal-hover); }

    .hero h1 {
      font-size: 64px; font-weight: 800; line-height: 1.04;
      letter-spacing: -2px; color: var(--white); margin-bottom: 24px;
    }

    .hero h1 em { font-style: normal; color: var(--teal); }

    .hero-sub {
      font-size: 18px; line-height: 1.65; color: var(--slate);
      margin-bottom: 40px; max-width: 500px;
    }

    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

    .trust-bar { margin-top: 40px; display: flex; gap: 10px; flex-wrap: wrap; }

    .trust-pill {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      color: var(--slate); font-size: 12px; font-weight: 500;
      padding: 6px 14px; border-radius: 20px; white-space: nowrap;
    }

    /* Risk panel */
    .risk-panel {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    }

    .risk-panel-header {
      background: var(--red); padding: 14px 20px;
      display: flex; align-items: center; gap: 10px;
    }

    .risk-panel-header-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.6);
    }

    .risk-panel-header span {
      font-size: 12px; font-weight: 700; color: var(--white);
      letter-spacing: 0.08em; text-transform: uppercase;
    }

    .risk-panel-body { padding: 24px; }

    .risk-scenario {
      font-size: 14px; color: var(--slate); line-height: 1.6;
      margin-bottom: 20px; font-style: italic;
      border-left: 3px solid var(--red);
      padding-left: 14px;
    }

    .risk-items { display: flex; flex-direction: column; gap: 10px; }

    .risk-item {
      display: flex; align-items: center; gap: 12px;
      background: var(--navy-mid); border: 1px solid var(--navy-border);
      border-radius: var(--radius); padding: 12px 16px;
    }

    .risk-item-num {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--red); color: var(--white);
      font-size: 11px; font-weight: 700;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

    .risk-item-label { font-size: 12px; font-weight: 700; color: var(--white); flex: 1; }
    .risk-item-tag { font-size: 11px; color: var(--red); font-weight: 600; white-space: nowrap; }

    /* â”€â”€â”€ THE RISK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .risk-section { background: var(--white); padding: 96px 0; }

    .section-h2 {
      font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
    }
    .h2-dark  { color: var(--navy-deep); }
    .h2-light { color: var(--white); }

    .body-p { font-size: 17px; line-height: 1.7; margin-bottom: 20px; }
    .body-p-dark  { color: var(--text-dark); }
    .body-p-light { color: var(--slate); }

    .risk-section-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }

    .risk-exposure-cards { display: flex; flex-direction: column; gap: 14px; }

    .exposure-card {
      background: var(--white); border: 1px solid var(--light-border);
      border-left: 3px solid var(--red); border-radius: var(--radius);
      padding: 20px 24px;
    }

    .exposure-card h4 { font-size: 16px; font-weight: 700; color: var(--navy-deep); margin-bottom: 6px; }
    .exposure-card p  { font-size: 14px; color: var(--text-dark); line-height: 1.55; }

    /* â”€â”€â”€ THE NARRATIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .narrative-section { background: var(--navy-mid); padding: 96px 0; }

    .narrative-inner { max-width: 900px; margin: 0 auto; }

    .narrative-header { text-align: center; margin-bottom: 64px; }

    .scenario-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-radius: 20px; padding: 8px 18px; margin-bottom: 24px;
      font-size: 12px; font-weight: 600; color: var(--slate);
    }

    .scenario-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

    .narrative-steps { display: flex; flex-direction: column; gap: 0; }

    .narrative-step {
      display: grid; grid-template-columns: 80px 1fr;
      gap: 0; position: relative;
    }

    .narrative-step:not(:last-child)::after {
      content: ''; position: absolute;
      left: 39px; top: 52px; bottom: -1px;
      width: 2px; background: var(--navy-border);
      z-index: 0;
    }

    .step-marker {
      display: flex; flex-direction: column; align-items: center;
      padding-top: 4px; position: relative; z-index: 1;
    }

    .step-circle {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 800; flex-shrink: 0;
    }

    .step-bad  { background: var(--red-muted);  border: 2px solid var(--red);  color: var(--red); }
    .step-good { background: var(--teal-muted); border: 2px solid var(--teal); color: var(--teal); }
    .step-stage { background: rgba(124,111,205,0.12); border: 2px solid var(--purple); color: var(--purple); }

    .step-content {
      padding: 4px 0 40px 28px;
    }

    .step-label {
      font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 6px;
    }

    .step-label-bad   { color: var(--red); }
    .step-label-good  { color: var(--teal); }
    .step-label-stage { color: var(--purple); }

    .step-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .step-body  { font-size: 15px; color: var(--slate); line-height: 1.65; }

    .step-body strong { color: var(--white); font-weight: 700; }

    /* â”€â”€â”€ THREE GOVERNED STATES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .states-section { background: var(--navy-deep); padding: 96px 0; }

    .states-header { text-align: center; margin-bottom: 64px; }

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

    .state-card {
      border-radius: var(--radius-lg); padding: 36px 28px;
      position: relative; overflow: hidden;
      transition: transform 0.2s;
    }

    .state-card:hover { transform: translateY(-3px); }

    .state-card-approve {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-top: 3px solid var(--amber);
    }

    .state-card-permit {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-top: 3px solid var(--teal);
    }

    .state-card-block {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-top: 3px solid var(--red);
    }

    .state-badge {
      display: inline-block; padding: 5px 14px; border-radius: 20px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
      text-transform: uppercase; margin-bottom: 16px;
    }

    .badge-approve { background: rgba(245,166,35,0.15); color: var(--amber); }
    .badge-permit  { background: rgba(0,212,170,0.12);  color: var(--teal); }
    .badge-block   { background: rgba(232,69,60,0.12);  color: var(--red); }

    .state-card h3 {
      font-size: 22px; font-weight: 800; color: var(--white);
      margin-bottom: 8px; letter-spacing: -0.3px;
    }

    .state-card .state-sub {
      font-size: 14px; font-style: italic; margin-bottom: 16px;
    }

    .state-approve .state-sub { color: var(--amber); }
    .state-permit  .state-sub { color: var(--teal); }
    .state-block   .state-sub { color: var(--red); }

    .state-card p { font-size: 15px; color: var(--slate); line-height: 1.6; }

    .state-card .state-example {
      margin-top: 20px; padding: 14px 16px;
      border-radius: var(--radius); font-size: 13px; color: var(--slate-mid);
      font-style: italic; line-height: 1.5;
    }

    .example-approve { background: rgba(245,166,35,0.07);  border-left: 2px solid var(--amber); }
    .example-permit  { background: rgba(0,212,170,0.07);   border-left: 2px solid var(--teal); }
    .example-block   { background: rgba(232,69,60,0.07);   border-left: 2px solid var(--red); }

    .mca-callout {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-left: 3px solid var(--purple);
      border-radius: var(--radius-lg); padding: 28px 32px; margin-top: 48px;
      display: flex; gap: 20px; align-items: flex-start;
    }

    .mca-icon {
      width: 44px; height: 44px; border-radius: var(--radius);
      background: rgba(124,111,205,0.12); display: flex;
      align-items: center; justify-content: center;
      color: var(--purple); font-size: 20px; font-weight: 800;
      flex-shrink: 0; letter-spacing: -1px;
    }

    .mca-callout p { font-size: 16px; color: var(--slate); line-height: 1.65; }
    .mca-callout p strong { color: var(--white); }

    /* â”€â”€â”€ WHAT YOU GET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .features-section { background: var(--white); padding: 96px 0; }

    .features-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }

    .features-grid { display: flex; flex-direction: column; gap: 16px; }

    .feature-card {
      background: var(--white); border: 1px solid var(--light-border);
      border-radius: var(--radius-lg); padding: 24px 28px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .feature-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    }

    .feature-card-header {
      display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
    }

    .feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

    .feature-card h4 { font-size: 16px; font-weight: 700; color: var(--navy-deep); }
    .feature-card p  { font-size: 14px; color: var(--text-dark); line-height: 1.6; padding-left: 20px; }

    /* Metrics panel */
    .metrics-panel {
      background: var(--navy-deep); border-radius: var(--radius-lg);
      padding: 36px; overflow: hidden;
    }

    .metrics-panel-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--teal); margin-bottom: 24px;
    }

    .metrics-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px;
    }

    .metric-block {
      background: var(--navy-card); border: 1px solid var(--navy-border);
      border-radius: var(--radius); padding: 20px;
    }

    .metric-num {
      font-size: 40px; font-weight: 800; line-height: 1;
      letter-spacing: -2px; margin-bottom: 4px;
    }

    .metric-block:nth-child(1) .metric-num { color: var(--teal); }
    .metric-block:nth-child(2) .metric-num { color: var(--amber); }
    .metric-block:nth-child(3) .metric-num { color: var(--purple); }
    .metric-block:nth-child(4) .metric-num { color: var(--orange); }

    .metric-label { font-size: 12px; color: var(--slate-mid); line-height: 1.4; }

    .metrics-note {
      font-size: 13px; color: var(--slate-mid); font-style: italic;
      border-top: 1px solid var(--navy-border); padding-top: 16px; line-height: 1.55;
    }

    .metrics-note strong { color: var(--teal); font-style: normal; }

    /* â”€â”€â”€ COMPARISON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .comparison-section { background: var(--light-bg); padding: 96px 0; }

    .comparison-header { text-align: center; margin-bottom: 56px; }

    .comparison-table {
      background: var(--white); border: 1px solid var(--light-border);
      border-radius: var(--radius-lg); overflow: hidden;
    }

    .comp-header-row {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      background: var(--navy-deep); padding: 20px 28px; gap: 16px;
    }

    .comp-header-cell {
      font-size: 13px; font-weight: 700; color: var(--white);
      letter-spacing: 0.05em;
    }

    .comp-header-cell.highlight { color: var(--teal); }

    .comp-row {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      padding: 18px 28px; gap: 16px; align-items: center;
      border-bottom: 1px solid var(--light-border);
      transition: background 0.15s;
    }

    .comp-row:last-child { border-bottom: none; }
    .comp-row:hover { background: var(--light-bg); }

    .comp-cell { font-size: 14px; }

    .comp-cell-label { color: var(--text-dark); font-weight: 500; }

    .comp-check { color: var(--teal-hover); font-weight: 700; font-size: 15px; }
    .comp-cross { color: #CBD5E0; font-size: 15px; }
    .comp-partial { color: var(--amber); font-size: 13px; font-weight: 600; }

    /* â”€â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .cta-section {
      background: var(--navy-mid); padding: 120px 0;
      position: relative; overflow: hidden;
      border-top: 1px solid var(--navy-border);
    }

    .cta-section::before {
      content: ''; position: absolute; top: -150px; left: 50%;
      transform: translateX(-50%); width: 800px; height: 600px;
      background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-inner {
      text-align: center; position: relative; z-index: 1;
      max-width: 680px; margin: 0 auto;
    }

    .cta-h2 {
      font-size: 44px; font-weight: 800; color: var(--white);
      letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1;
    }

    .cta-sub {
      font-size: 17px; color: var(--slate); margin-bottom: 40px; line-height: 1.6;
    }

    .cta-actions {
      display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
    }

    .cta-email { font-size: 15px; color: var(--teal); text-decoration: none; font-weight: 600; }
    .cta-email:hover { text-decoration: underline; }

    .cta-note {
      margin-top: 20px; font-size: 13px; color: var(--slate-mid); font-style: italic;
    }

    /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    footer {
      background: var(--navy-deep); border-top: 1px solid var(--navy-border); padding: 40px 0;
    }

    .footer-inner {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }

    .footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
    .footer-links a { font-size: 14px; color: var(--slate-mid); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--slate); }

    .footer-right { display: flex; align-items: center; gap: 20px; }
    .footer-badges { display: flex; gap: 8px; }
    .footer-badge { background: var(--navy-card); border: 1px solid var(--navy-border); color: var(--slate-mid); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
    .footer-copy { font-size: 13px; color: var(--slate-mid); }

    /* â”€â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.06s; }
    .fade-up-delay-2 { transition-delay: 0.12s; }
    .fade-up-delay-3 { transition-delay: 0.18s; }
    .fade-up-delay-4 { transition-delay: 0.24s; }
    .fade-up-delay-5 { transition-delay: 0.30s; }

    /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 1024px) {
      .states-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 24px; }
      .nav-inner  { padding: 0 24px; }
      .nav-links  { display: none; }
      .hero h1 { font-size: 42px; letter-spacing: -1px; }
      .hero-inner, .risk-section-inner, .features-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { display: none; }
      .states-grid { grid-template-columns: 1fr; }
      .metrics-grid { grid-template-columns: 1fr 1fr; }
      .section-h2 { font-size: 32px; }
      .comp-header-row, .comp-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 14px 16px; }
      .cta-h2 { font-size: 34px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }

    /* ─── INDUSTRY PAGE ─────────────────────────────────────────── */

/* Anchor offset — accounts for sticky nav height */
.industry-anchor {
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
  pointer-events: none;
}

/* Industry jump nav */
.industry-nav-section {
  background: #F4F6F9;
  padding: 16px 0;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 64px; /* adjust to match your nav height */
  z-index: 90;
}

.industry-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.industry-nav-pill {
  padding: 8px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #E2E8F0;
  color: #0A0F1E;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.industry-nav-pill:hover {
  background: #00D4AA;
  border-color: #00D4AA;
  color: #0A0F1E;
}

/* Section separator between industries */
.risk-section-alt {
  border-top: 2px solid #E2E8F0;
}

/* Financial services placeholder section */
.placeholder-section {
  background: #0A0F1E;
  padding: 96px 0;
}

.placeholder-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.placeholder-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0;
}

/* Dark background features section (accountancy) */
.features-section-dark {
  background: #0D1B2A;
}

.features-section-dark .body-p-light {
  color: #B0BEC5;
}