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

    #landing {
      display: block;
      min-height: 100vh;
      background: #0a0c0f;
      color: #e8eaed;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
      overflow-x: clip;
    }

    #landing::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    #landing > *:not(nav) { position: relative; z-index: 1; }

    .lp-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 40px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: sticky;
      top: 0;
      background: rgba(10,12,15,0.92);
      backdrop-filter: blur(12px);
      z-index: 100;
    }

    .lp-nav__brand { display: flex; align-items: center; gap: 12px; }
    .lp-nav__logo { height: 55px; width: auto; }
    .lp-nav__name { font-size: 16px; font-weight: 600; color: #e8eaed; letter-spacing: 0.01em; display: none;}
    .lp-nav__by { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 400; }
    .lp-nav__actions { display: flex; align-items: center; gap: 16px; }

    .lp-nav__links { display: flex; align-items: center; gap: 4px; }
    .lp-nav__link {
      font-size: 13.2px;
      font-weight: 500;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      padding: 6.4px 12px;
      border-radius: 5px;
      transition: color 0.15s, background 0.15s;
    }
    .lp-nav__link:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.05); }

    body.light .lp-nav__link { color: rgba(0,0,0,0.45); }
    body.light .lp-nav__link:hover { color: rgba(0,0,0,0.8); background: rgba(0,0,0,0.05); }

    html { scroll-behavior: smooth; scroll-padding-top: 90px; }

    .lp-btn-ghost {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7);
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 12.8px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .lp-btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

    .lp-btn-primary {
      background: rgb(139, 21, 39);
      border: none;
      color: #fff;
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 12.8px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.1s;
    }
    .lp-btn-primary:hover { background: rgb(160, 28, 48); transform: translateY(-1px); }

    .lp-hero {
      padding: 80px 40px 64px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .lp-hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgb(144, 10, 32);
      background: rgba(139, 21, 39, 0.12);
      border: 1px solid rgba(139, 21, 39, 0.25);
      padding: 5.6px 12px;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .lp-hero__eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      background: rgb(144, 10, 32);
      border-radius: 50%;
    }

    .lp-hero__title {
      font-family: 'Roboto', -apple-system, sans-serif;
      font-size: 56px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: 1px;
      color: #f0f2f5;
      margin-bottom: 24px;
    }
    .lp-hero__title span { color: rgb(144, 10, 32); }

    .lp-hero__sub {
      font-size: 18px;
      line-height: 1.7;
      color: rgba(255,255,255,0.55);
      margin-bottom: 40px;
      max-width: 440px;
    }

    .lp-hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    .lp-btn-hero {
      background: rgb(139, 21, 39);
      border: none;
      color: #fff;
      padding: 13.6px 32px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
    }
    .lp-btn-hero:hover { background: rgb(160, 28, 48); transform: translateY(-1px); }

    .lp-hero__note { font-size: 12.8px; color: rgba(255,255,255,0.3); }

    .lp-mock {
      background: #13161a;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    }

    .lp-mock__bar {
      background: #0d0f12;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lp-mock__dot { width: 8px; height: 8px; border-radius: 50%; }
    .lp-mock__dot--r { background: rgba(255,95,87,0.6); }
    .lp-mock__dot--y { background: rgba(255,189,46,0.6); }
    .lp-mock__dot--g { background: rgba(40,200,64,0.6); }

    .lp-mock__url {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border-radius: 4px;
      padding: 4px 12px;
      font-size: 11.2px;
      color: rgba(255,255,255,0.25);
      text-align: center;
      margin: 0 8px;
    }

    .lp-mock__body { padding: 16px; }

    .lp-mock__phase {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .lp-mock__phase-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
    .lp-mock__phase-dot--active { background: rgb(139, 21, 39); }
    .lp-mock__phase-dot--past { background: rgba(255,255,255,0.4); }
    .lp-mock__phase-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
    .lp-mock__phase-line--past { background: rgba(255,255,255,0.3); }

    .lp-mock__badge {
      display: inline-block;
      padding: 3.2px 8px;
      border-radius: 4px;
      font-size: 10.4px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
      background: rgba(232, 65, 90, 0.15);
      color: rgb(232, 100, 120);
      border: 1px solid rgba(232, 65, 90, 0.25);
    }

    .lp-mock__sit {
      font-size: 11.5px;
      line-height: 1.6;
      color: rgba(255,255,255,0.55);
      margin-bottom: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 6px;
      padding: 12px;
    }

    .lp-mock__sit-label {
      font-size: 9.6px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgb(100, 160, 230);
      margin-bottom: 6.4px;
    }

    .lp-mock__choices { display: flex; flex-direction: column; gap: 6.4px; }

    .lp-mock__choice {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 8px 9.6px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 6px;
      font-size: 10.4px;
      color: rgba(255,255,255,0.5);
    }
    .lp-mock__choice--active {
      border-color: rgba(139, 21, 39, 0.4);
      background: rgba(139, 21, 39, 0.06);
    }

    .lp-mock__choice-id {
      width: 16px; height: 16px; min-width: 16px;
      background: rgba(255,255,255,0.08);
      border-radius: 3px;
      font-size: 9.6px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
    }
    .lp-mock__choice--active .lp-mock__choice-id { background: rgb(139, 21, 39); color: #fff; }
    .lp-mock__choice-text { color: rgba(255,255,255,0.7); }
    .lp-mock__choice-detail { color: rgba(255,255,255,0.35); margin-top: 1px; }

    .lp-proof {
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 24px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .lp-proof__item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.8px;
      color: rgba(255,255,255,0.35);
    }

    .lp-proof__icon {
      width: 16px; height: 16px;
      background: rgba(139, 21, 39, 0.3);
      border-radius: 3px;
      display: flex; align-items: center; justify-content: center;
      font-size: 9.6px;
      color: rgb(144, 10, 32);
    }

    /* ── Regions strip ─────────────────────────────────────────── */
    .lp-regions {
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 24px 40px;
    }

    .lp-regions__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .lp-regions__label {
      font-size: 10.4px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .lp-regions__flags {
      display: flex;
      flex-wrap: wrap;
      gap: 6.4px;
    }

    .lp-regions__flag {
      display: flex;
      align-items: center;
      gap: 5.6px;
      font-size: 11.5px;
      color: rgba(255,255,255,0.75);
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 3.2px 9.6px;
      white-space: nowrap;
      transition: color 0.15s, border-color 0.15s;
    }
    .lp-regions__flag:hover {
      color: rgba(255,255,255,0.95);
      border-color: rgba(255,255,255,0.25);
    }

    body.light .lp-regions { border-bottom-color: rgba(0,0,0,0.07); }
    body.light .lp-regions__label { color: rgba(0,0,0,0.3); }
    body.light .lp-regions__flag { color: rgba(0,0,0,0.45); background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
    body.light .lp-regions__flag:hover { color: rgba(0,0,0,0.7); border-color: rgba(0,0,0,0.2); }

    @media (max-width: 900px) {
      .lp-regions { padding-left: 24px; padding-right: 24px; }
      .lp-regions__label { width: 100%; }
    }

    /* ── How it works ────────────────────────────────────────────── */
    .lp-how {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 80px 40px;
    }
    .lp-how__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .lp-how__steps { display: flex; flex-direction: column; gap: 0; }
    .lp-how__steps .lp-section-title { margin-bottom: 40px; }

    .lp-how__step {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .lp-how__step:last-child { border-bottom: none; }

    .lp-how__step-num {
      font-family: 'Roboto', -apple-system, sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: rgba(139,21,39,0.5);
      line-height: 1;
      min-width: 40px;
      padding-top: 2px;
    }
    .lp-how__step-title {
      font-size: 15.2px;
      font-weight: 600;
      color: #f0f2f5;
      margin-bottom: 5.6px;
    }
    .lp-how__step-desc {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }

    .lp-how__mockup {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
    }
    .lp-how__mockup-svg { display: block; width: 100%; height: auto; }

    @media (max-width: 900px) {
      .lp-how { padding: 48px 24px; }
      .lp-how__inner { grid-template-columns: 1fr; gap: 40px; }
      .lp-how__mockup { order: -1; }
    }

    /* ── Pricing ROI callout ─────────────────────────────────────── */
    .lp-pricing__roi {
      max-width: 680px;
      margin: 0 auto 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .lp-pricing__roi-stat {
      flex: 1;
      text-align: center;
      padding: 24px 32px;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      background: rgba(255,255,255,0.025);
    }
    .lp-pricing__roi-stat--ax {
      border-color: rgba(139,21,39,0.35);
      background: rgba(139,21,39,0.07);
    }
    .lp-pricing__roi-figure {
      font-family: 'Roboto', -apple-system, sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: rgba(255,255,255,0.55);
      line-height: 1;
      margin-bottom: 8px;
    }
    .lp-pricing__roi-stat--ax .lp-pricing__roi-figure {
      color: rgb(144, 10, 32);
    }
    .lp-pricing__roi-label {
      font-size: 12.8px;
      color: rgba(255,255,255,0.35);
      line-height: 1.5;
    }
    .lp-pricing__roi-stat--ax .lp-pricing__roi-label {
      color: rgba(255,255,255,0.5);
    }
    .lp-pricing__roi-divider {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.05em;
      padding: 0 16px;
      flex-shrink: 0;
    }

    body.light .lp-pricing__roi-stat { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.08); }
    body.light .lp-pricing__roi-stat--ax { background: rgba(139,21,39,0.05); border-color: rgba(139,21,39,0.2); }
    body.light .lp-pricing__roi-figure { color: rgba(0,0,0,0.4); }
    body.light .lp-pricing__roi-label { color: rgba(0,0,0,0.4); }
    body.light .lp-pricing__roi-stat--ax .lp-pricing__roi-label { color: rgba(0,0,0,0.55); }
    body.light .lp-pricing__roi-divider { color: rgba(0,0,0,0.2); }

    .lp-features {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 40px;
    }

    .lp-section-label {
      font-size: 11.2px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgb(144, 10, 32);
      margin-bottom: 16px;
    }

    .lp-section-title {
      font-family: 'Roboto', -apple-system, sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #f0f2f5;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .lp-section-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      max-width: 580px;
      margin-bottom: 48px;
    }

    .lp-features__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .lp-feature-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      padding: 28px;
      transition: border-color 0.2s;
    }
    .lp-feature-card:hover { border-color: rgba(139, 21, 39, 0.3); }

    .lp-feature-card__icon {
      width: 36px; height: 36px;
      background: rgba(139, 21, 39, 0.12);
      border: 1px solid rgba(139, 21, 39, 0.2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14.4px;
      margin-bottom: 20px;
    }

    .lp-feature-card__title { font-size: 16px; font-weight: 600; color: #e8eaed; margin-bottom: 8px; }
    .lp-feature-card__desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }

    .lp-scenarios {
      background: rgba(255,255,255,0.015);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 80px 40px;
    }

    .lp-scenarios__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .lp-scenarios__cards { display: flex; flex-direction: column; gap: 12px; }

    .lp-scenario-card {
      background: #13161a;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 8px;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 5.6px;
    }
    .lp-scenario-card--selected {
      border-color: rgba(139, 21, 39, 0.4);
      background: rgba(139, 21, 39, 0.04);
    }

    .lp-scenario-card__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .lp-sc-tag {
      font-size: 9.6px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 2.4px 8px;
      border-radius: 3px;
    }
    .lp-sc-tag--sector { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
    .lp-sc-tag--critical { background: rgba(232, 65, 90, 0.12); color: rgb(232, 100, 120); }
    .lp-sc-tag--high { background: rgba(255, 160, 50, 0.12); color: rgb(255, 170, 70); }

    .lp-scenario-card__incident { font-size: 9.6px; color: rgba(255,255,255,0.25); letter-spacing: 0.03em; }
    .lp-scenario-card__title { font-size: 13.6px; font-weight: 600; color: rgba(255,255,255,0.85); }
    .lp-scenario-card__apt { font-size: 11.2px; color: rgba(255,255,255,0.35); }
    .lp-scenario-card__apt span { color: rgb(144, 10, 32); }

    .lp-pricing { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }

    .lp-pricing__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }

    .lp-plan {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 32px;
      position: relative;
    }
    .lp-plan--featured {
      border-color: rgba(139, 21, 39, 0.4);
      background: rgba(139, 21, 39, 0.04);
    }

    .lp-plan__badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: rgb(139, 21, 39);
      color: #fff;
      font-size: 10.4px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .lp-plan__name {
      font-size: 12.8px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 16px;
    }

    .lp-plan__amount {
      font-family: 'Roboto', sans-serif;
      font-size: 40px;
      font-weight: 700;
      color: #f0f2f5;
    }

    .lp-plan__period { font-size: 13.6px; color: rgba(255,255,255,0.35); }
    .lp-plan__equiv { font-size: 12px; color: rgba(255,255,255,0.3); margin: 5.6px 0 24px; }
    .lp-plan__poa { font-size: 40px; font-weight: 700; color: #f0f2f5; font-family: 'Roboto', sans-serif; }
    .lp-plan__poa-sub { font-size: 12px; color: rgba(255,255,255,0.3); margin: 5.6px 0 24px; }
    .lp-plan__divider { height: 1px; background: rgba(255,255,255,0.07); margin: 24px 0; }
    .lp-plan__features { display: flex; flex-direction: column; gap: 9.6px; }

    .lp-plan__feature {
      display: flex;
      align-items: flex-start;
      gap: 9.6px;
      font-size: 13.2px;
      color: rgba(255,255,255,0.6);
      line-height: 1.4;
    }
    .lp-plan__feature::before { content: '✓'; color: rgb(139, 21, 39); font-size: 11.2px; margin-top: 2px; flex-shrink: 0; }
    .lp-plan__feature--muted { color: rgba(255,255,255,0.25); }
    .lp-plan__feature--muted::before { color: rgba(255,255,255,0.15); content: '—'; }
    .lp-plan__feature--soon { color: rgba(255,255,255,0.4); }
    .lp-plan__feature--soon::before { content: '✓'; color: rgba(255,255,255,0.15); font-size: 11.2px; margin-top: 2px; flex-shrink: 0; }

    .lp-soon-tag {
      font-size: 10.4px;
      font-weight: 600;
      letter-spacing: 0.04em;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.3);
      padding: 1px 6px;
      border-radius: 3px;
      margin-left: 5px;
      white-space: nowrap;
    }

    .lp-plan__cta {
      width: 100%;
      padding: 12px;
      border-radius: 6px;
      font-size: 14.4px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 24px;
      transition: background 0.2s, transform 0.1s;
    }
    .lp-plan__cta--primary { background: rgb(139, 21, 39); color: #fff; border: none; }
    .lp-plan__cta--primary:hover { background: rgb(160, 28, 48); transform: translateY(-1px); }
    .lp-plan__cta--ghost { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.12); }
    .lp-plan__cta--ghost:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

    /* ── Demo CTA banner ────────────────────────────────────────────── */
    .lp-demo-cta {
      border-top: 1px solid rgba(255,255,255,0.14);
      border-bottom: 1px solid rgba(255,255,255,0.14);
      padding: 64px 40px;
      background: rgb(139, 21, 39);
    }
    .lp-demo-cta__inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .lp-demo-cta__text { max-width: 620px; }
    .lp-demo-cta__title {
      font-family: 'Roboto', -apple-system, sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: #f0f2f5;
      letter-spacing: -0.02em;
      margin: 8px 0 12px;
      line-height: 1.2;
    }
    .lp-demo-cta__sub {
      font-size: 15.2px;
      color: rgba(255,255,255,0.85);
      line-height: 1.65;
      margin: 0;
    }
    .lp-demo-cta__btn { flex-shrink: 0; white-space: nowrap; }
    /* On the solid-red banner: light label + a solid white button. */
    .lp-demo-cta .lp-section-label { color: rgba(255,255,255,0.7); }
    .lp-demo-cta .lp-demo-cta__btn {
      background: #ffffff;
      color: rgb(139, 21, 39);
    }
    .lp-demo-cta .lp-demo-cta__btn:hover {
      background: rgba(255,255,255,0.88);
    }

    @media (max-width: 900px) {
      .lp-demo-cta { padding: 48px 24px; }
      .lp-demo-cta__inner { flex-direction: column; align-items: flex-start; }
    }

    /* ── Demo request modal ──────────────────────────────────────────── */
    .lp-demo-modal__overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(4px);
      z-index: 1000;
      align-items: flex-start;
      justify-content: center;
      padding: 32px 24px;
      overflow-y: auto;
    }
    .lp-demo-modal__overlay.open { display: flex; }

    .lp-demo-modal {
      background: #13151a;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 36px;
      width: 100%;
      max-width: 480px;
      position: relative;
      margin: auto;
    }

    .lp-demo-modal__close {
      position: absolute;
      top: 17.6px;
      right: 17.6px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.35);
      cursor: pointer;
      padding: 4px;
      line-height: 1;
      transition: color 0.15s;
    }
    .lp-demo-modal__close:hover { color: rgba(255,255,255,0.8); }

    .lp-demo-modal__title {
      font-size: 20.8px;
      font-weight: 700;
      color: #f0f2f5;
      margin: 0 0 6.4px;
    }
    .lp-demo-modal__sub {
      font-size: 14.1px;
      color: rgba(255,255,255,0.4);
      margin: 0 0 28px;
    }

    .lp-demo-modal__form { display: flex; flex-direction: column; gap: 16px; }
    .lp-demo-modal__field { display: flex; flex-direction: column; gap: 5.6px; }
    .lp-demo-modal__label { font-size: 13.1px; font-weight: 600; color: rgba(255,255,255,0.6); }
    .lp-demo-modal__optional { font-weight: 400; color: rgba(255,255,255,0.3); }

    .lp-demo-modal__input {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 7px;
      padding: 10.4px 13.6px;
      font-size: 14.4px;
      color: #f0f2f5;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.15s;
      font-family: inherit;
    }
    .lp-demo-modal__input::placeholder { color: rgba(255,255,255,0.2); }
    .lp-demo-modal__input:focus { outline: none; border-color: rgba(139,21,39,0.6); }
    .lp-demo-modal__textarea { resize: vertical; min-height: 80px; }

    .lp-demo-modal__error {
      font-size: 13.3px;
      color: rgb(144, 10, 32);
      min-height: 1.2em;
    }
    .lp-demo-modal__submit { width: 100%; margin-top: 4px; }

    .lp-demo-modal__success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 24px 0 8px;
      gap: 12px;
    }
    .lp-demo-modal__success-title {
      font-size: 18.4px;
      font-weight: 700;
      color: #f0f2f5;
      margin: 0;
    }
    .lp-demo-modal__success-sub {
      font-size: 14.1px;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
      margin: 0;
    }

    .lp-cta { border-top: 1px solid rgba(255,255,255,0.06); padding: 80px 40px; text-align: center; }
    .lp-cta__inner { max-width: 560px; margin: 0 auto; }

    .lp-cta__title {
      font-family: 'Roboto', -apple-system, sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #f0f2f5;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .lp-cta__sub { font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 32px; }
    .lp-cta__note { margin-top: 16px; font-size: 12.8px; color: rgba(255,255,255,0.25); }

    .lp-footer {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 32px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .lp-footer__badges {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 4px;
    }
    .lp-footer__badge {
      height: 100px;
      width: auto;
      mix-blend-mode: screen;
      opacity: 0.85;
      transition: opacity 0.15s;
    }
    .lp-footer__badge--ce {
      max-width: 580px;
      margin-right: -10px;
    }
    .lp-footer__badge:hover { opacity: 1; }

    .lp-footer__brand { font-size: 12.8px; color: rgba(255,255,255,0.25); }
    .lp-footer__brand a { color: rgba(255,255,255,0.4); text-decoration: none; }
    .lp-footer__brand a:hover { color: rgba(255,255,255,0.7); }
    .lp-footer__links { display: flex; gap: 24px; }
    .lp-footer__link { font-size: 12.8px; color: rgba(255,255,255,0.25); text-decoration: none; cursor: pointer; background: none; border: none; }
    .lp-footer__link:hover { color: rgba(255,255,255,0.5); }

    @media (max-width: 900px) {
      .lp-hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 32px; }
      .lp-hero__title { font-size: 30.4px; }
      .lp-hero__sub { font-size: 14.4px; }
      .lp-section-title { font-size: 25.6px; }
      .lp-demo-cta__title { font-size: 25.6px; }
      .lp-cta__title { font-size: 27.2px; }
      .lp-features__grid { grid-template-columns: 1fr; }
      .lp-scenarios__inner { grid-template-columns: 1fr; gap: 40px; }
      .lp-pricing__grid { grid-template-columns: 1fr; }
      .lp-nav { padding: 16px 24px; }
      .lp-nav__links { display: none; }
      .lp-features, .lp-pricing, .lp-cta { padding-left: 24px; padding-right: 24px; }
      .lp-scenarios { padding-left: 24px; padding-right: 24px; }
    }

    body.light #landing { background: #f5f6f8; color: #0d0f12; }
    body.light #landing::before {
      background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    }
    body.light .lp-nav { background: rgba(245,246,248,0.92); border-bottom-color: rgba(0,0,0,0.08); }
    body.light .lp-nav__name { color: #0d0f12; }
    body.light .lp-nav__by { color: rgba(0,0,0,0.35); }
    body.light .lp-hero__title { color: #0d0f12; }
    body.light .lp-hero__sub { color: rgba(0,0,0,0.55); }
    body.light .lp-section-title { color: #0d0f12; }
    body.light .lp-section-sub { color: rgba(0,0,0,0.5); }
    body.light .lp-feature-card { background: #fff; border-color: rgba(0,0,0,0.07); }
    body.light .lp-feature-card__title { color: #0d0f12; }
    body.light .lp-feature-card__desc { color: rgba(0,0,0,0.5); }
    body.light .lp-mock { background: #fff; border-color: rgba(0,0,0,0.1); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
    body.light .lp-mock__bar { background: #f0f2f5; border-bottom-color: rgba(0,0,0,0.07); }
    body.light .lp-scenarios { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.07); }
    body.light .lp-scenario-card { background: #fff; border-color: rgba(0,0,0,0.08); }
    body.light .lp-scenario-card__title { color: #0d0f12; }
    body.light .lp-plan { background: #fff; border-color: rgba(0,0,0,0.08); }
    body.light .lp-plan__amount { color: #0d0f12; }
    body.light .lp-plan__poa { color: #0d0f12; }
    body.light .lp-plan__feature { color: rgba(0,0,0,0.6); }
    body.light .lp-plan__name { color: rgba(0,0,0,0.4); }
    body.light .lp-plan__period { color: rgba(0,0,0,0.4); }
    body.light .lp-plan__equiv { color: rgba(0,0,0,0.35); }
    body.light .lp-cta__title { color: #0d0f12; }
    body.light .lp-cta__sub { color: rgba(0,0,0,0.5); }
    body.light .lp-btn-ghost { border-color: rgba(0,0,0,0.15); color: rgba(0,0,0,0.6); }
    body.light .lp-btn-ghost:hover { border-color: rgba(0,0,0,0.4); color: #0d0f12; }
    body.light .lp-proof { border-color: rgba(0,0,0,0.07); }
    body.light .lp-proof__item { color: rgba(0,0,0,0.45); }
    body.light .lp-footer { border-top-color: rgba(0,0,0,0.07); }

    /* ── FAQ accordions ─────────────────────────────────────────── */
    .lp-faq {
      background: rgba(255,255,255,0.015);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 80px 40px;
    }

    .lp-faq__inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .lp-faq__list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .lp-faq__item {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .lp-faq__item.is-open { border-color: rgba(139, 21, 39, 0.35); }

    .lp-faq__q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 17.6px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-size: 14.4px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      line-height: 1.4;
    }
    .lp-faq__q:hover { color: #fff; }

    .lp-faq__chevron {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      transition: transform 0.25s ease, color 0.2s;
    }
    .lp-faq__item.is-open .lp-faq__chevron {
      transform: rotate(180deg);
      color: rgb(144, 10, 32);
    }

    .lp-faq__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.25s ease;
      padding: 0 24px;
    }
    .lp-faq__item.is-open .lp-faq__a {
      max-height: 400px;
      padding: 0 24px 20px;
    }

    .lp-faq__a-text {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 16px;
    }

    /* Light mode overrides */
    body.light .lp-faq { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.07); }
    body.light .lp-faq__item { background: #fff; border-color: rgba(0,0,0,0.08); }
    body.light .lp-faq__item.is-open { border-color: rgba(139, 21, 39, 0.3); }
    body.light .lp-faq__q { color: rgba(0,0,0,0.8); }
    body.light .lp-faq__q:hover { color: #0d0f12; }
    body.light .lp-faq__chevron { color: rgba(0,0,0,0.3); }
    body.light .lp-faq__a-text { color: rgba(0,0,0,0.5); border-top-color: rgba(0,0,0,0.07); }

    @media (max-width: 900px) {
      .lp-faq { padding-left: 24px; padding-right: 24px; }
    }

    /* ── Competitor comparison table ────────────────────────────── */
    .lp-compare {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 40px;
    }

    .lp-compare__table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
    }

    .lp-compare__table colgroup col:first-child { width: 55%; }
    .lp-compare__table colgroup col:nth-child(2) { width: 22.5%; }
    .lp-compare__table colgroup col:nth-child(3) { width: 22.5%; }

    .lp-compare__head th {
      padding: 13.6px 20px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-align: center;
    }
    .lp-compare__head th:first-child { text-align: left; color: rgba(255,255,255,0.25); }
    .lp-compare__head th.col-ax {
      color: #f0f2f5;
      background: rgba(139,21,39,0.1);
      border: 1px solid rgba(139,21,39,0.25);
      border-bottom: none;
      border-radius: 8px 8px 0 0;
    }
    .lp-compare__head th.col-other { color: rgba(255,255,255,0.3); }

    .lp-compare__row td {
      padding: 14.4px 20px;
      font-size: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      vertical-align: middle;
    }
    .lp-compare__row td:first-child { color: rgba(255,255,255,0.65); }
    .lp-compare__row td.col-ax {
      text-align: center;
      background: rgba(139,21,39,0.05);
      border-left: 1px solid rgba(139,21,39,0.2);
      border-right: 1px solid rgba(139,21,39,0.2);
    }
    .lp-compare__row td.col-other { text-align: center; }
    .lp-compare__row:last-child td { border-bottom: none; }
    .lp-compare__row:last-child td.col-ax {
      border-bottom: 1px solid rgba(139,21,39,0.2);
      border-radius: 0 0 4px 4px;
    }

    .lp-compare__check { color: rgb(144, 10, 32); font-size: 17.6px; font-weight: 700; }
    .lp-compare__cross { color: rgba(255,255,255,0.18); font-size: 16px; }
    .lp-compare__partial {
      font-size: 11.2px;
      font-weight: 600;
      color: rgba(255,190,70,0.65);
      letter-spacing: 0.02em;
    }

    /* Light mode */
    body.light .lp-compare__head th:first-child { color: rgba(0,0,0,0.3); }
    body.light .lp-compare__head th.col-ax { background: rgba(139,21,39,0.07); border-color: rgba(139,21,39,0.2); color: #0d0f12; }
    body.light .lp-compare__head th.col-other { color: rgba(0,0,0,0.35); }
    body.light .lp-compare__row td { border-bottom-color: rgba(0,0,0,0.06); }
    body.light .lp-compare__row td:first-child { color: rgba(0,0,0,0.65); }
    body.light .lp-compare__row td.col-ax { background: rgba(139,21,39,0.03); border-color: rgba(139,21,39,0.15); }
    body.light .lp-compare__cross { color: rgba(0,0,0,0.15); }

    @media (max-width: 900px) {
      .lp-compare { padding-left: 24px; padding-right: 24px; }
      .lp-compare__table colgroup col:first-child { width: 50%; }
      .lp-compare__table colgroup col:nth-child(2) { width: 25%; }
      .lp-compare__table colgroup col:nth-child(3) { width: 25%; }
      .lp-compare__row td:first-child { font-size: 12.8px; }
    }

      .rw-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .rw-modal-overlay.open { display: flex; }
  .rw-modal {
    background: #13161a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
  }
  .rw-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
  }
  .rw-modal__title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f0f2f5;
    line-height: 1.2;
  }
  .rw-modal__sub {
    font-size: 13.6px;
    color: rgba(255,255,255,0.4);
    margin-top: 5.6px;
  }
  .rw-modal__close {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 17.6px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
  }
  .rw-modal__close:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
  .rw-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .rw-modal__card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 16px 20px;
  }
  .rw-modal__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .rw-modal__incident { font-size: 10.4px; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
  .rw-modal__card-title { font-size: 14.4px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 6.4px; line-height: 1.3; }
  .rw-modal__card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
  .rw-modal__card-apt { font-size: 11.2px; color: rgba(255,255,255,0.3); }
  .rw-modal__card-apt span { color: rgb(144, 10, 32); }
  .rw-modal__more {
    text-align: center;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 12.8px;
    color: rgba(255,255,255,0.25);
    margin-bottom: 24px;
  }
  .rw-modal__cta {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    text-align: center;
  }
  .rw-modal__cta-title { font-size: 16px; font-weight: 600; color: #f0f2f5; margin-bottom: 6.4px; }
  .rw-modal__cta-sub { font-size: 13.2px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
  body.light .rw-modal { background: #ffffff; border-color: rgba(0,0,0,0.1); }
  body.light .rw-modal__title { color: #0d0f12; }
  body.light .rw-modal__card { background: #f5f6f8; border-color: rgba(0,0,0,0.08); }
  body.light .rw-modal__card-title { color: #0d0f12; }
  body.light .rw-modal__cta-title { color: #0d0f12; }

  .cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c2128;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 20px;
  max-width: 560px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.cookie-notice__text {
  font-size: 12.8px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.cookie-notice__text a {
  color: rgb(144, 10, 32);
  text-decoration: underline;
}
.cookie-notice__btn {
  background: rgb(139,21,39);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12.8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.cookie-notice__btn:hover { background: rgb(160,28,48); }
.cookie-notice__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-notice__btn--reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}
.cookie-notice__btn--reject:hover { background: rgba(255,255,255,0.08); }
/* In-modal consent prompt — shown when the demo form is gated behind consent. */
.lp-demo-modal__consent { text-align: center; padding: 12px 0 4px; }

/* Custom sign-in modal */
.signin-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.signin-overlay.open { display: flex; }
.signin-modal {
  background: #13161a; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 40px; width: 100%; max-width: 440px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6); position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
body.light .signin-modal {
  background: #ffffff; border-color: rgba(0,0,0,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12); color: #0d0f12;
}
.signin-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: #8b95a1;
  font-size: 19.2px; cursor: pointer; padding: 4px 8px; border-radius: 4px;
}
.signin-modal__close:hover { color: #f0f2f5; background: rgba(255,255,255,0.06); }
body.light .signin-modal__close:hover { color: #0d0f12; background: rgba(0,0,0,0.06); }
.signin-modal__logo { display: flex; justify-content: center; margin-bottom: 20px; }
.signin-modal__logo img { height: 36px; }
.signin-modal__title {
  font-size: 19.2px; font-weight: 700; text-align: center;
  margin-bottom: 28px; color: #f0f2f5;
}
body.light .signin-modal__title { color: #0d0f12; }
.signin-modal__error {
  display: none; background: rgba(139,21,39,0.15); border: 1px solid rgba(139,21,39,0.4);
  color: rgb(220,80,100); border-radius: 6px; padding: 12px 16px;
  font-size: 14px; margin-bottom: 16px; text-align: center;
}
.signin-modal__input {
  width: 100%; padding: 12px 16px; border-radius: 6px; font-size: 15.2px;
  background: #1c2128; border: 1px solid rgba(255,255,255,0.1); color: #f0f2f5;
  margin-bottom: 12px; box-sizing: border-box; outline: none;
}
.signin-modal__input:focus { border-color: rgb(139,21,39); }
body.light .signin-modal__input {
  background: #f5f6f8; border-color: rgba(0,0,0,0.15); color: #0d0f12;
}
.signin-modal__btn-primary {
  width: 100%; padding: 12.8px; background: rgb(139,21,39); color: #fff;
  border: none; border-radius: 6px; font-size: 15.2px; font-weight: 600;
  cursor: pointer; margin-top: 4px; margin-bottom: 20px;
}
.signin-modal__btn-primary:hover { background: rgb(160,28,48); }
.signin-modal__btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.signin-modal__divider {
  display: flex; align-items: center; gap: 12px;
  color: #8b95a1; font-size: 12.8px; margin-bottom: 16px;
}
.signin-modal__divider::before,
.signin-modal__divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
body.light .signin-modal__divider::before,
body.light .signin-modal__divider::after { background: rgba(0,0,0,0.1); }
.signin-modal__btn-sso {
  width: 100%; padding: 12px; background: transparent; color: #f0f2f5;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; font-size: 14.4px;
  cursor: pointer; margin-bottom: 9.6px; display: flex; align-items: center;
  justify-content: center; gap: 9.6px;
}
.signin-modal__btn-sso:hover { background: rgba(255,255,255,0.05); }
body.light .signin-modal__btn-sso { color: #0d0f12; border-color: rgba(0,0,0,0.15); }
body.light .signin-modal__btn-sso:hover { background: rgba(0,0,0,0.04); }
.signin-modal__footer {
  margin-top: 20px; text-align: center; font-size: 12.8px; color: #8b95a1;
}
.signin-modal__footer button {
  background: none; border: none; color: rgb(144, 10, 32);
  cursor: pointer; font-size: 12.8px; padding: 0;
}
.signin-modal__footer button:hover { text-decoration: underline; }

  
/* Sign-in link inside the CTA note — replaces former inline style= */
.lp-cta__signin-link {
  background: none;
  border: none;
  color: rgb(144, 10, 32);
  cursor: pointer;
  font-size: 12.8px;
  padding: 0;
}
