:root{
      --bg: #f7f8fb;
      --surface: #ffffff;
      --surface2: #fbfbff;
      --text: #0f172a;       /* slate-900 */
      --muted: #475569;      /* slate-600 */
      --faint: #64748b;      /* slate-500 */
      --border: rgba(15,23,42,.12);
      --shadow: 0 18px 55px rgba(2,6,23,.12);
      --shadow2: 0 10px 30px rgba(2,6,23,.10);
      --brand: #6d28d9;      /* purple-700 */
      --brand2:#16a34a;      /* green-600 */
      --warn:#f59e0b;        /* amber-500 */
      --max: 1120px;
      --radius: 18px;
      --radius2: 26px;
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    }

    body{
      background:
        radial-gradient(1100px 520px at 15% -5%, rgba(109,40,217,.12), transparent 60%),
        radial-gradient(900px 460px at 90% 0%, rgba(22,163,74,.10), transparent 55%),
        radial-gradient(1100px 700px at 50% 115%, rgba(14,165,233,.10), transparent 55%),
        var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x:hidden;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border:1px solid var(--border);
      background: rgba(255,255,255,.7);
      border-radius:999px;
      color:var(--muted);
      font-size:13px;
    }
    .dot{ width:8px; height:8px; border-radius:50%; background:var(--brand2); box-shadow:0 0 0 4px rgba(22,163,74,.12); }
    

    /* HERO */
    .hero{ padding:56px 0 26px; }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:28px;
      align-items:stretch;
    }
    .h1{
      font-size: clamp(34px, 4.2vw, 54px);
      line-height:1.05;
      letter-spacing:-.9px;
      margin:14px 0 12px;
    }
    .lead{
      font-size: 17px;
      color:var(--muted);
      max-width: 56ch;
      margin:0 0 18px;
    }
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:10px;
      margin:18px 0 12px;
    }
    .hero-foot{
      display:flex; flex-wrap:wrap; gap:12px;
      color:var(--faint);
      font-size:13px;
      margin-top:12px;
      align-items:center;
    }
    .hero-foot .check{
      display:inline-flex; gap:8px; align-items:center;
      padding:8px 10px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.85);
      border-radius: 999px;
    }

    .hero-card{
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(109,40,217,.14), transparent 60%),
        radial-gradient(500px 220px at 90% 20%, rgba(22,163,74,.10), transparent 60%);
      pointer-events:none;
      opacity:1;
    }
    .hero-card > *{ position:relative; z-index:1; }

    .mini{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.85);
      border-radius: 16px;
      margin-top:12px;
    }
    .mini strong{ font-size:14px; }
    .mini span{ color:var(--muted); font-size:13px; }
    .mini .tag{
      font-size:12px; color: rgba(15,23,42,.85);
      padding:6px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.9);
    }

    .mock{
      margin-top:14px;
      border-radius: 18px;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.80);
      overflow:hidden;
      box-shadow: var(--shadow2);
    }
    .mock-top{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      color:var(--muted);
      font-size:13px;
      background: rgba(255,255,255,.75);
    }
    .mock-body{ padding:14px; display:grid; gap:10px; }
    .row{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      border-radius: 14px;
    }
    .row .left{ display:flex; gap:10px; align-items:center; }
    .ico{
      width:34px; height:34px; border-radius:12px;
      background: rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.22);
    }
    .status{
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      color: rgba(15,23,42,.85);
    }

    /* SECTIONS */
    section{ padding:44px 0; }
    .section-title{
      font-size: 22px;
      letter-spacing:-.2px;
      margin:0 0 8px;
    }
    .section-sub{
      color:var(--muted);
      margin:0 0 22px;
      max-width: 76ch;
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.90);
      border-radius: var(--radius);
      padding:18px;
      box-shadow: 0 10px 26px rgba(2,6,23,.07);
    }
    .card h3{ margin:10px 0 6px; font-size:16px; }
    .card p{ margin:0; color:var(--muted); font-size:14px; }
    .card .icon{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.95);
      display:grid; place-items:center;
      font-weight:900;
      color: rgba(15,23,42,.9);
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
    }

    /* How it works */
    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.90);
      box-shadow: 0 10px 26px rgba(2,6,23,.06);
    }
    .step .num{
      display:inline-flex; align-items:center; justify-content:center;
      width:28px; height:28px; border-radius:10px;
      background: rgba(109,40,217,.12);
      border:1px solid rgba(109,40,217,.22);
      font-weight:900;
      margin-bottom:10px;
      color: rgba(15,23,42,.9);
    }
    .step h4{ margin:0 0 6px; font-size:15px; }
    .step p{ margin:0; color:var(--muted); font-size:14px; }

    /* Split */
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .feature-list{
      margin:0; padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .feature-list li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      border-radius: 14px;
      color:var(--muted);
      font-size:14px;
      box-shadow: 0 10px 22px rgba(2,6,23,.05);
    }
    .tick{
      width:18px; height:18px; border-radius:6px;
      background: rgba(22,163,74,.14);
      border:1px solid rgba(22,163,74,.25);
      margin-top:2px;
      flex:0 0 auto;
    }

    /* Pricing preview */
    .pricing{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .price{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      border-radius: var(--radius2);
      padding:18px;
      box-shadow: var(--shadow2);
      position:relative;
    }
    .price.featured{
      background: linear-gradient(180deg, rgba(109,40,217,.10), rgba(255,255,255,.92));
      border-color: rgba(109,40,217,.28);
      transform: translateY(-6px);
    }
    .price .badge{
      position:absolute; top:14px; right:14px;
      font-size:12px; font-weight:800;
      padding:6px 10px; border-radius:999px;
      background: rgba(109,40,217,.12);
      border:1px solid rgba(109,40,217,.22);
      color: rgba(15,23,42,.85);
    }
    .price h3{ margin:0 0 4px; }
    .price .desc{ color:var(--muted); margin:0 0 12px; font-size:14px; }
    .price .money{
      font-size: 30px; font-weight:950; letter-spacing:-.5px;
      margin:8px 0 6px;
    }
    .price .money span{ font-size:13px; color:var(--muted); font-weight:700; }
    .price ul{ margin:12px 0 16px; padding-left:18px; color:var(--muted); font-size:14px; }
    .price ul li{ margin:8px 0; }

    /* FAQ */
    .faq{ display:grid; gap:10px; max-width: 920px; }
    details{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      border-radius: 16px;
      padding: 14px 14px;
      box-shadow: 0 10px 22px rgba(2,6,23,.05);
    }
    summary{
      cursor:pointer;
      font-weight:850;
      color: rgba(15,23,42,.92);
      list-style:none;
    }
    summary::-webkit-details-marker{ display:none; }
    details p{ margin:10px 0 0; color:var(--muted); }

    /* Footer CTA */
    .cta{
      padding: 34px;
      border-radius: 26px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.84));
      box-shadow: var(--shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .cta h2{ margin:0 0 8px; font-size:24px; letter-spacing:-.3px; }
    .cta p{ margin:0; color:var(--muted); max-width: 64ch; }
    .cta .actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .price .badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      color: #ffffff;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 600;
      border-radius: 999px;
      letter-spacing: .3px;
      box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45);
      z-index: 2;
    }

    .price .badge::after {
      content: "";
      position: absolute;
      inset: -3px;
      background: linear-gradient(135deg, #3b82f6, #2563eb);
      border-radius: inherit;
      filter: blur(10px);
      opacity: .35;
      z-index: -1;
    }
  

    /* Mobile */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .grid3{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr 1fr; }
      .split{ grid-template-columns: 1fr; }
      .pricing{ grid-template-columns: 1fr; }
      .price.featured{ transform:none; }
    }
    @media (max-width: 760px){
      .nav-links{ display:none; }
      .hamburger{ display:block; }
      .nav-open .nav-links{
        display:flex;
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        padding:12px 0 6px;
        gap:10px;
      }
      .nav-inner{ flex-wrap:wrap; }
      .cta{ flex-direction:column; align-items:flex-start; }
      .steps{ grid-template-columns: 1fr; }
    }

    /* TRUSTED BY */
    .trust-section {
      padding: 56px 0;
      padding-top: 20px;
      padding-bottom: 40px;
      background: linear-gradient(
        180deg,
        rgba(248,250,252,0.7),
        rgba(255,255,255,1)
      );
    }

    .trust-eyebrow {
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      color: rgba(15,23,42,0.6);
      letter-spacing: .2px;
      margin-bottom: 26px;
    }

    .trust-section-title{
      margin-bottom: 35px;
    }

    /* Slider */
    .trust-slider {
      position: relative;
      overflow: hidden;
    }

    /* fade edges */
    .trust-slider::before,
    .trust-slider::after {
      content: "";
      position: absolute;
      top: 0;
      width: 120px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .trust-slider::before {
      left: 0;
      background: linear-gradient(to right, #f8fafc, transparent);
    }

    .trust-slider::after {
      right: 0;
      
    }

    /* Track */
    .trust-track {
      display: flex;
      align-items: center;
      gap: 64px;
      width: max-content;
      animation: trust-scroll 40s linear infinite;
    }

    .trust-track img {
      height: 34px;
      transition: all 0.3s ease;
    }

    .trust-track img:hover {
      opacity: 1;
    }

    /* pause on hover */
    .trust-slider:hover .trust-track {
      animation-play-state: paused;
    }

    @keyframes trust-scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .trust-section {
        padding: 40px 0;
      }

      .trust-track {
        gap: 40px;
      }

      .trust-track img {
        height: 26px;
      }
    }