:root {
  --bg: #05090d;
  --bg-soft: #091118;
  --panel: #0d1820;
  --panel-2: #101f29;
  --line: rgba(144, 184, 201, 0.16);
  --line-strong: rgba(49, 230, 161, 0.34);
  --text: #f5f8fa;
  --muted: #a7b6c0;
  --muted-2: #7d909d;
  --blue: #00c8ff;
  --blue-soft: #73dcff;
  --green: #35dda0;
  --green-bright: #5bf4ba;
  --red: #ff6175;
  --ink-on-green: #052719;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--green);
  color: var(--ink-on-green);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--green);
  color: var(--ink-on-green);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(53, 221, 160, 0.1), 0 0 20px rgba(53, 221, 160, 0.8);
}

.eyebrow b {
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #ffffff !important;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary,
.button-small {
  background: linear-gradient(135deg, #1fbf80 0%, #35dda0 100%);
  box-shadow: 0 15px 38px rgba(53, 221, 160, 0.2);
}

.button-primary:hover,
.button-small:hover {
  background: linear-gradient(135deg, #28cb8a 0%, #4be8ae 100%);
  box-shadow: 0 18px 48px rgba(53, 221, 160, 0.3);
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 11px;
}

.button-large {
  min-height: 66px;
  padding: 18px 24px;
}

.button-large > span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.button-wide {
  width: 100%;
  min-height: 64px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 9, 13, 0.7);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 13, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand-logo-wrap {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(53, 221, 160, 0.18);
  border-radius: 15px;
  background: #f9faf8;
  box-shadow: 0 8px 28px rgba(0, 200, 255, 0.1);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  color: var(--text);
  font-size: 1.23rem;
  letter-spacing: -0.035em;
}

.brand-name span {
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.main-nav > a:not(.button) {
  color: #c7d2d9;
  font-size: 0.88rem;
  font-weight: 750;
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--green-bright);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 156px 0 88px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 200, 255, 0.08), transparent 30%),
    radial-gradient(circle at 20% 75%, rgba(53, 221, 160, 0.07), transparent 26%),
    linear-gradient(148deg, #05090d 0%, #08131a 58%, #061016 100%);
}

.hero-grid,
.offer-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(110, 168, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 168, 191, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.hero-glow-one {
  top: 140px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0, 200, 255, 0.34);
  box-shadow: inset 0 0 120px rgba(0, 200, 255, 0.09), 0 0 100px rgba(0, 200, 255, 0.08);
}

.hero-glow-two {
  bottom: -240px;
  left: -150px;
  width: 470px;
  height: 470px;
  background: rgba(53, 221, 160, 0.07);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #f8fbfc;
  font-size: clamp(2.7rem, 4.6vw, 4.9rem);
  font-weight: 860;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.hero-copy h1::after {
  content: "";
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  margin-left: 0.08em;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(53, 221, 160, 0.9);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: #b9c6ce;
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.68;
}

.hero-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
}

.microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.4;
}

.microcopy svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.microcopy i {
  color: var(--blue);
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.tablet {
  position: absolute;
  z-index: 5;
  top: 38px;
  left: 50%;
  width: 344px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 29px;
  background: linear-gradient(145deg, #b7c2c9 0%, #ecf2f4 12%, #7b8d98 45%, #d7e0e4 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 46px rgba(0, 200, 255, 0.14);
  transform: translateX(-50%) perspective(1200px) rotateY(-7deg) rotateX(1deg) rotateZ(2.5deg);
}

.tablet::before {
  position: absolute;
  z-index: -1;
  inset: 6px;
  border-radius: 23px;
  background: #040608;
  content: "";
}

.tablet-screen {
  overflow: hidden;
  border: 4px solid #070b0e;
  border-radius: 20px;
  background: #f5f5f1;
}

.tablet-screen img {
  width: 100%;
  height: auto;
}

.tablet-camera {
  position: absolute;
  z-index: 7;
  top: 7px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111c22;
  box-shadow: inset 0 0 2px var(--blue);
  transform: translateX(-50%);
}

.tablet-shadow {
  position: absolute;
  z-index: 0;
  bottom: 18px;
  left: 50%;
  width: 390px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  filter: blur(22px);
  transform: translateX(-50%);
}

.protection-orbit {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 470px;
  height: 470px;
  border: 1px solid rgba(0, 200, 255, 0.22);
  box-shadow: inset 0 0 65px rgba(0, 200, 255, 0.04), 0 0 55px rgba(0, 200, 255, 0.06);
}

.orbit-one::before,
.orbit-one::after,
.orbit-two::before {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.orbit-one::before {
  top: 55px;
  right: 26px;
  width: 10px;
  height: 10px;
  background: var(--green);
  box-shadow: 0 0 20px var(--green);
}

.orbit-one::after {
  bottom: 35px;
  left: 70px;
  width: 7px;
  height: 7px;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
}

.orbit-two {
  width: 400px;
  height: 530px;
  border: 1px dashed rgba(53, 221, 160, 0.18);
  transform: translate(-50%, -50%) rotate(28deg);
}

.family-shield {
  position: absolute;
  z-index: 2;
  top: -24px;
  right: -22px;
  width: 122px;
  height: 142px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0.62;
  filter: drop-shadow(0 0 13px rgba(0, 200, 255, 0.55));
}

.family-shield .shield-line {
  stroke: var(--green);
}

.status-chip {
  position: absolute;
  z-index: 8;
  display: flex;
  min-width: 196px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(144, 184, 201, 0.22);
  border-radius: 14px;
  background: rgba(10, 23, 31, 0.88);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.status-chip-top {
  top: 118px;
  right: -22px;
}

.status-chip-bottom {
  bottom: 70px;
  left: -8px;
}

.status-chip b,
.status-chip small {
  display: block;
  line-height: 1.25;
}

.status-chip b {
  color: #eef7f8;
  font-size: 0.78rem;
}

.status-chip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
}

.status-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  border-radius: 10px;
  background: rgba(53, 221, 160, 0.12);
}

.status-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pulse-dot {
  position: relative;
  width: 11px;
  height: 11px;
  margin: 0 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.75);
}

.pulse-dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(0, 200, 255, 0.4);
  border-radius: 50%;
  content: "";
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading-center {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.solution-copy h2,
.offer-copy h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.1vw, 3.85rem);
  font-weight: 840;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.section-heading > p:not(.eyebrow),
.solution-copy > p:not(.eyebrow),
.offer-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading strong,
.solution-copy strong {
  color: #e7f5f6;
}

.threat {
  background: linear-gradient(180deg, #070c11 0%, #091017 100%);
}

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

.alert-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(17, 30, 39, 0.96), rgba(8, 16, 22, 0.96));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.alert-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  content: "";
  opacity: 0.48;
}

.alert-card:nth-child(1)::before {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.alert-card:nth-child(3)::before {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 14px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.red-icon {
  background: rgba(255, 97, 117, 0.09);
  color: var(--red);
}

.blue-icon {
  background: rgba(0, 200, 255, 0.08);
  color: var(--blue);
}

.green-icon {
  background: rgba(53, 221, 160, 0.08);
  color: var(--green);
}

.card-label {
  margin-bottom: 7px;
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alert-card h3 {
  margin-bottom: 13px;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.alert-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 22%, rgba(53, 221, 160, 0.055), transparent 30%),
    #060b0f;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 82px;
}

.solution-copy {
  position: sticky;
  top: 125px;
}

.simple-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.simple-proof > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 221, 160, 0.13);
  color: var(--green-bright);
  font-weight: 900;
}

.simple-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.simple-proof strong {
  color: var(--text);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 25px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 29, 38, 0.96), rgba(9, 17, 23, 0.96));
  transition: border-color 180ms ease, transform 180ms ease;
}

.pillar:hover {
  border-color: var(--line-strong);
  transform: translateX(-5px);
}

.pillar-number {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(0, 200, 255, 0.26);
  border-radius: 17px;
  background: rgba(0, 200, 255, 0.06);
  color: var(--blue-soft);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pillar:nth-child(2) .pillar-number {
  border-color: rgba(53, 221, 160, 0.3);
  background: rgba(53, 221, 160, 0.07);
  color: var(--green-bright);
}

.pillar h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.modules {
  overflow: hidden;
  background: #091118;
}

.module-glow {
  position: absolute;
  top: -300px;
  right: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.055);
  filter: blur(70px);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.module-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17, 31, 41, 0.94), rgba(8, 17, 23, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
}

.module-card::after {
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0, 200, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.module-card:nth-child(2n)::after {
  border-color: rgba(53, 221, 160, 0.15);
}

.module-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
}

.module-topline span {
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.module-topline b {
  color: rgba(255, 255, 255, 0.08);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.module-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(0, 200, 255, 0.24);
  border-radius: 13px;
  background: rgba(0, 200, 255, 0.06);
  color: var(--blue);
}

.module-card:nth-child(2n) .module-icon {
  border-color: rgba(53, 221, 160, 0.26);
  background: rgba(53, 221, 160, 0.06);
  color: var(--green);
}

.module-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.module-card h3 {
  margin-bottom: 11px;
  font-size: 1.48rem;
  letter-spacing: -0.03em;
}

.module-card > p {
  color: var(--muted);
  font-size: 0.94rem;
}

.module-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.module-card li {
  position: relative;
  padding-left: 24px;
  color: #cad5db;
  font-size: 0.86rem;
}

.module-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.offer {
  overflow: hidden;
  border-top: 1px solid rgba(53, 221, 160, 0.1);
  border-bottom: 1px solid rgba(53, 221, 160, 0.12);
  background:
    radial-gradient(circle at 75% 50%, rgba(53, 221, 160, 0.11), transparent 30%),
    linear-gradient(135deg, #061016 0%, #09242a 100%);
}

.offer-grid {
  opacity: 0.22;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.offer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.76fr);
  align-items: center;
  gap: 90px;
}

.offer-copy h2 {
  max-width: 660px;
}

.offer-copy > p:not(.eyebrow) {
  max-width: 620px;
}

.offer-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d3dce1;
  font-size: 0.95rem;
}

.offer-list li span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(53, 221, 160, 0.12);
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 900;
}

.price-card {
  position: relative;
  padding: 41px;
  overflow: hidden;
  border: 1px solid rgba(125, 224, 191, 0.24);
  border-radius: 29px;
  background: linear-gradient(155deg, rgba(16, 31, 40, 0.98), rgba(6, 14, 19, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), 0 0 60px rgba(53, 221, 160, 0.08);
}

.price-card::before {
  position: absolute;
  top: -130px;
  right: -130px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.06);
  content: "";
}

.price-label {
  position: relative;
  margin-bottom: 27px;
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.old-price,
.price-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.old-price {
  margin-bottom: 5px;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 0;
  color: var(--text);
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.price > span {
  margin-top: 14px;
  margin-right: 8px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.price sup {
  margin-top: 12px;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.installments {
  margin: 8px 0 27px;
  color: var(--muted);
  font-size: 0.9rem;
}

.installments strong {
  color: #dbe7ea;
}

.secure-checkout {
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.secure-checkout span {
  margin-right: 5px;
  color: var(--green);
}

.payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.payments span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #b8c7ce;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.faq {
  background: linear-gradient(180deg, #080f14, #05090d);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 90px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 5px;
  color: #e9f0f3;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 770;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary > span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.04);
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary {
  color: var(--green-bright);
}

.faq-list details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > div {
  padding: 0 58px 27px 5px;
}

.faq-list details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  padding: 46px 0;
  border-top: 1px solid rgba(53, 221, 160, 0.22);
  border-bottom: 1px solid rgba(53, 221, 160, 0.14);
  background: linear-gradient(115deg, rgba(0, 200, 255, 0.07), rgba(53, 221, 160, 0.1));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 27px;
}

.final-shield {
  width: 55px;
  height: 55px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  filter: drop-shadow(0 0 12px rgba(53, 221, 160, 0.35));
}

.final-cta .eyebrow {
  margin-bottom: 6px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.site-footer {
  padding: 57px 0 28px;
  background: #04070a;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-brand .brand-logo-wrap {
  width: 64px;
  height: 64px;
}

.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.footer-brand small {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.69rem;
  font-weight: 650;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
}

.footer-links a {
  color: #aebcc4;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--green-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #6f828f;
  font-size: 0.72rem;
}

.mobile-cta {
  display: none;
}

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

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 5.4vw, 4.3rem);
  }

  .tablet {
    width: 310px;
  }

  .orbit-one {
    width: 410px;
    height: 410px;
  }

  .orbit-two {
    width: 350px;
    height: 470px;
  }

  .status-chip-top {
    right: -4px;
  }

  .solution-layout,
  .offer-layout {
    gap: 55px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 84px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 24px;
    background: rgba(5, 9, 13, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 17px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav .button {
    margin-top: 22px;
  }

  .hero {
    padding: 144px 0 72px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    max-width: 750px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

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

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

  .alert-card {
    min-height: 0;
  }

  .card-icon {
    margin-bottom: 28px;
  }

  .solution-layout,
  .offer-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .solution-copy,
  .faq-layout .section-heading {
    position: static;
  }

  .offer-copy {
    text-align: center;
  }

  .offer-copy .eyebrow {
    justify-content: center;
  }

  .offer-copy > p:not(.eyebrow),
  .offer-copy h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .offer-list {
    display: inline-grid;
    text-align: left;
  }

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

  .final-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .final-cta .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    height: 74px;
  }

  .brand-logo-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .main-nav {
    top: 74px;
    height: calc(100vh - 74px);
  }

  .hero {
    min-height: 0;
    padding: 125px 0 58px;
  }

  .hero-layout {
    min-height: 0;
  }

  .hero-copy h1 {
    margin-bottom: 21px;
    font-size: clamp(2.45rem, 11.6vw, 3.65rem);
    line-height: 1.01;
  }

  .hero-copy .eyebrow {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button-large {
    width: 100%;
    flex-wrap: wrap;
    padding: 17px 18px;
  }

  .button-large > span {
    padding-left: 0;
    border-left: 0;
  }

  .button-large svg {
    display: none;
  }

  .microcopy {
    max-width: 330px;
    align-self: center;
    text-align: left;
  }

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

  .tablet {
    top: 28px;
    width: 270px;
  }

  .orbit-one {
    width: 340px;
    height: 340px;
  }

  .orbit-two {
    width: 290px;
    height: 405px;
  }

  .family-shield {
    right: 0;
    width: 96px;
    height: 112px;
  }

  .status-chip {
    min-width: 175px;
  }

  .status-chip-top {
    top: 104px;
    right: -5px;
  }

  .status-chip-bottom {
    bottom: 28px;
    left: -2px;
  }

  .section-heading {
    margin-bottom: 37px;
  }

  .section-heading h2,
  .solution-copy h2,
  .offer-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .section-heading-center {
    text-align: left;
  }

  .section-heading-center .eyebrow {
    justify-content: flex-start;
  }

  .alert-card,
  .module-card,
  .pillar,
  .price-card {
    padding: 25px;
    border-radius: 20px;
  }

  .pillar {
    grid-template-columns: 54px 1fr;
    gap: 17px;
  }

  .pillar-number {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    font-size: 0.82rem;
  }

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

  .module-card {
    min-height: 0;
  }

  .price {
    font-size: 4.8rem;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 0.94rem;
  }

  .faq-list details > div {
    padding-right: 5px;
  }

  .final-cta {
    padding: 40px 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-shield {
    margin-inline: auto;
  }

  .final-cta .eyebrow {
    justify-content: center;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 18px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    background: linear-gradient(135deg, #1fbf80, #35dda0);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.52), 0 0 25px rgba(53, 221, 160, 0.18);
    color: #ffffff;
    font-size: 0.89rem;
    font-weight: 850;
  }

  .mobile-cta strong {
    padding-left: 9px;
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }
}

@media (max-width: 390px) {
  .brand-name {
    display: none;
  }

  .hero-copy h1 {
    font-size: 2.33rem;
  }

  .hero-visual {
    transform: scale(0.91);
    transform-origin: top center;
  }

  .price-card {
    padding: 22px;
  }

  .button-wide {
    font-size: 0.86rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Paleta clara alinhada à página principal ByteSeguro. */
:root {
  --bg: #fbfcf9;
  --bg-soft: #f5faf7;
  --panel: #ffffff;
  --panel-2: #eaf8f2;
  --line: #dceae5;
  --line-strong: rgba(61, 187, 135, 0.48);
  --text: #123b42;
  --muted: #5e7476;
  --muted-2: #789091;
  --blue: #0b6472;
  --blue-soft: #0b6472;
  --green: #3dbb87;
  --green-bright: #2a996f;
  --red: #d94d62;
  --ink-on-green: #ffffff;
  --shadow: 0 20px 55px rgba(18, 59, 66, 0.1);
}

body {
  background: var(--bg);
  color: var(--text);
}

.site-header {
  border-bottom-color: rgba(18, 59, 66, 0.08);
  background: rgba(251, 252, 249, 0.84);
}

.site-header.is-scrolled {
  background: rgba(251, 252, 249, 0.97);
  box-shadow: 0 12px 35px rgba(18, 59, 66, 0.09);
}

.brand-name,
.hero-copy h1,
.status-chip b,
.simple-proof strong,
.installments strong,
.price,
.faq-list summary {
  color: var(--text);
}

.main-nav > a:not(.button) {
  color: #365c61;
}

.menu-toggle {
  background: #ffffff;
  color: var(--text);
}

.main-nav {
  background-color: rgba(251, 252, 249, 0.98);
}

.hero {
  border-bottom-color: var(--line);
  background:
    radial-gradient(circle at 84% 16%, rgba(11, 100, 114, 0.09), transparent 30%),
    radial-gradient(circle at 20% 75%, rgba(61, 187, 135, 0.1), transparent 27%),
    linear-gradient(148deg, #fbfcf9 0%, #eef9f6 58%, #f8fbf7 100%);
}

.hero-grid,
.offer-grid {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(11, 100, 114, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 100, 114, 0.08) 1px, transparent 1px);
}

.hero-lead,
.microcopy,
.section-heading > p:not(.eyebrow),
.solution-copy > p:not(.eyebrow),
.offer-copy > p:not(.eyebrow),
.alert-card > p:last-child,
.pillar p,
.module-card > p,
.faq-list details p,
.old-price,
.price-intro,
.installments,
.secure-checkout {
  color: var(--muted);
}

.status-chip {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(18, 59, 66, 0.13);
}

.threat {
  background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.alert-card {
  border-color: var(--line);
  background: linear-gradient(150deg, #ffffff, #f8fbf9);
  box-shadow: 0 16px 40px rgba(18, 59, 66, 0.07);
}

.solution {
  border-color: var(--line);
  background:
    radial-gradient(circle at 12% 22%, rgba(61, 187, 135, 0.1), transparent 30%),
    #eaf8f2;
}

.section-heading strong,
.solution-copy strong {
  color: var(--text);
}

.simple-proof {
  border-top-color: rgba(18, 59, 66, 0.12);
}

.pillar {
  border-color: var(--line);
  background: linear-gradient(135deg, #ffffff, #f9fcfa);
  box-shadow: 0 14px 36px rgba(18, 59, 66, 0.06);
}

.modules {
  background: #fbfcf9;
}

.module-card {
  border-color: var(--line);
  background: linear-gradient(145deg, #ffffff, #f7fbf8);
  box-shadow: var(--shadow);
}

.module-topline b {
  color: rgba(18, 59, 66, 0.09);
}

.module-card li,
.offer-list li {
  color: #365c61;
}

.offer {
  border-color: rgba(61, 187, 135, 0.22);
  background:
    radial-gradient(circle at 75% 50%, rgba(61, 187, 135, 0.13), transparent 30%),
    linear-gradient(135deg, #eef9f6 0%, #eaf8f2 100%);
}

.price-card {
  border-color: rgba(61, 187, 135, 0.35);
  background: linear-gradient(155deg, #ffffff, #f8fbf9);
  box-shadow: 0 28px 70px rgba(18, 59, 66, 0.13);
}

.payments span {
  color: #496a6e;
}

.faq {
  background: linear-gradient(180deg, #fbfcf9, #ffffff);
}

.final-cta {
  border-color: rgba(61, 187, 135, 0.24);
  background: linear-gradient(115deg, #eef9f6, #eaf8f2);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-links a {
  color: #496a6e;
}

.footer-bottom p,
.footer-brand small {
  color: #789091;
}

@media (max-width: 920px) {
  .main-nav {
    background: rgba(251, 252, 249, 0.99);
  }
}
