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

    

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

    .section { padding: var(--pad) 0; }
    .section--surface { background: var(--surface); }

    /* ── 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 .18s 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-d);
      box-shadow: 0 6px 20px rgba(161,30,92,.45);
      transform: translateY(-1px);
    }
    .btn--ghost-white {
      background: transparent; color: rgba(255,255,255,.8);
      border: 1.5px solid rgba(255,255,255,.22);
    }
    .btn--ghost-white:hover {
      border-color: rgba(255,255,255,.6); color: #fff;
      background: rgba(255,255,255,.07);
    }

    /* ── NAV ── */
    .nav {
      position: sticky; top: 0; z-index: 200;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav__inner {
      max-width: 1140px; margin: 0 auto; padding: 0 48px;
      height: 64px; display: flex; align-items: center;
      justify-content: space-between; gap: 32px;
    }
    .nav__logo { display: inline-flex; align-items: center; text-decoration: none; }
    .nav__logo svg { height: 28px; width: auto; display: block; }
    .nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav__links a {
      font-size: 14px; font-weight: 500; color: var(--muted);
      text-decoration: none; transition: color .2s;
    }
    .nav__links a:hover { color: var(--ink); }
    @media (max-width: 900px) { .nav__links { display: none; } .nav__inner { padding: 0 24px; } }

    /* ── SUBNAV ── */
    .subnav { background: var(--surface); border-bottom: 1px solid var(--border); }
    .subnav__inner {
      max-width: 1140px; margin: 0 auto; padding: 0 48px;
      height: 52px; display: flex; align-items: center; gap: 8px;
    }
    @media (max-width: 900px) {
      .subnav__inner { padding: 12px 24px; height: auto; overflow-x: auto; flex-wrap: nowrap; }
    }
    .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(--navy); border-color: var(--navy); color: #fff; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #a11e5c 0%, #BA535F 100%);
      position: relative; overflow: hidden;
    }
    .hero__glow {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 60% at 5% 100%, rgba(0,0,0,.18) 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(0,0,0,.1) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    .hero__inner {
      display: flex;
      align-items: center;
      padding-top: 96px;
      padding-bottom: 88px;
      padding-left: max(48px, calc((100vw - 1140px) / 2 + 48px));
      padding-right: 0;
      position: relative; z-index: 1;
      gap: 0;
    }
    @media (max-width: 900px) {
      .hero__inner {
        flex-direction: column;
        padding: 72px 24px 0;
        align-items: flex-start;
      }
    }
    .hero__text {
      flex: 0 0 52%;
      padding-right: 56px;
    }
    @media (max-width: 900px) {
      .hero__text {
        flex: none;
        width: 100%;
        padding-right: 0;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .hero__logo {
        width: min(72vw, 300px);
        height: auto;
        margin: 0 auto 28px;
      }
      .hero__title,
      .hero__sub {
        max-width: 620px;
      }
    }
    .hero__logo {
      display: block;
      height: 120px;
      width: auto;
      margin-bottom: 36px;
    }
    .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,.65);
      margin-bottom: 30px;
    }
    .hero__tag-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,.9); flex-shrink: 0;
    }
    .hero__title {
      font-size: clamp(32px, 3.8vw, 56px);
      font-weight: 800; line-height: 1.06; letter-spacing: -.04em;
      color: #fff; margin: 0 0 28px;
    }
    .hero__sub {
      font-size: clamp(15px, 1.5vw, 17px); line-height: 1.76;
      color: rgba(255,255,255,.78);
    }
    .hero__media {
      flex: 1;
      align-self: stretch;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      min-height: 360px;
    }
    .hero__media img {
      display: block;
      height: 100%;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: right bottom;
    }
    @media (max-width: 900px) {
      .hero__media { width: 100%; min-height: unset; justify-content: flex-start; }
      .hero__media img { height: auto; width: 100%; max-width: 480px; }
    }
    @media (max-width: 600px) { .hero__media { display: none; } }

    /* ── SECTION LABEL (eyebrow pill) ── */
    .section-label {
      display: inline-flex; align-items: center;
      font-size: 14px; font-weight: 600; letter-spacing: -.01em;
      color: var(--secondary);
      border: 1.5px solid rgba(186,83,95,.38);
      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: 32px;
      font-weight: 700;
      color: #0a0f1e;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    /* ── GATE (2-col card pair) ── */
    .gate {
      display: grid; grid-template-columns: 1fr 1fr;
      border-radius: 24px; overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 8px 48px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
    }
    @media (max-width: 860px) { .gate { grid-template-columns: 1fr; } }

    .gate__panel {
      padding: 56px 52px;
      display: flex; flex-direction: column;
    }
    @media (max-width: 600px) { .gate__panel { padding: 36px 28px; } }

    .gate__panel--light {
      background: #fff;
      border-right: 1px solid var(--border);
    }
    @media (max-width: 860px) { .gate__panel--light { border-right: none; border-bottom: 1px solid var(--border); } }

    .gate__panel--rose { background: #BA535F; }

    .gate__h2 {
      font-size: 28px; font-weight: 700; line-height: 1.2;
      margin-bottom: 24px; letter-spacing: -.02em;
    }
    .gate__panel--light  .gate__h2 { color: var(--navy); }
    .gate__panel--rose   .gate__h2 { color: #fff; }

    .gate__body p {
      font-size: 15px; line-height: 1.82; margin-bottom: 14px;
    }
    .gate__body p:last-child { margin-bottom: 0; }
    .gate__panel--light .gate__body p { color: var(--muted); }
    .gate__panel--rose  .gate__body p { color: rgba(255,255,255,.82); }

    /* ── BODY TEXT BLOCK ── */
    .body-block { max-width: 680px; }
    .body-block p {
      font-size: 15.5px; line-height: 1.82; color: var(--muted);
      margin-bottom: 16px;
    }
    .body-block p:last-child { margin-bottom: 0; }

    /* ── CAPABILITY GRID ── */
    .cap-grid {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 16px; margin-top: 32px;
    }
    @media (max-width: 780px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .cap-grid { grid-template-columns: 1fr; } }
    .cap-card {
      background: #E56675;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 28px;
      min-height: 176px;
    }
    .cap-card__title {
      font-size: 16px; font-weight: 700;
      color: #fff; line-height: 1.35;
      max-width: 55%;
      position: relative; z-index: 1;
    }
    .cap-card__img {
      position: absolute;
      bottom: 0;
      right: 0;
      height: 140px;
      width: auto;
      display: block;
    }
    .cap-card--top .cap-card__img {
      top: 0;
      bottom: auto;
      width: 100%;
      height: auto;
      display: block;
    }
    .cap-card--full .cap-card__img {
      top: 0;
      bottom: 0;
      height: 100%;
      width: auto;
    }

    /* ── 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: var(--secondary);
      border-radius: 24px; padding: 16px;
    }
    .s-platform__grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
    }
    .s-platform__card {
      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(0,0,0,.12); }
    a.s-platform__card { text-decoration: none; display: block; cursor: pointer; }
    .s-platform__card-icon { position: absolute; top: 12px; right: 12px; }
    .s-platform__card--full { grid-column: 1 / -1; }
    .s-platform__card-title {
      font-size: 18px; font-weight: 700;
      color: var(--navy); margin-bottom: 5px; line-height: 1.2;
    }
    .s-platform__card-text { font-size: 14px; color: var(--muted); line-height: 1.5; }
    .s-platform__note {
      font-size: 20px; font-weight: 700; color: var(--secondary);
      line-height: 1.4; margin-top: 24px; padding-right: 48px;
    }
    .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; } }

    /* ── ITEM LIST (bullet) ── */
    .item-list {
      list-style: none; padding: 0;
      max-width: 640px; display: flex; flex-direction: column;
    }
    .item-list li {
      display: flex; align-items: center; gap: 16px;
      font-size: 15px; font-weight: 500; color: var(--navy);
      padding: 14px 0; border-bottom: 1px solid var(--border);
      line-height: 1.45;
    }
    .item-list li:first-child { border-top: 1px solid var(--border); }
    .item-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--secondary); flex-shrink: 0;
    }

    /* ── DEPLOYMENT OPTIONS ── */
    .deploy-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 32px;
    }
    @media (max-width: 720px) { .deploy-grid { grid-template-columns: 1fr; } }
    .deploy-card {
      background: #fff; border-radius: 20px;
      padding: 40px 32px 32px;
      display: flex; flex-direction: column;
      min-height: 320px;
    }
    .deploy-card__illus {
      flex: 1; display: flex;
      align-items: flex-start; justify-content: flex-start;
      margin-bottom: 32px;
    }
    .deploy-card__illus img { max-height: 120px; width: auto; display: block; }
    .deploy-card__title {
      font-size: 20px; font-weight: 700;
      color: var(--navy); line-height: 1.3;
    }

    /* ── PERSONA CARDS (Who it's for) ── */
    .persona-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    @media (max-width: 860px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .persona-grid { grid-template-columns: 1fr; } }
    .persona-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 20px; padding: 28px;
      display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
      aspect-ratio: 1 / 1;
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .persona-card:hover { box-shadow: 0 10px 40px rgba(10,15,30,.08); transform: translateY(-3px); border-color: rgba(186,83,95,.22); }
    .persona-card__icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      background: #BA535F;
      display: flex; align-items: center; justify-content: center;
    }
    .persona-card__text { font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.5; margin-top: auto; }

    /* ── CLOSING CTA ── */
    .closing {
      background: linear-gradient(140deg, var(--navy) 0%, #160a20 100%);
      padding: 0; position: relative; overflow: hidden;
    }
    .closing::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(161,30,92,.28) 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__text h2 {
      font-size: clamp(26px, 2.8vw, 40px);
      font-weight: 700; color: #fff;
      margin: 0; letter-spacing: -.025em; line-height: 1.2;
    }
    .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;
    }