:root {
--bg: #070911;
--card: #111522;
--card2: #171c2c;
--text: #ffffff;
--muted: #aeb7c8;
--accent: #ff3b57;
--accent2: #7c5cff;
--line: rgba(255,255,255,.10);
}

{
box-sizing: border-box;
}

body {
margin: 0;
font-family: Arial, sans-serif;
background:
radial-gradient(circle at 20% 10%, rgba(124,92,255,.28), transparent 32%),
radial-gradient(circle at 80% 20%, rgba(255,59,87,.20), transparent 34%),
var(--bg);
color: var(--text);
}

a {
color: inherit;
text-decoration: none;
}

.page {
min-height: 100vh;
}

.nav {
max-width: 1160px;
margin: 0 auto;
padding: 24px;
display: flex;
align-items: center;
justify-content: space-between;
}

.logo {
font-size: 22px;
font-weight: 800;
letter-spacing: .3px;
}

.nav-links {
display: flex;
gap: 20px;
color: var(--muted);
font-size: 15px;
}

.hero {
max-width: 1160px;
margin: 0 auto;
padding: 80px 24px 60px;
display: grid;
grid-template-columns: 1.1fr .9fr;
gap: 42px;
align-items: center;
}

.badge {
display: inline-flex;
padding: 8px 12px;
border: 1px solid var(--line);
border-radius: 999px;
color: var(--muted);
background: rgba(255,255,255,.04);
font-size: 14px;
margin-bottom: 22px;
}

h1 {
font-size: 64px;
line-height: 1.02;
margin: 0 0 22px;
max-width: 760px;
}

.lead {
color: var(--muted);
font-size: 22px;
line-height: 1.5;
margin: 0 0 32px;
max-width: 680px;
}

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

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 50px;
padding: 0 22px;
border-radius: 12px;
font-weight: 700;
border: 1px solid var(--line);
}

.btn-primary {
background: linear-gradient(135deg, var(--accent), var(--accent2));
border: none;
}

.btn-secondary {
background: rgba(255,255,255,.05);
color: var(--text);
}

.preview {
border: 1px solid var(--line);
border-radius: 28px;
background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
padding: 18px;
box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.phone {
aspect-ratio: 9 / 16;
border-radius: 22px;
background:
linear-gradient(160deg, rgba(255,59,87,.75), transparent 34%),
linear-gradient(20deg, rgba(124,92,255,.8), transparent 42%),
#101421;
padding: 18px;
display: flex;
flex-direction: column;
justify-content: flex-end;
overflow: hidden;
position: relative;
}

.flash {
position: absolute;
inset: 30px;
border: 2px solid rgba(255,255,255,.65);
border-radius: 24px;
box-shadow: 0 0 40px rgba(255,255,255,.28);
}

.timeline {
position: relative;
z-index: 2;
display: grid;
gap: 8px;
}

.bar {
height: 12px;
border-radius: 99px;
background: rgba(255,255,255,.22);
overflow: hidden;
}

.bar span {
display: block;
height: 100%;
border-radius: inherit;
background: #fff;
}

.section {
max-width: 1160px;
margin: 0 auto;
padding: 50px 24px;
}

.section h2 {
font-size: 38px;
margin: 0 0 16px;
}

.section-text {
color: var(--muted);
font-size: 18px;
line-height: 1.55;
max-width: 760px;
margin: 0 0 28px;
}

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

.card {
background: rgba(17,21,34,.78);
border: 1px solid var(--line);
border-radius: 20px;
padding: 22px;
}

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

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

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

.price {
background: var(--card);
border: 1px solid var(--line);
border-radius: 22px;
padding: 24px;
}

.price.featured {
border-color: rgba(255,59,87,.55);
background: linear-gradient(180deg, rgba(255,59,87,.12), rgba(17,21,34,.90));
}

.price h3 {
margin: 0 0 8px;
font-size: 22px;
}

.amount {
font-size: 34px;
font-weight: 800;
margin: 10px 0 18px;
}

.price ul {
margin: 0;
padding-left: 18px;
color: var(--muted);
line-height: 1.8;
}

.footer {
max-width: 1160px;
margin: 0 auto;
padding: 42px 24px 60px;
color: var(--muted);
border-top: 1px solid var(--line);
display: flex;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}

@media (max-width: 860px) {
.hero {
grid-template-columns: 1fr;
padding-top: 42px;
}

h1 {
font-size: 44px;
}

.lead {
font-size: 19px;
}

.grid,
.pricing {
grid-template-columns: 1fr;
}

.nav-links {
display: none;
}
}

html {
  scroll-behavior: smooth;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #111522;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.modal-panel h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.modal-text {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.45;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.login-form {
  display: grid;
  gap: 12px;
}

.login-form input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #070911;
  color: #fff;
  font-size: 16px;
}

.login-form button {
  padding: 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.modal-error {
  display: none;
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 59, 87, .12);
  color: #ff9aaa;
  border: 1px solid rgba(255, 59, 87, .25);
}

.modal-error.is-visible {
  display: block;
}

.modal-error {
  white-space: pre-line;
  line-height: 1.45;
}

.modal-error {
  white-space: pre-line;
  line-height: 1.45;
}

.ban-title {
  text-align: center;
  font-weight: 800;
  margin-bottom: 8px;
}
