:root {
  color-scheme: dark;
  --bg: #07070c;
  --panel: rgba(16, 15, 26, 0.78);
  --line: rgba(189, 91, 255, 0.30);
  --text: #f8f6fb;
  --muted: #b9b2c3;
  --violet: #8d5bff;
  --pink: #f34eb3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 55% 34%, rgba(140, 45, 215, .16), transparent 28%),
    radial-gradient(circle at 91% 38%, rgba(241, 49, 167, .11), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before, body::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 580px;
  border: 1px solid rgba(231, 70, 177, .18);
  border-radius: 50%;
  filter: blur(.2px);
  pointer-events: none;
  transform: rotate(28deg);
}
body::before { left: -210px; top: 180px; }
body::after { right: -230px; top: 90px; }

.page-shell { width: min(1440px, 100%); margin: 0 auto; padding: 22px 6.5% 28px; }
.brand { display: flex; align-items: center; gap: 14px; font-size: 24px; font-weight: 750; }
.brand img, .footer-brand img { width: 52px; height: 52px; border-radius: 12px; box-shadow: 0 0 28px rgba(202, 64, 213, .26); }

.hero { min-height: 555px; display: grid; grid-template-columns: .88fr 1.35fr; align-items: center; gap: 28px; border-bottom: 1px solid rgba(130, 116, 151, .2); }
.hero-copy { max-width: 510px; padding-left: 7%; z-index: 2; }
h1 { font-size: clamp(54px, 5.3vw, 78px); line-height: 1.05; letter-spacing: -3px; margin: 0 0 30px; }
h1 span { display: block; background: linear-gradient(96deg, var(--violet), var(--pink)); -webkit-background-clip: text; color: transparent; }
.hero-copy p { max-width: 470px; color: #c8c1ce; font-size: 21px; line-height: 1.6; margin: 0; }

.product-stage { position: relative; height: 510px; display: grid; place-items: center; overflow: hidden; }
.product-stage::before { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 2px solid rgba(206, 77, 236, .24); box-shadow: 0 0 50px rgba(156, 55, 234, .23), inset 0 0 50px rgba(237, 44, 158, .12); }
.product-stage img { width: min(760px, 100%); position: relative; z-index: 1; filter: drop-shadow(0 24px 48px rgba(0,0,0,.38)); mix-blend-mode: screen; }
.orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .22; }
.orb-one { width: 220px; height: 220px; background: #7c42ff; left: 23%; top: 30%; }
.orb-two { width: 180px; height: 180px; background: #ef389f; right: 18%; bottom: 16%; }

.overview { display: grid; grid-template-columns: .75fr 1.65fr; gap: 55px; padding: 34px 7% 24px; }
.eyebrow { margin: 0 0 12px; font-size: 13px; letter-spacing: 5px; color: #b786ff; }
h2 { font-size: 34px; line-height: 1.18; margin: 0 0 12px; }
.overview-copy > p:last-child { color: var(--muted); max-width: 410px; line-height: 1.55; margin: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { min-height: 118px; display: flex; gap: 15px; align-items: flex-start; padding: 22px; background: linear-gradient(145deg, rgba(27,24,39,.88), rgba(9,9,15,.9)); border: 1px solid var(--line); border-radius: 17px; box-shadow: inset 0 1px rgba(255,255,255,.035); }
.feature-icon { flex: 0 0 48px; height: 48px; display: grid; place-items: center; border: 3px solid #c657e9; border-radius: 14px; color: #e27bf2; letter-spacing: 1px; font-weight: 800; }
.image-icon { border-radius: 8px; font-size: 25px; }
.shield-icon { border-radius: 17px 17px 21px 21px; }
.feature-card h3 { margin: 2px 0 8px; font-size: 16px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); list-style: none; margin: 18px 0 0; padding: 16px 10px 0; border-top: 1px solid rgba(136, 111, 158, .24); }
.trust-row li { display: flex; justify-content: center; align-items: center; gap: 10px; color: #c7c0cc; font-size: 14px; }
.trust-row li + li { border-left: 1px solid rgba(136,111,158,.27); }
.trust-row span { color: #ba65ff; font-size: 23px; }

footer { position: relative; display: grid; grid-template-columns: 1.15fr 2fr; align-items: center; gap: 22px; margin: 8px 7% 0; padding: 20px 0 24px; border-top: 1px solid rgba(185, 65, 218, .35); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 48px; height: 48px; }
.footer-brand strong { font-size: 19px; }
.footer-brand p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
footer nav { display: flex; justify-content: flex-end; gap: clamp(16px, 2.3vw, 36px); flex-wrap: wrap; }
footer a { color: #bfb7c6; font-size: 13px; text-decoration: none; transition: color .2s ease; }
footer a:hover, footer a:focus-visible { color: #ef6bd0; }
.copyright { position: absolute; left: 0; bottom: -3px; color: #8f8797; font-size: 11px; margin: 0; }

@media (max-width: 900px) {
  .page-shell { padding-inline: 24px; }
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-copy { padding-left: 0; text-align: center; margin: 0 auto; }
  .hero-copy p { margin-inline: auto; }
  .product-stage { height: 430px; }
  .overview { grid-template-columns: 1fr; padding-inline: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  footer { margin-inline: 0; grid-template-columns: 1fr; }
  footer nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: no-preference) {
  .product-stage img { animation: float 6s ease-in-out infinite; }
  @keyframes float { 50% { transform: translateY(-9px); } }
}
