:root {
  --bg: #0b1020;
  --bg-2: #11172c;
  --card: rgba(24, 33, 63, 0.84);
  --card-2: rgba(31, 41, 77, 0.94);
  --border: rgba(129, 144, 212, 0.18);
  --text: #f7f8ff;
  --text-2: #b7c2e7;
  --muted: #7885b5;
  --brand-a: #4c5ae9;
  --brand-b: #a86efd;
  --success: #49d8b2;
  --shadow: 0 24px 70px rgba(3, 6, 18, 0.42);
  --brand-gradient: linear-gradient(135deg, #4c5ae9 0%, #6b6bf0 42%, #a86efd 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(76, 90, 233, 0.18) 0%, rgba(168, 110, 253, 0.18) 100%);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background-color: #090d19;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 12% 10%, rgba(76, 90, 233, 0.18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(168, 110, 253, 0.14), transparent 24%),
    linear-gradient(180deg, #090d19 0%, var(--bg) 22%, #0e1527 100%);
  background-color: #090d19;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  padding-bottom: var(--safe-bottom);
}

body.is-ios-standalone {
  min-height: -webkit-fill-available;
}

body.is-ios-standalone::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--safe-top) + 20px);
  z-index: 19;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.98) 0%, rgba(11, 16, 32, 0.96) 52%, rgba(11, 16, 32, 0) 100%);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.page-noise,
.backdrop,
.backdrop-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-noise {
  z-index: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.03) 100%);
  background-size: 4px 4px, 4px 4px;
}

.backdrop {
  z-index: 0;
  filter: blur(90px);
  opacity: 0.35;
}

.backdrop-a {
  top: -120px;
  left: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(76, 90, 233, 0.75);
}

.backdrop-b {
  top: 140px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(168, 110, 253, 0.62);
}

.backdrop-grid {
  z-index: 0;
  background-image: radial-gradient(circle, rgba(168, 110, 253, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 96%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100vw - 40px - var(--safe-left) - var(--safe-right)));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.is-ios-standalone .topbar {
  padding-top: calc(10px + var(--safe-top));
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(125, 138, 197, 0.14);
  border-radius: 22px;
  background: rgba(10, 15, 29, 0.62);
  box-shadow: 0 12px 36px rgba(5, 8, 20, 0.32);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 76px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.brand-main {
  color: var(--text);
}

.brand-accent {
  color: var(--brand-b);
}

.brand-chip {
  padding: 5px 8px 4px;
  border-radius: 999px;
  color: #e0d2ff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(168, 110, 253, 0.14);
  border: 1px solid rgba(168, 110, 253, 0.28);
}

.brand-sub {
  color: var(--text-2);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.topbar-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.status-pill {
  color: var(--success);
  background: rgba(73, 216, 178, 0.12);
  border: 1px solid rgba(73, 216, 178, 0.22);
}

.install-pill {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(168, 110, 253, 0.26);
  background: rgba(168, 110, 253, 0.12);
  color: #e4d9ff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.install-pill:hover {
  transform: translateY(-1px);
  background: rgba(168, 110, 253, 0.18);
  border-color: rgba(168, 110, 253, 0.36);
}

.install-pill.is-attention {
  animation: installPulseGlow 2.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(168, 110, 253, 0.28);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 42px 0 28px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d5c4ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow-line {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(76, 90, 233, 0), rgba(168, 110, 253, 0.9));
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 720px;
}

.hero-copy h1 span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 20px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
}

.hero-whisper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 640px;
  margin-top: 20px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(19, 27, 50, 0.74);
  border: 1px solid rgba(123, 137, 197, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-whisper svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke: rgba(168, 110, 253, 0.9);
  stroke-width: 2;
}

.hero-whisper p {
  color: #c7d0f0;
  font-size: 14px;
  line-height: 1.65;
}

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

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 23, 44, 0.8);
  border: 1px solid rgba(123, 137, 197, 0.14);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
}

.hero-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gradient-soft);
  border: 1px solid rgba(168, 110, 253, 0.2);
  color: #ece4ff;
  font-size: 11px;
  font-weight: 800;
}

.cta-primary,
.cta-secondary,
.cta-ghost,
.mini-cta {
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.cta-primary,
.mini-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 18px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(110, 103, 240, 0.34);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 18px;
  background: rgba(31, 41, 77, 0.92);
  color: var(--text);
  border: 1px solid rgba(123, 137, 197, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 18px;
  background: transparent;
  color: #d1d9ff;
  border: 1px dashed rgba(124, 138, 199, 0.32);
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-ghost:hover,
.mini-cta:hover {
  transform: translateY(-2px);
}

.cta-primary:hover,
.mini-cta-primary:hover {
  box-shadow: 0 22px 46px rgba(110, 103, 240, 0.42);
  filter: brightness(1.04);
}

.cta-secondary:hover {
  border-color: rgba(168, 110, 253, 0.38);
  background: rgba(36, 48, 88, 0.98);
}

.cta-ghost:hover {
  color: #e0d2ff;
  border-color: rgba(168, 110, 253, 0.36);
  background: rgba(168, 110, 253, 0.06);
}

.cta-primary svg,
.cta-secondary svg,
.cta-ghost svg,
.trust-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
}

.cta-primary svg,
.cta-secondary svg,
.cta-ghost svg {
  stroke: currentColor;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.install-nudge {
  position: relative;
  max-width: 640px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(76, 90, 233, 0.18), rgba(168, 110, 253, 0.14)),
    rgba(14, 20, 39, 0.92);
  border: 1px solid rgba(168, 110, 253, 0.18);
  box-shadow: 0 20px 48px rgba(8, 12, 24, 0.3);
  overflow: hidden;
}

.install-nudge::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08));
  opacity: 0.42;
}

.install-nudge.is-active {
  animation: installCardFloat 4.4s ease-in-out infinite;
}

.install-nudge-head,
.install-nudge-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.install-nudge-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2d5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.install-nudge-dismiss {
  border: none;
  background: transparent;
  color: var(--text-2);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.install-nudge-copy,
.install-nudge-steps {
  position: relative;
  z-index: 1;
}

.install-nudge-copy strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.install-nudge-copy p {
  margin-top: 10px;
  color: #ccd5f2;
  font-size: 15px;
  line-height: 1.65;
}

.install-nudge-steps {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.install-nudge-steps[hidden] {
  display: none;
}

.install-nudge-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(10, 14, 28, 0.42);
  border: 1px solid rgba(123, 137, 197, 0.12);
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}

.install-nudge-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(168, 110, 253, 0.16);
  border: 1px solid rgba(168, 110, 253, 0.24);
  color: #f0e7ff;
  font-size: 12px;
  font-weight: 800;
}

.install-nudge-actions {
  margin-top: 16px;
  justify-content: flex-start;
}

.install-nudge-primary {
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(110, 103, 240, 0.26);
  animation: installPulseGlow 2.6s ease-in-out infinite;
}

.install-nudge-primary:hover {
  transform: translateY(-1px);
}

.meta-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 31, 58, 0.84);
  border: 1px solid rgba(123, 137, 197, 0.18);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stage-orbit-a {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 50% 50%, rgba(76, 90, 233, 0.14), transparent 60%);
  animation: orbitFloat 10s ease-in-out infinite;
}

.stage-orbit-b {
  width: 320px;
  height: 320px;
  border-color: rgba(168, 110, 253, 0.18);
  animation: orbitFloat 8s ease-in-out infinite reverse;
}

.stage-panel {
  position: relative;
  width: min(100%, 480px);
  min-height: 470px;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(29, 39, 76, 0.95) 0%, rgba(20, 27, 52, 0.96) 100%);
  border: 1px solid rgba(129, 144, 212, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 90, 233, 0.18), transparent 40%, rgba(168, 110, 253, 0.14));
  pointer-events: none;
}

.stage-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stage-kicker,
.stage-mini {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-kicker {
  background: rgba(168, 110, 253, 0.12);
  border: 1px solid rgba(168, 110, 253, 0.2);
  color: #d9c9ff;
}

.stage-mini {
  background: rgba(73, 216, 178, 0.1);
  border: 1px solid rgba(73, 216, 178, 0.18);
  color: var(--success);
}

.radar {
  position: relative;
  z-index: 1;
  width: 270px;
  height: 270px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-ring,
.radar-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.radar-ring-a {
  border: 1px solid rgba(168, 110, 253, 0.18);
}

.radar-ring-b {
  inset: 18px;
  border: 1px solid rgba(76, 90, 233, 0.22);
}

.radar-ring-c {
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.radar-core {
  width: 150px;
  height: 150px;
  padding: 16px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(246, 248, 255, 0.1), rgba(255, 255, 255, 0.03)), rgba(18, 24, 46, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(5, 8, 20, 0.35);
}

.radar-core img {
  width: 100%;
  height: auto;
  display: block;
}

.radar-pulse {
  border: 1px solid rgba(168, 110, 253, 0.18);
  animation: ping 3.2s ease-out infinite;
}

.stage-cards {
  position: absolute;
  inset: 0;
}

.float-card {
  position: absolute;
  min-width: 168px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(15, 21, 40, 0.84);
  border: 1px solid rgba(124, 138, 199, 0.18);
  box-shadow: 0 18px 40px rgba(5, 8, 20, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.float-card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1;
}

.float-label,
.float-copy {
  display: block;
}

.float-label {
  color: #cfc1ff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.float-copy {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.float-card-a {
  top: 106px;
  left: -10px;
}

.float-card-b {
  top: 58px;
  right: -4px;
}

.float-card-c {
  right: 34px;
  bottom: 34px;
}

.compare,
.trust,
.cta-band {
  margin-top: 34px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section-head p {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.65;
}

.section-head-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(25, 33, 62, 0.96) 0%, rgba(18, 24, 46, 0.98) 100%);
  border: 1px solid rgba(129, 144, 212, 0.18);
  box-shadow: var(--shadow);
}

.compare-card-featured {
  border-color: rgba(168, 110, 253, 0.32);
}

.compare-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(168, 110, 253, 0.14);
  border: 1px solid rgba(168, 110, 253, 0.28);
  color: #dcccff;
}

.compare-top h3 {
  margin-top: 12px;
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.compare-card p {
  margin-top: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.compare-note {
  margin-top: 16px;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(168, 110, 253, 0.08);
  border: 1px solid rgba(168, 110, 253, 0.15);
  color: #cdd5f5;
  font-size: 14px;
  line-height: 1.65;
}

.vpn-highlight {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(76, 90, 233, 0.14), rgba(168, 110, 253, 0.12)),
    rgba(15, 21, 40, 0.9);
  border: 1px solid rgba(168, 110, 253, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.vpn-highlight-head strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.vpn-highlight-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ddd2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vpn-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.vpn-point {
  min-height: 92px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(10, 14, 28, 0.42);
  border: 1px solid rgba(123, 137, 197, 0.14);
}

.vpn-point span {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.vpn-point small {
  display: block;
  margin-top: 9px;
  color: #c8d2f5;
  font-size: 13px;
  line-height: 1.45;
}

.compare-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(76, 90, 233, 0.13);
  border: 1px solid rgba(76, 90, 233, 0.22);
  color: #d8dcff;
  font-size: 12px;
  font-weight: 800;
}

.compare-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.compare-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.55;
}

.compare-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 12px rgba(110, 103, 240, 0.45);
}

.compare-footer {
  margin-top: 22px;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(31, 41, 77, 0.98);
  color: var(--text);
  border: 1px solid rgba(123, 137, 197, 0.24);
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(22, 30, 57, 0.88);
  border: 1px solid rgba(123, 137, 197, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-gradient-soft);
  border: 1px solid rgba(168, 110, 253, 0.22);
}

.trust-icon svg {
  stroke: var(--brand-a);
}

.trust-card h3 {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.12;
}

.trust-card p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(76, 90, 233, 0.22), rgba(168, 110, 253, 0.14)), rgba(17, 24, 46, 0.94);
  border: 1px solid rgba(168, 110, 253, 0.24);
  box-shadow: var(--shadow);
}

.cta-band-copy {
  max-width: 620px;
}

.cta-band-copy h2 {
  margin-top: 10px;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-band-copy p {
  margin-top: 12px;
  color: var(--text-2);
  line-height: 1.7;
}

.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 34px 0 48px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(123, 137, 197, 0.16);
}

.preview-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark-footer {
  width: 72px;
  height: 50px;
}

.preview-footer-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.preview-footer-copy strong {
  font-size: 16px;
}

.preview-footer-copy span,
.preview-footer-note {
  color: var(--muted);
  font-size: 13px;
}

.mobile-dock {
  display: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  z-index: 30;
  padding: 12px 16px;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  background: rgba(12, 18, 34, 0.94);
  color: var(--text);
  border: 1px solid rgba(168, 110, 253, 0.22);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

@keyframes installPulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(168, 110, 253, 0.18), 0 14px 30px rgba(110, 103, 240, 0.22);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(168, 110, 253, 0), 0 18px 34px rgba(110, 103, 240, 0.3);
  }
}

@keyframes installCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes ping {
  0% {
    transform: scale(0.88);
    opacity: 0.72;
  }

  75%,
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .hero,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vpn-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band,
  .preview-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100vw - 24px - var(--safe-left) - var(--safe-right)), 1160px);
  }

  .topbar {
    padding: 12px 0;
  }

  body.is-ios-standalone .topbar {
    padding-top: calc(8px + var(--safe-top));
  }

  .topbar .shell {
    padding: 12px 14px;
    border-radius: 18px;
    flex-wrap: wrap;
  }

  .brand-mark {
    width: 64px;
    height: 44px;
  }

  .brand-title {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .install-pill {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero-text,
  .section-head p,
  .cta-band-copy p {
    font-size: 15px;
  }

  .hero-actions,
  .cta-band-actions {
    width: 100%;
    flex-direction: column;
  }

  .install-nudge {
    padding: 16px;
    border-radius: 20px;
  }

  .install-nudge-copy strong {
    font-size: 19px;
  }

  .install-nudge-actions {
    width: 100%;
  }

  .install-nudge-primary {
    width: 100%;
  }

  .hero-steps {
    flex-direction: column;
  }

  .hero-step {
    width: 100%;
  }

  .cta-primary,
  .cta-secondary,
  .cta-ghost,
  .mini-cta,
  .mini-cta-primary {
    width: 100%;
  }

  .hero-stage {
    min-height: 440px;
  }

  .stage-panel {
    min-height: 420px;
    padding: 18px;
    border-radius: 26px;
  }

  .radar {
    width: 220px;
    height: 220px;
    margin-top: 36px;
  }

  .radar-core {
    width: 126px;
    height: 126px;
  }

  .float-card {
    min-width: 148px;
    padding: 14px;
  }

  .float-card strong {
    font-size: 19px;
  }

  .float-card-a {
    left: 0;
    top: 96px;
  }

  .float-card-b {
    right: 0;
    top: 46px;
  }

  .float-card-c {
    right: 16px;
    bottom: 22px;
  }

  .compare-card,
  .trust-card,
  .cta-band {
    border-radius: 22px;
  }

  .vpn-highlight-grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: calc(96px + var(--safe-bottom));
  }

  .mobile-dock {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    padding: 12px calc(12px + var(--safe-right)) calc(12px + var(--safe-bottom)) calc(12px + var(--safe-left));
    background: linear-gradient(180deg, rgba(11, 16, 32, 0), rgba(11, 16, 32, 0.92) 36%, rgba(11, 16, 32, 0.98) 100%);
    pointer-events: none;
  }

  .mobile-dock-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(12, 18, 34, 0.88);
    border: 1px solid rgba(123, 137, 197, 0.16);
    box-shadow: 0 18px 50px rgba(3, 6, 18, 0.38);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: auto;
  }

  .mobile-dock-primary,
  .mobile-dock-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-dock-primary {
    background: var(--brand-gradient);
    color: #fff;
    box-shadow: 0 14px 30px rgba(110, 103, 240, 0.28);
  }

  .mobile-dock-secondary {
    background: rgba(31, 41, 77, 0.96);
    color: var(--text);
    border: 1px solid rgba(123, 137, 197, 0.22);
  }
}

@media (max-width: 520px) {
  .hero-meta {
    gap: 8px;
  }

  .meta-chip {
    width: 100%;
    text-align: center;
  }

  .install-nudge-step {
    align-items: flex-start;
  }

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

  .hero-stage {
    min-height: 400px;
  }

  .stage-orbit-a {
    width: 320px;
    height: 320px;
  }

  .stage-orbit-b {
    width: 240px;
    height: 240px;
  }

  .stage-panel {
    min-height: 390px;
  }

  .radar {
    width: 190px;
    height: 190px;
  }

  .radar-core {
    width: 112px;
    height: 112px;
    border-radius: 28px;
  }

  .float-card {
    min-width: 136px;
  }

  .float-card-a {
    top: 88px;
  }

  .float-card-b {
    top: 28px;
  }

  .float-card-c {
    bottom: 16px;
  }
}
