
:root {
  --bg: #06101f;
  --bg2: #101a34;
  --text: #f7fbff;
  --muted: rgba(247,251,255,.72);
  --line: rgba(255,255,255,.14);
  --card: rgba(255,255,255,.08);
  --blue: #1498ff;
  --cyan: #22d8ff;
  --violet: #8062ff;
  --max: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(128,98,255,.28), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(34,216,255,.18), transparent 28%),
    linear-gradient(180deg, #030813 0%, var(--bg) 55%, #030813 100%);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1.4px);
  background-size: 92px 92px;
  opacity: .16;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  padding: 22px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 22px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 0 28px rgba(20,152,255,.35);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.hero {
  padding: 56px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(34,216,255,.35);
  border-radius: 999px;
  color: #44e3ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(34,216,255,.08);
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .96;
  letter-spacing: -.06em;
}

.gradient {
  display: block;
  background: linear-gradient(105deg, var(--cyan), var(--blue) 45%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -.035em;
  margin: 0 0 16px;
}

.copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 0 30px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  font-weight: 850;
  background: rgba(255,255,255,.07);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 18px 46px rgba(20,152,255,.28);
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(330px, 84vw);
  border-radius: 48px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,.38), rgba(34,216,255,.16), rgba(128,98,255,.28));
  box-shadow: 0 40px 90px rgba(0,0,0,.58);
}

.phone img {
  border-radius: 39px;
}

.section {
  padding: 58px 0;
}

.section-title {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -.045em;
  line-height: 1;
  margin: 0 0 14px;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
  margin: 0 0 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  min-height: 190px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(20,152,255,.18);
  margin-bottom: 18px;
  font-size: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}

.list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.item {
  display: flex;
  gap: 11px;
  color: var(--muted);
  font-weight: 700;
}

.check {
  color: #35d9ff;
}

.footer {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding: 28px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 54px 0 90px;
}

.legal-box {
  max-width: 900px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  background: rgba(255,255,255,.07);
}

.legal-box h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.legal-box p,
.legal-box li {
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { justify-content: flex-start; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 34px; }
  .actions .btn { width: 100%; }
  .phone-wrap { justify-content: center; }
}
