:root {
  --bg: #070a12;
  --card: rgba(255,255,255,.075);
  --card-strong: rgba(255,255,255,.11);
  --text: #f6f8ff;
  --muted: #a9b1c7;
  --line: rgba(255,255,255,.14);
  --accent: #7c5cff;
  --accent-2: #34d5ff;
  --success: #52e6a7;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(124,92,255,.28), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(52,213,255,.22), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; }

.topbar {
  width: min(1120px, calc(100% - 32px));
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7,10,18,.72);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand, .nav, .hero-actions, .trust-row, .help, footer {
  display: flex;
  align-items: center;
}
.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}
.nav { gap: 8px; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
}
.nav a:hover, .telegram-link {
  color: var(--text) !important;
  background: rgba(255,255,255,.09);
}

main { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
  padding: 70px 0 50px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--success);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: .94;
  letter-spacing: -.07em;
  max-width: 760px;
  margin-bottom: 24px;
}
.subtitle {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 30px;
}
.hero-actions { gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.btn, .buy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.primary, .buy {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 14px 36px rgba(124,92,255,.25);
}
.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.trust-row { gap: 10px; flex-wrap: wrap; }
.trust-row span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding: 26px;
}
.glow {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(52,213,255,.3);
  filter: blur(45px);
}
.mock-window {
  position: relative;
  height: 100%;
  min-height: 335px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(6,9,17,.64);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.dots { display: flex; gap: 7px; margin-bottom: 34px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.32); }
.mock-line { height: 14px; width: 58%; border-radius: 999px; background: rgba(255,255,255,.15); margin-bottom: 12px; }
.mock-line.wide { width: 86%; }
.mini-cards { display: grid; gap: 10px; margin: 28px 0 auto; }
.mini-cards span {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  font-weight: 800;
}
.mock-window a {
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  padding: 15px;
  border-radius: 16px;
  background: white;
  color: #070a12;
}

.plans { padding: 55px 0 80px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.section-head h2, .help h2 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -.05em; margin-bottom: 12px; }
.section-head p, .help p { color: var(--muted); line-height: 1.7; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan {
  position: relative;
  padding: 24px;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
}
.plan.featured { background: var(--card-strong); border-color: rgba(52,213,255,.45); }
.label {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 12px;
  font-weight: 900;
  color: #071018;
  background: var(--success);
  padding: 7px 10px;
  border-radius: 999px;
}
.type { color: var(--success); font-size: 13px; font-weight: 800; margin-bottom: 14px; }
.plan h3 { font-size: 24px; letter-spacing: -.03em; margin-bottom: 10px; }
.desc { color: var(--muted); line-height: 1.55; margin-bottom: 22px; }
.price { margin-top: auto; margin-bottom: 18px; }
.price small { display: block; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.price strong { font-size: 42px; letter-spacing: -.05em; }
.buy { width: 100%; }

.help {
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0 70px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(52,213,255,.10));
}
.help p { margin-bottom: 0; max-width: 640px; }
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer a { text-decoration: none; font-weight: 800; color: var(--text); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 58px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .topbar { align-items: flex-start; border-radius: 24px; }
  .nav { display: none; }
  .hero { gap: 28px; }
  .grid { grid-template-columns: 1fr; }
  .help, footer { flex-direction: column; align-items: flex-start; }
  .hero-card { min-height: 320px; }
}
