
    :root{
      --bg:#F8FAFD;
      --ink:#0F172A;
      --muted:#5B6475;
      --line:rgba(15,23,42,.12);
      --accent:#1B6BFF;
      --accent-warm:#F59E0B;
      --accent-soft:rgba(27,107,255,.08);
      --radius:18px;
      --shadow:0 22px 50px rgba(15,23,42,.12);
      --shadow-soft:0 12px 30px rgba(15,23,42,.08);
      --max:1080px;

      --display:"DM Serif Display","Playfair Display","Georgia",serif;
      --body:"Inter Tight","Inter","Manrope","Segoe UI",system-ui,sans-serif;
      --mono:"IBM Plex Mono","JetBrains Mono",ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:var(--body);
      color:var(--ink);
      font-size:16px;
      background:
        radial-gradient(800px 520px at 8% -12%, rgba(27,107,255,.16), transparent 60%),
        radial-gradient(760px 480px at 92% 6%, rgba(245,158,11,.10), transparent 60%),
        linear-gradient(180deg, #FBFDFF 0%, #F3F6FB 62%, #EEF2F8 100%);
      line-height:1.65;
    }
    a{color:inherit; text-decoration:none}

    .wrap{width:100%; padding:20px 0 90px}
    .inner{max-width:var(--max); margin:0 auto; padding:0 22px}

    .nav{
      position:sticky;
      top:0;
      z-index:50;
      width:100%;
      background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,255,.86));
      backdrop-filter: blur(12px);
      border-bottom:1px solid var(--line);
      box-shadow:0 6px 18px rgba(15,23,42,.08);
      padding:10px 0;
    }
    .nav-bar{
      display:flex; align-items:center; justify-content:space-between; gap:16px;
      max-width:var(--max);
      margin:0 auto;
      padding:12px 22px;
    }
    .brand{display:flex; align-items:center; gap:10px}
    .logo{
      width:36px; height:36px; border-radius:12px;
      background: linear-gradient(135deg, rgba(27,107,255,.20), rgba(245,158,11,.14));
      border:1px solid rgba(27,107,255,.30);
      display:grid; place-items:center; font-weight:800; color:#10357A;
    }
    .brand strong{font-family:var(--display); font-weight:700; letter-spacing:-.02em}
    .brand span{display:block; font-size:12px; color:var(--muted)}
    .nav-links{display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
    .nav-links a{font-size:12px; letter-spacing:0.10em; text-transform:uppercase; color:var(--muted); padding:9px 12px; border-radius:999px; font-weight:650}
    .nav-links a:hover{background:#EEF3FF; color:var(--ink)}
    .menu-btn{
      display:none !important;
      font-size:18px;
      letter-spacing:0.08em;
      padding:0;
      width:38px;
      height:38px;
      border-radius:10px;
      justify-content:center;
      align-items:center;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      padding:12px 16px; border-radius:20px; border:1px solid var(--line);
      font-weight:700; font-size:16px; letter-spacing:0.01em; background:#fff; color:var(--ink);
      box-shadow:0 10px 18px rgba(15,23,42,.08);
      transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
      cursor:pointer;
    }
    .btn:hover{transform:translateY(-1px); border-color:rgba(27,107,255,.35)}
    .btn.primary{background:rgba(27,107,255,.12); border-color:rgba(27,107,255,.35); color:#10357A}
    .btn.cta{background: linear-gradient(120deg, #1B6BFF, #0EA5A3); border-color:rgba(27,107,255,.55); color:#fff; box-shadow:0 14px 28px rgba(27,107,255,.22)}

    /* HERO */
    .hero{padding:36px 0 22px}
    .hero h1{
      font-family:var(--display);
      font-size:54px;
      line-height:1.03;
      margin:0 0 12px 0;
      letter-spacing:-.02em;
      font-weight:600;
      background:linear-gradient(120deg, #0F172A 0%, #1B6BFF 50%, #0EA5A3 100%);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      text-shadow:0 8px 22px rgba(15,23,42,.12);
    }
    .hero .sub{margin:0 0 18px 0; color:var(--muted); max-width:64ch; font-size:17px; line-height:1.7}
    .badge-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}
    .badge{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid var(--line); background:rgba(255,255,255,.9); color:var(--muted)}
    .hero-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
    .note{margin-top:10px; color:var(--muted); font-size:12.5px}
    .diagram{
      margin-top:18px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:var(--shadow-soft);
      padding:14px;
      display:grid;
      gap:12px;
      overflow:hidden;
      max-width:100%;
      width:100%;
      box-sizing:border-box;
    }
    .diagram *{min-width:0;}
    .diagram .flow{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:10px;
      align-items:stretch;
      width:100%;
      box-sizing:border-box;
    }
    .diagram .arrow{display:none}
    .box{
      border:1px solid var(--line);
      border-radius:14px;
      padding:10px;
      background:#F9FBFF;
      box-shadow:0 8px 18px rgba(15,23,42,.06);
      min-height:60px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:2px;
      font-size:13px;
      width:100%;
      box-sizing:border-box;
    }
    .box strong{font-size:13.5px}
    .box span{color:var(--muted); font-size:12.5px}
    .arrow{font-family:var(--mono); color:rgba(27,107,255,.9); text-align:center; font-weight:800; user-select:none}
    .mini-facts{display:grid; grid-template-columns:repeat(auto-fit,minmax(0,1fr)); gap:10px; width:100%; box-sizing:border-box}
    .fact{border:1px solid var(--line); border-radius:12px; background:#fff; padding:10px; box-shadow:0 6px 14px rgba(15,23,42,.05)}
    .fact .k{font-size:12px; color:var(--muted); margin-bottom:4px}
    .fact .v{font-family:var(--mono); font-size:12.5px; white-space:nowrap; overflow:auto}
    .callout{display:flex; gap:10px; align-items:flex-start; border:1px solid rgba(27,107,255,.25); border-radius:12px; padding:12px; background:rgba(27,107,255,.06)}
    .callout strong{display:block; margin-bottom:4px}

    /* PROBLEM/OUTCOME STRIP */
    .strip{padding:32px 0; border-top:1px solid var(--line)}
    .strip:nth-of-type(even){background:rgba(255,255,255,.86)}
    .problem{border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.92); padding:18px; box-shadow:var(--shadow-soft)}
    .problem h2{
      margin:0 0 6px 0;
      font-size:26px;
      font-family:var(--display);
      letter-spacing:-.02em;
      background:linear-gradient(100deg, #0F172A 0%, #1B6BFF 60%);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      text-shadow:0 4px 12px rgba(15,23,42,.10);
    }
    .problem p{margin:0; color:var(--muted); font-size:14px}

    /* TIMELINE */
    .timeline{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px}
    .step{border:1px solid var(--line); border-radius:var(--radius); background:#fff; padding:14px; box-shadow:var(--shadow-soft)}
    .step h3{margin:0 0 6px 0; font-weight:600; letter-spacing:-0.01em}
    .num{width:28px; height:28px; border-radius:10px; display:grid; place-items:center; background:rgba(27,107,255,.12); color:#10357A; font-weight:800; margin-bottom:10px}

    /* CAPABILITY LIST */
    .cap-panel{border:1px solid var(--line); border-radius:var(--radius); background:#fff; box-shadow:var(--shadow-soft); padding:18px; display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start}
    .cap-col h3{margin:0 0 8px 0; font-size:16px}
    .cap-col ul{margin:0; padding-left:18px; color:var(--muted); font-size:13.5px}
    .cap-col li{margin:6px 0}

    /* DEMO */
    .demo-panel{border:1px solid var(--line); border-radius:var(--radius); background:#fff; padding:16px; box-shadow:var(--shadow-soft); display:grid; gap:12px}
    .code{font-family:var(--mono); font-size:13px; background:#0B1220; color:#D5E3F0; padding:12px; border-radius:14px; border:1px solid rgba(27,107,255,.32)}
    .filmstrip{display:grid; grid-template-columns:1fr; gap:12px}
    .shot{border:1px dashed rgba(15,23,42,.2); border-radius:14px; background:#F8FAFF; padding:12px; min-height:180px; display:flex; flex-direction:column; gap:10px; overflow:hidden}
    .shot .label{font-size:12px; color:var(--muted)}
    .shot .boxph{border:1px solid var(--line); border-radius:12px; background:#fff; flex:1; display:grid; place-items:center; color:#9BA8B5; font-size:12px; text-align:center; padding:10px; overflow:hidden}
    .shot img{width:100%; height:auto; display:block; border-radius:10px; object-fit:cover}

    /* PRICING STRIP */
    .pricing-band{border:1px solid rgba(27,107,255,.30); border-radius:var(--radius); background:linear-gradient(120deg, rgba(255,255,255,.9), rgba(27,107,255,.08)); padding:18px; box-shadow:var(--shadow)}
    .pricing-top{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:flex-start}
    .pricing-price{display:flex; gap:10px; align-items:baseline}
    .amount{font-size:44px; font-weight:800; letter-spacing:-.02em; color:#10357A}
    .meta{color:var(--muted); font-size:13.5px}
    .bullets{display:grid; gap:8px; font-size:14px; margin-top:10px}
    .b{display:flex; gap:10px; align-items:flex-start}
    .check{width:22px; height:22px; border-radius:10px; background:rgba(14,165,163,.14); border:1px solid rgba(14,165,163,.35); display:grid; place-items:center; font-weight:800; color:#0F766E}

    /* FAQ */
    .faq{display:grid; grid-template-columns:1fr; gap:10px}
    details{border:1px solid var(--line); border-radius:14px; background:#fff; padding:12px; box-shadow:var(--shadow-soft)}
    summary{cursor:pointer; font-weight:800; list-style:none}
    summary::-webkit-details-marker{display:none}
    details p{margin:6px 0 0 0; color:var(--muted); font-size:13.5px}

        /* SECTION TITLES */
    .section-title h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.02em;
      font-family:var(--display);
      position:relative;
      display:inline-block;
      font-weight:600;
    }
    .section-title h2:after{
      content:"";
      position:absolute;
      left:0; bottom:-6px;
      width:64%;
      height:4px;
      background:linear-gradient(90deg, rgba(27,107,255,.38), rgba(14,165,163,.12));
      border-radius:4px;
    }

    /* FINAL CTA */
    .final{border:1px solid rgba(27,107,255,.35); border-radius:var(--radius); background:linear-gradient(120deg, rgba(255,255,255,.92), rgba(27,107,255,.08)); padding:16px; box-shadow:var(--shadow); display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
    .final h2{margin:0; font-size:22px; font-family:var(--display)}
    .final p{margin:4px 0 0 0; color:var(--muted); font-size:13.5px}

    footer{padding:14px 0; color:var(--muted); font-size:12.5px}
    footer .foot{display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap}
    footer a{color:#10357A}

    .sticky-footer{position:fixed; left:0; right:0; bottom:0; z-index:90; background:rgba(255,255,255,.92); border-top:1px solid var(--line); box-shadow:0 -8px 24px rgba(15,23,42,.12); padding:10px 0; backdrop-filter: blur(10px)}
    .sticky-inner{max-width:var(--max); margin:0 auto; padding:0 22px; display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap}

    .mobilebar{display:none}
    @media (max-width: 980px){
      .nav{
        position:sticky;
        top:0;
        z-index:60;
        box-shadow:0 6px 16px rgba(15,23,42,.08);
        border-bottom:1px solid var(--line);
        padding:6px 0;
        background:rgba(255,255,255,.96);
      }
      .nav-bar{flex-wrap:wrap; padding:8px 14px; gap:10px}
      .logo{width:28px; height:28px; font-size:12px}
      .brand strong{font-size:14px}
      .nav-links{
        justify-content:flex-start;
        gap:6px;
        position:relative;
        width:100%;
      }
      .nav-links a{padding:7px 10px; font-size:11px; letter-spacing:0.08em}
      .menu-btn{display:inline-flex !important}
      .nav-extra-wrapper{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:rgba(255,255,255,.98);
        border:1px solid var(--line);
        border-radius:12px;
        box-shadow:0 12px 30px rgba(15,23,42,.12);
        padding:8px;
        gap:6px;
        flex-direction:column;
        z-index:30;
      }
      .nav.show-extra .nav-extra-wrapper{display:flex}
      .nav-extra{display:flex; width:100%; padding:10px; border-radius:10px; background:rgba(27,107,255,.06); color:#10357A; justify-content:flex-start}
      .hero{padding-top:18px}
      .hero h1{font-size:32px; line-height:1.1}
      .hero .sub{font-size:15px}
      .hero-actions{flex-direction:column; align-items:stretch}
      .hero-actions .btn{width:100%; justify-content:center}
      .diagram .flow{grid-template-columns:1fr; gap:10px; width:100%}
      .diagram .arrow{display:none}
      .timeline{grid-template-columns:1fr}
      .cap-panel{grid-template-columns:1fr}
      .filmstrip{grid-template-columns:1fr}
      .shot img{object-fit:contain; max-height:320px}
      h1{font-size:36px}
      .sticky-footer{position:static; box-shadow:none; border-top:0; padding:0}
      .sticky-inner{padding:12px 22px; background:rgba(255,255,255,.92); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-soft)}
    }
  
