/* toknless.io — shared brand styles (index, download, waitlist) */
:root {
  --bg: #070b0a;
  --teal: #00C9A7;
  --cyan: #22D3EE;
  --green: #059669;
  --fg: #ffffff;
  --body: rgba(220, 235, 230, 0.82);
  --muted: rgba(160, 240, 220, 0.70);
  --glass: rgba(0, 201, 167, 0.06);
  --glass-bd: rgba(0, 201, 167, 0.20);
  --glass-bd-hi: rgba(0, 201, 167, 0.45);
  --hair: rgba(0, 201, 167, 0.15);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}
* { box-sizing: border-box; }
body {
  margin: 0; min-height: 100dvh; background: var(--bg); color: var(--body);
  font-family: "Outfit", -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  display: flex; flex-direction: column; align-items: center;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(720px 420px at 50% -6%, rgba(0, 201, 167, 0.14), transparent 60%),
    radial-gradient(560px 380px at 80% 8%, rgba(34, 211, 238, 0.08), transparent 55%);
}
.wrap { position: relative; z-index: 1; width: 100%; max-width: 540px; padding: 56px 22px 40px; }

.head { text-align: center; margin-bottom: 22px; animation: rise .55s var(--ease) both; }
.avatar {
  width: 92px; height: 92px; border-radius: 26%; margin: 0 auto 16px; display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 0 30px -6px rgba(0, 201, 167, 0.4);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.kicker {
  display: inline-block; margin-bottom: 12px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: #7fe9d4; border: 1px solid rgba(0, 201, 167, 0.25); background: rgba(0, 201, 167, 0.06);
  border-radius: 999px; padding: 5px 13px;
}
.head h1 { font-family: "Syne", sans-serif; font-weight: 800; font-size: 2.05rem; color: var(--fg); margin: 0 0 12px; letter-spacing: -0.01em; line-height: 1.14; }
.head .tag { color: var(--body); font-size: 1.02rem; line-height: 1.6; margin: 0 auto; max-width: 440px; }

.feats { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 22px 0 4px; padding: 0; list-style: none; animation: rise .6s var(--ease) .12s both; }
.feats li {
  font-size: .82rem; color: var(--muted); background: var(--glass); border: 1px solid var(--glass-bd);
  border-radius: 999px; padding: 7px 13px;
}

.card {
  margin-top: 24px; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 18px;
  padding: 26px 22px; animation: rise .6s var(--ease) .18s both;
}
.ctas { display: flex; flex-direction: column; gap: 11px; }
.btn {
  display: block; width: 100%; text-align: center; text-decoration: none;
  padding: 16px 20px; border-radius: 14px; border: 0; cursor: pointer;
  font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.05rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.btn.primary {
  color: #03110d; background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 0 20px rgba(0, 201, 167, 0.4), 0 0 40px rgba(5, 150, 105, 0.18);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0, 201, 167, 0.65), 0 0 60px rgba(5, 150, 105, 0.35); }
.btn.ghost {
  color: #cfeee6; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-bd);
}
.btn.ghost:hover { transform: translateY(-2px); border-color: var(--glass-bd-hi); }
.meta { text-align: center; color: var(--muted); font-size: .78rem; margin: 13px 0 0; }
.meta a { color: var(--muted); }

.sec { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--hair); }
.sec h2 { font-family: "Syne", sans-serif; font-weight: 600; color: var(--fg); font-size: .95rem; margin: 0 0 10px; letter-spacing: .01em; }
.sec ul { margin: 0; padding: 0; list-style: none; }
.sec li { position: relative; padding-left: 22px; margin-bottom: 9px; font-size: .92rem; line-height: 1.5; color: var(--body); }
.sec li::before { content: ""; position: absolute; left: 4px; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px rgba(0,201,167,.6); }
code {
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace; font-size: .84rem;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-bd); border-radius: 7px;
  padding: 2px 7px; color: #a9f2e2; white-space: nowrap;
}
.smartscreen {
  margin-top: 18px; font-size: .82rem; line-height: 1.55; color: var(--muted);
  background: rgba(255,255,255,0.03); border: 1px solid var(--hair); border-radius: 12px; padding: 13px 15px;
}
.smartscreen strong { color: #cfeee6; font-weight: 600; }

/* Forms (waitlist) */
.field { margin-bottom: 13px; }
.field input {
  width: 100%; padding: 15px 16px; border-radius: 12px; font-family: "Outfit", sans-serif; font-size: 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-bd); color: var(--fg);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease); outline: none;
}
.field input::placeholder { color: rgba(160, 240, 220, 0.45); }
.field input:focus { border-color: var(--glass-bd-hi); box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.12); }
/* Honeypot — hidden from humans, catches bots */
.gotcha { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.submit {
  width: 100%; padding: 16px 20px; border-radius: 14px; border: 0; cursor: pointer;
  font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.02rem; color: #03110d;
  background: linear-gradient(135deg, var(--teal), var(--green));
  box-shadow: 0 0 20px rgba(0, 201, 167, 0.4), 0 0 40px rgba(5, 150, 105, 0.18);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .3s var(--ease);
}
.submit:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0, 201, 167, 0.65), 0 0 60px rgba(5, 150, 105, 0.35); }
.submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.note { text-align: center; color: var(--muted); font-size: .76rem; margin: 13px 0 0; }
.err { color: #ff9b8a; font-size: .85rem; text-align: center; margin: 12px 0 0; min-height: 1em; }

/* Success state */
.done { text-align: center; padding: 8px 4px; }
.done .check {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--green)); color: #03110d;
  box-shadow: 0 0 26px -4px rgba(0, 201, 167, 0.6);
}
.done .check svg { width: 28px; height: 28px; }
.done h2 { font-family: "Syne", sans-serif; font-weight: 700; color: var(--fg); font-size: 1.3rem; margin: 0 0 8px; }
.done p { color: var(--body); font-size: .95rem; line-height: 1.55; margin: 0 auto; max-width: 320px; }
.hidden { display: none; }

footer { text-align: center; color: var(--muted); font-size: .76rem; margin-top: 26px; animation: rise .6s var(--ease) .26s both; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--cyan); }

/* Pricing */
.wrap.wide { max-width: 760px; }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.plans + .card { margin-top: 16px; }
.plan { margin-top: 0; position: relative; display: flex; flex-direction: column; }
.plan.best { border-color: var(--glass-bd-hi); box-shadow: 0 0 30px -8px rgba(0, 201, 167, 0.35); }
.plan-badge {
  position: absolute; top: -11px; right: 16px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: #03110d; font-weight: 600; background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 999px; padding: 4px 11px;
}
.plan-name { font-family: "Syne", sans-serif; font-weight: 600; color: var(--muted); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.plan-price { font-family: "Syne", sans-serif; font-weight: 800; color: var(--fg); font-size: 2.6rem; margin: 8px 0 14px; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-feats { margin: 0 0 20px; padding: 0; list-style: none; flex: 1; }
.plan-feats li { position: relative; padding-left: 22px; margin-bottom: 9px; font-size: .9rem; line-height: 1.5; }
.plan-feats li::before { content: ""; position: absolute; left: 4px; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px rgba(0,201,167,.6); }
@media (max-width: 640px) { .plans { grid-template-columns: 1fr; } }

@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* Inline links inside prose (support + the three legal pages). Without this they
   render as default browser blue on a near-black background — barely legible,
   and it was that way on terms/privacy/refund since they were published. */
.legal a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--teal); }
/* The nav pills and footer set their own colour; keep them out of it. */
.legal-nav a, footer a { text-decoration: none; }
