    :root {
      /* Brand aligned with portal static/css/tokens.css (--color-brand-700) */
      --navy: #0c2e2a;
      --navy2: #134e4a;
      --ink: #1a2e2c;
      --ink2: #4a5c58;
      --ink3: #7a8f8c;
      --rule: #e2ebe9;
      --rule2: #c5d6d3;
      --bg: #FFFFFF;
      --bg2: #f4f9f8;
      --bg3: #ecf5f3;
      --blue: #0d6b63;
      --blue2: #0f5c56;
      --blue-lt: #e6f4f1;
      --blue-md: #a7d4cc;
      --green: #116846;
      --grn-lt: #e8f5ee;
      --amber: #854d0e;
      --amb-lt: #fdf6e8;
      --gold: #b8860b;
      --gold-lt: #d4a574;

      /* Typography */
      --font-family: 'Nunito Sans', sans-serif;
      --font-size-root: 18px;
      --font-size-2xs: .7rem;
      --font-size-xs: .72rem;
      --font-size-sm: .78rem;
      --font-size-sm-md: .8rem;
      --font-size-md: .82rem;
      --font-size-md-lg: .85rem;
      --font-size-base: .88rem;
      --font-size-base-lg: .92rem;
      --font-size-body: .95rem;
      --font-size-body-lg: 1rem;
      --font-size-lg: 1.02rem;
      --font-size-lg-md: 1.04rem;
      --font-size-xl: 1.05rem;
      --font-size-xl-md: 1.1rem;
      --font-size-2xl: 1.35rem;
      --font-size-price: 2.25rem;
      --font-size-h1: clamp(2rem, 4.5vw, 3rem);
      --font-size-h2: clamp(1.6rem, 3vw, 2.2rem);
      --font-size-h2-cta: clamp(1.6rem, 3vw, 2.4rem);
      --font-weight-semibold: 600;
      --font-weight-bold: 700;
      --font-weight-extrabold: 800;
      --font-weight-black: 900;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-family);
      font-size: var(--font-size-root);
      line-height: 1.5;
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none
    }

    .wrap {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 2rem
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(12, 46, 42, .96);
      backdrop-filter: blur(14px);
    }

    .nav-in {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 58px;
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .logo {
      font-weight: var(--font-weight-black);
      font-size: var(--font-size-2xl);
      letter-spacing: -.025em;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-right: auto;
    }

    .logo svg,
    .logo img,
    .logo .cno-logo-wrap {
      width: 40px;
      height: 40px;
      flex-shrink: 0
    }

    .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none
    }

    .nav-links a {
      font-size: var(--font-size-base-lg);
      font-weight: var(--font-weight-semibold);
      color: rgba(255, 255, 255, .5);
      transition: color .15s;
    }

    .nav-links a:hover {
      color: #fff
    }

    .nav-btn-ghost {
      padding: .38rem .9rem;
      font-size: var(--font-size-base-lg);
      font-weight: var(--font-weight-bold);
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, .2);
      border-radius: 7px;
      color: rgba(255, 255, 255, .55);
      cursor: pointer;
      font-family: var(--font-family);
      transition: all .15s;
    }

    .nav-btn-ghost:hover {
      border-color: rgba(255, 255, 255, .4);
      color: #fff
    }

    .nav-btn-cta {
      padding: .4rem 1rem;
      font-size: var(--font-size-base-lg);
      font-weight: var(--font-weight-bold);
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: 7px;
      cursor: pointer;
      font-family: var(--font-family);
      transition: all .15s;
    }

    .nav-btn-cta:hover {
      background: var(--blue2);
      transform: translateY(-1px)
    }

    a.nav-btn-ghost,
    a.nav-btn-cta,
    a.btn-hero,
    a.btn-hero-ghost {
      display: inline-block;
      text-align: center;
    }

    /* HERO */
    #hero {
      background: var(--navy);
      padding: calc(58px + 4rem) 0 4rem;
      position: relative;
      overflow: hidden;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: -180px;
      right: -120px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(13, 107, 99, .22) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-center {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 2.5rem
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .65);
      padding: 4px 12px;
      border-radius: 100px;
      font-size: var(--font-size-sm-md);
      font-weight: var(--font-weight-bold);
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    #hero h1 {
      font-size: var(--font-size-h1);
      font-weight: var(--font-weight-black);
      line-height: 1.08;
      letter-spacing: -.035em;
      color: #fff;
      margin-bottom: .75rem;
    }

    #hero h1 em {
      font-style: normal;
      color: var(--gold-lt)
    }

    .hero-p {
      font-size: var(--font-size-xl-md);
      color: rgba(255, 255, 255, .88);
      margin-bottom: 1.5rem;
    }

    .hero-btns {
      display: flex;
      gap: .65rem;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn-hero {
      padding: .75rem 1.6rem;
      font-size: var(--font-size-lg);
      font-weight: var(--font-weight-bold);
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: 9px;
      cursor: pointer;
      font-family: var(--font-family);
      transition: all .15s;
    }

    .btn-hero:hover {
      background: var(--blue2);
      transform: translateY(-2px)
    }

    .btn-hero-ghost {
      padding: .75rem 1.35rem;
      font-size: var(--font-size-lg);
      font-weight: var(--font-weight-semibold);
      background: rgba(255, 255, 255, .07);
      border: 1.5px solid rgba(255, 255, 255, .14);
      color: rgba(255, 255, 255, .7);
      border-radius: 9px;
      cursor: pointer;
      font-family: var(--font-family);
      transition: all .15s;
    }

    .btn-hero-ghost:hover {
      background: rgba(255, 255, 255, .12);
      color: #fff
    }

    /* Main flow diagram */
    .flow-diagram {
      background: rgba(255, 255, 255, .04);
      border: 1.5px solid rgba(255, 255, 255, .1);
      border-radius: 18px;
      padding: 1.75rem 1.5rem 1.25rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .flow-diagram svg {
      width: 100%;
      height: auto;
      display: block
    }

    .stat-pills {
      display: flex;
      justify-content: center;
      gap: .75rem;
      flex-wrap: wrap;
      margin-top: 1.25rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-pill {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: .45rem .9rem;
      border-radius: 100px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    .stat-pill strong {
      font-size: var(--font-size-xl);
      font-weight: var(--font-weight-extrabold);
      color: #fff
    }

    .stat-pill span {
      font-size: var(--font-size-md);
      font-weight: var(--font-weight-semibold);
      color: rgba(255, 255, 255, .4)
    }

    /* PLATFORMS */
    #platforms {
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--rule);
      background: var(--bg2);
    }

    .plat-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap
    }

    .plat-tag {
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-bold);
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--ink3);
    }

    .plat-names {
      display: flex;
      gap: 1.75rem;
      flex-wrap: wrap
    }

    .plat-n {
      font-size: var(--font-size-body);
      font-weight: var(--font-weight-bold);
      color: var(--ink2)
    }

    /* SECTIONS */
    .sec {
      padding: 4.5rem 0
    }

    .sec-alt {
      background: var(--bg2)
    }

    .tag {
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-extrabold);
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--blue);
      display: block;
      margin-bottom: .5rem;
      text-align: center;
    }

    h2 {
      font-size: var(--font-size-h2);
      font-weight: var(--font-weight-black);
      line-height: 1.12;
      letter-spacing: -.03em;
      color: var(--ink);
      margin-bottom: .5rem;
      text-align: center;
    }

    .sec-sub {
      font-size: var(--font-size-lg-md);
      color: var(--ink2);
      text-align: center;
      max-width: 420px;
      margin: 0 auto 2.5rem;
    }

    /* 3 steps — visual */
    .steps-flow {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      position: relative;
    }

    .steps-flow::before {
      content: '';
      position: absolute;
      top: 52px;
      left: calc(16.66% + 1rem);
      right: calc(16.66% + 1rem);
      height: 2px;
      background: var(--rule);
      z-index: 0;
    }

    .step-card {
      background: var(--bg);
      border: 1.5px solid var(--rule);
      border-radius: 14px;
      padding: 1.25rem;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .step-card:hover {
      border-color: var(--blue-md);
      box-shadow: 0 8px 24px rgba(13, 107, 99, .1)
    }

    .step-badge {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--blue);
      color: #fff;
      font-size: var(--font-size-md-lg);
      font-weight: var(--font-weight-extrabold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .75rem;
    }

    .step-illus {
      width: 100%;
      height: 188px;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .step-illus svg {
      width: 100%;
      max-height: 188px;
      overflow: visible;
    }

    .step-title {
      font-size: var(--font-size-lg-md);
      font-weight: var(--font-weight-extrabold);
      color: var(--ink);
      margin-bottom: .25rem
    }

    .step-line {
      align-self: stretch;
      width: 100%;
      font-size: var(--font-size-base);
      color: var(--ink2);
      line-height: 1.45;
      text-align: start;
      margin: 0;
      padding-inline-start: 1.15em;
      list-style: disc outside
    }

    .step-line li {
      margin-bottom: .25rem;
      padding-inline-start: .15em
    }

    .step-line li:last-child {
      margin-bottom: 0
    }

    /* Feature diagrams */
    .feat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    .feat-card {
      background: var(--bg);
      border: 1.5px solid var(--rule);
      border-radius: 14px;
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
    }

    .feat-card.wide {
      grid-column: span 2
    }

    .feat-card.center {
      grid-column: 1 / -1;
      width: calc((100% - 1rem) / 2);
      justify-self: center
    }

    .feat-card:hover {
      border-color: var(--blue-md)
    }

    .feat-head {
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-bottom: .75rem
    }

    .feat-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      flex-shrink: 0;
      background: var(--blue-lt);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feat-title {
      font-size: var(--font-size-body-lg);
      font-weight: var(--font-weight-extrabold);
      color: var(--ink)
    }

    .feat-sub {
      font-size: var(--font-size-md);
      color: var(--ink3);
      margin-top: 1px
    }

    .feat-diagram {
      flex: 1;
      min-height: 155px;
      background: var(--bg2);
      border-radius: 10px;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .feat-diagram svg {
      width: 100%;
      max-height: 165px;
      overflow: visible;
    }

    .feat-card.wide .feat-diagram {
      min-height: 300px;
      padding: 1.25rem 1rem
    }

    .feat-card.wide .feat-diagram svg {
      max-height: 320px
    }

    .feat-caption {
      margin-top: .6rem;
      font-size: var(--font-size-md);
      font-weight: var(--font-weight-semibold);
      color: var(--ink3);
      text-align: center;
    }

    /* Compare — visual bars */
    .cmp-legend {
      font-size: var(--font-size-sm);
      color: var(--ink3);
      margin: -.15rem 0 1rem;
      text-align: center;
    }

    .cmp-legend-y {
      color: var(--green);
    }

    .cmp-legend-p {
      color: var(--amber);
    }

    .cmp-legend-n {
      color: var(--ink3);
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .75rem;
    }

    .cmp-col {
      border: 1.5px solid var(--rule);
      border-radius: 12px;
      padding: 1rem .75rem;
      text-align: center;
      background: var(--bg);
    }

    .cmp-col.us {
      background: var(--blue-lt);
      border-color: var(--blue-md);
      transform: scale(1.03);
      box-shadow: 0 6px 20px rgba(13, 107, 99, .12);
    }

    .cmp-name {
      font-size: var(--font-size-md);
      font-weight: var(--font-weight-extrabold);
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--ink3);
      margin-bottom: .75rem;
      min-height: 2.2em;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cmp-col.us .cmp-name {
      color: var(--blue)
    }

    .cmp-col.us .cmp-val.y:not(.cost) {
      font-weight: var(--font-weight-extrabold);
    }

    .cmp-row {
      margin-bottom: .65rem
    }

    .cmp-divider {
      border-top: 1.5px solid var(--rule);
      margin: .5rem 0 .75rem;
    }

    .cmp-col.us .cmp-divider {
      border-top-color: var(--blue-md);
    }

    .cmp-label {
      font-size: var(--font-size-xs);
      font-weight: var(--font-weight-bold);
      color: var(--ink2);
      margin-bottom: 4px;
      text-align: left;
      line-height: 1.35;
    }

    .cmp-bar-wrap {
      height: 6px;
      background: var(--bg2);
      border-radius: 3px;
      overflow: hidden;
    }

    .cmp-bar {
      height: 100%;
      border-radius: 3px;
      transition: width 1s ease
    }

    .cmp-bar.yes {
      background: var(--green);
      width: 100%;
    }

    .cmp-bar.partial {
      background: var(--amber);
      width: var(--cmp-pct, 50%);
    }

    .cmp-bar.no {
      background: var(--rule2);
      width: 0%;
      min-width: 0;
    }

    .cmp-val {
      font-size: var(--font-size-xs);
      font-weight: var(--font-weight-bold);
      margin-top: 3px;
      text-align: left;
      line-height: 1.35;
    }

    .cmp-val.y {
      color: var(--green)
    }

    .cmp-val.p {
      color: var(--amber)
    }

    .cmp-val.n {
      color: var(--ink3)
    }

    .cmp-row-cost .cmp-bar-wrap {
      height: 8px;
    }

    .cmp-bar.cost-low {
      background: var(--green);
      width: 16%;
    }

    .cmp-bar.cost-med {
      background: var(--amber);
      width: 30%;
    }

    .cmp-bar.cost-mid {
      background: var(--amber);
      width: 58%;
    }

    .cmp-bar.cost-high {
      background: #c45c4a;
      width: 92%;
    }

    .cmp-bar.setup-none {
      background: var(--green);
      width: 8%;
    }

    .cmp-bar.setup-low {
      background: var(--rule2);
      width: 18%;
    }

    .cmp-bar.setup-high {
      background: #c45c4a;
      width: 88%;
    }

    .cmp-val.cost {
      font-size: var(--font-size-sm);
      line-height: 1.35;
    }

    .cmp-val.cost strong {
      font-weight: var(--font-weight-extrabold);
    }

    .cmp-save {
      display: block;
      margin: 0 0 .5rem;
      color: var(--blue);
      font-size: var(--font-size-xl);
      font-weight: var(--font-weight-extrabold);
      line-height: 1.35;
    }

    .cmp-save:empty {
      display: none;
    }

    .cmp-cxml-note {
      margin-top: 1.75rem;
    }

    .cmp-slider-wrap {
      margin-top: 1.75rem;
      padding: 1.25rem 1.5rem;
      background: var(--bg2);
      border: 1.5px solid var(--rule);
      border-radius: 14px;
      text-align: center;
    }

    .cmp-slider-head {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      flex-wrap: wrap;
      margin-bottom: .65rem;
    }

    .cmp-slider-label {
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-extrabold);
      color: var(--ink);
    }

    .cmp-slider-val {
      font-size: var(--font-size-2xl);
      font-weight: var(--font-weight-black);
      color: var(--blue);
      min-width: 2ch;
    }

    .cmp-slider {
      width: min(420px, 100%);
      height: 6px;
      margin: 0 auto .5rem;
      accent-color: var(--blue);
      cursor: pointer;
    }

    .cmp-slider-hint {
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-semibold);
      color: var(--ink3);
    }

    .cmp-bar.cmp-dynamic {
      transition: width .35s ease;
    }

    .cmp-total {
      margin-top: .5rem;
      padding-top: .65rem;
      border-top: 1.5px solid var(--rule);
      text-align: left;
    }

    .cmp-col.us .cmp-total {
      border-top-color: var(--blue-md);
    }

    .cmp-total .cmp-label {
      font-size: var(--font-size-sm-md);
      font-weight: var(--font-weight-extrabold);
      color: var(--ink);
      margin-bottom: 5px;
    }

    .cmp-col.us .cmp-total .cmp-label {
      color: var(--blue);
    }

    .cmp-total .cmp-val.cost strong {
      font-size: var(--font-size-base);
    }

    /* Pricing — compact */
    .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      align-items: start
    }

    .pbox {
      background: var(--bg);
      border: 1.5px solid var(--rule);
      border-radius: 14px;
      padding: 1.5rem;
      text-align: center;
    }

    .pbox.featured {
      background: var(--navy);
      border-color: var(--navy)
    }

    .ptier {
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-extrabold);
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink3);
      margin-bottom: .5rem;
    }

    .pbox.featured .ptier {
      color: rgba(255, 255, 255, .4)
    }

    .pamt {
      font-size: var(--font-size-price);
      font-weight: var(--font-weight-black);
      line-height: 1;
      letter-spacing: -.04em;
      color: var(--ink);
    }

    .pbox.featured .pamt {
      color: #fff
    }

    .pper {
      font-size: var(--font-size-base);
      color: var(--ink3);
      margin: .2rem 0 .75rem
    }

    .pbox.featured .pper {
      color: rgba(255, 255, 255, .4)
    }

    .pbullets {
      list-style: none;
      text-align: left;
      margin-bottom: 1rem
    }

    .pbullets li {
      font-size: var(--font-size-base);
      color: var(--ink2);
      padding: .3rem 0;
      display: flex;
      align-items: center;
      gap: .4rem;
    }

    .pbullets li::before {
      content: '✓';
      color: var(--green);
      font-weight: var(--font-weight-extrabold);
      font-size: var(--font-size-2xs)
    }

    .pbox.featured .pbullets li {
      color: rgba(255, 255, 255, .7)
    }

    .pbox.featured .pbullets li::before {
      color: var(--gold-lt)
    }

    .pcta {
      display: block;
      width: 100%;
      padding: .65rem;
      font-size: var(--font-size-base-lg);
      font-weight: var(--font-weight-bold);
      font-family: var(--font-family);
      border-radius: 8px;
      cursor: pointer;
      transition: all .15s;
      border: none;
    }

    .pcta-pri {
      background: var(--blue);
      color: #fff
    }

    .pcta-pri:hover {
      background: var(--blue2)
    }

    .pcta-out {
      background: transparent;
      border: 1.5px solid var(--rule);
      color: var(--ink2)
    }

    .pcta-out:hover {
      background: var(--bg2)
    }

    .pcta-wht {
      background: #fff;
      color: var(--navy)
    }

    .pcta-wht:hover {
      opacity: .9
    }

    /* CTA */
    #cta {
      padding: 5rem 0;
      background: var(--navy);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(13, 107, 99, .22) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-h2 {
      font-size: var(--font-size-h2-cta);
      font-weight: var(--font-weight-black);
      letter-spacing: -.03em;
      color: #fff;
      margin-bottom: .5rem;
    }

    .cta-sub {
      font-size: var(--font-size-body-lg);
      color: rgba(255, 255, 255, .5);
      margin-bottom: 1.5rem
    }

    .cta-form {
      display: flex;
      gap: .6rem;
      max-width: 400px;
      margin: 0 auto;
      flex-wrap: wrap;
      justify-content: center;
    }

    .cta-in {
      flex: 1;
      min-width: 180px;
      padding: .7rem 1rem;
      font-size: var(--font-size-body-lg);
      font-family: var(--font-family);
      background: rgba(255, 255, 255, .07);
      border: 1.5px solid rgba(255, 255, 255, .14);
      border-radius: 8px;
      color: #fff;
      outline: none;
    }

    .cta-in::placeholder {
      color: rgba(255, 255, 255, .3)
    }

    .cta-go {
      padding: .7rem 1.25rem;
      font-size: var(--font-size-body-lg);
      font-weight: var(--font-weight-bold);
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-family: var(--font-family);
    }

    .cta-fine {
      margin-top: .65rem;
      font-size: var(--font-size-md);
      color: rgba(255, 255, 255, .3)
    }

    .lead-modal-thanks {
      text-align: center;
      padding: .5rem 0 1rem;
    }

    .lead-modal-thanks-title {
      font-size: 1.25rem;
      font-weight: var(--font-weight-black);
      color: var(--ink);
      margin-bottom: .5rem;
      letter-spacing: -.02em;
    }

    .lead-modal-thanks-sub {
      font-size: var(--font-size-body);
      color: var(--ink3);
      margin: 0;
    }

    .lead-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .lead-modal[hidden] {
      display: none;
    }

    .lead-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 18, 32, .72);
      backdrop-filter: blur(4px);
    }

    .lead-modal-dialog {
      position: relative;
      z-index: 1;
      width: min(100%, 480px);
      max-height: calc(100vh - 2rem);
      overflow-y: auto;
      background: #fff;
      border-radius: 14px;
      padding: 1.5rem 1.35rem 1.25rem;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
    }

    .lead-modal-close {
      position: absolute;
      top: .75rem;
      right: .85rem;
      z-index: 2;
      border: none;
      background: transparent;
      font-size: 1.5rem;
      line-height: 1;
      color: var(--ink3);
      cursor: pointer;
    }

    .lead-modal-title {
      font-size: 1.25rem;
      font-weight: var(--font-weight-black);
      color: var(--ink);
      margin-bottom: .35rem;
      letter-spacing: -.02em;
    }

    .lead-modal-sub {
      font-size: var(--font-size-body);
      color: var(--ink3);
      margin-bottom: 1rem;
    }

    .lead-modal-form {
      display: flex;
      flex-direction: column;
      gap: .85rem;
    }

    .lead-field {
      display: flex;
      flex-direction: column;
      gap: .35rem;
      font-size: var(--font-size-sm);
      font-weight: var(--font-weight-semibold);
      color: var(--ink2);
    }

    .lead-field input,
    .lead-field textarea {
      font: inherit;
      font-weight: var(--font-weight-normal);
      padding: .65rem .75rem;
      border: 1.5px solid rgba(15, 23, 42, .12);
      border-radius: 8px;
      color: var(--ink);
      background: #fff;
    }

    .lead-field textarea {
      resize: vertical;
      min-height: 96px;
    }

    .lead-optional {
      font-weight: var(--font-weight-medium);
      color: var(--ink3);
    }

    .lead-modal-error {
      font-size: var(--font-size-body);
      color: #b42318;
      margin: 0;
    }

    .lead-modal-actions {
      display: flex;
      gap: .6rem;
      justify-content: flex-end;
      flex-wrap: wrap;
      margin-top: .25rem;
    }

    .lead-modal-skip,
    .lead-modal-submit {
      font-family: var(--font-family);
      font-size: var(--font-size-body);
      font-weight: var(--font-weight-bold);
      border-radius: 8px;
      padding: .65rem 1rem;
      cursor: pointer;
      border: none;
    }

    .lead-modal-skip {
      background: rgba(15, 23, 42, .06);
      color: var(--ink2);
    }

    .lead-modal-submit {
      background: var(--blue);
      color: #fff;
    }

    .lead-modal-submit:disabled,
    .cta-go:disabled {
      opacity: .65;
      cursor: not-allowed;
    }

    /* Footer */
    footer {
      padding: 2rem 0;
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, .06)
    }

    .foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem
    }

    .foot-logo {
      font-weight: var(--font-weight-black);
      font-size: var(--font-size-xl);
      color: rgba(255, 255, 255, .6)
    }

    .foot-links {
      display: flex;
      gap: 1.5rem;
      list-style: none
    }

    .foot-links a {
      font-size: var(--font-size-base);
      font-weight: var(--font-weight-semibold);
      color: rgba(255, 255, 255, .35)
    }

    .foot-copy {
      font-size: var(--font-size-md);
      color: rgba(255, 255, 255, .22)
    }

    /* Animations */
    @keyframes pulse {

      0%,
      100% {
        opacity: .4
      }

      50% {
        opacity: 1
      }
    }

    @keyframes dash {
      to {
        stroke-dashoffset: -20
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-4px)
      }
    }

    .anim-pulse {
      animation: pulse 2s ease infinite
    }

    .anim-float {
      animation: float 3s ease-in-out infinite
    }

    .flow-line {
      stroke-dasharray: 6 5;
      animation: dash 4s linear infinite
    }

    @media(max-width:800px) {
      .steps-flow {
        grid-template-columns: 1fr
      }

      .steps-flow::before {
        display: none
      }

      .feat-grid,
      .compare-grid,
      .pricing {
        grid-template-columns: 1fr
      }

      .feat-card.wide {
        grid-column: span 1
      }

      .feat-card.center {
        width: 100%;
        justify-self: stretch
      }

      .cmp-col.us {
        transform: none
      }

      .nav-links {
        display: none
      }
    }

    /* Error pages (marketing/404.html, 403, 500) */
    .error-page-body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .error-page-main {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 7rem 2rem 3rem;
    }

    .error-page-code {
      font-size: clamp(4rem, 12vw, 6rem);
      font-weight: var(--font-weight-black);
      line-height: 1;
      color: var(--rule2);
      letter-spacing: -.04em;
    }

    .error-page-title {
      margin-top: 1rem;
      font-size: var(--font-size-h2);
      font-weight: var(--font-weight-black);
      color: var(--ink);
      letter-spacing: -.02em;
    }

    .error-page-message {
      margin-top: 1rem;
      max-width: 28rem;
      font-size: var(--font-size-body-lg);
      color: var(--ink2);
      line-height: 1.6;
    }

    .error-page-actions {
      margin-top: 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      justify-content: center;
    }

    .error-page-footer {
      padding: 2rem;
      text-align: center;
      font-size: var(--font-size-base-lg);
      font-weight: var(--font-weight-semibold);
      color: var(--ink3);
      border-top: 1px solid var(--rule);
    }

    .error-page-footer a:hover {
      color: var(--blue);
    }

    /* Legal pages (marketing/legal_document.html) */
    .legal-page-body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: var(--bg);
      color: var(--ink);
    }

    .legal-page-main {
      flex: 1;
      padding: 6.5rem 2rem 4rem;
      max-width: 48rem;
      margin: 0 auto;
      width: 100%;
    }

    .legal-page-meta {
      font-size: var(--font-size-sm);
      color: var(--ink3);
      margin-bottom: 1.5rem;
    }

    .legal-page-body .legal-document h1,
    .legal-page-body .legal-document h2,
    .legal-page-body .legal-document h3,
    .legal-page-body .legal-document p,
    .legal-page-body .legal-document li,
    .legal-page-body .legal-document th,
    .legal-page-body .legal-document td,
    .legal-page-body .legal-document strong {
      color: var(--ink);
    }

    .legal-page-body .legal-document h1 {
      font-size: var(--font-size-2xl);
      font-weight: var(--font-weight-black);
      line-height: 1.2;
      letter-spacing: -.02em;
      margin: 0 0 1rem;
      text-align: left;
    }

    .legal-page-body .legal-document h2 {
      font-size: var(--font-size-xl-md);
      font-weight: var(--font-weight-extrabold);
      margin: 2rem 0 0.75rem;
      text-align: left;
    }

    .legal-page-body .legal-document h3 {
      font-size: var(--font-size-xl);
      font-weight: var(--font-weight-bold);
      margin: 1.5rem 0 0.5rem;
      text-align: left;
    }

    .legal-page-body .legal-document p,
    .legal-page-body .legal-document li {
      font-size: var(--font-size-body);
      line-height: 1.625;
      color: var(--ink2);
    }

    .legal-page-body .legal-document a {
      color: var(--blue);
      text-decoration: underline;
    }

    .legal-page-body .legal-document a:hover {
      color: var(--blue2);
    }

    .legal-page-body .legal-document .legal-table {
      font-size: var(--font-size-base);
      width: 100%;
      border-collapse: collapse;
      margin: 1rem 0;
    }

    .legal-page-body .legal-document .legal-table th,
    .legal-page-body .legal-document .legal-table td {
      border: 1px solid var(--rule);
      padding: 0.5rem 0.75rem;
      text-align: left;
      vertical-align: top;
      color: var(--ink2);
    }

    .legal-page-body .legal-document .legal-table th {
      color: var(--ink);
      font-weight: var(--font-weight-bold);
    }

    .legal-page-body .legal-document ul {
      margin: 0.75rem 0;
      padding-left: 1.5rem;
      list-style: disc;
    }

    .legal-page-body .legal-document hr {
      margin: 1.5rem 0;
      border: none;
      border-top: 1px solid var(--rule);
    }

    .legal-page-body .legal-document code {
      font-size: var(--font-size-sm);
      background: var(--bg2);
      padding: 0.1rem 0.35rem;
      border-radius: 4px;
      color: var(--ink);
    }

    .legal-page-footer {
      padding: 2rem 0;
      background: var(--bg2);
      border-top: 1px solid var(--rule);
    }

    .legal-page-footer .foot-logo {
      color: var(--ink);
    }

    .legal-page-footer .foot-links a {
      color: var(--ink3);
    }

    .legal-page-footer .foot-links a:hover {
      color: var(--blue);
    }

    .legal-page-footer .foot-copy {
      color: var(--ink3);
    }
