:root {
  color-scheme: dark;
  --navy-950: #020817;
  --navy-900: #061646;
  --navy-850: #08215f;
  --blue-700: #0758e8;
  --blue-600: #0876ff;
  --cyan-400: #28d9ff;
  --gold-400: #ffd23f;
  --gold-500: #ffb800;
  --orange-500: #ff7417;
  --red-500: #f03838;
  --green-500: #27c966;
  --ink: #0a1024;
  --muted: #5c6479;
  --paper: #f7f8fd;
  --white: #ffffff;
  --border-dark: rgba(255, 255, 255, 0.14);
  --border-light: rgba(8, 31, 84, 0.12);
  --shadow: 0 28px 80px rgba(0, 18, 70, 0.24);
  --shell: min(1180px, calc(100% - 48px));
  --headline: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 4px solid var(--gold-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--gold-400);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.section-shell,
.header-inner,
.footer-inner {
  width: var(--shell);
  margin-inline: auto;
}

.page-glow {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 1080px;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 30%, rgba(18, 117, 255, 0.38), transparent 30%),
    radial-gradient(circle at 12% 22%, rgba(255, 190, 0, 0.18), transparent 23%),
    linear-gradient(155deg, var(--navy-950), var(--navy-900) 62%, #071d57);
}

.page-glow::before,
.page-glow::after {
  position: absolute;
  content: "";
  width: 1300px;
  height: 5px;
  top: 360px;
  left: 46%;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(40, 217, 255, 0.8), transparent 72%);
  box-shadow: 0 0 24px rgba(40, 217, 255, 0.8);
}

.page-glow::before {
  transform: rotate(-29deg);
}

.page-glow::after {
  top: 520px;
  transform: rotate(21deg);
  background: linear-gradient(90deg, rgba(255, 199, 30, 0.9), transparent 70%);
  box-shadow: 0 0 24px rgba(255, 199, 30, 0.72);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(3, 12, 37, 0.74);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  box-shadow: 0 0 28px rgba(40, 217, 255, 0.25);
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--headline);
  font-size: 16px;
  letter-spacing: 0.045em;
}

.brand small {
  margin-top: 5px;
  color: #aebeea;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.site-header nav a {
  color: #dbe5ff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--gold-400);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.35);
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-small:hover {
  border-color: var(--gold-400);
  background: rgba(255, 210, 63, 0.12);
}

.button-primary {
  border-color: #ffe277;
  background: linear-gradient(135deg, var(--gold-400), var(--orange-500));
  color: #08102c;
  box-shadow: 0 13px 36px rgba(255, 157, 14, 0.29), inset 0 1px rgba(255, 255, 255, 0.62);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 157, 14, 0.4), inset 0 1px rgba(255, 255, 255, 0.62);
}

.button-outline {
  border-color: rgba(7, 88, 232, 0.28);
  background: rgba(7, 88, 232, 0.04);
  color: var(--blue-700);
}

.button-outline:hover {
  border-color: var(--blue-600);
  background: rgba(7, 88, 232, 0.09);
}

.button-large {
  min-height: 60px;
  padding-inline: 30px;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  min-height: 840px;
  padding-block: 66px 80px;
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 650px;
}

.kicker,
.eyebrow,
.feature-number {
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: #dfe9ff;
  background: rgba(255, 255, 255, 0.07);
  letter-spacing: 0.09em;
}

.kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 12px rgba(39, 201, 102, 0.8);
}

.hero h1,
.section-heading h2,
.alerts h2,
.scanner-banner h2,
.privacy h2,
.final-cta h2,
.legal-card h1 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(47px, 6vw, 78px);
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-400);
  font-style: normal;
  text-shadow: 0 0 32px rgba(255, 210, 63, 0.22);
}

.hero-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: #c9d5f4;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.hero .text-link {
  color: #eef3ff;
}

.store-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 10px 14px 10px 10px;
  background: rgba(1, 8, 30, 0.56);
}

.store-card > span:last-child {
  display: grid;
}

.store-card small {
  color: var(--cyan-400);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.store-card strong {
  margin-top: 2px;
  color: var(--white);
  font-size: 13px;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--blue-600), var(--cyan-400));
  color: var(--white);
  font-family: var(--headline);
  transform: rotate(-4deg);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  color: #b9c8ed;
  font-size: 12px;
  font-weight: 850;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gold-400);
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.energy-ring {
  position: absolute;
  z-index: 0;
  inset: 11% 5% auto;
  aspect-ratio: 1;
  border: 2px solid rgba(40, 217, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(8, 118, 255, 0.25), rgba(6, 15, 53, 0) 62%),
    conic-gradient(from 30deg, transparent 0 16%, rgba(255, 199, 30, 0.38) 16.5% 17%, transparent 17.5% 48%, rgba(40, 217, 255, 0.42) 48.5% 49%, transparent 49.5%);
  box-shadow: inset 0 0 60px rgba(8, 118, 255, 0.2), 0 0 80px rgba(8, 118, 255, 0.22);
}

.phone {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 900 / 1956;
  border: 8px solid #0a0c14;
  border-radius: 44px;
  background: #f4f4f8;
  box-shadow: 0 35px 75px rgba(0, 4, 24, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.phone::after {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 30%;
  height: 22px;
  content: "";
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05060a;
  opacity: 0.98;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  width: min(330px, 57%);
  transform: translateX(-50%);
}

.phone-side {
  position: absolute;
  z-index: 2;
  top: 90px;
  width: min(255px, 43%);
  opacity: 0.78;
  filter: saturate(0.8) brightness(0.78);
}

.phone-side-left {
  left: 0;
  transform: rotate(-9deg);
}

.phone-side-right {
  right: 0;
  transform: rotate(9deg);
}

.power-chip,
.signal-card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  padding: 11px 14px;
  background: rgba(3, 12, 42, 0.88);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.power-chip b {
  color: var(--gold-400);
  font-family: var(--headline);
  font-size: 13px;
}

.power-chip span {
  color: #bac9ee;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.chip-top {
  top: 20%;
  right: -1%;
}

.chip-bottom {
  bottom: 8%;
  left: -2%;
}

.power-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 2px solid #ffd85b;
  background: linear-gradient(90deg, var(--gold-400), var(--orange-500), var(--gold-400));
  color: var(--ink);
}

.power-strip div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  min-width: max-content;
  padding: 13px 22px;
  font-family: var(--headline);
  font-size: clamp(13px, 1.7vw, 18px);
  letter-spacing: 0.09em;
}

.power-strip b {
  color: var(--blue-700);
}

.proof,
.plans,
.faq {
  padding-block: 125px;
}

.section-heading {
  max-width: 780px;
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.alerts h2,
.scanner-banner h2,
.privacy h2,
.final-cta h2 {
  font-size: clamp(38px, 5vw, 64px);
  text-wrap: balance;
}

.section-heading > p:last-child,
.alerts-copy > p,
.scanner-copy > p:last-child,
.privacy-copy > p,
.final-cta > p:not(.eyebrow) {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.proof-grid article {
  min-height: 260px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 33, 88, 0.08);
}

.proof-grid article:nth-child(2) {
  transform: translateY(-12px);
  border-color: rgba(255, 184, 0, 0.62);
  box-shadow: 0 20px 56px rgba(255, 167, 20, 0.16);
}

.proof-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf2ff;
  color: var(--blue-700);
  font-family: var(--headline);
}

.proof-grid h3 {
  margin: 22px 0 8px;
  font-family: var(--headline);
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background:
    radial-gradient(circle at 10% 25%, rgba(255, 184, 0, 0.17), transparent 23%),
    radial-gradient(circle at 91% 70%, rgba(40, 217, 255, 0.18), transparent 22%),
    linear-gradient(160deg, var(--navy-950), #08245f 58%, #031331);
  color: var(--white);
}

.showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

.showcase .section-shell {
  position: relative;
  z-index: 2;
}

.light-heading > p:last-child,
.feature-copy > p {
  color: #bdc9e8;
}

.showcase .eyebrow,
.feature-number {
  color: var(--gold-400);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
  max-width: 980px;
  margin: 112px auto 0;
}

.feature-row-reverse {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-copy h3 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.feature-copy > p:not(.feature-number) {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  color: #eaf0ff;
  font-weight: 800;
  list-style: none;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(40, 217, 255, 0.16);
  color: var(--cyan-400);
}

.phone-feature {
  justify-self: center;
  width: min(350px, 100%);
  border-width: 9px;
  box-shadow: 0 40px 95px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.tilt-right {
  transform: rotate(3deg);
}

.tilt-left {
  transform: rotate(-3deg);
}

.alerts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
  padding-block: 130px;
}

.alerts-copy {
  max-width: 660px;
}

.alerts-copy > p {
  margin-inline: 0;
}

.steps {
  display: grid;
  gap: 0;
  margin: 36px 0 32px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}

.steps li:last-child {
  border-bottom: 1px solid var(--border-light);
}

.steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: var(--headline);
}

.steps h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 4px 0 0;
  color: var(--muted);
}

.alert-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 118, 255, 0.18), transparent 67%);
}

.phone-alert {
  z-index: 2;
  width: min(350px, 78vw);
}

.signal-card {
  display: grid;
  gap: 1px;
  min-width: 195px;
  background: rgba(4, 18, 61, 0.94);
}

.signal-card span {
  color: var(--cyan-400);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.signal-card strong {
  font-size: 14px;
}

.signal-card-top {
  top: 23%;
  left: -3%;
}

.signal-card-bottom {
  right: -3%;
  bottom: 19%;
}

.scanner-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border: 2px solid rgba(255, 210, 63, 0.85);
  border-radius: 32px;
  padding: clamp(34px, 6vw, 68px);
  background:
    radial-gradient(circle at 0 100%, rgba(255, 184, 0, 0.36), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(40, 217, 255, 0.28), transparent 33%),
    linear-gradient(140deg, #061641, #0a2c77);
  color: var(--white);
  box-shadow: var(--shadow);
}

.scanner-banner::before {
  position: absolute;
  inset: -40% -20%;
  content: "";
  opacity: 0.34;
  background: repeating-conic-gradient(from 15deg at 50% 50%, transparent 0 9deg, rgba(255, 255, 255, 0.12) 9.5deg 10deg);
}

.scanner-copy,
.scan-flow {
  position: relative;
  z-index: 2;
}

.scanner-copy .eyebrow {
  color: var(--gold-400);
}

.scanner-copy > p:last-child {
  color: #ced8f1;
}

.scan-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.scan-flow > div {
  display: grid;
  justify-items: center;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 22px 13px;
  background: rgba(0, 7, 30, 0.48);
  text-align: center;
  backdrop-filter: blur(8px);
}

.scan-flow div > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  color: var(--white);
  font-size: 29px;
}

.scan-flow div:nth-of-type(3) > span {
  background: linear-gradient(135deg, var(--gold-400), var(--orange-500));
  color: var(--ink);
}

.scan-flow b {
  margin-top: 15px;
  font-family: var(--headline);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.scan-flow small {
  color: #b9c8e7;
  line-height: 1.35;
}

.scan-flow i {
  color: var(--gold-400);
  font-size: 24px;
  font-style: normal;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 60px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 490px;
  border: 1px solid var(--border-light);
  border-radius: 26px;
  padding: 32px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(8, 31, 84, 0.08);
}

.plan-featured {
  transform: translateY(-14px);
  border: 2px solid var(--gold-500);
  background: linear-gradient(165deg, #fffdf4, #ffffff 45%);
  box-shadow: 0 26px 70px rgba(255, 166, 0, 0.2);
}

.plan-badge {
  position: absolute;
  top: -15px;
  right: 24px;
  margin: 0;
  border-radius: 999px;
  padding: 7px 13px;
  background: linear-gradient(135deg, var(--gold-400), var(--orange-500));
  color: var(--ink);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.plan-name {
  margin: 0;
  color: var(--blue-700);
  font-family: var(--headline);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
}

.plan-price strong {
  font-family: var(--headline);
  font-size: clamp(42px, 5vw, 58px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-price span,
.plan-annual {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.plan-annual {
  min-height: 21px;
  margin: 9px 0 0;
}

.plan-limit {
  margin: 20px 0 0;
  border-radius: 12px;
  padding: 11px 13px;
  background: #ebf3ff;
  color: var(--blue-700);
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 25px 0 30px;
  padding: 0;
  color: #3f485c;
  list-style: none;
}

.plan-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green-500);
  font-weight: 950;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 850px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(45px, 8vw, 105px);
  align-items: center;
  border-radius: 34px;
  padding: clamp(38px, 7vw, 78px);
  background: #eaf2ff;
}

.privacy-copy > p {
  margin-inline: 0;
}

.privacy-copy .text-link {
  margin-top: 22px;
  color: var(--blue-700);
}

.privacy-grid {
  display: grid;
  gap: 12px;
}

.privacy-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 15px;
  border: 1px solid rgba(7, 88, 232, 0.14);
  border-radius: 18px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.82);
}

.privacy-grid article > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 950;
}

.privacy-grid h3 {
  margin: 0;
  font-family: var(--headline);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.privacy-grid p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  max-width: 900px;
  margin: 55px auto 0;
  border-top: 1px solid var(--border-light);
}

.faq-list details {
  border-bottom: 1px solid var(--border-light);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 25px 2px;
  cursor: pointer;
  font-family: var(--headline);
  font-size: clamp(17px, 2.2vw, 21px);
  letter-spacing: -0.025em;
  line-height: 1.22;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--blue-700);
  font-family: var(--body);
  font-size: 25px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: -7px 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 110px;
  border-radius: 34px;
  padding: clamp(54px, 8vw, 94px) 28px;
  background:
    radial-gradient(circle at 16% 80%, rgba(255, 184, 0, 0.32), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(40, 217, 255, 0.25), transparent 24%),
    linear-gradient(145deg, var(--navy-950), #0a2d79);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  color: var(--gold-400);
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
}

.final-cta > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: #ccd8f5;
}

.final-cta .button {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.final-cta > small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  color: #9dafd6;
}

.final-orb {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 2px solid rgba(255, 210, 63, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 184, 0, 0.11), 0 0 65px rgba(255, 184, 0, 0.12);
}

.final-orb span {
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(40, 217, 255, 0.28);
  border-radius: 50%;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 0.6fr 0.6fr;
  gap: 40px 70px;
  padding-block: 65px 42px;
}

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

.footer-brand img {
  border-radius: 17px;
}

.footer-brand strong {
  font-family: var(--headline);
  letter-spacing: 0.05em;
}

.footer-brand p {
  margin: 4px 0 0;
  color: #9fb0d9;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--gold-400);
  font-family: var(--headline);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav a {
  width: max-content;
  color: #c1cdea;
  font-size: 14px;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-disclaimer,
.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  color: #8293bb;
  font-size: 12px;
}

.footer-disclaimer {
  max-width: 930px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.footer-copy {
  margin-top: -25px;
  text-align: right;
}

/* English legal and support pages */
.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 10%, rgba(8, 118, 255, 0.23), transparent 22%),
    linear-gradient(155deg, var(--navy-950) 0 260px, var(--paper) 260px 100%);
}

.legal-header {
  background: rgba(3, 12, 37, 0.88);
}

.legal-header .header-inner {
  grid-template-columns: 1fr auto;
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin-inline: auto;
  padding: 48px 0 80px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #dce6ff;
  font-weight: 850;
  text-decoration: none;
}

.legal-card {
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: clamp(28px, 7vw, 70px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(42px, 7vw, 68px);
}

.legal-lead {
  margin: 24px 0 44px;
  color: var(--muted);
  font-size: 19px;
}

.legal-card section {
  border-top: 1px solid var(--border-light);
  padding-top: 26px;
  margin-top: 26px;
}

.legal-card section h2 {
  margin: 0;
  font-family: var(--headline);
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.legal-card section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-external {
  margin: 34px 0 0;
}

.legal-external a,
.legal-nav a {
  color: var(--blue-700);
  font-weight: 850;
  text-underline-offset: 4px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 30px;
}

.legal-disclaimer {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(920px, calc(100% - 40px));
  }

  .header-inner {
    gap: 22px;
  }

  .site-header nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 84px;
    text-align: center;
  }

  .hero-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .alerts {
    grid-template-columns: 1fr 390px;
    gap: 40px;
  }

  .scanner-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(680px, calc(100% - 32px));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 80px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    min-height: 660px;
  }

  .proof,
  .plans,
  .faq {
    padding-block: 92px;
  }

  .proof-grid,
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .proof-grid article,
  .proof-grid article:nth-child(2),
  .plan-featured {
    min-height: 0;
    transform: none;
  }

  .showcase {
    padding-block: 92px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 85px;
    text-align: center;
  }

  .feature-row-reverse .feature-copy {
    order: 0;
  }

  .feature-copy h3,
  .feature-copy > p:not(.feature-number) {
    margin-inline: auto;
  }

  .check-list {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .tilt-right,
  .tilt-left {
    transform: none;
  }

  .alerts {
    grid-template-columns: 1fr;
    padding-block: 92px;
    text-align: center;
  }

  .alerts-copy {
    margin-inline: auto;
  }

  .alerts-copy > p {
    margin-inline: auto;
  }

  .steps {
    text-align: left;
  }

  .alert-visual {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .privacy {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .privacy-copy > p {
    margin-inline: auto;
  }

  .privacy-grid {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .button-small {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero {
    gap: 42px;
    padding: 48px 0 56px;
  }

  .kicker {
    font-size: 10px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-actions {
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .hero-actions .button {
    width: min(100%, 360px);
  }

  .trust-list {
    display: grid;
    justify-content: center;
    text-align: left;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone-main {
    width: min(275px, 78%);
  }

  .phone-side {
    display: none;
  }

  .energy-ring {
    inset: 8% 0 auto;
  }

  .chip-top {
    top: 21%;
    right: 0;
  }

  .chip-bottom {
    bottom: 7%;
    left: 0;
  }

  .power-chip {
    padding: 9px 11px;
  }

  .power-strip div {
    justify-content: flex-start;
  }

  .proof,
  .plans,
  .faq,
  .alerts {
    padding-block: 76px;
  }

  .section-heading h2,
  .alerts h2,
  .scanner-banner h2,
  .privacy h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .proof-grid {
    margin-top: 42px;
  }

  .showcase {
    padding-block: 76px;
  }

  .feature-row,
  .feature-row-reverse {
    margin-top: 72px;
  }

  .feature-copy h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .phone-feature {
    width: min(310px, 88%);
  }

  .alert-visual {
    min-height: 650px;
  }

  .phone-alert {
    width: min(300px, 82%);
  }

  .signal-card-top {
    top: 24%;
    left: 0;
  }

  .signal-card-bottom {
    right: 0;
    bottom: 17%;
  }

  .scanner-banner {
    width: calc(100% - 28px);
    gap: 36px;
    border-radius: 25px;
    text-align: center;
  }

  .scan-flow {
    grid-template-columns: 1fr;
  }

  .scan-flow > div {
    min-height: 145px;
  }

  .scan-flow i {
    transform: rotate(90deg);
  }

  .plan-card {
    min-height: 0;
    padding: 27px;
  }

  .privacy {
    width: calc(100% - 28px);
    border-radius: 25px;
  }

  .privacy-grid article {
    grid-template-columns: 38px 1fr;
  }

  .faq-list summary {
    padding-block: 22px;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin-bottom: 72px;
    border-radius: 25px;
  }

  .final-cta .button {
    width: min(100%, 360px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-disclaimer,
  .footer-copy {
    grid-column: 1;
  }

  .footer-copy {
    margin-top: 0;
    text-align: left;
  }

  .legal-main {
    width: calc(100% - 28px);
    padding-top: 34px;
  }

  .legal-card {
    border-radius: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
