:root{
  --bg:#0b0f1a;
  --panel:#10182b;
  --text:#e9eefc;
  --muted:#a9b3d6;
  --line:rgba(255,255,255,.10);
  --accent:#d4b26a;
  --accent2:#7aa7ff;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --radius:16px;
  --max:1040px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 700px at 20% 0%, rgba(122,167,255,.18), transparent 60%),
              radial-gradient(900px 600px at 90% 20%, rgba(212,178,106,.16), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:24px}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:14px 18px;
  background:rgba(16,24,43,.55);
  backdrop-filter: blur(10px);
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
}
.muted{color:var(--muted); font-weight:600}

.pill{
  text-decoration:none;
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
}
.pill:hover{color:var(--text); border-color:rgba(255,255,255,.2)}

.hero{padding:56px 0 20px}
.badge{
  display:inline-block;
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  background:rgba(16,24,43,.45);
}

h1{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  margin:18px 0 12px;
}
.lead{
  margin:0 0 22px;
  color:var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  max-width: 58ch;
}

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

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  cursor:pointer;
  font-weight:650;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(212,178,106,.95), rgba(122,167,255,.85));
  color:#0b0f1a;
  border-color: rgba(255,255,255,.0);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.ghost{
  background: rgba(16,24,43,.55);
  color: var(--text);
}
.btn.ghost:hover{border-color: rgba(255,255,255,.2)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:10px;
}
.card{
  border:1px solid var(--line);
  background: rgba(16,24,43,.55);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px; line-height:1.45}

.section{
  margin-top:34px;
  padding:22px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16,24,43,.45);
}
.section h2{margin:0 0 8px; font-size:20px}
.section p{margin:0; color:var(--muted); line-height:1.55}

.form{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
input[type="email"]{
  flex: 1 1 260px;
  min-width: 220px;
  padding:12px 14px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(11,15,26,.55);
  color: var(--text);
  outline:none;
}
input[type="email"]::placeholder{color:rgba(169,179,214,.7)}
input[type="email"]:focus{border-color: rgba(122,167,255,.5)}

.notice{margin-top:12px; color:var(--muted); min-height: 22px}

.footer{
  margin:34px 0 10px;
  color:rgba(169,179,214,.75);
  text-align:center;
  font-size: 13px;
}

.sr-only{
  position:absolute !important;
  height:1px; width:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}

@media (max-width: 860px){
  .cards{grid-template-columns: 1fr}
  .hero{padding:40px 0 10px}
}
