:root{
  --bg:#ffffff;
  --ink:#141414;
  --muted:#575757;
  --line:#ebebeb;
  --accent:#ff6a00;
  --accent-dark:#e05a00;
  --gold:#f5c451;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;height:100%}
body{
  font-family:'Inter','Helvetica Neue',Arial,sans-serif;color:var(--ink);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(255,106,0,.18), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(245,196,81,.18), transparent 60%),
    #fffaf5;
  -webkit-font-smoothing:antialiased;line-height:1.45;
  min-height:100%;display:flex;flex-direction:column;
}

header.top{padding:26px 22px 0}
.top .wrap{max-width:1080px;margin:0 auto}
.brand{
  display:inline-flex;align-items:center;gap:10px;
  font-weight:700;font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:#111;
}
.brand-dot{width:10px;height:10px;border-radius:50%;background:var(--accent)}

main.stage{flex:1 0 auto;display:flex;align-items:center;justify-content:center;padding:36px 20px 60px}

.card{
  position:relative;
  width:min(520px,100%);
  background:#fff;border:1px solid var(--line);border-radius:24px;
  padding:36px 32px 28px;
  box-shadow:0 40px 100px -30px rgba(0,0,0,.25);
  overflow:hidden;
  transition:opacity .35s ease, transform .35s ease;
}
.card::before{
  content:"";position:absolute;inset:0 0 auto 0;height:6px;
  background:linear-gradient(90deg,var(--accent),var(--gold),var(--accent));
}
.card.exiting{opacity:0;transform:translateY(-10px) scale(.97);pointer-events:none}
.card.entering{opacity:0;transform:translateY(10px) scale(.97)}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:999px;
  background:rgba(255,106,0,.12);color:#b84300;font-weight:700;font-size:12px;letter-spacing:.08em;
  text-transform:uppercase;margin-bottom:16px;
}
.pill.muted{background:#f1f1f1;color:#666}

.hero-ico{
  width:68px;height:68px;border-radius:20px;margin-bottom:16px;
  background:linear-gradient(135deg,var(--accent),#ff9a3c);
  display:grid;place-items:center;color:#fff;
  box-shadow:0 14px 32px -12px rgba(255,106,0,.65);
}
.hero-ico.neutral{background:#eee;color:#777;box-shadow:none}

h1{
  font-size:clamp(24px,3.2vw,32px);line-height:1.15;letter-spacing:-.02em;
  margin:0 0 10px;
}
h1 .accent{color:var(--accent)}
.text{font-size:15.5px;line-height:1.55;color:#3a3a3a;margin:0 0 18px}

ul.features{
  list-style:none;padding:0;margin:0 0 22px;display:grid;gap:8px;
}
ul.features li{display:flex;gap:10px;align-items:flex-start;font-size:14px;color:#222}
ul.features svg{flex:0 0 18px;margin-top:3px;color:var(--accent)}

.btns{display:grid;grid-template-columns:1fr auto;gap:10px}
@media (max-width:440px){ .btns{grid-template-columns:1fr} }
.btn{
  appearance:none;cursor:pointer;border:none;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:15px 20px;border-radius:13px;
  font-weight:700;font-size:15px;letter-spacing:.01em;
  transition:transform .15s ease, box-shadow .2s ease, filter .2s ease, background .15s ease;
}
.btn.primary{
  background:linear-gradient(180deg,var(--accent),var(--accent-dark));color:#fff;
  box-shadow:0 14px 30px -14px rgba(255,106,0,.7);
}
.btn.primary:hover{transform:translateY(-1px);filter:brightness(1.05)}
.btn.primary[disabled]{opacity:.55;cursor:not-allowed;transform:none;filter:none}
.btn.ghost{background:#f4f4f4;color:#333}
.btn.ghost:hover{background:#eaeaea;color:#111}
.btn.wide{grid-column:1 / -1;width:100%}

.footnote{display:block;margin-top:14px;font-size:11.5px;color:#888;line-height:1.55}

footer{background:#141414;color:#d9d9d9;padding:28px 20px;font-size:13px}
footer .wrap{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center}
@media (max-width:720px){ footer .wrap{grid-template-columns:1fr} }
footer a{color:#fff;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.25)}
footer a:hover{border-color:#fff}
.legal{display:flex;gap:18px;flex-wrap:wrap;color:#aeaeae}
.co{opacity:.85;line-height:1.6}

.redir{
  position:fixed;inset:0;background:rgba(255,250,245,.96);
  display:none;align-items:center;justify-content:center;z-index:9999;flex-direction:column;gap:14px;
}
.redir.active{display:flex}
.spinner{
  width:42px;height:42px;border-radius:50%;
  border:3px solid #eee;border-top-color:var(--accent);
  animation:spin .8s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.redir .msg{font-weight:600;color:#111}

.status{
  display:none;margin:-6px 0 14px;font-size:13px;color:var(--muted);line-height:1.5;
}
.status.active{display:block}
.status.err{color:#9a1c1c}
.status.warn{color:#8a4a00}
