:root{
      --bg: #0b0f17;
      --panel: rgba(255,255,255,.06);
      --panel2: rgba(255,255,255,.09);
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.70);
      --border: rgba(255,255,255,.12);
      --accent: #b18cff;
      --good: #8cffc1;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
      --radius: 16px;
      --max: 1080px;
      color-scheme: dark;
    }
    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      background: radial-gradient(1000px 600px at 20% 10%, rgba(177,140,255,.18), transparent 60%),
                  radial-gradient(900px 600px at 80% 10%, rgba(140,255,193,.12), transparent 55%),
                  var(--bg);
      color: var(--text);
      line-height: 1.55;
    }
    a{ color:inherit; }
    .wrap{ width:min(var(--max), calc(100% - 32px)); margin:0 auto; }

    header{
      position: sticky; top:0; z-index: 10;
      backdrop-filter: blur(10px);
      background: rgba(11,15,23,.70);
      border-bottom: 1px solid var(--border);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding: 14px 0;
      gap: 12px;
    }
    .brand{
      display:flex; align-items:center; gap: 12px;
      text-decoration:none;
    }
    .brand img{
      width: 44px; height: 44px;
      object-fit: contain;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
    }
    .brand .name{
      display:flex; flex-direction:column;
      line-height:1.05;
    }
    .brand .name b{ font-size: 14px; letter-spacing:.3px; }
    .brand .name span{ font-size: 12px; color: var(--muted); }

    nav a{
      text-decoration:none;
      color: var(--muted);
      font-size: 13px;
      padding: 8px 10px;
      border-radius: 10px;
    }
    nav a:hover{ color: var(--text); background: rgba(255,255,255,.06); }

    .hero{
      padding: 56px 0 26px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 22px;
      align-items: stretch;
    }
    @media (max-width: 900px){
      .heroGrid{ grid-template-columns: 1fr; }
    }

    .card{
      background: linear-gradient(180deg, var(--panel), rgba(255,255,255,.04));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
    }

    h1{
      margin: 0 0 10px;
      font-size: clamp(28px, 4vw, 42px);
      letter-spacing: -.5px;
      line-height:1.08;
    }
    .lead{
      color: var(--muted);
      margin: 0 0 18px;
      font-size: 16px;
      max-width: 70ch;
    }

    .pillRow{ display:flex; flex-wrap:wrap; gap: 10px; margin: 18px 0 0; }
    .pill{
      font-size: 12px;
      color: rgba(255,255,255,.82);
      border: 1px solid var(--border);
      background: rgba(255,255,255,.05);
      padding: 7px 10px;
      border-radius: 999px;
    }

    .ctaRow{ display:flex; flex-wrap:wrap; gap: 12px; margin-top: 18px; }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.06);
      text-decoration:none;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
    }
    .btn:hover{ background: rgba(255,255,255,.09); }
    .btnPrimary{
      background: linear-gradient(135deg, rgba(177,140,255,.30), rgba(255,255,255,.06));
      border-color: rgba(177,140,255,.40);
    }
    .btnPrimary:hover{
      background: linear-gradient(135deg, rgba(177,140,255,.38), rgba(255,255,255,.08));
    }
    .fineprint{
      margin-top: 10px;
      color: rgba(255,255,255,.60);
      font-size: 12px;
    }

    .sideBox h3{ margin:0 0 10px; font-size: 14px; }
    .sideBox ul{ margin:0; padding-left: 18px; color: var(--muted); }
    .sideBox li{ margin: 6px 0; }

    section{ padding: 22px 0; }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    @media (max-width: 900px){
      .grid3{ grid-template-columns: 1fr; }
    }
    .k{ color: rgba(255,255,255,.78); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
    .v{ margin: 8px 0 0; color: var(--muted); font-size: 14px; }

    .how{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    @media (max-width: 900px){
      .how{ grid-template-columns: 1fr; }
    }
    .step{
      display:flex; gap: 12px;
      padding: 14px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.05);
    }
    .num{
      width: 28px; height: 28px;
      border-radius: 10px;
      display:grid; place-items:center;
      font-weight: 800;
      background: rgba(177,140,255,.20);
      border: 1px solid rgba(177,140,255,.35);
      flex: 0 0 auto;
    }
    .step b{ display:block; margin-bottom: 2px; }
    .faq details{
      border: 1px solid var(--border);
      background: rgba(255,255,255,.05);
      border-radius: 14px;
      padding: 12px 14px;
      margin: 10px 0;
    }
    .faq summary{
      cursor: pointer;
      font-weight: 700;
    }
    .faq p{ margin: 10px 0 0; color: var(--muted); }

    footer{
      padding: 22px 0 34px;
      color: rgba(255,255,255,.60);
      font-size: 12px;
      border-top: 1px solid var(--border);
      margin-top: 20px;
    }

    .footerRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .footerLinks{
      display:flex;
      align-items:center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .footerLinks a{
      text-decoration:none;
      color: rgba(255,255,255,.62);
      padding: 6px 8px;
      border-radius: 10px;
      border: 1px solid transparent;
    }
    .footerLinks a:hover{
      color: rgba(255,255,255,.88);
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.10);
    }

    /* Optional: make Gumroad button inherit styles */
    a.gumroad-button{ all: unset; }