:root{
  /* Brand */
  --accent:#7c5cff;
  --accent2:#00d4ff;
  --accent-rgb:124,92,255;
  --accent2-rgb:0,212,255;

  /* Base palette */
  --bg0:#050816;
  --bg1:#050714;
  --bg2:#020617;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.56);
  --border:rgba(255,255,255,.12);
  --surface:rgba(255,255,255,.07);
  --surface2:rgba(255,255,255,.05);

  /* Layout */
  --max:1160px;
  --radius:18px;
  --radius-sm:14px;
  --shadow:0 22px 70px rgba(0,0,0,.55);
}

*{box-sizing:border-box}

html{color-scheme:dark}

body{
  margin:0;
  min-height:100vh;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 12% 18%, rgba(var(--accent-rgb),.33) 0%, transparent 62%),
    radial-gradient(900px 540px at 88% 10%, rgba(var(--accent2-rgb),.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 70%, var(--bg2) 100%);
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.ico{
  width:20px;
  height:20px;
  display:block;
}

/* Visually hidden but accessible */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.page{
  max-width:var(--max);
  margin:0 auto;
  padding:24px 18px;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  gap:22px;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.2px;
  color:#061024;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 16px 50px rgba(var(--accent-rgb),.20);
}

.brand-txt{display:flex;flex-direction:column;line-height:1.05}
.brand-name{font-weight:900;letter-spacing:.2px}
.brand-tag{font-size:12px;color:var(--muted2);margin-top:3px}

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

.nav-link{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
}

.nav-link:hover{
  color:var(--text);
  border-color:var(--border);
  background:var(--surface2);
  text-decoration:none;
}

.nav-cta{
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#061024;
  font-weight:900;
  letter-spacing:.15px;
}

.nav-cta:hover{filter:brightness(1.05);text-decoration:none}

.content{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  grid-template-areas:"copy auth";
  gap:22px;
  align-items:start;
}

.copy{grid-area:copy;padding-top:6px}
.auth{grid-area:auth}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--surface2);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
}

.hero-title{
  margin:12px 0 8px;
  font-size:clamp(32px, 4.4vw, 52px);
  line-height:1.02;
  letter-spacing:-.02em;
}

.lead{
  margin:0;
  max-width:60ch;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--surface2);
  color:var(--text);
  font-weight:900;
  letter-spacing:.15px;
  text-decoration:none;
  transition:filter .15s ease, transform .15s ease;
}

.cta-primary{
  border:none;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#061024;
}

.cta:hover{filter:brightness(1.06);text-decoration:none}
.cta:active{transform:translateY(1px)}

.bullets{display:grid;gap:12px;margin-top:18px}

.bullet{
  display:flex;
  gap:12px;
  padding:12px 14px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:var(--surface2);
}

.bullet-ico{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(var(--accent-rgb),.16);
  border:1px solid rgba(var(--accent-rgb),.20);
  color:rgba(255,255,255,.92);
}

.bullet h3{margin:0 0 4px;font-size:15px;letter-spacing:-.01em}
.bullet p{margin:0;color:var(--muted2);font-size:13px;line-height:1.45}

.steps{margin-top:18px}
.h2{margin:0 0 10px;font-size:16px;letter-spacing:-.01em}

.step-list{
  margin:0;
  padding:0;
  list-style:none;
  counter-reset:step;
  display:grid;
  gap:10px;
}

.step-list li{
  counter-increment:step;
  position:relative;
  padding:12px 14px 12px 52px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--muted);
}

.step-list li::before{
  content:counter(step);
  position:absolute;
  left:14px;
  top:12px;
  width:28px;
  height:28px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--text);
  background:rgba(var(--accent-rgb),.20);
  border:1px solid rgba(var(--accent-rgb),.26);
}

.card{
  background:rgba(255,255,255,.07);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}

.card-head h2{margin:0;font-size:20px;letter-spacing:-.01em}
.card-sub{margin:6px 0 0;color:var(--muted2);font-size:13px;line-height:1.45}

.flash{padding:10px 12px;border-radius:12px;margin:10px 0 0;font-size:13px;border:1px solid var(--border);background:var(--surface2)}
.flash.success{border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.12)}
.flash.error{border-color:rgba(239,68,68,.40);background:rgba(239,68,68,.12)}
.flash.info{border-color:rgba(59,130,246,.40);background:rgba(59,130,246,.12)}

.form{margin-top:12px}

.field{margin-top:12px}
.field label{display:block;margin-bottom:6px;font-size:12px;color:var(--muted)}

.field input{
  width:100%;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.field input:focus{
  border-color:rgba(var(--accent-rgb),.70);
  box-shadow:0 0 0 4px rgba(var(--accent-rgb),.18);
}


.form-row{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:13px;
  color:var(--muted2);
}

.form-row-end{justify-content:flex-end}
.form-row-center{justify-content:center;gap:8px}

.form-link{color:var(--muted);text-decoration:none}
.form-link:hover{color:var(--text);text-decoration:none}

.btn{
  width:100%;
  margin-top:14px;
  padding:13px 14px;
  border-radius:12px;
  border:none;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#061024;
  font-weight:900;
  letter-spacing:.2px;
  cursor:pointer;
  transition:filter .15s ease, transform .15s ease;
}

.btn:hover{filter:brightness(1.06)}
.btn:active{transform:translateY(1px)}

.btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(255,255,255,.16), 0 0 0 7px rgba(var(--accent-rgb),.28);
}

.card-links{display:flex;flex-direction:column;gap:6px;margin-top:12px}
.card-links a{color:var(--muted)}
.card-links a:hover{color:var(--text)}

.trust{display:grid;gap:10px;margin-top:12px}

.trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
  background:var(--surface2);
}

.trust-ico{width:22px;height:22px;display:grid;place-items:center;color:rgba(255,255,255,.92)}
.trust-txt{color:var(--muted);font-size:13px;line-height:1.45}

.footer{
  margin-top:auto;
  padding:18px 0 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted2);
  font-size:12px;
}

.sep{opacity:.55}
.muted{color:var(--muted2)}

@media (max-width: 980px){
  .content{grid-template-columns:1fr;grid-template-areas:"copy" "auth"}
  .copy{padding-top:0}
}

@media (max-width: 720px){
  .header{flex-wrap:wrap}
  .nav{width:100%;justify-content:flex-start}
}

@media (max-width: 520px){
  .page{padding:18px 14px}
  .nav-cta{width:100%;text-align:center}
  .actions{flex-direction:column}
  .cta{width:100%}
}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important;scroll-behavior:auto !important}
}
