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

    /* ── Tokens ── */
    

    /* ── 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--ghost-white { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.28); }
    .btn--ghost-white:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }

    /* ══════════════════════════════════════════
       SUBNAV
    ══════════════════════════════════════════ */
    .subnav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .subnav__inner {
      max-width: 1140px; margin: 0 auto; padding: 0 48px;
      height: 64px; display: flex; align-items: center;
    }
    @media (max-width: 768px) { .subnav__inner { padding: 0 24px; } }
    .subnav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; margin-right: 40px; }
    .subnav__logo svg { height: 27px; width: auto; display: block; }
    .subnav__items { display: flex; align-items: center; }
    @media (max-width: 640px) { .subnav__items { overflow-x: auto; } }
    .nav-item {
      padding: 0 20px; height: 64px;
      display: flex; align-items: center;
      font-size: 13.5px; font-weight: 500;
      color: var(--muted); text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: color .15s; white-space: nowrap;
    }
    .nav-item:hover { color: var(--navy); }
    .nav-item.active { color: var(--rose); border-bottom-color: var(--rose); font-weight: 600; }

    /* ══════════════════════════════════════════
       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,.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 95% 0%,  rgba(255,255,255,.1) 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 {
      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: 960px) { .hero__inner { grid-template-columns: 1fr; } .hero__visual { display: none; } }
    @media (max-width: 768px) { .hero__inner { padding: 80px 24px 72px; } }

    .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: 28px;
    }
    .hero__tag-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.9); flex-shrink: 0; }
    .hero__title {
      font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 800; line-height: 1.08; letter-spacing: -.04em;
      color: #fff; margin: 0 0 24px;
    }
    .hero__sub {
      font-size: clamp(15px, 1.5vw, 17px); line-height: 1.76;
      color: rgba(255,255,255,.78); max-width: 520px; margin: 0;
    }

    /* Hero image */
    .hero__visual {
      display: flex; justify-content: flex-end; align-items: center;
      pointer-events: none;
      margin-right: -160px;
      margin-bottom: -120px;
      align-self: center;
    }
    .hero__img {
      width: 100%;
      max-width: 1100px;
      height: auto;
      display: block;
      object-fit: contain;
      object-position: center right;
      filter: drop-shadow(0 40px 80px rgba(0,0,0,.3));
    }
    @media (max-width: 960px) { .hero__visual { display: none; } }

    /* ══════════════════════════════════════════
       SHARED SECTION UTILITIES
    ══════════════════════════════════════════ */
    .section { padding: var(--pad) 0; }
    .section--surface { background: var(--surface); }

    .eyebrow {
      display: inline-flex; align-items: center;
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--rose);
      border: 1.5px solid rgba(186,83,95,.3);
      border-radius: 100px;
      padding: 5px 14px; margin-bottom: 18px;
    }
    .eyebrow--teal { color: var(--teal); border-color: rgba(1,182,177,.3); }

    .section__h2 {
      font-size: 32px; font-weight: 700;
      color: #0a0f1e; margin-bottom: 28px;
      line-height: 1.2; letter-spacing: -.02em;
    }
    .section__h2--white { color: #fff; }

    /* ══════════════════════════════════════════
       S1 — WHAT IT DOES
       Split: lead left / 3 point-cards right
    ══════════════════════════════════════════ */
    .s-what__grid {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 56px;
      align-items: start;
    }
    @media (max-width: 920px) { .s-what__grid { grid-template-columns: 1fr; gap: 32px; } }

    .s-what__lead {
      font-size: 18px; font-weight: 500;
      color: var(--navy); line-height: 1.65;
      margin-bottom: 20px;
    }
    .s-what__body {
      font-size: 15.5px; line-height: 1.82;
      color: var(--muted);
    }
    .s-what__body p { margin-bottom: 14px; }
    .s-what__body p:last-child { margin-bottom: 0; }

    .s-what__cards { display: flex; flex-direction: column; gap: 12px; }
    .s-what__card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px 24px;
      display: flex; align-items: flex-start; gap: 16px;
    }
    .s-what__card-num {
      font-size: 28px; font-weight: 800;
      letter-spacing: -.04em; line-height: 1;
      color: var(--border);
      flex-shrink: 0; width: 36px;
    }
    .s-what__card-text {
      font-size: 14px; line-height: 1.65;
      color: var(--muted);
    }

    /* ══════════════════════════════════════════
       S2 — WHY ECLIPSE EXISTS
       Foundation card style (from landing-v5)
    ══════════════════════════════════════════ */
    .why-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 4px 32px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
      padding: 52px 56px 60px;
    }
    .why-card__label {
      font-size: 22px; font-weight: 500;
      color: var(--navy); letter-spacing: -.02em;
      margin-bottom: 44px;
    }
    .why-cols {
      display: grid; grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto auto;
      column-gap: 48px; row-gap: 0;
    }
    .why-col { display: grid; grid-template-rows: subgrid; grid-row: span 3; }
    .why-col__num {
      font-size: 52px; font-weight: 300; line-height: 1;
      color: #c8c8c8; letter-spacing: -.03em;
      padding-bottom: 10px; align-self: start;
    }
    .why-col__title {
      font-size: clamp(22px, 2.2vw, 32px); font-weight: 800;
      line-height: 1.1; letter-spacing: -.03em;
      color: var(--navy); padding-bottom: 16px;
      text-transform: lowercase; align-self: start;
    }
    .why-col__text {
      font-size: 14px; color: var(--muted);
      line-height: 1.72; align-self: start;
    }
    @media (max-width: 780px) {
      .why-card { padding: 36px 28px 44px; }
      .why-cols { grid-template-columns: 1fr; gap: 36px; }
    }

    /* ══════════════════════════════════════════
       S3 — CORE CAPABILITIES
       Cloud-style image cards
    ══════════════════════════════════════════ */
    .cap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    @media (max-width: 860px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .cap-grid { grid-template-columns: 1fr; } }

    .cap-card {
      background: var(--rose);
      border-radius: 20px; overflow: hidden;
      min-height: 220px; position: relative;
      padding: 28px;
      display: flex; flex-direction: column; justify-content: flex-end;
      transition: box-shadow .2s, transform .2s;
    }
    .cap-card--teal { background: var(--teal-dark); }
    .cap-card:hover { box-shadow: 0 12px 40px rgba(10,15,30,.18); transform: translateY(-3px); }
    .cap-card__body { position: relative; z-index: 1; }
    .cap-card__title { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.3; margin: 0; }
    .cap-card__img {
      position: absolute; right: -20px; top: -12px;
      width: 60%; pointer-events: none;
    }
    .cap-card__img img { width: 100%; display: block; }

    /* ══════════════════════════════════════════
       S4 — CARD PROGRAM MODEL
       Text left + arch-stack right
    ══════════════════════════════════════════ */
    .s-model__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 860px) { .s-model__grid { grid-template-columns: 1fr; gap: 36px; } }

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

    .arch-stack { display: flex; flex-direction: column; }
    .arch-layer {
      padding: 20px 24px;
      display: flex; align-items: center; gap: 14px;
    }
    .arch-layer--top {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 14px 14px 0 0; border-bottom: none;
    }
    .arch-layer--highlight {
      background: var(--rose); z-index: 1;
      border-radius: 14px;
      box-shadow: 0 0 0 4px rgba(186,83,95,.14), 0 8px 24px rgba(186,83,95,.25);
      margin: 4px 0;
    }
    .arch-layer--bot {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 0 0 14px 14px; border-top: none;
    }
    .arch-layer__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .arch-layer--top .arch-layer__dot,
    .arch-layer--bot .arch-layer__dot { background: var(--subtle); }
    .arch-layer--highlight .arch-layer__dot { background: rgba(255,255,255,.7); }
    .arch-layer__label { font-size: 14px; font-weight: 700; flex: 1; }
    .arch-layer--top .arch-layer__label,
    .arch-layer--bot .arch-layer__label { color: var(--muted); }
    .arch-layer--highlight .arch-layer__label { color: #fff; }
    .arch-layer__tag {
      font-size: 10px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
      background: rgba(255,255,255,.2); color: #fff;
    }

    /* ══════════════════════════════════════════
       S5 — COMPLIANCE
       Text + teal callout right
    ══════════════════════════════════════════ */
    .s-compliance__grid {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 48px;
      align-items: center;
    }
    @media (max-width: 860px) { .s-compliance__grid { grid-template-columns: 1fr; } }

    .compliance-photo {
      position: relative; border-radius: 20px;
      overflow: hidden; min-height: 360px;
      position: sticky; top: 88px;
    }
    .compliance-photo img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      position: absolute; inset: 0;
    }
    .compliance-photo__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 32px;
    }
    .compliance-photo__title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.2; }
    .compliance-photo__text { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.82); margin: 0; }

    /* ══════════════════════════════════════════
       S6 — TECHNICAL INFRASTRUCTURE
       Checklist left + dark panel right
    ══════════════════════════════════════════ */
    .s-tech__grid {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 48px;
      align-items: start;
    }
    @media (max-width: 860px) { .s-tech__grid { grid-template-columns: 1fr; } }

    .checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0; }
    .checklist li {
      display: flex; align-items: flex-start; gap: 14px;
      font-size: 15px; font-weight: 500; color: var(--navy);
      line-height: 1.45; padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .checklist li:first-child { border-top: 1px solid var(--border); }
    .checklist__check {
      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: 10px; background-repeat: no-repeat; background-position: center;
    }
    .tech-panel {
      background: var(--navy); border-radius: 20px;
      padding: 28px; display: flex; flex-direction: column; gap: 10px;
      position: sticky; top: 88px;
    }
    .tech-panel__label {
      font-size: 10px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 6px;
    }
    .tech-badge {
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px; padding: 12px 16px;
    }
    .tech-badge__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .tech-badge__dot--teal { background: var(--teal); }
    .tech-badge__dot--rose { background: var(--rose); }
    .tech-badge__dot--dim { background: rgba(255,255,255,.3); }
    .tech-badge__text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.78); }
    .tech-panel__note {
      font-size: 12.5px; line-height: 1.65;
      color: rgba(255,255,255,.42); margin-top: 8px;
    }

    /* ══════════════════════════════════════════
       S7 — UNIFIED PLATFORM
       Connect cards with teal accents
    ══════════════════════════════════════════ */
    /* ══════════════════════════════════════════
       S7 — UNIFIED PLATFORM
       2-col: rose card grid left + image right
    ══════════════════════════════════════════ */
    .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__left {}
    .s-platform__intro {
      font-size: 15px; color: var(--muted); line-height: 1.7;
      margin-bottom: 20px;
    }
    .s-platform__box {
      background: var(--rose);
      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(--rose);
      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; } }

    /* ══════════════════════════════════════════
       S8 — OPERATIONAL IMPACT
       Full-bleed teal dark panel
    ══════════════════════════════════════════ */
    .s-impact {
      background: linear-gradient(135deg, #017b78 0%, #01b6b1 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,.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(0,0,0,.12) 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__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,.35); 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,.7); }

    /* ══════════════════════════════════════════
       S9 — WHO IT'S FOR
       Persona cards 1×4 square
    ══════════════════════════════════════════ */
    .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;
      display: flex; align-items: center; justify-content: center;
    }
    .persona-card__icon--1,
    .persona-card__icon--2,
    .persona-card__icon--3,
    .persona-card__icon--4 { background: #BA535F; }
    .persona-card__text { font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.5; padding-top: 0; margin-top: auto; }

    /* ══════════════════════════════════════════
       CLOSING CTA
    ══════════════════════════════════════════ */
    .closing {
      background: linear-gradient(140deg, #0a0f1e 0%, #160a20 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,.28) 0%, transparent 70%);
      pointer-events: none;
    }
    .closing__dots {
      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: 88px 48px 104px;
      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 { flex-direction: column; align-items: flex-start; padding: 56px 24px 72px; } }
    .closing__label {
      display: inline-flex; align-items: center;
      font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.45); border: 1.5px solid rgba(255,255,255,.18);
      border-radius: 8px; padding: 6px 16px; margin-bottom: 20px;
    }
    .closing__text h2 {
      font-size: clamp(24px, 2.8vw, 38px); font-weight: 800;
      color: #fff; margin: 0 0 0; letter-spacing: -.03em; line-height: 1.15;
    }
    .closing__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
    .closing .btn--primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--rose) 100%);
      box-shadow: 0 4px 20px rgba(161,30,92,.4);
      font-size: 15px; padding: 15px 32px;
    }
    .closing .btn--ghost-white { font-size: 15px; padding: 15px 32px; }