:root {
  --bg: #071827;
  --bg-card: #0b2336;
  --bg-soft: #102f45;
  --primary: #26d9c7;
  --ok: #5be7b7;
  --vpn: #78a7ff;
  --text: #ffffff;
  --text-soft: #d8e7f0;
  --text-muted: #8fa9b8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #123f5f 0%, var(--bg) 40%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
.container { width: min(100% - 2rem, 1180px); margin-inline: auto; }
.section { padding: 64px 0; }
h1, h2, h3 { margin-top: 0; line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 24, 39, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; }
.brand img { width: 36px; height: 36px; }
.nav { display: none; gap: 1.2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .85rem 1.25rem; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease;
}
.btn:focus-visible, .faq-item summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn-primary { background: linear-gradient(120deg, var(--primary), var(--ok)); color: #06212a; box-shadow: 0 10px 24px rgba(38, 217, 199, .24); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { border-color: rgba(255,255,255,.18); background: transparent; color: var(--text); }
.btn-secondary:hover { background: rgba(255,255,255,.08); }
.hero-grid, .two-col, .three-col, .footer-grid { display: grid; gap: 1rem; }
.hero-grid { align-items: center; }
.eyebrow { color: #ffd166; font-weight: 700; margin-bottom: .6rem; }
.hero-text, .section-lead { color: var(--text-soft); max-width: 72ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.3rem 0 .75rem; }
.hero-note, .small-note { color: var(--text-muted); }
.trust-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.trust-badges span, .tags span {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  padding: .45rem .85rem;
}
.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 1.3rem;
}
.card ul { margin-bottom: 0; padding-left: 1.1rem; color: var(--text-soft); }
.card-danger { background: linear-gradient(180deg, rgba(120,167,255,.15), rgba(255,255,255,.04)); }
.card-safe { background: linear-gradient(180deg, rgba(91,231,183,.2), rgba(255,255,255,.04)); }
.hero-phone { display: grid; place-items: center; }
.phone {
  width: min(100%, 360px); border-radius: 32px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.15); padding: 1.4rem; text-align: center;
}
.phone-header { font-weight: 800; margin-bottom: .6rem; }
.status-online { color: var(--ok); font-weight: 700; }
.power-button {
  width: 132px; height: 132px; border-radius: 50%; border: 0;
  background: linear-gradient(120deg, var(--primary), var(--vpn));
  color: #06212a; font-size: 1.2rem; font-weight: 800; margin: .6rem 0 1rem;
}
.phone-mode { color: #ffd166; margin-bottom: .6rem; font-weight: 700; }
.step-number, .mode-subtitle { color: #ffd166; font-weight: 700; margin-bottom: .5rem; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.vpn-col .tags span { background: rgba(120,167,255,.18); }
.direct-col .tags span { background: rgba(91,231,183,.2); }
.install-list { color: var(--text-soft); padding-left: 1.1rem; }
.install-wrap { display: grid; gap: 1rem; }
.qr-card img { width: 100%; max-width: 200px; display: block; margin: .8rem auto 0; }
.price-card { max-width: 560px; }
.faq-list { display: grid; gap: .75rem; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1rem 1.1rem; font-weight: 700;
}
.faq-item p { margin: 0; padding: 0 1.1rem 1rem; color: var(--text-soft); }
.final-cta .card { text-align: center; background: linear-gradient(150deg, rgba(38,217,199,.2), rgba(120,167,255,.15)); }
.site-footer { background: var(--bg-card); padding: 2.5rem 0 1rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-links { display: grid; gap: .5rem; align-content: start; }
.copy { text-align: center; color: var(--text-muted); margin-top: 1.3rem; }
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(3, 12, 20, 0.7);
  display: grid; place-items: center; padding: 1rem;
}
.modal { width: min(100%, 560px); background: var(--bg-soft); }
[hidden] { display: none !important; }
@media (min-width: 768px) {
  .section { padding: 86px 0; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2rem; }
  .two-col { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: repeat(3, 1fr); }
  .install-wrap { grid-template-columns: 1.2fr .8fr; }
  .footer-grid { grid-template-columns: 1fr auto; align-items: start; }
}
@media (min-width: 1024px) { .nav { display: inline-flex; } }
@media (min-width: 1440px) { .section { padding: 110px 0; } }
