:root{
  --bg0:#070707;
  --bg1:#0d0f12;
  --bg2:#14171c;
  --card: rgba(22,24,28,.72);
  --card2: rgba(22,24,28,.56);
  --text:#f2f4f7;
  --muted: rgba(242,244,247,.74);
  --muted2: rgba(242,244,247,.56);
  --line: rgba(255,255,255,.10);
  --line2: rgba(255,255,255,.16);
  --accent:#ff7a18;
  --accent2:#ffb86b;
  --shadow: 0 18px 70px rgba(0,0,0,.55);
  --shadow2: 0 12px 40px rgba(0,0,0,.40);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font:16px/1.6 ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(900px 600px at 12% 0%, rgba(255,122,24,.20), transparent 60%),
    radial-gradient(900px 600px at 85% 10%, rgba(255,184,107,.12), transparent 60%),
    radial-gradient(700px 420px at 55% 0%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg2));
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:1120px;margin:0 auto;padding:28px 20px 64px}

/* Top bar */
header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(13,15,18,.72);
  border-bottom:1px solid var(--line);
}
.top{max-width:1120px;margin:0 auto;padding:14px 20px;display:flex;align-items:center;justify-content:space-between;gap:14px}

.brand{display:flex;align-items:center;gap:10px;min-width:220px;text-decoration:none;color:inherit}
.brand .k span:last-child{color:var(--accent)}
.logo{width:38px;height:38px;border-radius:14px;background: linear-gradient(135deg, var(--accent), var(--accent2));box-shadow: 0 14px 50px rgba(255,122,24,.18)}
.logo-img{width:38px;height:38px;display:block}
/* wordmark removed from header (kept as asset) */
.wordmark-img{height:18px;display:block}

.k{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:rgba(242,244,247,.65)}
.brand b{letter-spacing:.02em}

.nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;text-decoration:none;font-weight:850;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.btn:hover{border-color: rgba(255,255,255,.32)}
.btn:active{transform: translateY(1px)}
.btn.primary{border:0;color:#1a0f08;background: linear-gradient(135deg, var(--accent), var(--accent2))}
.btn.ghost{background: rgba(0,0,0,.12)}
.btn.outline{background: transparent; border:1px solid rgba(255,255,255,.18)}
.btn.sm{padding:8px 10px;border-radius:12px;font-size:12px;font-weight:900}
.burger-lines{display:inline-flex;flex-direction:column;gap:4px;align-items:center;justify-content:center}
.burger-lines span{width:18px;height:2px;background:rgba(255,255,255,.85);border-radius:2px}

/* Menu */
details.menu{display:block;position:relative}
details.menu summary{list-style:none;user-select:none}
details.menu summary::-webkit-details-marker{display:none}
details.menu[open] .menu-panel{display:grid}
.menu-panel{
  display:none;
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  width:340px;
  max-width:calc(100vw - 32px);
  background: rgba(13,15,18,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:12px;
  box-shadow: var(--shadow);
  gap:10px;
}
.menu-panel a.btn{width:100%}

/* Text */
h1{margin:0;font-size:clamp(34px, 4.6vw, 60px);line-height:1.05;letter-spacing:-0.02em}
h2{margin:0;font-size:22px}
h3{margin:0;font-size:16px}
p{margin:0;color:var(--muted)}
.fine{color:var(--muted2);font-size:12px}
.ok{color:var(--accent2)}

/* Card system */
.card{background: var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
.card.soft{background: var(--card2);box-shadow:var(--shadow2)}
.sep{height:1px;background:var(--line);margin:14px 0}

/* Inputs */
input{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
input:focus{border-color: rgba(255,122,24,.75); box-shadow: 0 0 0 3px rgba(255,122,24,.20)}
input::placeholder{color:rgba(242,244,247,.52)}

/* Lists */
ul{margin:10px 0 0;padding-left:18px;color:var(--muted)}
li{margin:6px 0}
code{background:rgba(255,255,255,.08);padding:2px 6px;border-radius:8px}

/* Footer */
footer{margin-top:34px;color:rgba(242,244,247,.55);font-size:13px;border-top:1px solid var(--line);padding-top:16px}

/* Responsive */
@media (max-width: 720px){
  .wrap{padding:18px 16px 56px}
  .top{padding:12px 16px}
  .brand{min-width:auto}
}


/* --- landing (baked from index.html inline css) --- */

/* Utilities to avoid inline styles (landing page) */
.mt-6{margin-top:6px}
.mt-8{margin-top:8px}
.mt-10{margin-top:10px}
.mt-14{margin-top:14px}
.signup-form{display:grid;gap:10px}
.honeypot{position:absolute;left:-5000px}
.hidden{display:none}

/* Turnstile should always reserve space so the form doesn't jump */
.cf-turnstile{min-height: 40px}

.site-footer{
  margin-top: 18px;
  padding: 14px 0 8px;
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer a{color: var(--muted); text-decoration: none}
.site-footer a:hover{color: var(--text)}

.mcaptcha-widget{
  /* keep the widget from stretching the card */
  max-width: 100%;
}

/* Make embedded mCaptcha checkbox compact and fit our form */
#mcaptcha__widget-container{
  max-width: 100%;
}
#mcaptcha__widget-container{
  max-width: 100%;
  height: 38px;            /* desired visual height */
  overflow: hidden;
}

/* mCaptcha widget is its own page. We scale the iframe to make it visually compact. */
#mcaptcha__widget-container iframe{
  display:block;
  width: 100%;
  height: 46px;            /* native widget height */
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  transform: scale(0.83);
  transform-origin: 0 0;
}

:root{
        /* Neutral dark (black/grey) */
        --bg0:#070707;
        --bg1:#0d0f12;
        --bg2:#14171c;
        --card: rgba(22,24,28,.72);
        --card2: rgba(22,24,28,.56);

        --text:#f2f4f7;
        --muted: rgba(242,244,247,.72);
        --muted2: rgba(242,244,247,.56);

        --line: rgba(255,255,255,.10);
        --line2: rgba(255,255,255,.16);

        /* Orange accents */
        --accent:#ff7a18;
        --accent2:#ffb86b;

        --shadow: 0 18px 70px rgba(0,0,0,.55);
        --shadow2: 0 12px 40px rgba(0,0,0,.40);
        --radius: 18px;
      }

      /* Minimal reset */
      *{box-sizing:border-box}
      html{scroll-behavior:smooth}
      body{
        margin:0;
        color:var(--text);
        font:16px/1.6 ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial;
        background:
          radial-gradient(900px 600px at 12% 0%, rgba(255,122,24,.20), transparent 60%),
          radial-gradient(900px 600px at 85% 10%, rgba(255,184,107,.12), transparent 60%),
          radial-gradient(700px 420px at 55% 0%, rgba(255,255,255,.05), transparent 60%),
          linear-gradient(180deg, var(--bg0), var(--bg2));
      }
      a{color:inherit;text-decoration:none}
      img{max-width:100%;display:block}

      .wrap{max-width:1120px;margin:0 auto;padding:28px 20px 64px}

      /* Top bar */
      header{
        position:sticky;top:0;z-index:50;
        backdrop-filter: blur(12px);
        background: rgba(13,15,18,.72);
        border-bottom:1px solid var(--line);
      }
      .top{max-width:1120px;margin:0 auto;padding:14px 20px;display:flex;align-items:center;justify-content:space-between;gap:14px}

      .brand{display:flex;align-items:center;gap:10px;min-width:220px;text-decoration:none;color:inherit}
      .brand .k span:last-child{color:var(--accent)}
      .logo{
        width:38px;height:38px;border-radius:14px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        box-shadow: 0 14px 50px rgba(255,122,24,.18);
      }
      .k{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:rgba(232,236,255,.75)}
      .brand b{letter-spacing:.02em}
      .pill{font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid var(--line);color:rgba(232,236,255,.85);background:rgba(255,255,255,.03)}

      .nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
      .navlinks{display:none}

      .btn{
        display:inline-flex;align-items:center;justify-content:center;
        padding:10px 14px;border-radius:14px;text-decoration:none;font-weight:850;
        border:1px solid rgba(232,236,255,.18);
        background: rgba(255,255,255,.03);
        cursor:pointer;
        transition: transform .12s ease, border-color .12s ease, background .12s ease;
      }
      .btn:hover{border-color: rgba(232,236,255,.34)}
      .btn:active{transform: translateY(1px)}
      .btn.primary{border:0;color:#1a0f08;background: linear-gradient(135deg, var(--accent), var(--accent2))}
      .btn.ghost{background: rgba(0,0,0,.12)}
      .btn.outline{background: transparent; border:1px solid rgba(232,236,255,.18); color: rgba(232,236,255,.92)}
      .btn.sm{padding:8px 10px;border-radius:12px;font-size:12px;font-weight:900}
      .burger-lines{display:inline-flex;flex-direction:column;gap:4px;align-items:center;justify-content:center}
      .burger-lines span{width:18px;height:2px;background:rgba(255,255,255,.85);border-radius:2px}

      details.menu{display:block;position:relative}
      details.menu summary{list-style:none;user-select:none}
      details.menu summary::-webkit-details-marker{display:none}

      /* Text */
      h1{margin:0;font-size:clamp(34px, 4.6vw, 60px);line-height:1.05;letter-spacing:-0.02em}
      h2{margin:0;font-size:20px}
      h3{margin:0;font-size:16px}
      p{margin:0;color:var(--muted)}
      .fine{color:var(--muted2);font-size:12px}
      .ok{color:var(--accent2)}

      /* Hero */
      .hero{display:grid;grid-template-columns:1.25fr .85fr;gap:18px;margin-top:26px;align-items:start}
      @media (max-width: 980px){.hero{grid-template-columns:1fr}}

      .card{background: var(--card);border:1px solid var(--line);border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
      .card.soft{background: var(--card2);box-shadow:var(--shadow2)}

      .lead{margin-top:12px;font-size:17px;max-width:62ch}

      .cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

      .tags{margin-top:14px;display:flex;gap:8px;flex-wrap:wrap}
      .tag{display:inline-flex;font-size:12px;padding:5px 10px;border-radius:999px;border:1px solid rgba(232,236,255,.18);background:rgba(0,0,0,.10);color:rgba(232,236,255,.92)}

      /* Proof bar */
      .proof{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
      .proof .item{font-size:13px;color:rgba(232,236,255,.78);border:1px solid rgba(232,236,255,.12);background:rgba(0,0,0,.12);padding:6px 10px;border-radius:999px}

      /* Product preview */
      .mock{
        margin-top:18px;
        border-radius:18px;
        border:1px solid rgba(232,236,255,.14);
        background:
          linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
          radial-gradient(700px 260px at 20% 0%, rgba(255,122,24,.22), transparent 65%),
          radial-gradient(700px 260px at 80% 0%, rgba(255,184,107,.16), transparent 65%);
        padding:14px;
      }
      .mockbar{display:flex;gap:6px;align-items:center;margin-bottom:10px}
      .dot{width:10px;height:10px;border-radius:50%;background:rgba(232,236,255,.25)}
      .mockgrid{display:grid;grid-template-columns:1.15fr .85fr;gap:12px}
      @media (max-width: 980px){.mockgrid{grid-template-columns:1fr}}
      .mockpane{height:175px;border-radius:14px;background: rgba(0,0,0,.16);border:1px solid rgba(232,236,255,.10)}
      .mockpane.small{height:112px}
      .mocklabel{font-size:12px;color:rgba(232,236,255,.65);margin:10px 0 0}

      /* Feature cards */
      .grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:16px}
      @media (max-width: 980px){.grid{grid-template-columns:1fr}}

      ul{margin:10px 0 0;padding-left:18px;color:var(--muted)}
      li{margin:6px 0}
      code{background:rgba(255,255,255,.08);padding:2px 6px;border-radius:8px}

      /* Sections */
      section.block{margin-top:18px}
      .sep{height:1px;background:var(--line);margin:14px 0}
      .split{display:grid;grid-template-columns:1fr 1fr;gap:14px}
      @media (max-width: 980px){.split{grid-template-columns:1fr}}

      /* Lead magnet */
      .magnet{margin-top:12px;border:1px solid rgba(255,122,24,.26);background:linear-gradient(180deg, rgba(255,122,24,.10), rgba(0,0,0,.10));}
      .magnet p{color:rgba(232,236,255,.82)}

      /* Signup */
      input{
        padding:12px 12px;
        border-radius:14px;
        border:1px solid rgba(232,236,255,.22);
        background:rgba(0,0,0,.15);
        color:var(--text);
        outline:none;
      }
      input:focus{border-color: rgba(255,122,24,.75); box-shadow: 0 0 0 3px rgba(255,122,24,.20)}
      input::placeholder{color:rgba(232,236,255,.55)}

      /* Footer */
      footer{margin-top:34px;color:rgba(232,236,255,.55);font-size:13px;border-top:1px solid var(--line);padding-top:16px}

      /* Menu panel (all sizes) */
      details.menu[open] .menu-panel{display:grid}
      .menu-panel{
        display:none;
        position:absolute;
        right:0;
        top: calc(100% + 10px);
        width:340px;
        max-width:calc(100vw - 32px);
        background: rgba(13,15,18,.92);
        border:1px solid rgba(255,255,255,.14);
        border-radius:16px;
        padding:12px;
        box-shadow: var(--shadow);
        gap:10px;
      }
      .menu-panel a.btn{width:100%}

      /* Responsive polish */
      @media (max-width: 720px){
        .wrap{padding:18px 16px 56px}
        .top{padding:12px 16px}
        .brand{min-width:auto}
        .cta a.btn{width:100%}
        .mockpane{height:150px}
        .menu-panel{right:0;width:min(360px, calc(100vw - 32px));}
      }
