:root{
  --bg0:#050913;
  --bg1:#071225;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --link: #4db6ff;
  --accent:#00b7ff;
  --accent2:#2a7cff;
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 50% -10%, rgba(0,183,255,0.18), transparent 55%),
    radial-gradient(900px 600px at 50% 110%, rgba(42,124,255,0.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{ color:var(--link); text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 18px 70px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand img{
  width:44px;
  height:44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,183,255,0.35));
}
.brand strong{ display:block; font-size:15px; letter-spacing:0.2px; }
.brand span{ display:block; font-size:12.5px; color:var(--muted); }

nav a{
  margin-left: 14px;
  font-size:14px;
  color: var(--text);
  opacity: 0.9;
}
nav a:hover{ opacity:1; }

.hero{
  margin-top: 18px;
  padding: 26px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

h1{ margin:0 0 10px; font-size:30px; }
.subtitle{ margin:0; color:var(--muted); max-width: 860px; }

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,183,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size:13px;
}

.cta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size:14px;
}
.btn.primary{
  background: linear-gradient(90deg, rgba(0,183,255,0.35), rgba(42,124,255,0.25));
  border-color: rgba(77,182,255,0.55);
}
.btn:hover{ filter: brightness(1.08); }

section{
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

h2{ margin:0 0 10px; font-size:20px; }
h3{ margin:16px 0 6px; font-size:16px; color: rgba(255,255,255,0.92); }
.small{ font-size:13px; color: var(--muted); }

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
}
.card p{ margin:0; color: var(--muted); }

.pricing{
  width:100%;
  border-collapse: collapse;
  margin-top: 10px;
  overflow:hidden;
  border-radius: 14px;
}
.pricing th, .pricing td{
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pricing th{
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

footer{
  margin-top: 18px;
  padding: 14px 4px 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 860px){
  nav{ display:none; }
  .grid{ grid-template-columns: 1fr; }
}