  :root{
      --bg:#ffffff;
      --text:#0b1220;
      --muted:#5b6475;
      --line:#e7eaf0;
      --soft:#f5f7fb;
      --accent:#2563eb;

      --r:18px;
      --r2:26px;

      --max:440px;
      --pad:16px;

      --t: 260ms;
      --e: cubic-bezier(.2,.9,.2,1);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
      background:var(--bg);
      color:var(--text);
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
      overflow-x:hidden;
    }

    a{color:inherit;text-decoration:none}
    button{font-family:inherit}
    img{max-width:100%;display:block}

    .app{
      min-height:100%;
      display:flex;
      justify-content:center;
      padding:12px;
    }
    .shell{
      width:min(var(--max), 100%);
    }

    .topbar{
      position:sticky;
      top:10px;
      z-index:50;
      background:rgba(255,255,255,.86);
      backdrop-filter:saturate(180%) blur(10px);
      border:1px solid var(--line);
      border-radius:999px;
      padding:10px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      transform:translateZ(0);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .brandMark{
      width:34px;height:34px;
      border-radius:999px;
      background:var(--accent);
      display:grid;
      place-items:center;
      color:#fff;
      flex:0 0 auto;
    }
    .brandMark svg{width:18px;height:18px}
    .brandName{
      font-weight:800;
      letter-spacing:-0.02em;
      font-size:14px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brandName span{color:var(--accent)}
    .iconRow{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .iconBtn{
      width:40px;height:40px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
      transition:transform var(--t) var(--e), border-color var(--t) var(--e), background var(--t) var(--e);
      touch-action:manipulation;
    }
    .iconBtn:active{transform:scale(.98)}
    .iconBtn:hover{border-color:color-mix(in oklab, var(--accent) 35%, var(--line))}
    .iconBtn svg{width:18px;height:18px}

    .section{
      margin-top:14px;
      border:1px solid var(--line);
      border-radius:var(--r2);
      background:#fff;
      overflow:hidden;
    }
    .sectionInner{
      padding:18px var(--pad);
    }

    .hero{
      padding:0;
    }
    .heroMedia{
      position:relative;
      aspect-ratio: 16/11;
      background:var(--soft);
      overflow:hidden;
      border-bottom:1px solid var(--line);
    }
    .heroMedia img{
      width:100%;
      height:100%;
      object-fit:cover;
      transform:scale(1.02);
      filter:saturate(1.02) contrast(1.02);
    }
    .heroOverlay{
      position:absolute;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(0deg, rgba(255,255,255,.78), rgba(255,255,255,0) 55%);
    }
    .heroInner{
      padding:18px var(--pad) 20px;
      display:grid;
      gap:12px;
    }
    .kicker{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-weight:600;
      font-size:12px;
      letter-spacing:.02em;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      padding:8px 10px;
      width:max-content;
      max-width:100%;
    }
    .pill b{
      font-size:12px;
      letter-spacing:-0.01em;
    }
    .pill .dot{
      width:8px;height:8px;border-radius:999px;background:var(--accent);
      flex:0 0 auto;
    }

    h1{
      margin:0;
      font-size:34px;
      line-height:1.05;
      letter-spacing:-0.04em;
    }
    .sub{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
      max-width:34ch;
    }
    .heroActions{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .btn{
      height:44px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      color:var(--text);
      font-weight:700;
      font-size:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      cursor:pointer;
      transition:transform var(--t) var(--e), border-color var(--t) var(--e), background var(--t) var(--e), color var(--t) var(--e);
      touch-action:manipulation;
      user-select:none;
    }
    .btn:active{transform:scale(.99)}
    .btn:hover{border-color:color-mix(in oklab, var(--accent) 35%, var(--line))}
    .btnPrimary{
      background:var(--accent);
      border-color:var(--accent);
      color:#fff;
    }
    .btnPrimary:hover{
      transform:translateY(-1px);
      background:color-mix(in oklab, var(--accent) 92%, #000);
      border-color:color-mix(in oklab, var(--accent) 92%, #000);
    }
    .btn svg{width:18px;height:18px}

    .grid{
      display:grid;
      gap:12px;
    }
    .grid2{grid-template-columns:1fr}
    @media (min-width:420px){
      .grid2{grid-template-columns:1fr 1fr}
    }

    .secHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .secTitle{
      margin:0;
      font-size:18px;
      letter-spacing:-0.02em;
    }
    .secNote{
      margin:0;
      color:var(--muted);
      font-size:12px;
      font-weight:600;
      white-space:nowrap;
    }

    .card{
      border:1px solid var(--line);
      border-radius:var(--r);
      background:#fff;
      overflow:hidden;
      transition:transform var(--t) var(--e), border-color var(--t) var(--e);
      transform:translateZ(0);
    }
    .card:hover{border-color:color-mix(in oklab, var(--accent) 30%, var(--line))}
    .card:active{transform:scale(.995)}
    .cardInner{padding:14px}
    .cardTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid var(--line);
      background:var(--soft);
      border-radius:999px;
      padding:7px 10px;
      font-size:12px;
      font-weight:700;
      letter-spacing:-0.01em;
      width:max-content;
      max-width:100%;
    }
    .chip .n{
      width:22px;height:22px;border-radius:999px;
      background:var(--accent);
      color:#fff;
      display:grid;
      place-items:center;
      font-size:12px;
      flex:0 0 auto;
    }
    .ico{
      width:38px;height:38px;
      border-radius:12px;
      border:1px solid var(--line);
      display:grid;
      place-items:center;
      background:#fff;
      flex:0 0 auto;
    }
    .ico svg{width:18px;height:18px}
    .cardTitle{
      margin:0;
      font-size:14px;
      font-weight:800;
      letter-spacing:-0.02em;
    }
    .cardText{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }

    .mediaStrip{
      margin-top:12px;
      border-top:1px solid var(--line);
      background:var(--soft);
      height:84px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 14px;
      gap:12px;
    }
    .miniImg{
      width:86px;height:60px;border-radius:14px;
      border:1px solid var(--line);
      overflow:hidden;
      background:#fff;
      flex:0 0 auto;
    }
    .miniImg img{width:100%;height:100%;object-fit:cover}
    .miniMeta{
      min-width:0;
    }
    .miniMeta p{margin:0}
    .miniMeta .k{color:var(--muted);font-weight:700;font-size:11px;letter-spacing:.02em;text-transform:uppercase}
    .miniMeta .v{font-weight:800;font-size:13px;letter-spacing:-0.02em;margin-top:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}

    .screens{
      padding:0;
    }
    .screensHead{
      padding:18px var(--pad) 12px;
    }
    .carousel{
      position:relative;
      padding:0 10px 14px;
    }
    .track{
      display:flex;
      gap:12px;
      overflow:auto;
      scroll-snap-type:x mandatory;
      padding:0 6px 10px;
      -webkit-overflow-scrolling:touch;
    }
    .track::-webkit-scrollbar{height:8px}
    .track::-webkit-scrollbar-thumb{background:var(--line);border-radius:999px}
    .shot{
      flex:0 0 86%;
      scroll-snap-align:start;
      border:1px solid var(--line);
      border-radius:var(--r2);
      overflow:hidden;
      background:#fff;
      transform:translateZ(0);
      transition:transform var(--t) var(--e), border-color var(--t) var(--e);
    }
    .shot:hover{border-color:color-mix(in oklab, var(--accent) 30%, var(--line))}
    .shotMedia{
      aspect-ratio: 16/10;
      background:var(--soft);
      border-bottom:1px solid var(--line);
    }
    .shotMedia img{width:100%;height:100%;object-fit:cover}
    .shotBody{padding:12px 14px}
    .shotTitle{margin:0;font-weight:900;letter-spacing:-0.02em;font-size:14px}
    .shotText{margin:6px 0 0;color:var(--muted);font-size:13px;line-height:1.55}
    .dots{
      display:flex;
      justify-content:center;
      gap:8px;
      padding-bottom:10px;
    }
    .dotBtn{
      width:8px;height:8px;border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      padding:0;
      cursor:pointer;
      transition:transform var(--t) var(--e), background var(--t) var(--e), border-color var(--t) var(--e);
    }
    .dotBtn[aria-current="true"]{
      background:var(--accent);
      border-color:var(--accent);
      transform:scale(1.15);
    }

    .dash{
      padding:0;
    }
    .dashHead{
      padding:18px var(--pad) 0;
    }
    .dashInner{
      padding:12px var(--pad) 18px;
      display:grid;
      gap:12px;
    }
    .metricRow{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .metric{
      border:1px solid var(--line);
      border-radius:var(--r);
      padding:12px;
      background:#fff;
      display:grid;
      gap:6px;
    }
    .metric .lbl{
      color:var(--muted);
      font-weight:700;
      font-size:11px;
      letter-spacing:.02em;
      text-transform:uppercase;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .metric .lbl svg{width:16px;height:16px}
    .metric .val{
      font-weight:900;
      letter-spacing:-0.03em;
      font-size:20px;
    }
    .metric .hint{
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
      margin-top:2px;
    }

    .chartCard{
      border:1px solid var(--line);
      border-radius:var(--r2);
      overflow:hidden;
      background:#fff;
    }
    .chartTop{
      padding:12px 14px;
      border-bottom:1px solid var(--line);
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:10px;
    }
    .chartTop .t{
      margin:0;
      font-weight:900;
      letter-spacing:-0.02em;
      font-size:14px;
    }
    .chartTop .s{
      margin:0;
      color:var(--muted);
      font-weight:700;
      font-size:12px;
      white-space:nowrap;
    }
    .chartWrap{
      background:var(--soft);
      padding:12px;
    }
    canvas{
      width:100%;
      height:160px;
      display:block;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--line);
    }

    .testimonials{
      padding:0;
    }
    .tHead{
      padding:18px var(--pad) 12px;
    }
    .quoteStack{
      padding:0 var(--pad) 18px;
      display:grid;
      gap:12px;
    }
    .quote{
      border:1px solid var(--line);
      border-radius:var(--r2);
      padding:14px;
      background:#fff;
      transition:transform var(--t) var(--e), border-color var(--t) var(--e);
    }
    .quote:hover{border-color:color-mix(in oklab, var(--accent) 30%, var(--line))}
    .qTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .avatarRow{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .avatar{
      width:40px;height:40px;border-radius:999px;
      border:1px solid var(--line);
      overflow:hidden;
      flex:0 0 auto;
      background:var(--soft);
    }
    .avatar img{width:100%;height:100%;object-fit:cover}
    .who{
      min-width:0;
    }
    .who .nm{
      margin:0;
      font-weight:900;
      letter-spacing:-0.02em;
      font-size:13px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:210px;
    }
    .who .rl{
      margin:3px 0 0;
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:220px;
    }
    .stars{
      display:flex;
      gap:4px;
      color:var(--accent);
      flex:0 0 auto;
    }
    .stars svg{width:16px;height:16px}
    .qText{
      margin:0;
      color:var(--text);
      font-weight:650;
      letter-spacing:-0.01em;
      line-height:1.6;
      font-size:13px;
    }
    .logoBar{
      margin-top:12px;
      border-top:1px solid var(--line);
      background:var(--soft);
      padding:12px var(--pad);
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .logo{
      height:34px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:800;
      font-size:12px;
      letter-spacing:-0.01em;
      color:var(--text);
    }
    .logo .b{
      width:8px;height:8px;border-radius:999px;background:var(--accent);
    }

    .cta{
      border-radius:var(--r2);
      overflow:hidden;
      background:var(--accent);
      border:1px solid var(--accent);
    }
    .ctaInner{
      padding:18px var(--pad);
      color:#fff;
      display:grid;
      gap:10px;
    }
    .ctaTitle{
      margin:0;
      font-weight:900;
      letter-spacing:-0.03em;
      font-size:20px;
      line-height:1.15;
    }
    .ctaText{
      margin:0;
      color:rgba(255,255,255,.88);
      font-size:13px;
      line-height:1.6;
      max-width:45ch;
    }
    .ctaActions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .btnOnAccent{
      background:#fff;
      border-color:#fff;
      color:var(--text);
    }
    .btnOnAccent:hover{
      transform:translateY(-1px);
      border-color:#fff;
      background:color-mix(in oklab, #fff 92%, var(--accent));
    }

    footer{
      margin:14px 0 10px;
      border:1px solid var(--line);
      border-radius:var(--r2);
      padding:14px var(--pad);
      background:#fff;
      color:var(--muted);
      font-size:12px;
      line-height:1.7;
      text-align:center;
    }
    footer b{color:var(--text)}

    .reveal{
      opacity:0;
      transform:translateY(10px);
      transition:opacity 420ms var(--e), transform 420ms var(--e);
      will-change:opacity, transform;
    }
    .reveal.in{
      opacity:1;
      transform:translateY(0);
    }

    .toast{
      position:fixed;
      left:50%;
      bottom:14px;
      transform:translateX(-50%) translateY(14px);
      width:min(420px, calc(100% - 24px));
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:10px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      opacity:0;
      pointer-events:none;
      transition:opacity var(--t) var(--e), transform var(--t) var(--e);
      z-index:60;
    }
    .toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(0);
      pointer-events:auto;
    }
    .toast .msg{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
      color:var(--text);
      font-weight:750;
      letter-spacing:-0.01em;
      font-size:13px;
    }
    .toast .msg svg{width:18px;height:18px;color:var(--accent)}
    .toast .x{
      width:36px;height:36px;border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
    }
    .toast .x svg{width:16px;height:16px}