:root{
  --bg0:#070A12;
  --bg1:#0B1224;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.10);
  --text:#EAF0FF;
  --muted: rgba(234,240,255,.72);
  --muted2: rgba(234,240,255,.55);
  --primary:#4F7CFF;
  --primary2:#37D6C8;
  --danger:#FF5C7A;
  --shadow: 0 18px 55px rgba(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:
    radial-gradient(1100px 700px at 20% 10%, rgba(79,124,255,.22), transparent 55%),
    radial-gradient(900px 600px at 85% 20%, rgba(55,214,200,.18), transparent 55%),
    radial-gradient(900px 600px at 70% 90%, rgba(255,92,122,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit}
.container{
  max-width: 1040px;
  margin:0 auto;
  padding: 28px 18px 60px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0 18px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.logo{
  width:44px; height:44px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(79,124,255,1), rgba(55,214,200,1));
  box-shadow: 0 10px 30px rgba(79,124,255,.22);
  display:grid; place-items:center;
  font-weight:800;
  color:#071023;
}
.brand b{font-size:16px; letter-spacing:.2px}
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  color: var(--muted);
}

.hero{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap:22px;
  align-items:stretch;
  margin-top: 12px;
}
@media (max-width: 880px){
  .hero{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.04));
  border: 1px solid var(--stroke);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.heroLeft{
  padding: 28px 26px;
}
.heroRight{
  padding: 18px;
  display:flex; flex-direction:column; gap:12px;
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--primary2);
  box-shadow: 0 0 0 6px rgba(55,214,200,.12);
}

h1{
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
@media (max-width: 520px){
  h1{font-size: 36px}
}

.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09)}
.btnPrimary{
  border-color: rgba(79,124,255,.45);
  background: linear-gradient(135deg, rgba(79,124,255,.95), rgba(55,214,200,.92));
  color:#071023;
}
.btnPrimary:hover{background: linear-gradient(135deg, rgba(79,124,255,1), rgba(55,214,200,1))}
.btnGhost{
  color: var(--muted);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 880px){
  .grid{grid-template-columns:1fr}
}

.feature{
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.05);
}
.feature h3{
  margin:0 0 6px;
  font-size: 15px;
}
.feature p{
  margin:0;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.45;
}

.smallCard{
  padding: 16px;
}
.smallTitle{
  font-weight: 800;
  font-size: 14px;
  margin:0 0 6px;
}
.smallText{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hr{
  height:1px;
  background: rgba(255,255,255,.08);
  margin: 18px 0;
  border:0;
}

.footer{
  margin-top: 18px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  color: var(--muted2);
  font-size: 12px;
}
.footer a{
  color: var(--muted);
  text-decoration:none;
}
.footer a:hover{text-decoration:underline}

.notice{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.18);
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  line-height: 1.45;
}

.pillRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.pill{
  font-size: 12px;
  color: var(--muted);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  padding: 7px 10px;
  border-radius: 999px;
}
/* Cookie banner */
#cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  padding: 14px;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.cookie-inner{
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text p{
  margin: 6px 0 0 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255,255,255,0.80);
}

.cookie-text a{
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
}

.cookie-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn{
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  background: transparent;
}

.btn.primary{
  background: linear-gradient(90deg, rgba(59,130,246,1), rgba(16,185,129,1));
  border: none;
}

.btn.ghost:hover{
  border-color: rgba(255,255,255,0.35);
}

@media (max-width: 720px){
  .cookie-inner{
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions{
    width: 100%;
  }
  .btn{
    width: 100%;
  }
}
