@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:ital,wght@0,400;0,700;0,900;1,900&family=Space+Mono:wght@400;700&display=swap");

:root {
  --bg: #050510;
  --bg-deep: #020208;
  --surface: #0a0a18;
  --surface-2: #0f1024;
  --white: #fff;
  --text: #f7f7ff;
  --muted: #9292a7;
  --purple: #8667ff;
  --purple-2: #6238ff;
  --cyan: #69ddff;
  --green: #35e58a;
  --red: #ff6e83;
  --border: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.06);
  --gradient: linear-gradient(100deg, var(--purple) 0%, var(--cyan) 100%);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  --radius: 24px;
  --scroll: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  color: #050510;
  background: var(--cyan);
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 8%, rgba(89, 53, 255, 0.08), transparent 25%),
    radial-gradient(circle at 88% 35%, rgba(82, 213, 255, 0.05), transparent 25%),
    var(--bg);
}

.noise {
  position: fixed;
  z-index: 200;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.45) 0 0.35px, transparent 0.75px 4px),
    repeating-radial-gradient(circle at 71% 63%, rgba(255, 255, 255, 0.35) 0 0.3px, transparent 0.7px 5px);
  background-size: 9px 11px, 13px 15px;
}

.scroll-progress {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gradient);
  box-shadow: 0 0 18px var(--purple);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 420px;
  aspect-ratio: 1;
  left: 0;
  top: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(115, 86, 255, 0.09), transparent 65%);
  transform: translate3d(calc(var(--mouse-x, -600px) - 50%), calc(var(--mouse-y, -600px) - 50%), 0);
  transition: opacity 0.3s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #050510;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.container--narrow {
  width: min(1110px, calc(100% - 48px));
}

.container--offer {
  width: min(980px, calc(100% - 48px));
}

.container--faq {
  width: min(860px, calc(100% - 48px));
}

.announcement {
  position: relative;
  z-index: 60;
  display: grid;
  min-height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(104, 72, 255, 0.16), rgba(50, 210, 255, 0.1), rgba(104, 72, 255, 0.16));
  font-family: "Space Mono", monospace;
  font-size: 11px;
}

.announcement__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(53, 229, 138, 0.08), 0 0 14px rgba(53, 229, 138, 0.9);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.nav-wrap {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 80px;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 16, 0.58);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-wrap.is-scrolled {
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 16, 0.86);
}

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

.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.brand__logo {
  display: block;
  width: 148px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand strong {
  color: var(--cyan);
  font-style: italic;
}

.brand i {
  width: 6px;
  height: 6px;
  margin-left: 4px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--purple);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  position: relative;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav__links a:hover {
  color: #fff;
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.button span {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
}

.button:hover > span:last-child {
  transform: translate(3px, -3px);
}

.button:active {
  transform: scale(0.98);
}

.button:focus-visible,
.nav a:focus-visible,
.footer a:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.button--small {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 11px;
}

.button--light {
  color: #060610;
  background: #fff;
  box-shadow: 0 12px 38px rgba(255, 255, 255, 0.07);
}

.button--light:hover {
  background: var(--cyan);
  box-shadow: 0 18px 50px rgba(91, 218, 255, 0.2);
}

.button--ghost {
  color: #fff;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
}

.button--shine::before {
  position: absolute;
  top: -40%;
  left: -80%;
  width: 35%;
  height: 180%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  animation: button-shine 4s ease-in-out infinite;
}

.play-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 9px !important;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 1660px;
  padding: 54px 0 115px;
  isolation: isolate;
}

.hero__aurora,
.offer-orb,
.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__aurora--one {
  top: -50px;
  left: 50%;
  width: 750px;
  height: 550px;
  background: rgba(91, 54, 255, 0.24);
  transform: translateX(-50%) translateY(calc(var(--scroll) * -0.035px));
}

.hero__aurora--two {
  top: 400px;
  right: -130px;
  width: 420px;
  height: 420px;
  background: rgba(44, 210, 255, 0.1);
}

.grid-plane {
  position: absolute;
  z-index: -2;
  top: 340px;
  left: 50%;
  width: 1350px;
  height: 740px;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(135, 112, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 112, 255, 0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 35%, transparent 95%);
  transform: translateX(-50%) perspective(700px) rotateX(64deg) translateY(calc(var(--scroll) * -0.025px));
  transform-origin: center top;
}

.hero__content {
  z-index: 3;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 13px;
  border: 1px solid rgba(110, 221, 255, 0.18);
  border-radius: 999px;
  background: rgba(105, 221, 255, 0.045);
}

.eyebrow__spark {
  color: var(--purple);
  filter: drop-shadow(0 0 5px var(--purple));
  animation: spin-spark 5s linear infinite;
}

.hero h1 {
  max-width: 1160px;
  margin: 27px auto 24px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(62px, 9.9vw, 136px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span,
.gradient-text {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(117, 92, 255, 0.22));
}

.hero__lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero__trust {
  display: flex;
  justify-content: center;
  gap: 27px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  font-weight: 600;
}

.hero__trust i {
  color: var(--green);
  font-style: normal;
}

.mock-stage {
  z-index: 4;
  margin-top: 90px;
  perspective: 1200px;
}

.mock-glow {
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: -50px;
  left: 10%;
  height: 250px;
  background: linear-gradient(90deg, rgba(91, 54, 255, 0.5), rgba(56, 205, 255, 0.35));
  filter: blur(100px);
  opacity: 0.5;
}

.render-app {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: #090914;
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(121, 91, 255, 0.06) inset;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out;
}

.render-app::before {
  position: absolute;
  z-index: 4;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 28%, transparent 72%, rgba(105, 221, 255, 0.04));
  pointer-events: none;
}

.render-app__top {
  display: grid;
  height: 54px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
  font-family: "Space Mono", monospace;
  font-size: 10px;
}

.render-app__top > span:nth-child(2) b {
  color: rgba(255, 255, 255, 0.75);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.window-dots i:first-child {
  background: #ff6680;
}

.window-dots i:nth-child(2) {
  background: #ffcd57;
}

.window-dots i:nth-child(3) {
  background: #4ddc8d;
}

.render-live {
  justify-self: end;
  color: var(--green) !important;
  text-transform: uppercase;
}

.render-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.render-app__body {
  display: grid;
  min-height: 550px;
  grid-template-columns: 132px 1fr;
}

.render-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.24);
}

.render-sidebar__brand {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 11px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.render-step {
  position: relative;
  display: grid;
  min-height: 62px;
  grid-template-columns: 25px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 10px 9px;
  color: rgba(255, 255, 255, 0.28);
  border: 1px solid transparent;
  border-radius: 12px;
}

.render-step b {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Space Mono", monospace;
  font-size: 8px;
}

.render-step i {
  font-style: normal;
  font-size: 15px;
}

.render-step span {
  font-size: 9px;
  font-weight: 700;
}

.render-step.active {
  color: #fff;
  border-color: rgba(120, 88, 255, 0.3);
  background: rgba(109, 73, 255, 0.14);
}

.render-step.active::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -13px;
  width: 2px;
  content: "";
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
}

.render-main {
  padding: 24px;
}

.render-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.video-card {
  position: relative;
  display: flex;
  min-height: 165px;
  align-items: flex-end;
  justify-content: center;
  padding: 15px 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(to top, rgba(3, 3, 12, 0.95), transparent 65%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.16), transparent 4%),
    linear-gradient(145deg, #202358, #16152f 45%, #281d4b);
}

.video-card::before {
  position: absolute;
  top: 20%;
  width: 48%;
  height: 44%;
  content: "";
  opacity: 0.7;
  border-radius: 50% 50% 35% 35%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(112, 78, 255, 0.1));
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.video-card:nth-child(even) {
  background:
    linear-gradient(to top, rgba(3, 3, 12, 0.95), transparent 65%),
    linear-gradient(145deg, #104758, #172b42 45%, #251942);
}

.video-card:nth-child(3n) {
  background:
    linear-gradient(to top, rgba(3, 3, 12, 0.95), transparent 65%),
    linear-gradient(145deg, #51253f, #25182d 45%, #182747);
}

.video-card span {
  z-index: 2;
  padding: 4px 6px;
  color: #fff;
  background: rgba(82, 50, 255, 0.84);
  font-family: "Space Mono", monospace;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.video-card i {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  font-size: 6px;
  font-style: normal;
}

.render-stats {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.render-stats > div {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.render-stats span {
  color: rgba(255, 255, 255, 0.3);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.render-stats strong {
  margin-top: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.render-stats small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.render-stats .bar {
  width: 100%;
  height: 3px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
}

.render-stats .bar b {
  display: block;
  width: 98%;
  height: 100%;
  background: var(--gradient);
  box-shadow: 0 0 10px var(--purple);
  animation: render-progress 3s ease-in-out infinite alternate;
}

.render-scan {
  position: absolute;
  z-index: 5;
  top: 54px;
  right: 0;
  left: 132px;
  height: 1px;
  opacity: 0.28;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 16px var(--cyan);
  animation: scan 5s ease-in-out infinite;
}

.metric-ticker {
  position: relative;
  z-index: 5;
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(0, 0, 0, 0.35);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.ticker-set {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.ticker-set div {
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}

.ticker-set strong {
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.ticker-set span {
  color: rgba(255, 255, 255, 0.37);
  font-family: "Space Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.ticker-set > b {
  color: rgba(105, 221, 255, 0.5);
  font-size: 12px;
}

.section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.section-kicker {
  margin-bottom: 26px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-heading p em {
  color: #fff;
}

.text-muted {
  color: #646477;
}

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

.section-heading--center p {
  max-width: 640px;
  margin: 22px auto 0;
}

.pain-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 30%),
    radial-gradient(circle at 0% 50%, rgba(114, 63, 255, 0.07), transparent 28%);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 58px;
}

.pain-list {
  display: grid;
  gap: 12px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.027);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pain-card:hover {
  border-color: rgba(255, 110, 131, 0.26);
  background: rgba(255, 110, 131, 0.035);
  transform: translateX(7px);
}

.pain-card > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(255, 110, 131, 0.25);
  border-radius: 50%;
  background: rgba(255, 110, 131, 0.08);
  font-size: 12px;
}

.pain-card h3 {
  margin: 0 0 5px;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
}

.pain-card p {
  margin: 0;
  color: #7e7e92;
  font-size: 12px;
  line-height: 1.6;
}

.terminal-wrap {
  position: relative;
}

.terminal-wrap::before {
  position: absolute;
  z-index: -1;
  inset: -10%;
  content: "";
  opacity: 0.3;
  background: radial-gradient(circle, rgba(99, 61, 255, 0.26), transparent 65%);
  filter: blur(30px);
}

.terminal {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #07070e;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.terminal__top {
  display: grid;
  height: 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.terminal__top span {
  color: rgba(255, 255, 255, 0.35);
  font-family: "Space Mono", monospace;
  font-size: 9px;
}

.terminal__content {
  padding: 30px;
}

.terminal__content p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Space Mono", monospace;
  font-size: 11px;
}

.terminal__content p i {
  color: var(--purple);
  font-style: normal;
}

.terminal__content .error {
  color: var(--red);
}

.terminal-cursor {
  color: var(--cyan);
  animation: blink 1s steps(1) infinite;
}

.terminal-wrap blockquote {
  position: relative;
  width: 90%;
  margin: -7px 0 0 auto;
  padding: 22px 25px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(16, 16, 33, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: italic;
  transform: rotate(-1deg);
}

.terminal-wrap cite {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.solution-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012), transparent);
}

.orb--left {
  top: 35%;
  left: -180px;
  width: 400px;
  height: 400px;
  background: rgba(105, 61, 255, 0.13);
}

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

.solution-card {
  position: relative;
  min-height: 315px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.solution-card:hover {
  border-color: rgba(105, 221, 255, 0.3);
  transform: translateY(-7px);
}

.solution-card--wide {
  grid-column: span 2;
}

.solution-card > span {
  color: var(--cyan);
  font-family: "Space Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.solution-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 52px 0 22px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(105, 221, 255, 0.16);
  border-radius: 16px;
  background: rgba(105, 221, 255, 0.05);
  font-family: "Space Mono", monospace;
  font-size: 21px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.solution-card:hover .solution-icon {
  color: #080812;
  background: var(--cyan);
  transform: rotate(-6deg) scale(1.08);
}

.solution-card h3 {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.solution-card:not(.solution-card--wide) h3 {
  font-size: 28px;
}

.solution-card p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.card-orb {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 310px;
  height: 310px;
  background: rgba(104, 62, 255, 0.2);
  border-radius: 50%;
  filter: blur(65px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.card-orb--cyan {
  background: rgba(69, 203, 255, 0.16);
}

.solution-card:hover .card-orb {
  opacity: 0.9;
  transform: scale(1.25);
}

.benefits-section {
  padding-top: 90px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--border);
}

.benefit-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  background: #080814;
  transition: background 0.3s ease;
}

.benefit-card:hover {
  background: #0d0d1e;
}

.benefit-card > span {
  color: rgba(255, 255, 255, 0.18);
  font-family: "Space Mono", monospace;
  font-size: 10px;
}

.benefit-card > i {
  position: absolute;
  top: 27px;
  right: 28px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  font-family: "Space Mono", monospace;
  font-size: 16px;
  font-style: normal;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover > i {
  color: #050510;
  background: var(--cyan);
  transform: rotate(8deg);
}

.benefit-card h3 {
  max-width: 260px;
  margin: 63px 0 9px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.benefit-card p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.steps-section {
  overflow: hidden;
}

.steps-line {
  position: absolute;
  top: 56%;
  right: -10%;
  left: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 83, 255, 0.25), rgba(105, 221, 255, 0.28), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.step-card {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #080814;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  border-color: rgba(124, 94, 255, 0.4);
  transform: translateY(-8px);
}

.step-card > span {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.step-card > small {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.step-card > i {
  position: absolute;
  top: 23px;
  right: 23px;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(105, 221, 255, 0.15);
  border-radius: 50%;
  background: rgba(105, 221, 255, 0.05);
  font-style: normal;
}

.step-card h3 {
  margin: 73px 0 8px;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.niches-section {
  padding-top: 80px;
  text-align: center;
}

.niche-cloud {
  display: flex;
  max-width: 950px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.niche-cloud span {
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.niche-cloud span:hover {
  color: var(--cyan);
  border-color: rgba(105, 221, 255, 0.35);
  background: rgba(105, 221, 255, 0.06);
  transform: translateY(-3px);
}

.bonuses-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent),
    radial-gradient(circle at 100% 40%, rgba(72, 191, 255, 0.07), transparent 24%);
}

.section-kicker--pill {
  padding: 7px 12px;
  color: #050510;
  background: var(--cyan);
  border-radius: 999px;
}

.bonus-list {
  display: grid;
  gap: 10px;
}

.bonus-card {
  display: grid;
  min-height: 148px;
  grid-template-columns: 80px 64px 1fr 130px;
  align-items: center;
  gap: 25px;
  padding: 26px 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.bonus-card:hover {
  border-color: rgba(105, 221, 255, 0.3);
  transform: translateX(5px);
}

.bonus-number {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.bonus-number i {
  color: rgba(255, 255, 255, 0.2);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  font-style: normal;
}

.bonus-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(105, 221, 255, 0.15);
  border-radius: 16px;
  background: rgba(105, 221, 255, 0.05);
  font-size: 20px;
}

.bonus-card h3 {
  margin: 0 0 7px;
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  font-weight: 900;
}

.bonus-card p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.bonus-value {
  text-align: right;
}

.bonus-value small {
  display: block;
  color: rgba(255, 255, 255, 0.27);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.bonus-value strong {
  font-family: "Outfit", sans-serif;
  font-size: 19px;
}

.bonus-total {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 30px;
  margin-top: 16px;
  padding: 25px 30px;
  color: #070712;
  border-radius: 22px;
  background: var(--gradient);
}

.bonus-total > div span {
  display: inline-flex;
  padding: 4px 8px;
  color: #fff;
  background: rgba(5, 5, 16, 0.78);
  border-radius: 99px;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.bonus-total > div p {
  margin: 6px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.bonus-total > strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.bonus-total del {
  opacity: 0.45;
  font-size: 16px;
}

.bonus-total > p {
  grid-column: 1 / -1;
  margin: 0;
  opacity: 0.7;
  font-size: 10px;
}

.proof-section {
  padding-top: 95px;
}

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

.testimonial-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.027);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.testimonial-card:hover {
  border-color: rgba(105, 221, 255, 0.26);
  transform: translateY(-7px);
}

.testimonial-card--featured {
  background: linear-gradient(145deg, rgba(109, 72, 255, 0.12), rgba(255, 255, 255, 0.025));
}

.stars {
  color: #ffd45c;
  font-size: 12px;
  letter-spacing: 3px;
}

.testimonial-card > p {
  position: relative;
  z-index: 2;
  margin: 28px 0 44px;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

.quote-mark {
  position: absolute;
  top: -31px;
  right: 15px;
  color: rgba(255, 255, 255, 0.04);
  font-family: Georgia, serif;
  font-size: 180px;
  line-height: 1;
}

.author {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(145deg, #8667ff, #2a2260);
  font-family: "Space Mono", monospace;
  font-size: 9px;
  font-weight: 700;
}

.avatar--two {
  background: linear-gradient(145deg, #1a9477, #18353b);
}

.avatar--three {
  background: linear-gradient(145deg, #bd5e8e, #492445);
}

.author strong {
  display: block;
  font-size: 12px;
}

.author small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.proof-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  text-align: center;
}

.offer-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.offer-orb--one {
  top: 17%;
  left: 2%;
  width: 480px;
  height: 480px;
  background: rgba(99, 56, 255, 0.13);
}

.offer-orb--two {
  right: 1%;
  bottom: 13%;
  width: 440px;
  height: 440px;
  background: rgba(55, 204, 255, 0.09);
}

.offer-card {
  position: relative;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(133, 105, 255, 0.5);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(117, 80, 255, 0.13), transparent 28%),
    linear-gradient(160deg, #111126, #080813 56%, #0d0d1e);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.65), 0 0 90px rgba(104, 66, 255, 0.1);
}

.offer-card::before {
  position: absolute;
  top: 0;
  left: 12%;
  width: 38%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px var(--cyan);
}

.offer-border {
  position: absolute;
  z-index: 0;
  inset: -50%;
  opacity: 0.08;
  background: conic-gradient(from 0deg, transparent 0 70%, var(--cyan), var(--purple), transparent 82%);
  animation: border-spin 9s linear infinite;
}

.offer-card > *:not(.offer-border) {
  position: relative;
  z-index: 2;
}

.offer-badge {
  position: absolute !important;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: var(--green);
  border: 1px solid rgba(53, 229, 138, 0.16);
  border-radius: 99px;
  background: rgba(53, 229, 138, 0.05);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.offer-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.plan-label {
  color: var(--cyan);
  font-family: "Space Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.offer-head h2 {
  margin: 6px 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(55px, 6.5vw, 90px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.offer-head h2 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.offer-head p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.price {
  min-width: 205px;
  text-align: right;
}

.price small {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.price strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.price sup {
  font-size: 17px;
  letter-spacing: 0;
}

.price em {
  font-size: 31px;
  font-style: normal;
}

.price > span {
  display: block;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.offer-divider {
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 35px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
}

.offer-list li i {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 9px;
  place-items: center;
  color: #050510;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  box-shadow: 0 0 16px rgba(105, 221, 255, 0.22);
}

.offer-list li span {
  color: rgba(255, 255, 255, 0.36);
  font-weight: 400;
}

.button--offer {
  width: 100%;
  min-height: 76px;
  color: #050510;
  background: #fff;
  border-radius: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(255, 255, 255, 0.1);
}

.button--offer:hover {
  background: var(--cyan);
  box-shadow: 0 20px 60px rgba(105, 221, 255, 0.2);
}

.offer-trust {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
}

.secure-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.22);
  font-family: "Space Mono", monospace;
  font-size: 7px;
  text-align: center;
  text-transform: uppercase;
}

.faq-section {
  padding-top: 80px;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.faq-item summary:hover {
  color: var(--cyan);
}

.faq-item summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary span {
  color: #050510;
  background: var(--cyan);
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;
  margin: -4px 0 0;
  padding: 0 4px 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  animation: faq-in 0.35s ease;
}

.final-cta {
  position: relative;
  z-index: 2;
  padding: 145px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #070711;
  isolation: isolate;
}

.final-cta__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(129, 101, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 101, 255, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.final-cta__orb {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 450px;
  background: rgba(97, 57, 255, 0.22);
  border-radius: 50%;
  filter: blur(120px);
  transform: translate(-50%, -50%);
}

.final-cta__content {
  text-align: center;
}

.final-cta h2 {
  margin: 22px auto;
  font-family: "Outfit", sans-serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
}

.final-cta h2 span {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button--whatsapp {
  color: #fff;
  border-color: rgba(53, 229, 138, 0.2);
  background: rgba(53, 229, 138, 0.08);
}

.button--whatsapp:hover {
  border-color: rgba(53, 229, 138, 0.4);
  background: rgba(53, 229, 138, 0.14);
}

.button--whatsapp span {
  color: var(--green);
  font-size: 16px;
  filter: drop-shadow(0 0 6px var(--green));
}

.footer {
  position: relative;
  z-index: 5;
  padding: 32px 0;
  background: #030309;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__inner .brand {
  font-size: 21px;
}

.footer p,
.footer__inner > a:last-child {
  color: rgba(255, 255, 255, 0.28);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.footer__inner > a:last-child {
  justify-self: end;
  transition: color 0.2s ease;
}

.footer__inner > a:last-child:hover {
  color: var(--cyan);
}

.whatsapp-float {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: #06120c;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(53, 229, 138, 0.22);
  font-size: 10px;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 20px 55px rgba(53, 229, 138, 0.38);
  transform: translateY(-4px);
}

.whatsapp-float i {
  font-size: 14px;
  font-style: normal;
}

.whatsapp-float b {
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.whatsapp-float__ping {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(53, 229, 138, 0.4);
  border-radius: inherit;
  animation: ping 2s ease-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) var(--delay, 0s),
    transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) var(--delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes button-shine {
  0%, 72% { left: -80%; }
  100% { left: 150%; }
}

@keyframes spin-spark {
  to { transform: rotate(360deg); }
}

@keyframes render-progress {
  from { width: 68%; }
  to { width: 98%; }
}

@keyframes scan {
  0%, 100% { transform: translateY(18px); opacity: 0; }
  15% { opacity: 0.35; }
  85% { opacity: 0.35; }
  100% { transform: translateY(515px); opacity: 0; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes border-spin {
  to { transform: rotate(360deg); }
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ping {
  0% { opacity: 0.8; transform: scale(0.94); }
  80%, 100% { opacity: 0; transform: scale(1.22); }
}

@media (max-width: 1000px) {
  .hero {
    min-height: 1390px;
  }

  .hero h1 {
    font-size: clamp(62px, 11.8vw, 110px);
  }

  .render-app__body {
    min-height: 475px;
    grid-template-columns: 105px 1fr;
  }

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

  .video-card {
    min-height: 135px;
  }

  .render-step {
    min-height: 52px;
  }

  .render-scan {
    left: 105px;
  }

  .solution-card {
    padding: 28px;
  }

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

  .bonus-card {
    grid-template-columns: 60px 54px 1fr 100px;
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .container,
  .container--narrow,
  .container--offer,
  .container--faq {
    width: min(100% - 32px, 680px);
  }

  .nav__links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero__lead {
    max-width: 640px;
  }

  .mock-stage {
    margin-top: 65px;
  }

  .render-app__body {
    min-height: 420px;
    grid-template-columns: 86px 1fr;
  }

  .render-sidebar {
    padding: 14px 8px;
  }

  .render-step {
    min-height: 47px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .render-step b,
  .render-step span {
    display: none;
  }

  .render-main {
    padding: 16px;
  }

  .video-card {
    min-height: 115px;
  }

  .render-stats {
    grid-template-columns: 1fr 1fr;
  }

  .render-stats > div:last-child {
    display: none;
  }

  .render-scan {
    left: 86px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading p {
    max-width: 590px;
    margin-top: 22px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .terminal-wrap {
    max-width: 600px;
    margin-inline: auto;
  }

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

  .solution-card--wide {
    grid-column: span 2;
  }

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

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

  .testimonial-card {
    min-height: 255px;
  }

  .bonus-card {
    grid-template-columns: 55px 1fr 100px;
  }

  .bonus-icon {
    display: none;
  }

  .offer-card {
    padding: 48px 34px 38px;
  }

  .offer-head {
    align-items: center;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .footer p {
    display: none;
  }
}

@media (max-width: 600px) {
  .noise,
  .cursor-glow {
    display: none;
  }

  .announcement {
    min-height: 40px;
    padding: 7px 12px;
    text-align: center;
  }

  .announcement__inner {
    gap: 7px;
  }

  .announcement__inner > span:nth-child(2) {
    max-width: 240px;
  }

  .announcement a {
    display: none;
  }

  .nav-wrap {
    height: 68px;
  }

  .brand {
    font-size: 21px;
  }

  .nav .button {
    min-height: 39px;
    padding: 10px 13px;
    font-size: 9px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero__aurora--one {
    width: 420px;
    height: 420px;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(48px, 15.7vw, 72px);
    line-height: 0.92;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions,
  .final-cta__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    width: 100%;
  }

  .hero__trust {
    flex-wrap: wrap;
    gap: 8px 15px;
  }

  .mock-stage {
    width: calc(100% - 20px);
    margin-top: 55px;
  }

  .render-app {
    border-radius: 19px;
  }

  .render-app__top {
    height: 42px;
    grid-template-columns: auto 1fr;
    padding: 0 12px;
  }

  .render-app__top > span:nth-child(2) {
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .render-live {
    display: none;
  }

  .render-app__body {
    min-height: 323px;
    grid-template-columns: 52px 1fr;
  }

  .render-sidebar {
    gap: 4px;
    padding: 10px 5px;
  }

  .render-sidebar__brand {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
    font-size: 15px;
  }

  .render-step {
    min-height: 38px;
    padding: 5px;
  }

  .render-step i {
    font-size: 12px;
  }

  .render-main {
    padding: 10px;
  }

  .render-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .video-card {
    min-height: 89px;
    border-radius: 8px;
  }

  .video-card:nth-child(n+7) {
    display: none;
  }

  .video-card span {
    font-size: 4px;
  }

  .video-card i {
    width: 14px;
    height: 14px;
    font-size: 4px;
  }

  .render-stats {
    gap: 6px;
    margin-top: 8px;
  }

  .render-stats > div {
    min-height: 51px;
    padding: 7px 9px;
  }

  .render-stats strong {
    font-size: 14px;
  }

  .render-scan {
    top: 42px;
    left: 52px;
  }

  .metric-ticker {
    margin-top: 60px;
  }

  .ticker-set {
    gap: 30px;
    padding-right: 30px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 12.5vw, 56px);
  }

  .section-heading p {
    font-size: 14px;
  }

  .pain-card {
    padding: 17px;
  }

  .terminal {
    transform: none;
  }

  .terminal__content {
    padding: 22px 18px;
  }

  .terminal__content p {
    font-size: 9px;
  }

  .terminal-wrap blockquote {
    width: 96%;
    padding: 19px;
    font-size: 14px;
  }

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

  .solution-card,
  .solution-card--wide {
    min-height: 270px;
    grid-column: auto;
  }

  .solution-card h3,
  .solution-card:not(.solution-card--wide) h3 {
    font-size: 27px;
  }

  .solution-icon {
    margin-top: 38px;
  }

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

  .benefit-card {
    min-height: 200px;
  }

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

  .step-card {
    min-height: 220px;
  }

  .niche-cloud {
    gap: 7px;
  }

  .niche-cloud span {
    padding: 9px 13px;
    font-size: 10px;
  }

  .bonus-card {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding: 21px 18px;
  }

  .bonus-card > div:nth-child(3) {
    grid-column: 2;
  }

  .bonus-value {
    grid-column: 2;
    text-align: left;
  }

  .bonus-card h3 {
    font-size: 20px;
  }

  .bonus-total {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bonus-total > strong {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-card > p {
    font-size: 17px;
  }

  .author {
    right: 25px;
    left: 25px;
  }

  .offer-section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .offer-card {
    padding: 62px 20px 28px;
    border-radius: 25px;
  }

  .offer-badge {
    top: 16px;
    right: 16px;
  }

  .offer-head {
    display: block;
  }

  .offer-head h2 {
    font-size: 58px;
  }

  .price {
    margin-top: 30px;
    text-align: left;
  }

  .price strong {
    font-size: 64px;
  }

  .offer-divider {
    margin: 25px 0;
  }

  .offer-list li {
    display: flex;
    align-items: flex-start;
    font-size: 11px;
  }

  .offer-list li i {
    flex: 0 0 auto;
  }

  .button--offer {
    min-height: 68px;
    padding: 13px 18px;
    font-size: 15px;
  }

  .offer-trust {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .faq-item summary {
    min-height: 74px;
    font-size: 16px;
  }

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

  .final-cta h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .final-cta p {
    font-size: 14px;
  }

  .footer {
    padding-bottom: 90px;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer__inner > a:last-child {
    align-self: center;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

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

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

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

  .render-app {
    transform: none !important;
  }
}
