:root{
  --bg:#0b0b0f;
  --panel:rgba(255,255,255,0.06);
  --panel2:rgba(255,255,255,0.10);
  --text:#f6f6f7;
  --muted:#c9c9d1;
  --line:rgba(255,255,255,0.14);
  --accent:#ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
}

.bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(255,255,255,0.09), transparent 55%),
    radial-gradient(800px 520px at 80% 30%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(700px 500px at 50% 95%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events:none;
}

.wrap{
  width:min(1040px, 92vw);
  margin:0 auto;
}

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

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  letter-spacing:0.2px;
}
.brand-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(255,255,255,0.08);
}
.brand-text{font-size:14px; opacity:0.92}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,0.08);
}
.nav-cta{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.04);
}

.hero{
  padding:26px 0 10px;
}

.card{
  background:linear-gradient(180deg, var(--panel), rgba(255,255,255,0.04));
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
}

.logo-row{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}
.logo{
  width:min(440px, 78vw);
  height:auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

h1{
  margin:8px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing:-0.6px;
  line-height:1.06;
  text-align:center;
}

.lead{
  margin:0 auto 18px;
  max-width: 68ch;
  text-align:center;
  font-size: clamp(16px, 1.8vw, 19px);
  color:var(--muted);
  line-height:1.55;
}
.nowrap{white-space:nowrap}

.actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 18px 0 16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,0.05);
  font-weight:650;
  font-size:14px;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.22);
}
.btn.primary{
  background:rgba(255,255,255,0.92);
  color:#0b0b0f;
  border-color:rgba(255,255,255,0.92);
}
.btn.primary:hover{
  background:#ffffff;
}

.links{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  align-items:center;
  color:var(--muted);
  font-size:14px;
  margin-bottom: 12px;
}
.links a{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.18);
  padding-bottom:2px;
}
.links a:hover{color:var(--text)}
.dot{opacity:0.5}

.fineprint{
  margin:0;
  text-align:center;
  color:rgba(255,255,255,0.65);
  font-size:12px;
}

.footer{
  padding:20px 0 28px;
  text-align:center;
  color:rgba(255,255,255,0.65);
  font-size:12px;
}
