/* Unreal VPN — simple 3-page static site (index / privacy / terms) */

:root{
  --bg1:#050814;
  --bg2:#0b1230;
  --bg3:#081a22;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --border: rgba(120, 170, 255, 0.25);
  --text:#e9eefc;
  --muted: rgba(233,238,252,0.72);
  --muted2: rgba(233,238,252,0.55);
  --accent:#69b6ff;
  --accent2:#7c5cff;
  --ok:#39d98a;
  --warn:#ffd166;
  --shadow: 0 24px 60px rgba(0,0,0,0.45);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Segoe UI",Inter,Helvetica,Arial,sans-serif;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(105,182,255,0.22), transparent 55%),
    radial-gradient(1000px 650px at 80% 15%, rgba(124,92,255,0.18), transparent 55%),
    radial-gradient(900px 700px at 45% 85%, rgba(57,217,138,0.10), transparent 55%),
    linear-gradient(135deg, var(--bg1), var(--bg2) 55%, var(--bg3));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5,8,20,0.78), rgba(5,8,20,0.40));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:-0.3px;
}
.logo{
  width:40px;
  height:40px;
  border-radius:14px;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(105,182,255,0.9), transparent 60%),
    radial-gradient(14px 14px at 70% 35%, rgba(124,92,255,0.85), transparent 60%),
    radial-gradient(18px 18px at 55% 75%, rgba(57,217,138,0.65), transparent 65%),
    rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.navlinks{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
  user-select:none;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(105,182,255,0.35);
  background: rgba(255,255,255,0.06);
}
.btn.primary{
  border-color: rgba(105,182,255,0.45);
  background: linear-gradient(135deg, rgba(105,182,255,0.22), rgba(124,92,255,0.18));
}
.btn.small{ padding:9px 12px; border-radius:12px; font-size:13px; }
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(105,182,255,0.25);
  background: rgba(105,182,255,0.12);
  color:var(--text);
  font-weight:600;
  font-size:13px;
}

.hero{
  padding:56px 0 22px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:26px;
  align-items:center;
}
@media (max-width: 920px){
  .heroGrid{ grid-template-columns: 1fr; }
}

.hTitle{
  font-size: clamp(34px, 4.3vw, 54px);
  line-height:1.06;
  letter-spacing:-0.7px;
  margin:0 0 14px;
}
.hSub{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16px;
  line-height:1.6;
  max-width: 54ch;
}

.kpis{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 0;
}
.kpis .pill span.dot{
  width:8px;
  height:8px;
  border-radius:99px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(57,217,138,0.18);
}

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(120,170,255,0.20);
  background: linear-gradient(180deg, var(--card2), var(--card));
  box-shadow: var(--shadow);
}
.card.pad{ padding:22px; }
.cardTitle{
  font-size:18px;
  font-weight:800;
  letter-spacing:-0.3px;
  margin:0 0 10px;
}
.cardText{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:15px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
@media (max-width: 820px){
  .grid2{ grid-template-columns:1fr; }
}

.screens{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.screens img{
  width:min(260px, 44vw);
  height:auto;
  border-radius: 28px;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 48px rgba(0,0,0,0.45);
  transform: translateZ(0);
}
.screens .note{
  color:var(--muted2);
  font-size:13px;
  text-align:center;
  margin-top:10px;
}

.section{
  padding: 18px 0 6px;
}
.section h2{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-0.3px;
}
.section p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.features{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){
  .features{ grid-template-columns:1fr; }
}
.feature{
  padding:18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.feature h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-0.2px;
}
.feature p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}
.iconRow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.icon{
  width:34px;
  height:34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  border:1px solid rgba(105,182,255,0.25);
  background: rgba(105,182,255,0.10);
}

.page{
  padding: 28px 0 60px;
}
.pageHeader{
  padding: 34px 0 6px;
}
.pageHeader h1{
  margin:0;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing:-0.6px;
}
.pageHeader p{
  margin:10px 0 0;
  color: var(--muted);
  line-height:1.65;
  max-width: 75ch;
}

.doc{
  margin-top: 18px;
}
.doc .card{
  padding: 22px;
}
.doc h2{
  margin:18px 0 8px;
  font-size:18px;
  letter-spacing:-0.25px;
}
.doc h3{
  margin:16px 0 8px;
  font-size:15px;
  letter-spacing:-0.2px;
  color: rgba(233,238,252,0.92);
}
.doc p, .doc li{
  color: var(--muted);
  line-height:1.75;
  font-size: 14.5px;
}
.doc ol{
  padding-left: 20px;
  margin: 10px 0 0;
}
.doc li{ margin: 8px 0; }
.doc .muted{
  color: var(--muted2);
  font-size: 13px;
  margin-top: 8px;
}
.hr{
  height:1px;
  background: rgba(255,255,255,0.08);
  border:0;
  margin: 18px 0;
}

.footer{
  padding: 20px 0 34px;
  color: var(--muted2);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.08);
}
.footerGrid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  flex-wrap:wrap;
}
.footer small{ display:block; line-height:1.6; }
