:root {
  --bg: #020612;
  --panel: rgba(13, 18, 39, 0.78);
  --panel-2: rgba(17, 22, 48, 0.82);
  --stroke: rgba(143, 103, 255, 0.26);
  --stroke-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a9aec3;
  --purple: #7c35ff;
  --purple-2: #b06cff;
  --blue: #3958ff;
  --green: #11d486;
  --red: #ff3b5f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 4%, rgba(81, 53, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 12% 35%, rgba(102, 31, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, #020510 0%, #050817 50%, #030713 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

.page-glow {
  position: absolute;
  z-index: -1;
  filter: blur(28px);
  opacity: 0.55;
}

.page-glow-a {
  width: 34rem;
  height: 22rem;
  top: 5rem;
  right: 11rem;
  background: radial-gradient(circle, rgba(104, 48, 255, 0.6), transparent 66%);
}

.page-glow-b {
  width: 42rem;
  height: 15rem;
  top: 48rem;
  left: 20%;
  background: radial-gradient(circle, rgba(40, 64, 200, 0.23), transparent 72%);
}

.site-header,
main,
footer {
  width: min(100% - 4rem, 1480px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 2rem;
}
.main-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.dropdown-icon svg {
  width: 14px;
  height: 14px;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span span {
  color: var(--purple-2);
  font-weight: 500;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(140deg, #2a4bff, #922fff 62%, #6e2dff);
  box-shadow: 0 0 28px rgba(126, 65, 255, 0.45);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
  fill: #45d7ff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(1.3rem, 3.2vw, 3.6rem);
  font-size: 0.93rem;
  color: #f2f2f8;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.main-nav > a {
  position: relative;
  min-height: 86px;
}

.nav-item {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 86px;
}

.nav-item > a {
  position: relative;
  min-height: 86px;
}

.nav-item:hover > a,
.nav-item:focus-within > a,
.main-nav > a:hover {
  color: var(--purple-2);
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.main-nav > a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b45cff, transparent);
}

.main-nav span {
  color: #bfc2d8;
}

.mega-menu {
  position: fixed;
  z-index: 40;
  top: 86px;
  left: 50%;
  width: min(1160px, calc(100vw - 2rem));
  max-height: calc(100vh - 112px);
  overflow: auto;
  padding: 1.15rem;
  border: 1px solid rgba(149, 111, 255, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 12%, rgba(125, 67, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 86% 85%, rgba(45, 104, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(10, 15, 34, 0.98), rgba(3, 7, 18, 0.98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(14px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.mega-menu p,
.mega-menu h2,
.mega-menu h3,
.mega-menu h4 {
  margin-top: 0;
}

.mega-intro {
  min-width: 230px;
  padding: 0.2rem 1.2rem 0.2rem 0.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.product-menu,
.company-menu,
.features-menu {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 1.15rem;
}

.features-menu {
  grid-template-columns: 250px 1fr;
}

.resources-menu {
  display: grid;
  grid-template-columns: 235px 1fr 205px;
  gap: 1.15rem;
}

.mega-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 37, 70, 0.82), rgba(25, 16, 66, 0.82));
}

.mega-strip p {
  margin: 0 auto 0 0;
  color: #c1c6d5;
  font-size: 0.82rem;
}

.mega-strip a {
  color: #c078ff;
  font-weight: 700;
  white-space: nowrap;
}

.menu-label,
.mega-menu h4,
.menu-number {
  color: #b66aff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mega-intro h2 {
  font-size: 1.28rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.mega-intro p:not(.menu-label) {
  color: #c3c7d5;
  line-height: 1.55;
  font-size: 0.88rem;
}

.mega-columns {
  display: grid;
  gap: 0.8rem;
}

.mega-columns.four {
  grid-template-columns: repeat(4, 1fr);
}

.mega-columns.three,
.mega-groups {
  grid-template-columns: repeat(3, 1fr);
}

.mega-groups {
  display: grid;
  gap: 0.8rem;
}

.mega-columns > div,
.mega-groups > div {
  padding: 0 0.25rem 0 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-columns h3,
.mega-groups h3 {
  color: #c789ff;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}

.mega-menu a {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  margin: 0.35rem 0;
  padding: 0.5rem;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  line-height: 1.25;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mega-menu a:hover {
  color: #ffffff;
  background: rgba(130, 61, 255, 0.13);
  transform: translateY(-1px);
}

.mega-menu b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(134, 82, 255, 0.32);
  border-radius: 9px;
  color: #b66aff;
  background: rgba(94, 42, 255, 0.16);
  font-size: 0.74rem;
}

.mega-menu small {
  display: block;
  margin-top: 0.22rem;
  color: #b9bdcb;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.35;
}

.mega-strip a,
.mini-card a {
  display: inline-flex;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.mega-strip a:hover,
.mini-card a:hover {
  color: #d4a2ff;
  background: transparent;
  transform: none;
}

.mini-card {
  margin-top: 1.4rem;
  padding: 1.1rem;
  border: 1px solid rgba(135, 72, 255, 0.25);
  border-radius: 10px;
  background: rgba(67, 35, 137, 0.18);
}

.mini-card .mini-icon {
  margin-bottom: 0.85rem;
}

.mini-card p {
  color: #c2c6d5;
  font-size: 0.82rem;
}

.mini-card a {
  color: #b96cff;
}

.menu-newsletter {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-newsletter h3 {
  font-size: 1rem;
}

.menu-newsletter p {
  color: #c2c6d5;
  line-height: 1.7;
}

.menu-newsletter label {
  display: flex;
  margin-top: 1rem;
}

.menu-newsletter input {
  min-width: 0;
  height: 42px;
  flex: 1;
  padding: 0 0.85rem;
  color: white;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 7px 0 0 7px;
  background: rgba(4, 8, 19, 0.65);
}

.menu-newsletter button {
  width: 46px;
  border: 0;
  border-radius: 0 7px 7px 0;
  color: white;
  background: linear-gradient(135deg, #823dff, #5d32f5);
}

.radar-graphic,
.device-graphic,
.book-graphic,
.city-graphic {
  position: relative;
  height: 205px;
  margin-top: 1.8rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 72%, rgba(129, 52, 255, 0.55), transparent 18%),
    radial-gradient(ellipse at 50% 73%, transparent 0 22%, rgba(135, 58, 255, 0.55) 23% 24%, transparent 25% 36%, rgba(135, 58, 255, 0.36) 37% 38%, transparent 39%),
    linear-gradient(180deg, rgba(20, 20, 52, 0.08), transparent);
}

.radar-graphic span,
.device-graphic span,
.book-graphic span,
.city-graphic span {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0, 92% 18%, 82% 78%, 50% 100%, 18% 78%, 8% 18%);
  background: linear-gradient(145deg, #9450ff, #111c6f 54%, #762aff);
  box-shadow: 0 0 45px rgba(129, 51, 255, 0.8);
}

.device-graphic span {
  width: 150px;
  height: 110px;
  clip-path: none;
  border: 1px solid #8f3eff;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(139, 58, 255, 0.45) 0 36%, transparent 37%),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(255,255,255,0.12) 15px 16px),
    #0b1030;
  transform: translate(-50%, -50%) rotate(4deg);
}

.book-graphic span {
  width: 125px;
  height: 96px;
  clip-path: polygon(0 8%, 42% 0, 50% 12%, 58% 0, 100% 8%, 100% 86%, 57% 77%, 50% 90%, 43% 77%, 0 86%);
}

.city-graphic span {
  width: 150px;
  height: 135px;
  clip-path: polygon(9% 100%, 9% 58%, 23% 58%, 23% 38%, 37% 38%, 37% 18%, 49% 18%, 49% 0, 61% 18%, 61% 36%, 76% 36%, 76% 55%, 91% 55%, 91% 100%);
}

.header-actions,
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.login {
  font-size: 0.94rem;
  color: #f0f2ff;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1.65rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #823dff, #5d32f5);
  box-shadow: 0 10px 32px rgba(112, 52, 255, 0.3);
}

.btn-outline {
  background: rgba(4, 7, 18, 0.55);
  border-color: rgba(255, 255, 255, 0.35);
  min-width: 182px;
}

.btn.small {
  min-height: 46px;
  padding-inline: 1.35rem;
  font-size: 0.84rem;
}

.hero {
  position: relative;
  min-height: 728px;
  display: grid;
  grid-template-columns: 0.78fr 1.18fr;
  gap: 2rem;
  padding-top: 58px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 570px;
}

.eyebrow {
  margin: 0 0 1.4rem;
  color: #c17aff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow:not(.center) {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(118, 56, 255, 0.2);
  border: 1px solid rgba(150, 92, 255, 0.22);
}

.center {
  text-align: center;
}

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

h1 {
  margin-bottom: 1.45rem;
  font-size: clamp(3.1rem, 5vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span {
  color: var(--purple);
}

.hero-text {
  max-width: 480px;
  margin-bottom: 2rem;
  color: #c4c6d3;
  font-size: 1.05rem;
  line-height: 1.8;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.6rem;
}

.avatars {
  display: flex;
  padding-left: 0.18rem;
}

.avatars span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: -0.45rem;
  border: 2px solid white;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, #ffe6d2 0 19%, transparent 20%),
    linear-gradient(135deg, var(--avatar), #4b5aa9);
  color: transparent;
}

.stars {
  color: #ffd426;
  font-size: 1.02rem;
  letter-spacing: 0.2em;
}

.stars strong {
  color: white;
  letter-spacing: 0;
  margin-left: 0.5rem;
  font-weight: 600;
}

.social-proof p,
.promise p {
  color: #b7bbca;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.promise-row {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 2.9rem;
}

.promise {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.promise p {
  color: white;
  line-height: 1.35;
}

.promise small {
  color: #b8bdca;
}

.mini-icon,
.feature-grid article span,
.stats span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #b67cff;
  border: 1px solid rgba(152, 86, 255, 0.46);
  background: rgba(100, 44, 255, 0.18);
  box-shadow: inset 0 0 20px rgba(105, 45, 255, 0.18);
}

.arrow{
  font-size:12px;
  line-height:1;
  position:relative;
  top:1px;
}

.hero-art {
  position: relative;
  min-height: 630px;
}

.globe {
  position: absolute;
  top: 10px;
  right: 42px;
  width: 610px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 25%, rgba(255,255,255,0.4), transparent 2px),
    radial-gradient(circle at 54% 38%, rgba(255,255,255,0.33), transparent 1.5px),
    radial-gradient(circle at 70% 51%, rgba(255,255,255,0.33), transparent 1.5px),
    repeating-radial-gradient(circle at 48% 50%, transparent 0 15px, rgba(125, 112, 255, 0.22) 16px 17px),
    repeating-linear-gradient(88deg, transparent 0 12px, rgba(123, 96, 255, 0.25) 13px 14px),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(72, 185, 255, 0.16) 13px 14px),
    radial-gradient(circle at 38% 38%, #8da8ff 0 4%, #463cff 22%, #130d54 53%, transparent 67%);
  box-shadow: inset -45px -58px 80px #050716, 0 0 70px rgba(81, 65, 255, 0.72);
  opacity: 0.92;
  mask-image: radial-gradient(circle, black 0 66%, transparent 69%);
}

.globe::before {
  content: "";
  position: absolute;
  inset: 18%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.45) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 34%, rgba(255,255,255,.35) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 47%, rgba(255,255,255,.35) 0 1px, transparent 2px);
  background-size: 13px 13px, 16px 16px, 11px 11px;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118%;
  height: 23%;
  border: 1px solid rgba(139, 61, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--r));
}

.orbit-1 { --r: 12deg; }
.orbit-2 { --r: -10deg; width: 130%; border-color: rgba(78, 115, 255, 0.42); }
.orbit-3 { --r: 23deg; width: 96%; border-color: rgba(191, 68, 255, 0.42); }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 250px;
  padding: 1.08rem 1.2rem;
  border-radius: 12px;
  background: rgba(18, 23, 48, 0.83);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
}

.floating-card small {
  display: block;
  margin-top: 0.42rem;
  color: #c8ccda;
  line-height: 1.5;
}

.floating-card em {
  color: var(--green);
  font-style: normal;
  margin-left: 0.55rem;
}

.floating-card .risk {
  color: #ff5475;
  margin-left: 0;
}

.status {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
}

.status.ok {
  background: linear-gradient(135deg, #2ee776, #0e8b4a);
}

.status.danger {
  background: linear-gradient(135deg, #ff5a38, #b80f26);
}

.card-monitor { left: 22px; top: 105px; }
.card-leak { right: 55px; top: 18px; min-width: 286px; }
.card-credential { right: 65px; top: 150px; min-width: 235px; }

.dashboard {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  width: min(875px, 100%);
  min-height: 408px;
  display: grid;
  grid-template-columns: 148px 1fr;
  border: 1px solid rgba(156, 130, 255, 0.28);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(12, 16, 35, 0.96), rgba(7, 11, 27, 0.94));
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.5), 0 0 80px rgba(97, 51, 255, 0.11);
  overflow: hidden;
}

.dashboard aside {
  padding: 1.65rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.dash-brand span {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(140deg, #2a4bff, #923cff);
}

.dashboard aside small {
  display: block;
  margin-bottom: 0.35rem;
  color: #00d395;
  font-size: 0.52rem;
}

.dashboard aside a {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: 8px;
  color: #b9bdcf;
  font-size: 0.67rem;
}

.dashboard aside a.active {
  color: white;
  background: rgba(99, 54, 255, 0.27);
}

.dash-main {
  padding: 1.15rem 1.25rem 1.35rem;
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.dash-top h3 {
  margin: 0 auto 0 0;
  font-size: 1rem;
}

.search {
  width: 230px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  color: #8d93aa;
  font-size: 0.62rem;
}

.admin {
  color: #f2f3ff;
  font-size: 0.65rem;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.metric-grid div,
.chart-card,
.sources-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(10, 14, 32, 0.82);
}

.metric-grid div {
  padding: 1rem;
}

.metric-grid small {
  display: block;
  color: #b7bbcd;
  font-size: 0.62rem;
}

.metric-grid strong {
  display: block;
  margin-top: 0.48rem;
  font-size: 1.33rem;
}

.metric-grid b {
  color: #ff496a;
}

.metric-grid em {
  display: block;
  margin-top: 0.45rem;
  color: var(--green);
  font-style: normal;
  font-size: 0.58rem;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0.8rem;
}

.chart-card,
.sources-card {
  padding: 1rem;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
}

.panel-head span:last-child {
  color: #c6cad8;
  font-weight: 500;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 0.3rem 0 0.8rem;
  border-radius: 50%;
}

.pink { background: #ff2d9a; }
.amber { background: #f5a93a; }
.blue { background: #4d8cff; }

.chart-card svg {
  width: 100%;
  height: 150px;
  margin-top: 0.65rem;
}

.dates {
  display: flex;
  justify-content: space-between;
  color: #8d93aa;
  font-size: 0.58rem;
}

.sources-card p {
  display: flex;
  align-items: center;
  margin: 1rem 0 0;
  color: #b9becd;
  font-size: 0.68rem;
}

.sources-card b {
  margin-left: auto;
  color: white;
}

.risk-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 0.6rem;
  border-radius: 50%;
}

.red { background: #ff3758; }
.orange { background: #ff8a34; }

.trust-band,
.stats,
.cta,
footer {
  border: 1px solid var(--stroke-soft);
  background: linear-gradient(135deg, rgba(13, 18, 39, 0.72), rgba(5, 9, 22, 0.74));
  box-shadow: inset 0 0 60px rgba(60, 42, 130, 0.07);
}

.trust-band {
  margin-top: 26px;
  padding: 1.6rem 2rem 2.1rem;
  border-radius: 12px;
}

.trust-band p {
  margin-bottom: 1.45rem;
  color: #d4d6e2;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1rem, 1.8vw, 1.72rem);
  font-weight: 600;
  text-align: center;
}

.features {
  padding-top: 4rem;
}

.features h2 {
  margin-bottom: 1.55rem;
  text-align: center;
  font-size: 2rem;
}

.pricing-section {
  position: relative;
  padding: 5rem 0 1.2rem;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 12%, rgba(103, 44, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 86% 20%, rgba(88, 48, 255, 0.16), transparent 22rem);
}

.pricing-section h2 {
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.12;
}

.pricing-section h2 span {
  color: var(--purple);
}

.pricing-subtitle {
  margin-bottom: 1.5rem;
  color: #c2c6d2;
  text-align: center;
  font-size: 1.05rem;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.1rem;
  color: #c0c4d0;
}

.billing-toggle button {
  width: 48px;
  height: 26px;
  padding: 3px;
  border: 0;
  border-radius: 999px;
  background: #353a4b;
}

.billing-toggle button span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
}

.billing-toggle span:nth-of-type(2) {
  color: #c681ff;
}

.billing-toggle em {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #19e58d;
  background: rgba(19, 207, 119, 0.13);
  font-style: normal;
  font-size: 0.82rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  min-height: 530px;
  padding: 1.8rem 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(16, 22, 44, 0.86), rgba(6, 10, 24, 0.88));
}

.price-card.popular {
  border-color: rgba(151, 67, 255, 0.95);
  box-shadow: 0 0 50px rgba(124, 53, 255, 0.16);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #823dff, #5d32f5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.price-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.4rem;
}

.price-card p {
  min-height: 60px;
  color: #c0c4d2;
  line-height: 1.6;
}

.price-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 2.6rem;
}

.price-card strong span {
  font-size: 0.95rem;
  font-weight: 600;
}

.price-card > small {
  display: block;
  margin: 0.25rem 0 1.2rem;
  color: #b7bcc9;
}

.price-card .btn {
  width: 100%;
  min-height: 50px;
  margin-bottom: 1.2rem;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  margin: 0.8rem 0;
  padding-left: 1.55rem;
  color: #d6d8e4;
  font-size: 0.9rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 1px solid #b36cff;
  border-radius: 50%;
  color: #c584ff;
  font-size: 0.55rem;
}

.pricing-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.05rem 1.5rem;
  border: 1px solid var(--stroke-soft);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 18, 39, 0.72), rgba(5, 9, 22, 0.74));
}

.pricing-perks div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 1rem;
  align-items: center;
}

.pricing-perks .mini-icon {
  grid-row: span 2;
}

.pricing-perks small {
  color: #c2c6d4;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.feature-grid article {
  min-height: 255px;
  padding: 1.45rem;
  border: 1px solid var(--stroke-soft);
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(17, 22, 48, 0.8), rgba(7, 10, 24, 0.82));
}

.feature-grid h3 {
  margin: 1.15rem 0 0.85rem;
  font-size: 1rem;
}

.feature-grid p {
  min-height: 86px;
  color: #b7bdce;
  font-size: 0.82rem;
  line-height: 1.75;
}

.feature-grid a {
  color: #b76cff;
  font-size: 0.82rem;
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 1.6rem;
  border-radius: 12px;
  overflow: hidden;
}

.stats div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 1rem;
  align-items: center;
  min-height: 132px;
  padding: 1rem 1.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats div:last-child {
  border-right: 0;
}

.stats span {
  grid-row: span 2;
}

.stats strong {
  font-size: 1.62rem;
}

.stats small {
  color: #b6bbc9;
  font-size: 0.67rem;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.52fr 0.68fr;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
  padding: 3.55rem 3.3rem;
  border-color: rgba(131, 64, 255, 0.78);
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 50%, rgba(111, 42, 255, 0.22), transparent 28rem),
    linear-gradient(135deg, rgba(22, 15, 64, 0.9), rgba(5, 10, 24, 0.95));
  overflow: hidden;
}

.cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.cta p:not(.eyebrow) {
  max-width: 610px;
  color: #d2d5e1;
  font-size: 1.1rem;
  line-height: 1.75;
}

.cta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d9dcee;
}

.cta li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.3rem 0;
}

.cta li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #a964ff;
  border-radius: 50%;
  color: #c58cff;
  font-size: 0.72rem;
}

.shield-art {
  min-height: 245px;
  display: grid;
  place-items: center;
  perspective: 800px;
}

.shield {
  position: relative;
  width: 185px;
  height: 220px;
  clip-path: polygon(50% 0, 94% 18%, 86% 76%, 50% 100%, 14% 76%, 6% 18%);
  background: linear-gradient(135deg, #a154ff, #1937b9 48%, #070b2a 49%, #6e22ff);
  box-shadow: 0 0 52px rgba(119, 46, 255, 0.72);
}

.shield::before {
  content: "";
  position: absolute;
  inset: 20px;
  clip-path: inherit;
  background:
    radial-gradient(circle, transparent 0 15px, rgba(66, 141, 255, 0.85) 16px 17px, transparent 18px 33px, rgba(66, 141, 255, 0.75) 34px 35px, transparent 36px 55px, rgba(66, 141, 255, 0.65) 56px 57px, transparent 58px),
    linear-gradient(90deg, transparent 49%, rgba(75, 155, 255, 0.95) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(75, 155, 255, 0.75) 50%, transparent 51%),
    #06103d;
}

.shield span {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ad48ff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 22px #b641ff;
}

.shield-art::after {
  content: "";
  position: absolute;
  right: 6.6rem;
  bottom: 2.2rem;
  width: 290px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 45, 255, 0.6), transparent 64%);
  border: 1px solid rgba(107, 49, 255, 0.28);
}

footer {
  margin-top: 2.8rem;
  margin-bottom: 0;
  padding: 2rem 1rem 0;
  border-color: transparent;
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(4, 0.78fr) 1.65fr;
  gap: 3rem;
  padding: 1.5rem 0 2rem;
}

.footer-brand p,
.subscribe p {
  color: #b7bccb;
  line-height: 1.75;
  font-size: 0.9rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #d8dbe9;
  font-size: 0.72rem;
}

footer h4 {
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

footer a {
  display: block;
  margin-bottom: 0.9rem;
  color: #b7bccb;
  font-size: 0.9rem;
}

.subscribe {
  padding: 1.7rem;
  border: 1px solid var(--stroke-soft);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(15, 20, 43, 0.85), rgba(7, 11, 25, 0.85));
}

.subscribe h3 {
  font-size: 1.1rem;
}

.subscribe label {
  display: flex;
  margin-top: 1.35rem;
}

.subscribe input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px 0 0 6px;
  color: white;
  background: rgba(2, 6, 18, 0.6);
  outline: 0;
}

.subscribe button {
  width: 54px;
  border: 0;
  border-radius: 0 6px 6px 0;
  color: white;
  background: linear-gradient(135deg, #823dff, #5d32f5);
  font-size: 1.35rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.55rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #aeb3c2;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-bottom a {
  margin: 0;
  font-size: 0.82rem;
}

.footer-bottom button {
  height: 38px;
  padding: 0 1.1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  color: white;
  background: transparent;
}

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

.auth-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-shell {
  width: min(100% - 1rem, 760px);
  margin: 0 auto;
  padding: 0.7rem 0 1rem;
}

.signup-shell {
  width: min(100% - 1rem, 760px);
}

.auth-title {
  margin: 0.55rem 0 0.7rem;
  color: #b66aff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.auth-card {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 700px;
  border: 1px solid rgba(130, 78, 255, 0.3);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(15, 19, 45, 0.96), rgba(5, 10, 25, 0.98));
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.signup-shell .auth-card {
  grid-template-columns: 0.9fr 1.15fr;
  min-height: 860px;
}

.auth-visual {
  position: relative;
  padding: 2.2rem;
  background:
    radial-gradient(circle at 58% 56%, rgba(105, 44, 255, 0.32), transparent 12rem),
    linear-gradient(125deg, rgba(31, 20, 81, 0.8), rgba(5, 10, 22, 0.1) 42%);
}

.auth-visual .brand {
  font-size: 1.35rem;
}

.auth-visual h1 {
  margin: 3rem 0 0.9rem;
  font-size: 2rem;
}

.auth-visual h1 span {
  color: var(--purple);
}

.auth-visual p {
  color: #c5c9d7;
  line-height: 1.6;
}

.auth-radar {
  position: relative;
  height: 285px;
  margin: 2rem 0 1.8rem;
  background:
    radial-gradient(circle at 50% 76%, rgba(130, 45, 255, 0.7), transparent 13%),
    radial-gradient(ellipse at 50% 78%, transparent 0 20%, rgba(127, 45, 255, 0.42) 21% 22%, transparent 23% 32%, rgba(127, 45, 255, 0.3) 33% 34%, transparent 35%),
    radial-gradient(circle at 50% 43%, rgba(55, 51, 255, 0.32), transparent 42%);
}

.auth-radar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: 150px;
  height: 170px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0, 92% 18%, 82% 78%, 50% 100%, 18% 78%, 8% 18%);
  background: linear-gradient(145deg, #8f48ff, #152178 50%, #752dff);
  box-shadow: 0 0 55px rgba(128, 48, 255, 0.85);
}

.auth-radar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(173, 111, 255, 0.65) 0 1px, transparent 2px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, black 0 45%, transparent 70%);
}

.auth-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.logos.compact {
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
}

.auth-chips div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  background: rgba(13, 18, 39, 0.76);
}

.auth-chips b {
  color: #b76cff;
}

.auth-chips small {
  color: #b8bdca;
  line-height: 1.45;
}

.signup-benefits {
  margin-top: 2rem;
}

.signup-benefits div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.auth-form-panel {
  display: flex;
  align-items: center;
  padding: 2.4rem;
}

.auth-form {
  width: 100%;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(8, 13, 30, 0.8);
}

.signup-shell .auth-form {
  padding: 2.15rem;
}

.auth-form h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.auth-form > p {
  margin-bottom: 1.6rem;
  color: #aeb4c4;
  font-size: 0.92rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.auth-form label {
  display: block;
  margin-bottom: 1rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  height: 46px;
  margin-top: 0.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: white;
  background: rgba(3, 8, 20, 0.62);
  outline: 0;
}

.auth-form input:focus {
  border-color: rgba(158, 91, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(126, 53, 255, 0.12);
}

.forgot {
  display: block;
  margin: -0.5rem 0 1.5rem;
  color: #b96cff;
  text-align: right;
  font-size: 0.78rem;
}

.auth-form .btn {
  width: 100%;
  min-height: 48px;
}

.or-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.55rem 0;
  color: #8f95a7;
  font-size: 0.78rem;
}

.or-line::before,
.or-line::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,0.09);
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.social-login button {
  height: 44px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 6px;
  color: white;
  background: rgba(3, 8, 20, 0.45);
  font-weight: 700;
}

.auth-switch {
  margin: 1.35rem 0 0;
  color: #aeb4c4;
  text-align: center;
  font-size: 0.82rem;
}

.auth-switch a,
.terms a {
  color: #bd75ff;
}

.persona-box {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
}

.persona-box p {
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.persona-box label {
  margin: 0.55rem 0;
  color: #cdd1dc;
  font-weight: 500;
}

.persona-box input,
.terms input {
  width: auto;
  height: auto;
  margin: 0 0.5rem 0 0;
}

.terms {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #cdd1dc;
  font-size: 0.78rem;
}

.auth-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.auth-footer nav {
  display: flex;
  gap: 2.3rem;
  color: #aeb4c4;
  font-size: 0.78rem;
}

.inner-page {
  padding-bottom: 2rem;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 3rem;
  align-items: center;
  min-height: 420px;
  padding: 4.5rem 0 3rem;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.page-hero h1 span {
  color: var(--purple);
}

.page-hero p {
  max-width: 650px;
  color: #c3c7d5;
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-visual {
  min-height: 330px;
  border: 1px solid rgba(129, 72, 255, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(116, 46, 255, 0.55), transparent 8rem),
    radial-gradient(ellipse at 50% 62%, transparent 0 24%, rgba(128, 53, 255, 0.5) 25% 26%, transparent 27% 40%, rgba(128, 53, 255, 0.3) 41% 42%, transparent 43%),
    linear-gradient(145deg, rgba(16, 22, 44, 0.78), rgba(4, 9, 22, 0.82));
  position: relative;
  overflow: hidden;
}

.page-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 160px;
  height: 180px;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0, 92% 18%, 82% 78%, 50% 100%, 18% 78%, 8% 18%);
  background: linear-gradient(145deg, #9d55ff, #13206e 52%, #752dff);
  box-shadow: 0 0 70px rgba(128, 48, 255, 0.84);
}

.content-band {
  margin: 1.2rem 0;
  padding: 2rem;
  border: 1px solid var(--stroke-soft);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(14, 20, 43, 0.82), rgba(5, 9, 22, 0.86));
}

.content-band h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.content-band > p {
  max-width: 830px;
  color: #c1c6d4;
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.content-card {
  min-height: 210px;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(8, 13, 31, 0.72);
}

.content-card h3 {
  margin: 1rem 0 0.7rem;
}

.content-card p {
  color: #b9bdcb;
  line-height: 1.7;
}

.content-card a {
  color: #bb70ff;
  font-weight: 700;
}

.wide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 1rem;
  padding: 1rem;
  border: 1px solid var(--stroke-soft);
  border-radius: 12px;
  background: rgba(8, 13, 31, 0.82);
}

.legal-nav a {
  display: block;
  padding: 0.8rem;
  border-radius: 8px;
  color: #c5c9d8;
}

.legal-nav a:hover {
  color: white;
  background: rgba(105, 47, 255, 0.2);
}

.status-list {
  display: grid;
  gap: 0.9rem;
}

.status-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(8, 13, 31, 0.72);
}

.status-pill {
  color: #14d98c;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
  }

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

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

  .hero-art {
    min-height: 600px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .pricing-perks {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header,
  main,
  footer {
    width: min(100% - 1.5rem, 1480px);
  }

  .header-actions,
  .main-nav {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 2rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-buttons,
  .promise-row,
  .social-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-art {
    min-height: 850px;
  }

  .globe {
    width: 92vw;
    right: 50%;
    transform: translateX(50%);
  }

  .floating-card {
    left: 0;
    right: auto;
    min-width: min(100%, 310px);
  }

  .card-leak { top: 30px; left: auto; right: 0; }
  .card-monitor { top: 170px; }
  .card-credential { top: 290px; left: 30%; }

  .dashboard {
    grid-template-columns: 1fr;
    top: 435px;
    bottom: auto;
    min-height: auto;
  }

  .dashboard aside {
    display: none;
  }

  .dash-top,
  .metric-grid,
  .dash-panels,
  .cta {
    grid-template-columns: 1fr;
  }

  .dash-top {
    flex-wrap: wrap;
  }

  .search {
    width: 100%;
  }

  .feature-grid,
  .pricing-grid,
  .pricing-perks,
  .stats,
  .logos,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding-top: 3rem;
  }

  .billing-toggle {
    flex-wrap: wrap;
  }

  .feature-grid article {
    min-height: auto;
  }

  .feature-grid p {
    min-height: 0;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .cta {
    padding: 2rem 1.35rem;
  }

  .shield-art::after {
    right: 50%;
    transform: translateX(50%);
  }

  .footer-bottom,
  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .page-hero,
  .content-grid,
  .wide-split,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .auth-shell,
  .signup-shell {
    width: min(100% - 1rem, 760px);
  }

  .auth-card,
  .signup-shell .auth-card {
    grid-template-columns: 1fr;
  }

  .auth-form-panel,
  .auth-visual {
    padding: 1.2rem;
  }

  .auth-form {
    padding: 1.2rem;
  }

  .auth-chips,
  .field-grid,
  .social-login {
    grid-template-columns: 1fr;
  }

  .auth-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .auth-footer nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
