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: #white; color: var(--primary);
      box-shadow: 0 4px 18px rgba(0, 0, 0, .16);
      background: #fff;
    }
    .btn--white:hover {
      background: #f9f0f5;
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(0, 0, 0, .2);
    }

    /* ── SUB-NAV ── */
    .subnav { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky !important; top: 64px !important; z-index: 99 !important; }
    .subnav__inner {
      max-width: 1140px; margin: 0 auto; padding: 0 48px;
      height: 52px; display: flex; align-items: center; gap: 8px;
      flex-wrap: wrap;
    }
    @media (max-width: 900px) {
      .subnav__inner { padding: 12px 24px; height: auto; }
      .subnav__pill:not(.subnav__pill--active) { display: none; }
    }
    .subnav__label {
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--light);
      margin-right: 8px; white-space: nowrap;
    }
    .subnav__pill {
      font-size: 12.5px; font-weight: 600; padding: 6px 16px;
      border-radius: 100px; border: 1.5px solid var(--border);
      color: var(--muted); background: #fff;
      text-decoration: none; transition: all .18s;
      font-family: inherit; white-space: nowrap;
    }
    .subnav__pill:hover { border-color: var(--primary); color: var(--primary); }
    .subnav__pill--active { background: var(--primary); border-color: var(--primary); color: #fff; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #0f172a 0%, #BA535F 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 {
      max-width: 1140px;
      margin: 0 auto;
      padding: 100px 48px 96px;
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 580px) 1fr;
      align-items: center;
      gap: 48px;
    }
    @media (max-width: 900px) {
      .hero__inner {
        grid-template-columns: 1fr;
        padding: 80px 24px 72px;
        gap: 36px;
      }
    }
    .hero__text {
      /* In-flow grid item */
    }
    .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 {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      z-index: 2;
    }
    .hero__media img {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.28));
    }
    @media (max-width: 900px) {
      .hero__media {
        justify-content: center;
        width: 100%;
      }
      .hero__media img {
        max-width: 480px;
      }
    }

    /* ── UNDER-HERO ALIGNMENT BLOCK ── */
    .under-hero-note {
      background: rgba(161, 30, 92, 0.05);
      border: 1px solid rgba(161, 30, 92, 0.12);
      border-radius: 20px;
      padding: 32px;
      margin-top: 48px;
      font-size: 16px;
      line-height: 1.7;
      color: var(--navy);
      font-weight: 500;
    }
    .under-hero-note strong {
      color: var(--primary);
    }

    /* ── SECTION LABEL ── */
    .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 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%; }
    }

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

    .control-card {
      background: #white;
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 20px;
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .control-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 36px rgba(10, 15, 30, 0.08);
      border-color: rgba(161, 30, 92, 0.22);
    }
    .control-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;
    }
    .control-card__title {
      font-size: 19px; font-weight: 700; color: var(--navy); margin: 0;
      letter-spacing: -0.015em;
    }
    .control-card__desc {
      font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0;
    }

    /* ── VERTICAL USE CASE BADGES ── */
    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      background: rgba(10, 15, 30, 0.04);
      border: 1px solid var(--border);
    }
    .badge::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: var(--primary); margin-right: 8px;
    }

    /* ── 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;
    }

    /* ── TESTIMONIAL QUOTE BLOCK ── */
    .quote-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 80px 0;
    }
    .quote-box {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }
    .quote-box__mark {
      font-size: 120px;
      font-family: 'Red Hat Display', Georgia, serif;
      line-height: 1;
      color: rgba(161, 30, 92, 0.08);
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
      user-select: none;
    }
    .quote-box__text {
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.45;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .quote-box__author {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--primary);
    }
    .quote-box__title {
      font-size: 13px;
      color: var(--muted);
      margin-top: 4px;
    }

    /* ── SCALABLE CARD BLOCK ── */
    .scalable-box {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      border-radius: 24px;
      padding: 56px;
      color: #fff;
      position: relative;
      overflow: hidden;
      margin-top: 48px;
    }
    .scalable-box::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 100% 100%, rgba(161,30,92,0.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .scalable-box__tag {
      display: inline-flex; align-items: center;
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
      border: 1.5px solid rgba(255,255,255,0.22);
      border-radius: 100px; padding: 5px 14px; margin-bottom: 20px;
    }
    .scalable-box__title {
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800; letter-spacing: -0.02em;
      margin: 0 0 16px;
    }
    .scalable-box__desc {
      font-size: 16px; color: rgba(255,255,255,0.72);
      line-height: 1.7; margin: 0; max-width: 600px;
    }

    /* ── 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); }