:root {
  color-scheme: dark;
  --bg: #04070f;
  --bg-soft: #070d18;
  --bg-elevated: #0d1627;
  --bg-ink: linear-gradient(135deg, rgba(40, 141, 255, 0.18), rgba(147, 51, 234, 0.16));
  --accent: #38bdf8;
  --accent-strong: #0ea5e9;
  --accent-secondary: #a855f7;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 60px rgba(7, 15, 35, 0.55);
  --stack-space: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a:hover {
  opacity: 0.9;
}

.hidden {
  display: none !important;
}

.page {
  min-height: 100vh;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding-bottom: 80px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.18);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 15px;
  color: var(--text-muted);
}

.hero {
  position: relative;
  padding-bottom: 40px;
}

.privacy-hero {
  padding-bottom: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20px 0 0;
  z-index: -1;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.25), transparent 60%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--stack-space);
}

.hero-copy .tag,
.section .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1 {
  margin: 18px 0;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
}

.lead {
  color: var(--text-muted);
  font-size: 18px;
}

.privacy-hero-content {
  max-width: 720px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-layout {
  margin-top: 0;
}

.privacy-main {
  display: grid;
  gap: 24px;
  margin: 60px 0 0;
}

.privacy-card {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(8, 12, 21, 0.92);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-card h2 {
  margin: 0;
  font-size: 22px;
}

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

.privacy-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-card a {
  color: var(--accent);
}

.hero-pricing {
  max-width: 360px;
}

.price-card.hero-card {
  padding: 26px;
  margin-top: 0;
}

.hero-card .price-heading {
  align-items: baseline;
}

.hero-card .price-detail {
  margin: 12px 0;
}


.hero-card .benefits {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.hero-card .benefits li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 14px;
  background: var(--accent);
  color: #020617;
  font-weight: 600;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.35);
}

.cta.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.cta.ghost {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: var(--accent);
  font-size: 14px;
}

.store-link {
  text-decoration: none;
  font-weight: 600;
}

.store-link:hover {
  opacity: 0.9;
}

.cta.xl {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-visual {
  position: relative;
}

.mockup {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(8, 12, 21, 0.95);
  box-shadow: var(--shadow);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
}

.mockup-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mockup-card {
  background: var(--bg-elevated);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.mockup-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pill {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

.pill.blocked {
  background: rgba(168, 85, 247, 0.2);
  color: var(--accent-secondary);
}

.time {
  font-weight: 600;
  color: var(--text);
}

.mockup-text {
  color: var(--text-muted);
  margin: 0 0 12px;
}

.progress {
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: inherit;
}

.blocked-sites {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  font-size: 13px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
}

.avatars {
  display: inline-flex;
  align-items: center;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.18);
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.auth-summary {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-summary strong {
  color: var(--text);
}

.hero-layout .auth-summary {
  grid-column: 1 / -1;
  margin-top: 0;
}

.section {
  margin-top: calc(var(--stack-space) * 4);
}

.section.metrics {
  margin-top: 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--stack-space);
  padding: calc(var(--stack-space) * 2);
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(7, 13, 24, 0.85);
  box-shadow: var(--shadow);
}

.metric-value {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}

.metric-label {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.section-intro {
  max-width: 620px;
  margin-bottom: 40px;
}

.section-intro h2 {
  margin: 16px 0;
  font-size: clamp(30px, 4.5vw, 46px);
}

.section-intro .sub {
  color: var(--text-muted);
  margin-top: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(10, 15, 26, 0.85);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 60px;
  row-gap: var(--stack-space);
  align-items: flex-start;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--text-muted);
  display: grid;
  gap: 12px;
}

.benefits li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 10px;
}

.price-card {
  margin-top: 32px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(8, 12, 24, 0.9);
  box-shadow: var(--shadow);
}

.price-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-size: 52px;
  font-weight: 700;
  margin: 0;
}

.price-cycle {
  color: var(--text-muted);
}

.price-detail {
  margin: 12px 0 24px;
  color: var(--text-muted);
}

.guarantee {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.split-visual {
  display: grid;
  gap: 28px;
}

.card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(8, 13, 26, 0.9);
}

.card-primary {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(168, 85, 247, 0.12));
}

.card h3 {
  margin: 0 0 10px;
}

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

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.card-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.card-profile .avatar {
  width: 42px;
  height: 42px;
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.35);
}

.card-profile .name {
  font-weight: 600;
  margin: 0;
}

.card-profile .role {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.faq-grid details {
  padding: 22px;
  border-radius: 18px;
  background: rgba(10, 15, 26, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.faq-grid summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin-top: 12px;
  color: var(--text-muted);
}

.cta-banner {
  margin-top: calc(var(--stack-space) * 4);
  padding: calc(var(--stack-space) * 2) calc(var(--stack-space) * 2.5);
  border-radius: 28px;
  background: var(--bg-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--stack-space);
  box-shadow: var(--shadow);
}

.cta-banner p {
  color: var(--text-muted);
  margin: 12px 0 0;
}

.footer {
  margin-top: 120px;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

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

a.footer-link {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
}

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(6px);
  z-index: 2000;
}

.modal-overlay.hidden,
.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  padding: 36px;
  border-radius: 28px;
  background: rgba(9, 15, 27, 0.96);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 28px 70px rgba(7, 15, 35, 0.65);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-card h2 {
  margin: 0;
  font-size: 26px;
}

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

.modal-card a {
  color: var(--accent);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: transparent;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: rgba(56, 189, 248, 0.18);
  outline: none;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

body.auth-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.auth-shell {
  width: min(420px, 92vw);
}

.auth-card {
  background: rgba(9, 15, 27, 0.96);
  border-radius: 24px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin: 0;
}

.auth-message {
  font-size: 14px;
  color: var(--text-muted);
  min-height: 20px;
}

.auth-message[data-tone="error"] {
  color: #f87171;
}

@media (max-width: 960px) {
  .hero::before {
    inset: -40px -20vw 0;
  }

  .split {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: var(--stack-space);
  }

  .hero-visual {
    order: -1;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .page {
    width: 94vw;
  }

  .nav-actions {
    justify-content: center;
  }

  .hero {
    padding-bottom: 60px;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 32px;
  }
}

body.success-page {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 55%), var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.success-shell {
  width: min(540px, 90vw);
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-card {
  background: rgba(9, 15, 27, 0.96);
  border-radius: 28px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.success-icon {
  font-size: 42px;
  display: inline-flex;
}

.success-card h1 {
  margin: 0;
  font-size: 36px;
}

.success-lead {
  margin: 0;
  font-size: 17px;
  color: var(--text-muted);
}

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

.success-actions .cta.secondary {
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
  color: var(--accent);
}

.success-steps {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 18px;
  padding: 20px 24px;
}

.success-steps h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.success-steps ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.support-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.support-note a {
  color: var(--accent);
}

@media (max-width: 600px) {
  .success-shell {
    padding: 60px 0;
  }

  .success-card {
    padding: 36px 24px;
    gap: 18px;
  }

  .success-card h1 {
    font-size: 30px;
  }
}
