:root {
  --bg: #060713;
  --bg-soft: #0a0d20;
  --panel: rgba(18, 22, 48, .82);
  --panel-strong: #11152f;
  --line: rgba(184, 194, 255, .16);
  --text: #f8f9ff;
  --muted: #a7afcb;
  --blue: #338cff;
  --purple: #8054ff;
  --pink: #ed45b7;
  --cyan: #35d9ef;
  --green: #56e6a2;
  --radius: 26px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 2%, rgba(51, 140, 255, .16), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(237, 69, 183, .14), transparent 28%),
    radial-gradient(circle at 50% 92%, rgba(128, 84, 255, .12), transparent 34%),
    linear-gradient(180deg, #070817, #090b1b 48%, #060713);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(#000, transparent 88%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: auto; }
.muted { color: var(--muted); }
.gradient {
  color: transparent;
  background: linear-gradient(100deg, #67b4ff, #a27aff 48%, #ff66c8);
  background-clip: text;
  -webkit-background-clip: text;
}
.nav {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  min-height: 70px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(8, 10, 27, .76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25), inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { display: block; width: 108px; height: 42px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 25px; color: #bcc3dc; font-size: 13px; font-weight: 700; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-cta, .nav-login {
  display: inline-flex;
  min-height: 42px;
  padding: 0 15px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 850;
}
.nav-login { border: 1px solid var(--line); color: #d9def2; background: rgba(255, 255, 255, .035); }
.nav-cta { background: linear-gradient(100deg, var(--blue), var(--purple), var(--pink)); }
.hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 86px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero.compact { min-height: 680px; }
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40px;
  right: -250px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: conic-gradient(from 30deg, rgba(51, 140, 255, .45), rgba(128, 84, 255, .24), rgba(237, 69, 183, .4), rgba(51, 140, 255, .45));
  filter: blur(120px);
  opacity: .27;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(137, 116, 255, .28);
  border-radius: 999px;
  color: #ced4ff;
  background: rgba(106, 78, 240, .1);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px var(--green); }
h1 { margin: 24px 0 20px; font-size: clamp(48px, 7vw, 86px); line-height: .98; letter-spacing: -.06em; }
.hero-copy { max-width: 680px; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.68; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 51px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 850;
  transition: .22s ease;
}
.button.primary { background: linear-gradient(100deg, var(--blue), var(--purple) 58%, var(--pink)); box-shadow: 0 16px 38px rgba(99, 65, 255, .28); }
.button.secondary { border-color: var(--line); background: rgba(255, 255, 255, .035); color: #dce1f4; }
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 35px; color: #8f98b9; font-size: 12px; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; color: var(--green); font-weight: 900; }
.hero-screen {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(196, 203, 255, .18);
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(25, 30, 65, .84), rgba(10, 12, 30, .8));
  box-shadow: var(--shadow);
}
.hero-screen img { display: block; width: 100%; border-radius: 17px; background: #0b0e20; }
.hero-screen figcaption { display: flex; justify-content: space-between; gap: 15px; padding: 14px 7px 3px; color: #9099ba; font-size: 10px; }
section { padding: 92px 0; }
section[id] { scroll-margin-top: 105px; }
.section-head { display: grid; grid-template-columns: 1fr minmax(280px, 450px); align-items: end; gap: 40px; margin-bottom: 38px; }
.section-head h2 { margin: 14px 0 0; font-size: clamp(36px, 5vw, 60px); line-height: 1.04; letter-spacing: -.05em; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.product-card {
  position: relative;
  min-height: 410px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(25, 30, 65, .84), rgba(10, 12, 30, .9));
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
  transition: .25s ease;
}
.product-card::after { content: ""; position: absolute; top: -95px; right: -105px; width: 220px; height: 220px; border-radius: 50%; background: var(--accent, var(--purple)); filter: blur(25px); opacity: .2; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(143, 116, 255, .56); box-shadow: 0 25px 68px rgba(0, 0, 0, .3); }
.product-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255, 255, 255, .13); border-radius: 16px; background: rgba(255, 255, 255, .055); font-size: 22px; }
.product-card h3 { margin: 28px 0 5px; font-size: 24px; }
.product-card .product-type { color: #8490bc; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-card p { color: var(--muted); font-size: 13px; line-height: 1.62; }
.feature-list { display: grid; gap: 10px; margin: 20px 0 24px; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 9px; color: #d7dcef; font-size: 12px; line-height: 1.45; }
.feature-list li::before { content: "✓"; color: var(--green); font-weight: 900; }
.text-link { position: relative; z-index: 2; color: #c7bbff; font-size: 12px; font-weight: 850; }
.sales-stage {
  overflow: hidden;
  border: 1px solid rgba(172, 184, 255, .18);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(24, 29, 64, .92), rgba(10, 12, 30, .94));
  box-shadow: var(--shadow);
}
.bundle-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 85% 15%, rgba(237, 69, 183, .18), transparent 35%), linear-gradient(105deg, rgba(51, 140, 255, .12), rgba(128, 84, 255, .15), rgba(237, 69, 183, .08));
}
.bundle-banner h3 { margin: 8px 0 10px; font-size: clamp(28px, 4vw, 45px); letter-spacing: -.04em; }
.bundle-banner p { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.65; }
.bundle-price { min-width: 230px; padding: 22px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 20px; background: rgba(8, 10, 26, .62); text-align: center; }
.bundle-price small, .sales-price small { display: block; color: #8e98bb; font-size: 10px; font-weight: 800; }
.bundle-price strong { display: block; margin: 7px 0; font-size: 31px; }
.bundle-price span, .sales-price span { color: var(--green); font-size: 11px; font-weight: 800; }
.sales-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.sales-card { padding: 26px 22px; background: rgba(10, 13, 31, .96); }
.sales-card h3 { margin: 0 0 5px; font-size: 19px; }
.sales-card p { min-height: 44px; margin: 0; color: #8892b5; font-size: 11px; line-height: 1.5; }
.sales-price { margin: 22px 0 16px; }
.sales-price strong { display: block; margin: 6px 0; font-size: 26px; }
.sales-card .button { width: 100%; min-height: 44px; padding: 0 12px; font-size: 11px; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.shot {
  grid-column: span 6;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
}
.shot.mobile { grid-column: span 3; }
.shot.wide { grid-column: span 9; }
.shot img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: contain; background: #070916; }
.shot.mobile img { aspect-ratio: 9 / 18; }
.shot figcaption { padding: 13px 15px; color: #aab2cf; font-size: 11px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-box { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--panel); }
.feature-box .number { display: grid; width: 41px; height: 41px; place-items: center; border: 1px solid rgba(151, 126, 255, .3); border-radius: 13px; color: #bcaeff; background: rgba(128, 84, 255, .1); font-size: 11px; font-weight: 900; }
.feature-box h3 { margin: 23px 0 9px; font-size: 18px; }
.feature-box p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.plan-card { position: relative; padding: 24px 21px; border: 1px solid var(--line); border-radius: 22px; background: rgba(15, 18, 42, .78); }
.plan-card.featured { border-color: rgba(128, 84, 255, .72); background: linear-gradient(155deg, rgba(42, 31, 89, .82), rgba(16, 18, 45, .92)); box-shadow: 0 20px 55px rgba(90, 50, 220, .16); }
.plan-card .badge { position: absolute; top: 13px; right: 13px; padding: 5px 8px; border-radius: 999px; color: #c8baff; background: rgba(128, 84, 255, .16); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.plan-period { color: #a4acc9; font-size: 12px; font-weight: 850; }
.plan-value { display: block; margin: 17px 0 5px; font-size: 29px; letter-spacing: -.04em; }
.plan-note { color: #7f89aa; font-size: 10px; }
.plan-pix { display: block; margin-top: 17px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--green); font-size: 10px; font-weight: 850; }
.plan-card .button { width: 100%; min-height: 42px; margin-top: 18px; padding: 0 10px; font-size: 10px; }
.cta-card { position: relative; overflow: hidden; padding: 72px 7%; border: 1px solid rgba(151, 130, 255, .24); border-radius: 34px; background: linear-gradient(120deg, rgba(32, 38, 82, .94), rgba(25, 20, 65, .92) 56%, rgba(59, 19, 67, .84)); text-align: center; box-shadow: var(--shadow); }
.cta-card::before { content: ""; position: absolute; inset: -170px 18% auto; height: 280px; background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink)); filter: blur(105px); opacity: .3; }
.cta-card > * { position: relative; }
.cta-card h2 { max-width: 780px; margin: 0 auto 15px; font-size: clamp(38px, 5vw, 64px); line-height: 1.04; letter-spacing: -.05em; }
.cta-card p { max-width: 630px; margin: auto; color: #b4bad4; line-height: 1.7; }
.cta-card .actions { justify-content: center; }
.footer { padding: 28px 0 42px; border-top: 1px solid var(--line); color: #7b84a6; font-size: 10px; }
.footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer img { width: 86px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.reveal { opacity: 0; transform: translateY(20px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .product-grid, .sales-grid { grid-template-columns: repeat(2, 1fr); }
  .sales-grid { gap: 1px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-screen { max-width: 780px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-banner { grid-template-columns: 1fr; }
  .bundle-price { width: 100%; }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav { top: 10px; min-height: 62px; }
  .brand img { width: 88px; }
  .nav-login { display: none; }
  .hero { min-height: 0; padding: 118px 0 64px; }
  .hero-grid { gap: 40px; }
  .actions .button { width: 100%; }
  section { padding: 72px 0; }
  .product-grid, .sales-grid, .plan-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 0; }
  .bundle-banner { padding: 25px 20px; }
  .shot, .shot.wide, .shot.mobile { grid-column: span 12; }
  .shot.mobile img { max-height: 720px; }
  .cta-card { padding: 58px 20px; }
  .footer .shell { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
