html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Red Hat Display', system-ui, sans-serif;
      color: #1a202c;
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }

    

    /* ── LAYOUT ── */
    .wrap { max-width: 1140px; margin: 0 auto; padding: 0 48px; }
    @media (max-width: 768px) { .wrap { padding: 0 24px; } }

    /* ── BUTTONS ── */
    .btn{display: inline-flex; align-items: center; gap: 8px;
      font-family: inherit; font-size: 15px; font-weight: 600;
      padding: 14px 28px; border-radius: 8px; text-decoration: none;
      border: none; cursor: pointer; transition: all .2s ease;
      letter-spacing: -.01em; white-space: nowrap;}
    .btn--primary {
      background: var(--primary); color: #fff;
      box-shadow: 0 4px 14px rgba(161, 30, 92, .35);
    }
    .btn--primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 6px 20px rgba(161, 30, 92, .45);
      transform: translateY(-1px);
    }
    .btn--white {
      background: #fff; color: var(--primary);
      box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
    }
    .btn--white:hover {
      background: #f9f0f5;
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(0, 0, 0, .2);
    }
    .btn--outline-white {
      background: transparent; color: rgba(255, 255, 255, .88);
      border: 1.5px solid rgba(255, 255, 255, .38);
    }
    .btn--outline-white:hover {
      border-color: rgba(255, 255, 255, .7); color: #fff;
      background: rgba(255, 255, 255, .1);
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #4d1033 0%, #a11e5c 100%);
      position: relative; overflow: visible;
    }
    .hero__glow {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 60% at 5% 100%, rgba(0,0,0,.22) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 95% 0%, rgba(255,255,255,.08) 0%, transparent 55%);
    }
    .hero__grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    .hero__inner {
      display: flex;
      align-items: center;
      padding-top: 108px;
      padding-bottom: 100px;
      padding-left: max(48px, calc((100vw - 1140px) / 2 + 48px));
      padding-right: 48px;
      position: relative; z-index: 1;
      gap: 64px;
    }
    @media (max-width: 900px) {
      .hero__inner {
        flex-direction: column;
        padding: 72px 24px 48px;
        align-items: flex-start;
        gap: 36px;
      }
    }
    .hero__text {
      flex: 0 0 55%;
      position: relative;
      z-index: 2;
      max-width: 760px;
    }
    @media (max-width: 900px) {
      .hero__text { flex: none; width: 100%; }
    }
    .hero__tag {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 11px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.75);
      margin-bottom: 30px;
    }
    .hero__tag-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,.95); flex-shrink: 0;
    }
    .hero__title {
      font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 800; line-height: 1.15; letter-spacing: -.03em;
      color: #fff; margin: 0 0 28px;
    }
    .hero__sub {
      font-size: clamp(15px, 1.5vw, 17px); line-height: 1.76;
      color: rgba(255,255,255,.82);
    }
    .hero__media {
      position: absolute;
      right: max(12px, calc((100vw - 1140px) / 2 - 8px));
      bottom: -10%;
      height: 120%;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      z-index: 2;
      pointer-events: none;
    }
    .hero__media img {
      display: block;
      height: 100%;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.28));
    }
    @media (min-width: 901px) {
      .hero__media {
        transform: translateX(110px);
      }
    }
    @media (max-width: 900px) {
      .hero__media {
        position: static;
        width: 100%;
        height: auto;
        justify-content: center;
      }
      .hero__media img {
        height: auto;
        width: 100%;
        max-width: 480px;
      }
    }

    /* ── SECTION LABEL (eyebrow pill) ── */
    .section-label {
      display: inline-flex; align-items: center;
      font-size: 14px; font-weight: 600; letter-spacing: -.01em;
      color: var(--primary);
      border: 1.5px solid rgba(161, 30, 92, .24);
      border-radius: 8px; padding: 7px 20px; margin-bottom: 24px;
      background: transparent;
    }
    .section-label--light {
      color: rgba(255,255,255,.75);
      border-color: rgba(255,255,255,.28);
    }

    /* ── SECTION H2 ── */
    h2.section-h2 {
      font-size: clamp(24px, 2.8vw, 32px);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 20px;
      line-height: 1.25;
      letter-spacing: -.02em;
    }

    /* ── PROSE SECTIONS ── */
    .prose-section { padding: var(--pad) 0; }
    .prose-section--surface { background: var(--surface); }

    .body-text { max-width: 680px; }
    .body-text p { font-size: 15.5px; line-height: 1.82; color: var(--muted); margin-bottom: 16px; }
    .body-text p:last-child { margin-bottom: 0; }

    .what-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .what-split__text { display: flex; flex-direction: column; align-items: flex-start; }
    .what-split__img { display: flex; justify-content: flex-end; }
    .what-split__img img { width: 100%; max-width: 480px; height: auto; display: block; border-radius: var(--r-xl); box-shadow: 0 20px 48px rgba(10,15,30,0.08); }
    @media (max-width: 860px) {
      .what-split { grid-template-columns: 1fr; gap: 32px; }
      .what-split__img { justify-content: flex-start; }
      .what-split__img img { max-width: 100%; }
    }

    /* ── CHECKLIST ── */
    .checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; max-width: 680px; }
    .checklist li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.5; }
    .checklist li::before {
      content: '';
      width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
      background-color: var(--teal-light);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='2,5 4,7 8,3' fill='none' stroke='%2301b6b1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 12px 12px; background-repeat: no-repeat; background-position: center;
    }

    /* ── PAY RAILS GRID ── */
    .pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
    @media (max-width: 900px) {
      .pay-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .pay-grid { grid-template-columns: 1fr; }
    }

    .rail-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .rail-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(10, 15, 30, 0.08);
      border-color: rgba(161, 30, 92, 0.22);
    }
    .rail-card__icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(161, 30, 92, 0.06);
      display: flex; align-items: center; justify-content: center;
      color: var(--primary);
      font-size: 20px; font-weight: 700;
    }
    .rail-card__title {
      font-size: 19px; font-weight: 700; color: var(--navy); margin: 0;
      letter-spacing: -0.015em;
    }
    .rail-card__desc {
      font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0;
    }

    /* ── UNIFIED PLATFORM ── */
    .s-platform__outer { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
    @media (max-width: 900px) { .s-platform__outer { grid-template-columns: 1fr; } }
    .s-platform__intro { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
    .s-platform__box { background: rgba(161, 30, 92, 0.05); border: 1px solid rgba(161, 30, 92, 0.12); border-radius: 24px; padding: 20px; }
    .s-platform__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    @media (max-width: 600px) { .s-platform__grid { grid-template-columns: 1fr; } }
    
    .s-platform__card {
      background: #white;
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 14px; padding: 22px 24px; position: relative;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .s-platform__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,15,30,0.08); }
    .s-platform__card-icon { position: absolute; top: 16px; right: 16px; }
    .s-platform__card--full { grid-column: 1/-1; }
    .s-platform__card-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 5px; line-height: 1.2; }
    .s-platform__card-text { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
    
    .s-platform__note { font-size: 18px; font-weight: 600; color: var(--primary); line-height: 1.45; margin-top: 24px; }
    .s-platform__right { display: flex; justify-content: flex-end; align-items: center; margin-right: -48px; }
    .s-platform__right img { width: 110%; max-width: 620px; height: auto; display: block; }
    @media (max-width: 900px) { .s-platform__right { display: none; } }

    /* ── OPERATIONAL IMPACT ── */
    .s-impact {
      background: linear-gradient(135deg, #5a1036 0%, #a11e5c 100%);
      position: relative; overflow: hidden;
    }
    .s-impact::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(0,0,0,.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(0,0,0,.1) 0%, transparent 55%);
      pointer-events: none;
    }
    .s-impact__dots {
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .s-impact__inner { position: relative; z-index: 1; padding: var(--pad) 0; }
    .s-impact__h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -.03em; color: #fff; margin: 0 0 36px; }
    .s-impact__list { list-style: none; padding: 0; display: flex; flex-direction: column; max-width: 860px; }
    .s-impact__item { display: flex; align-items: center; gap: 24px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .s-impact__item:first-child { border-top: 1px solid rgba(255,255,255,.14); }
    .s-impact__num { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.45); flex-shrink: 0; width: 28px; text-align: right; }
    .s-impact__text { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; letter-spacing: -.02em; flex: 1; }
    .s-impact__arrow { flex-shrink: 0; color: rgba(255,255,255,.4); font-size: 18px; transition: transform .2s, color .2s; }
    .s-impact__item:hover .s-impact__arrow { transform: translateX(5px); color: rgba(255,255,255,.8); }

    /* ── CLOSING CTA ── */
    .closing {
      background: linear-gradient(140deg, var(--navy) 0%, #1a0815 100%);
      position: relative; overflow: hidden;
    }
    .closing::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(161,30,92,.22) 0%, transparent 70%);
      pointer-events: none;
    }
    .closing::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .closing__inner {
      max-width: 1140px; margin: 0 auto;
      padding: 80px 48px 96px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 40px; flex-wrap: wrap;
      position: relative; z-index: 1;
    }
    @media (max-width: 900px) {
      .closing__inner { padding: 56px 24px 72px; flex-direction: column; align-items: flex-start; }
    }
    .closing__label {
      display: inline-flex; align-items: center;
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.5);
      border: 1.5px solid rgba(255,255,255,.18);
      border-radius: 100px; padding: 5px 14px; margin-bottom: 18px;
    }
    .closing__text h2 {
      font-size: clamp(26px, 2.8vw, 40px);
      font-weight: 700; color: #fff;
      margin: 0 0 16px; letter-spacing: -.025em; line-height: 1.2;
    }
    .closing__text p {
      font-size: 15px; color: rgba(255,255,255,.52);
      line-height: 1.65; margin: 0; max-width: 440px;
    }
    .closing__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
    .closing .btn--primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      box-shadow: 0 4px 20px rgba(161,30,92,.4);
      font-size: 15px; padding: 15px 32px;
    }
    .closing__link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.6); text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); text-underline-offset: 3px; transition: color .15s; cursor: pointer; }
    .closing__link:hover { color: rgba(255,255,255,.88); }