@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #000000;
  --bg-2: #000000;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(59, 130, 246, 0.42);
  --text: #ffffff;
  --muted: #92929d;
  --soft: #c7c7cf;
  --orange: #3b82f6;
  --orange-2: #0ea5e9;
  --gold: #00d9ff;
  --cyan: #55d8ff;
  --green: #5ee18c;
  --danger: #ff5d5d;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 44px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --glow:
    inset 4px 4px 10px rgba(99, 102, 241, 0.25),
    inset -4px -4px 12px rgba(76, 29, 149, 0.26);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family:
    "Plus Jakarta Sans",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

::selection {
  background: rgba(59, 130, 246, 0.28);
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background: #000000;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  /* Removida animação gridDrift para melhorar a fluidez */
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 40px;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition:
    background 300ms ease,
    backdrop-filter 300ms ease,
    border-bottom 300ms ease,
    padding 300ms ease;
  animation: navDrop 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 40px;
}

.nav-shell {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(99, 102, 241, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--soft);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links-center {
  display: flex;
  align-items: center;
  gap: 26px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: #0b1025;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(
    67.54deg,
    var(--gold) 0%,
    var(--orange-2) 50%,
    var(--orange) 100%
  );
  box-shadow: var(--glow);
  border: none;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
  z-index: 1;
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-3px);
}

.nav-cta::before,
.button-primary::before,
.button-secondary::before {
  content: "";
  height: 100%;
  width: 100px;
  position: absolute;
  top: 0;
  left: -150px;
  background: #ffffff;
  box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  mix-blend-mode: plus-lighter;
  pointer-events: none;
  animation: brilho 3s linear infinite;
  z-index: 10;
}

@keyframes brilho {
  0% {
    opacity: 0;
    left: -150px;
  }
  20% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
    left: 50%;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    left: 150%;
  }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-dark {
  position: relative;
  overflow: hidden;
}

.section-light {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #111111;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.section-light p,
.section-light .section-heading h2,
.section-light .section-copy p:not(.eyebrow) {
  color: #111111;
}

.section-light .flip-card h2,
.section-light .flip-card h3,
.section-light .flip-card p {
  color: #ffffff;
}

.section-light .eyebrow {
  color: var(--orange);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.hero {
  padding: 300px 0 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1200px;
  background-image:
    radial-gradient(
      ellipse 80% 70% at 50% 0%,
      rgba(59, 130, 246, 0.30),
      transparent 70%
    ),
    radial-gradient(
      ellipse 120% 100% at 50% -10%,
      rgba(139, 92, 246, 0.22),
      transparent 70%
    );
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(103, 231, 154, 0.7);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 auto;
  max-width: 930px;
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--soft);
  font-size: 1.18rem;
  line-height: 1.75;
  font-weight: 500;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .button-primary {
  height: 80px;
  padding: 0 54px;
  font-size: 1.15rem;
  border-radius: 40px;
}

.button-primary,
.button-secondary {
  position: relative;
  overflow: hidden;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 0 40px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
  z-index: 1;
}

.button-primary {
  color: #0b1025;
  background: linear-gradient(
    67.54deg,
    var(--gold) 0%,
    var(--orange-2) 25.48%,
    var(--orange) 62.5%,
    #2563eb 100%
  );
  box-shadow: var(--glow);
  border: none;
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.trust-row {
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(14px);
}

.product-stage {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

.dashboard-mockup {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(10, 10, 11, 0.9);
  box-shadow:
    var(--shadow),
    0 0 70px rgba(59, 130, 246, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  padding: 18px;
  backdrop-filter: blur(12px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 150ms ease-out,
    border-color 300ms ease;
}

.dashboard-mockup::before,
.dashboard-mockup::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dashboard-mockup::before {
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.16),
    transparent 16%,
    transparent 76%,
    rgba(59, 130, 246, 0.18)
  );
  mask-image: linear-gradient(#000, #000);
  opacity: 0.75;
}

.dashboard-mockup::after {
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: skewX(-18deg);
  /* Animação dashboardSweep removida por causar repaints custosos */
}

.dashboard-mockup:hover {
  border-color: rgba(59, 130, 246, 0.26);
}

.dashboard-real {
  padding: 10px;
}

.real-dashboard-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: #050506;
  aspect-ratio: 1893 / 785;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 24px 68px rgba(0, 0, 0, 0.46);
}

.real-dashboard-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      transparent 18%,
      transparent 70%,
      rgba(0, 0, 0, 0.18)
    ),
    linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.08),
      transparent 18%,
      transparent 78%,
      rgba(59, 130, 246, 0.06)
    );
}

.real-dashboard-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dashboard-caption {
  position: absolute;
  z-index: 4;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(5, 5, 6, 0.54);
  backdrop-filter: blur(8px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.dashboard-caption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.dashboard-caption strong {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: right;
}

.mockup-topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 18px;
}

.mockup-topbar div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-topbar strong {
  font-size: 1.08rem;
}

.mockup-topbar span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.mockup-topbar button {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--orange-2),
    var(--orange)
  );
  color: #0b1025;
  font-weight: 900;
  padding: 12px 16px;
  box-shadow: var(--glow);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 16px;
}

.mockup-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(255, 255, 255, 0.035);
  padding: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.mockup-panel::after,
.step-card::after,
.category-card::after,
.feature-card::after,
.compare-card::after,
.audience-card::after,
.bonus-card::after,
.offer-shell::after,
.faq-item::after {
  content: "";
  position: absolute;
  left: -90%;
  top: 0;
  width: 56%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.055),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-panel:hover::after,
.step-card:hover::after,
.category-card:hover::after,
.feature-card:hover::after,
.compare-card:hover::after,
.audience-card:hover::after,
.bonus-card:hover::after,
.offer-shell:hover::after,
.faq-item:hover::after {
  left: 130%;
}

.panel-large {
  grid-row: span 2;
}

.panel-heading,
.store-hero,
.metrics-panel,
.flow-panel {
  display: flex;
  flex-direction: column;
}

.panel-heading {
  gap: 6px;
  margin-bottom: 16px;
}

.panel-heading span,
.mini-label,
.store-stack span,
.compare-card span,
.bonus-card span {
  color: var(--orange-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-heading strong {
  font-size: 1.25rem;
}

.store-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}

.store-hero {
  position: relative;
  justify-content: flex-end;
  min-height: 260px;
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(165deg, rgba(99, 102, 241, 0.24), rgba(59, 130, 246, 0.08)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48)), #111113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.store-hero::before {
  content: "slot para imagem real";
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(59, 130, 246, 0.22);
  border-radius: 18px;
  opacity: 0.55;
}

.store-hero span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.store-hero strong {
  margin-top: 10px;
  font-size: 1.55rem;
  line-height: 1.14;
}

.store-products {
  display: grid;
  gap: 12px;
}

.store-products article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    background 260ms ease;
}

.store-products article:hover {
  transform: translateX(4px);
  border-color: rgba(59, 130, 246, 0.24);
  background: rgba(255, 255, 255, 0.065);
}

.product-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  font-weight: 900;
  color: #050506;
}

.badge-blue {
  background: linear-gradient(135deg, var(--cyan), #c8f4ff);
}

.badge-green {
  background: linear-gradient(135deg, var(--green), #e8ffef);
}

.badge-gold {
  background: linear-gradient(135deg, var(--gold), #dff9ff);
}

.store-products strong,
.store-products small {
  display: block;
}

.store-products small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.metrics-panel {
  min-height: 190px;
  justify-content: space-between;
}

.metrics-panel strong {
  font-size: 2.5rem;
  margin-top: 10px;
}

.metric-bars {
  height: 74px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.metric-bars span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.3);
  animation: barPulse 3.8s ease-in-out infinite;
}

.metric-bars span:nth-child(2) {
  animation-delay: -0.7s;
}

.metric-bars span:nth-child(3) {
  animation-delay: -1.4s;
}

.metric-bars span:nth-child(4) {
  animation-delay: -2.1s;
}

.metric-bars span:nth-child(5) {
  animation-delay: -2.8s;
}

.flow-panel {
  min-height: 190px;
  justify-content: space-between;
}

.flow-panel ol {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.flow-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 800;
}

.flow-panel li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050506;
  background: var(--gold);
  font-size: 0.8rem;
}

section:not(.hero) {
  padding: 112px 0;
}

.section-dark:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background:
    linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.04),
      transparent 28%,
      transparent 72%,
      rgba(59, 130, 246, 0.035)
    ),
    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:
    auto,
    42px 42px,
    42px 42px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 18%, transparent 82%);
}

section.product-showcase {
  padding: 0 0 76px;
}

.section-band {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading::before {
  content: "";
  display: block;
  width: min(520px, 90%);
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.44),
    transparent
  );
}

.section-heading.no-line::before {
  display: none;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
}

.glass-pill span {
  color: var(--orange-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-copy h2,
.section-heading h2,
.fomo-copy h2,
.offer-copy h2,
.guarantee-box h2,
.final-cta h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.08;
  font-weight: 800;
}

.section-copy p:not(.eyebrow),
.pain-copy p,
.fomo-copy p,
.offer-copy p,
.guarantee-box p:not(.eyebrow),
.final-cta p {
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 500;
}

.perspective-box {
  perspective: 2000px;
  width: 100%;
  height: 480px;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.flip-card-front {
  background: #050506;
  border: 1px solid var(--line);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.4);
}

.flip-front-bg {
  position: absolute;
  inset: 0;
}
.flip-front-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 300ms ease;
}
.flip-card:hover .flip-front-bg img {
  opacity: 0.8;
}

.flip-front-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.flip-front-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}
.flip-front-content p {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 4px 0 0;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #050506;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--orange-2);
}

.back-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  z-index: 10;
}
.back-text {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
  border-left: 2px solid var(--orange-2);
  padding-left: 20px;
  margin-top: 40px;
}

.footer-line {
  width: 48px;
  height: 4px;
  background-color: var(--orange-2);
  margin-bottom: 16px;
}
.footer-title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.footer-subtitle {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.steps.perspective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 820px) {
  .steps.perspective-grid {
    grid-template-columns: 1fr;
  }
}

.pain-copy {
  display: grid;
  gap: 20px;
}

.steps,
.category-grid,
.feature-grid,
.comparison-grid,
.audience-grid,
.bonus-grid {
  display: grid;
  gap: 18px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.category-card,
.feature-card,
.compare-card,
.audience-card,
.bonus-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.022)
    ),
    var(--panel);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-width: 0;
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.step-card:hover,
.category-card:hover,
.feature-card:hover,
.bonus-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.36);
  background: var(--panel-strong);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(59, 130, 246, 0.08);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.13);
  color: var(--orange-2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-weight: 900;
  margin-bottom: 28px;
}

.step-card h3,
.category-card h3,
.feature-card h3,
.audience-card h3,
.bonus-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.step-card p,
.category-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.features-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 1024px) {
  .features-layout-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .col-left {
    margin-top: 48px;
  }
  .col-right {
    justify-content: center;
    height: 100%;
  }
}

.new-category-card {
  background: #151515;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #2a2a2a;
  transition: all 700ms ease-out;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.new-category-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.new-category-icon-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.new-category-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.new-category-card p {
  color: #a1a1aa;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.mockup-frame {
  border-radius: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 540px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mockup-dark {
  background: #1d1d1d;
}

.mockup-blue {
  background: #3ebeff;
}

.mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opacity-0 {
  opacity: 0;
}

.translate-y-8 {
  transform: translateY(32px);
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes subtle-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.is-floating {
  animation: subtle-float 5s ease-in-out infinite;
  opacity: 1 !important;
  transform: none;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 205px;
}

.comparison-grid,
.audience-grid {
  grid-template-columns: repeat(2, 1fr);
}

.compare-card {
  padding: 34px;
}

.compare-card.active {
  border-color: var(--line-strong);
  background:
    linear-gradient(
      145deg,
      rgba(99, 102, 241, 0.14),
      rgba(255, 255, 255, 0.035)
    ),
    var(--panel);
}

.compare-card.muted {
  opacity: 0.82;
}

.compare-card ul,
.audience-card ul,
.offer-list ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.compare-card li,
.audience-card li,
.offer-list li {
  position: relative;
  padding-left: 24px;
  color: var(--soft);
  line-height: 1.65;
  font-weight: 600;
}

.compare-card li::before,
.audience-card li::before,
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-2);
}

.compare-card.muted li::before,
.audience-card.outline li::before {
  background: var(--danger);
}

.fomo-section {
  background:
    linear-gradient(90deg, rgba(99, 102, 241, 0.16), transparent 42%),
    linear-gradient(180deg, #050506, #09090a);
}

.fomo-copy {
  max-width: 820px;
}

.fomo-copy p {
  max-width: 660px;
  margin: 24px 0 30px;
}

.demo-section .section-copy p:not(.eyebrow) {
  margin-top: 24px;
}

.store-stack {
  display: grid;
  gap: 16px;
}

.store-stack article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.store-stack article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.48),
    transparent
  );
}

.store-stack article:nth-child(2) {
  transform: translateX(34px);
  border-color: rgba(59, 130, 246, 0.3);
}

.store-stack article:nth-child(3) {
  transform: translateX(68px);
}

.store-stack strong,
.store-stack small {
  display: block;
}

.store-stack strong {
  margin-top: 8px;
  font-size: 1.35rem;
}

.store-stack small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.audience-card {
  padding: 36px;
}

.audience-card.outline {
  background: rgba(255, 255, 255, 0.018);
}

.offer-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      140deg,
      rgba(99, 102, 241, 0.16),
      rgba(255, 255, 255, 0.04) 48%,
      rgba(59, 130, 246, 0.05)
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.offer-copy {
  padding: 26px;
}

.offer-copy p {
  margin: 22px 0 30px;
}

.offer-list {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
}

.offer-list h3 {
  margin: 0;
  font-size: 1.45rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 32px;
  padding: 0 10px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.08), transparent 34%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition:
    transform 300ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  left: -90%;
  top: 0;
  width: 56%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover::after {
  left: 130%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(59, 130, 246, 0.08);
}

.pricing-card.featured {
  border: 2px solid var(--line-strong);
  background:
    radial-gradient(circle at 88% 0%, rgba(59, 130, 246, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(99, 102, 241, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 58px rgba(59, 130, 246, 0.16);
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: translateY(-16px);
}

.popular-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 22px;
  border-radius: 0 0 16px 16px;
  color: #0b1025;
  background: linear-gradient(135deg, var(--gold), var(--orange-2));
  box-shadow: var(--glow);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-header {
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 1.85rem;
}

.pricing-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 30px 0 22px;
}

.price small {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.08rem;
}

.price strong {
  color: #fff;
  font-size: 5.2rem;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 0 28px rgba(59, 130, 246, 0.12);
}

.price span {
  align-self: flex-end;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-benefits {
  width: 100%;
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.pricing-benefits li {
  position: relative;
  min-height: 28px;
  padding-left: 38px;
  color: var(--soft);
  line-height: 1.55;
  font-weight: 600;
}

.pricing-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.pricing-card .button-primary,
.pricing-card .button-secondary {
  margin-top: auto;
  width: 100%;
}

.bonus-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 22px;
}

.bonus-card {
  min-height: 170px;
  padding: 24px;
}

.bonus-card h3 {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.guarantee-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
  padding: 42px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.guarantee-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--green), #e8ffef);
  color: #061107;
  font-weight: 900;
}

.guarantee-box p:not(.eyebrow) {
  margin: 22px 0 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition:
    border-color 260ms ease,
    background 260ms ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(59, 130, 246, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  font-size: 1.05rem;
}

.faq-item button::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #050506;
  background: var(--orange-2);
  font-weight: 900;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open div {
  grid-template-rows: 1fr;
}

.faq-item p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
  color: var(--soft);
  line-height: 1.7;
  font-weight: 600;
}

.faq-item.is-open p {
  padding-bottom: 24px;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.1)), #050506;
}

.final-cta p {
  max-width: 620px;
  margin: 22px auto 30px;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050506;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.footer button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible:nth-child(2) {
  transition-delay: 80ms;
}

.reveal.is-visible:nth-child(3) {
  transition-delay: 140ms;
}

.reveal.is-visible:nth-child(4) {
  transition-delay: 200ms;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gridDrift {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      46px 46px,
      46px 46px;
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.13;
    transform: scale(1);
  }
  50% {
    opacity: 0.24;
    transform: scale(1.04);
  }
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(28px, 18px, 0) rotate(-5deg);
  }
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes buttonGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes dashboardSweep {
  0%,
  54% {
    left: -30%;
  }
  82%,
  100% {
    left: 108%;
  }
}

@keyframes barPulse {
  0%,
  100% {
    opacity: 0.86;
    filter: saturate(0.9);
  }
  50% {
    opacity: 1;
    filter: saturate(1.25);
  }
}

.pain-section-new {
  /* Fundo escuro principal */
  background: radial-gradient(circle at 50% 50%, #0c1024 0%, #000000 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 250px;
  padding-top: 100px;
}

/* Fundo branco curvo na parte inferior */
.pain-curve-bg {
  position: absolute;
  bottom: -5%;
  left: -10%;
  width: 120%;
  height: 50%;
  background-color: #ffffff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  z-index: 0;
}

/* Fundo branco curvo na parte superior (invertido) */
.pain-curve-bg-bottom {
  position: absolute;
  top: -5%;
  left: -10%;
  width: 120%;
  height: 50%;
  background-color: #ffffff;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
  z-index: 0;
}

.pain-container {
  background: linear-gradient(
    180deg,
    rgba(12, 17, 35, 0.2) 0%,
    rgba(10, 10, 10, 0.4) 100%
  );
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 40px;
  max-width: 960px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.pain-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  z-index: -1;
}

.pain-left-content,
.pain-right-content {
  flex: 1;
  padding: 20px;
  z-index: 1;
}

.pain-left-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pain-product-image {
  max-width: 100%;
  height: auto;
}

.pain-right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-badge {
  background-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.pain-badge::before {
  content: "•";
  margin-right: 8px;
}

.pain-right-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.pain-right-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.pain-highlight-text {
  color: #60a5fa;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pain-container {
    flex-direction: column;
    padding: 20px;
    width: 95%;
  }
  .pain-left-content,
  .pain-right-content {
    padding: 10px;
  }
  .pain-right-content h2 {
    font-size: 28px;
  }
  .pain-curve-bg {
    bottom: -5%;
    height: 35%;
  }
  .pain-curve-bg-bottom {
    top: -5%;
    height: 35%;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 2.8rem;
  }

  .section-copy h2,
  .section-heading h2,
  .fomo-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .final-cta h2 {
    font-size: 2.55rem;
  }

  .category-grid,
  .pricing-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 0;
    padding: 16px 20px;
  }

  .site-header.is-scrolled {
    padding: 12px 20px;
  }

  .nav-shell {
    min-height: 58px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 8, 9, 0.94);
    backdrop-filter: blur(22px);
  }

  .nav-links-center {
    position: relative;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero {
    padding-top: 180px;
    padding-bottom: 22px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.12;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .product-stage {
    margin-top: 0;
  }

  .dashboard-mockup {
    border-radius: 28px;
    padding: 12px;
  }

  .dashboard-real {
    padding: 8px;
  }

  .real-dashboard-frame {
    border-radius: 22px;
  }

  .dashboard-caption {
    position: static;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-radius: 18px;
  }

  .dashboard-caption strong {
    text-align: left;
  }

  .mockup-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .mockup-grid,
  .store-preview,
  .two-column,
  .offer-shell,
  .comparison-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .store-hero {
    min-height: 210px;
  }

  section:not(.hero) {
    padding: 80px 0;
  }

  section.product-showcase {
    padding: 0 0 64px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-copy h2,
  .section-heading h2,
  .fomo-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .final-cta h2 {
    font-size: 2.05rem;
  }

  .category-grid,
  .feature-grid,
  .pricing-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    padding: 0;
  }

  .pricing-card,
  .pricing-card.featured,
  .pricing-card.featured:hover {
    min-height: auto;
    transform: none;
  }

  .store-stack article:nth-child(2),
  .store-stack article:nth-child(3) {
    transform: none;
  }

  .offer-shell,
  .offer-copy {
    padding: 22px;
  }

  .guarantee-box {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section-inner,
  .hero-content,
  .product-stage,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 134px;
  }

  .brand-logo {
    height: 34px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .trust-row {
    justify-content: flex-start;
  }

  .mockup-panel,
  .step-card,
  .category-card,
  .feature-card,
  .compare-card,
  .audience-card,
  .pricing-card,
  .bonus-card {
    border-radius: 22px;
    padding: 22px;
  }

  .popular-ribbon {
    position: static;
    transform: none;
    margin: -4px 0 16px;
    border-radius: 999px;
  }

  .price strong {
    font-size: 4rem;
  }

  .pricing-benefits li {
    padding-left: 34px;
  }

  .store-products article {
    align-items: flex-start;
  }

  .metrics-panel strong {
    font-size: 2rem;
  }

  .section-copy h2,
  .section-heading h2,
  .fomo-copy h2,
  .offer-copy h2,
  .guarantee-box h2,
  .final-cta h2 {
    font-size: 1.78rem;
  }

  .faq-item button {
    font-size: 1rem;
    padding: 18px;
  }

  .faq-item p {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Marquee Section */
.marquee-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  cursor: default;
}

.marquee-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.marquee-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.marquee-item:hover .marquee-icon {
  opacity: 1;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-item {
    font-size: 1.2rem;
  }
  .marquee-icon {
    width: 48px;
    height: 48px;
  }
  .marquee-content {
    gap: 40px;
    padding-right: 40px;
  }
  .marquee-container::before,
  .marquee-container::after {
    width: 60px;
  }
}

/* Ryze Builder — visual system coherence pass */
:root{--bg:#05060a;--bg-2:#080a12;--panel:rgba(15,18,30,.82);--panel-strong:rgba(22,27,45,.92);--line:rgba(148,163,184,.14);--line-strong:rgba(14,165,233,.52);--text:#f8fafc;--muted:#8f98aa;--soft:#c4cad5;--orange:#3b82f6;--orange-2:#0ea5e9;--gold:#00d9ff;--cyan:#22d3ee;--green:#34d399;--glow:0 12px 34px rgba(59,130,246,.20),inset 0 1px 0 rgba(255,255,255,.16)}
body::before{background:#05060a}.hero{background:#05060a}.hero::before{background-image:radial-gradient(ellipse 82% 68% at 22% 0%,rgba(59,130,246,.28),transparent 65%),radial-gradient(ellipse 76% 72% at 80% -5%,rgba(0,217,255,.24),transparent 68%)}
.nav-cta,.button-primary{color:#fff;background:linear-gradient(105deg,#7c3aed 0%,#4f46e5 42%,#2563eb 78%,#22d3ee 120%);text-shadow:0 1px 2px rgba(0,0,0,.25)}
.brand-logo{width:200px;max-height:48px;object-fit:contain;object-position:left center}.site-header.is-scrolled{background:rgba(5,6,10,.78);border-bottom-color:rgba(14,165,233,.15)}
.hero h1{background:linear-gradient(180deg,#fff 28%,#cbd5e1 100%);-webkit-background-clip:text;background-clip:text;color:transparent}.product-stage img{border:1px solid rgba(14,165,233,.2);border-radius:22px;box-shadow:0 34px 110px rgba(37,99,235,.18)}
.pain-section-new{background:radial-gradient(circle at 22% 10%,rgba(59,130,246,.16),transparent 38%),radial-gradient(circle at 82% 55%,rgba(0,217,255,.14),transparent 42%),#05060a}.pain-container{background:linear-gradient(145deg,rgba(17,24,39,.88),rgba(8,10,18,.92));border-color:rgba(14,165,233,.34);box-shadow:0 34px 90px rgba(0,0,0,.5),0 0 45px rgba(59,130,246,.08)}.pain-container::before{background:radial-gradient(circle at 30% 70%,rgba(59,130,246,.16),transparent 52%)}.pain-badge{background:rgba(14,165,233,.14);color:#93c5fd}.pain-highlight-text{color:#38bdf8}
.flip-card-front,.flip-card-back{border-color:rgba(14,165,233,.2)}.flip-front-bg img{filter:saturate(.82) contrast(1.03)}.flip-front-content{background:linear-gradient(to top,rgba(3,6,18,.96),rgba(3,6,18,.1) 72%)}
.new-category-card{height:100%;background:linear-gradient(145deg,rgba(18,22,36,.96),rgba(10,12,21,.96));border-color:rgba(148,163,184,.14)}.new-category-card:hover{border-color:rgba(14,165,233,.48);transform:translateY(-6px);box-shadow:0 22px 55px rgba(37,99,235,.12)}.new-category-icon-wrapper img{width:64px;height:64px}.features-column{gap:24px}.col-left,.col-right{margin-top:0!important;justify-content:stretch!important}.mockup-frame{height:420px;border:1px solid rgba(14,165,233,.2);border-radius:28px;background:#090d18}.mockup-blue{background:#090d18}.mockup-frame img{object-fit:cover;object-position:left top}
.compare-card.active{background:linear-gradient(145deg,rgba(79,70,229,.18),rgba(15,18,30,.9));border-color:rgba(14,165,233,.42)}.offer-shell{background:linear-gradient(140deg,rgba(79,70,229,.16),rgba(15,18,30,.92) 54%,rgba(37,99,235,.10))}.pricing-card.featured{background:radial-gradient(circle at 88% 0%,rgba(59,130,246,.20),transparent 35%),linear-gradient(145deg,rgba(79,70,229,.14),rgba(15,18,30,.96))}.popular-ribbon{color:#fff;background:linear-gradient(90deg,#7c3aed,#2563eb)}.guarantee-mark{background:linear-gradient(135deg,#34d399,#22d3ee);color:#03251c}.faq-item button::after{color:#fff;background:linear-gradient(135deg,#7c3aed,#2563eb)}.final-cta{background:radial-gradient(circle at 50% 100%,rgba(79,70,229,.2),transparent 55%),#05060a}.mockup-blue,.badge-gold{background:linear-gradient(145deg,#0b1224,#111936)}
@media(max-width:820px){.brand-logo{width:165px}.hero{padding-top:190px}.section-copy h2,.section-heading h2,.offer-copy h2,.guarantee-box h2,.final-cta h2{font-size:2.15rem}.mockup-frame{height:340px}.new-category-card{min-height:auto}}
.hero{padding-top:230px}.mockup-frame img{object-fit:contain!important}.comparison-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.section-dark:target .reveal{opacity:1!important;transform:none!important}
@media(max-width:820px){.comparison-grid{grid-template-columns:1fr!important}.hero{padding-top:170px}}
.nav-cta::before,.button-primary::before,.button-secondary::before{width:42px;box-shadow:0 0 18px 10px rgba(255,255,255,.22);animation-duration:5s}.pricing-card:not(.featured) .button-secondary{border-color:rgba(14,165,233,.36);background:linear-gradient(105deg,rgba(79,70,229,.18),rgba(37,99,235,.18));color:#dff9ff}.pricing-card:not(.featured) .button-secondary:hover{background:linear-gradient(105deg,rgba(79,70,229,.28),rgba(37,99,235,.28))}

/* Image-to-feature mapping and full responsive QA pass */
.mockup-frame {
  position: relative;
  isolation: isolate;
  align-items: center;
  padding: 58px 16px 16px;
}
.mockup-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, .13), transparent 52%);
}
.mockup-frame img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  object-fit: contain !important;
  object-position: center !important;
}
.mockup-label {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 9px 13px;
  border: 1px solid rgba(99, 102, 241, .34);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(8, 12, 24, .82);
  backdrop-filter: blur(12px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.25;
  text-transform: uppercase;
}
.mockup-label::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 12px rgba(34, 211, 238, .8);
}
.pain-product-image {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, .34));
}
.flip-front-bg img { object-position: center top; }
.hero-actions .button-primary,
.nav-cta { white-space: nowrap; }

@media (min-width: 821px) and (max-width: 1023px) {
  .features-layout-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .col-center {
    order: 1;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .col-left { order: 2; }
  .col-right { order: 3; }
  .mockup-frame { height: 360px; }
}

@media (max-width: 820px) {
  .col-center { order: 1; }
  .col-left { order: 2; }
  .col-right { order: 3; }
  .mockup-frame { height: min(76vw, 380px); }
  .product-stage { margin-top: 34px !important; }
  .pain-section-new { padding-top: 72px; padding-bottom: 180px; }
  .pain-container { gap: 6px; }
  .pain-product-image { max-height: 360px; }
  .perspective-box { height: 430px; }
  .footer-inner { align-items: center; text-align: center; }
  .hero-actions .button-primary { white-space: normal; }
}

@media (max-width: 520px) {
  .site-header, .site-header.is-scrolled { padding-left: 14px; padding-right: 14px; }
  .brand { min-width: 0; }
  .brand-logo { width: 150px; height: 36px; }
  .hero { padding-top: 150px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.35rem); }
  .hero-copy { font-size: .96rem; line-height: 1.65; }
  .trust-row { justify-content: center; }
  .trust-row span { font-size: .68rem; padding: 7px 9px; }
  .button-primary, .button-secondary { min-height: 56px; height: auto; padding: 15px 22px; text-align: center; }
  .mockup-frame { height: 300px; padding: 54px 10px 10px; border-radius: 22px; }
  .mockup-label { top: 12px; left: 12px; right: 12px; max-width: calc(100% - 24px); font-size: .64rem; }
  .new-category-card { padding: 24px; }
  .pain-section-new { padding-bottom: 140px; }
  .pain-container { padding: 18px; border-radius: 22px; }
  .pain-right-content h2 { font-size: 1.75rem; }
  .pain-badge { font-size: .73rem; }
  .perspective-box { height: 400px; }
  .back-content { padding: 34px 24px; }
  .back-text { font-size: 1.05rem; }
  .offer-shell, .offer-copy, .offer-list { padding: 20px; }
  .price { flex-wrap: wrap; }
  .price strong { font-size: 3.7rem; }
  .footer p { font-size: .9rem; line-height: 1.6; }
}

@media (max-width: 360px) {
  .brand-logo { width: 138px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero h1 { font-size: 1.82rem; }
  .section-copy h2,
  .section-heading h2,
  .offer-copy h2,
  .guarantee-box h2,
  .final-cta h2 { font-size: 1.58rem; }
  .mockup-frame { height: 270px; }
  .pricing-card { padding: 19px; }
}
/* Collapse navigation before labels and CTA can collide on compact laptops/tablets */
@media (max-width: 960px) {
  .site-header { padding: 16px 20px; }
  .site-header.is-scrolled { padding: 12px 20px; }
  .nav-shell { min-height: 58px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 6, 10, .96);
    backdrop-filter: blur(22px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .44);
  }
  .nav-links-center {
    position: relative;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px; border-radius: 12px; }
  .nav-cta { margin-top: 6px; text-align: center; }
}
/* Depth-effect composition: give the visual equal weight to the message */
.pain-container { max-width: 1120px; padding: 54px; }
.pain-left-content, .pain-right-content { flex: 0 0 50%; }
.pain-left-content { padding: 24px 20px; }
.pain-right-content { padding: 28px 24px; }
.pain-product-image {
  width: 112%;
  max-width: none;
  margin-left: -6%;
  border-radius: 16px;
  box-shadow: 0 28px 55px rgba(0, 0, 0, .34);
}
.flip-front-bg img { object-position: center center; }
@media (max-width: 768px) {
  .pain-container { max-width: calc(100% - 28px); padding: 22px; }
  .pain-left-content, .pain-right-content { flex: 1 1 auto; padding: 10px; }
  .pain-product-image { width: calc(100% + 20px); max-width: none; margin-left: -10px; }
}
/* Ryze visual identity: graphite navy + electric cyan */
:root{--orange:#0ea5e9;--orange-2:#0284c7;--gold:#00d9ff;--cyan:#22d3ee;--line-strong:rgba(14,165,233,.52);--glow:inset 4px 4px 10px rgba(14,165,233,.22),inset -4px -4px 12px rgba(3,37,65,.38)}
.brand{gap:10px}.brand-logo{width:42px!important;height:42px!important;max-height:none!important;object-fit:contain;filter:drop-shadow(0 0 14px rgba(0,217,255,.28))}.brand-name{font-size:15px;font-weight:900;letter-spacing:.08em;color:#f8fdff;white-space:nowrap}.nav-cta,.button-primary{background:linear-gradient(110deg,#0284c7,#00d9ff)!important;box-shadow:0 12px 30px rgba(0,185,232,.22)!important}.eyebrow,.pain-highlight-text,.offer-price,.faq-item button:hover{color:#38d9ff!important}.pain-badge{background:rgba(0,217,255,.12)!important;color:#8be9ff!important}.site-header.is-scrolled{border-bottom-color:rgba(0,217,255,.22)!important}
@media(max-width:820px){.brand-logo{width:38px!important;height:38px!important}.brand-name{font-size:13px}}


/* Pricing plans: four responsive choices with clear annual/lifetime emphasis */
.pricing-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;padding:0;margin-top:32px;align-items:stretch}
.pricing-card{min-height:520px;border-radius:28px;padding:28px 24px}
.pricing-card h3{font-size:1.65rem}
.pricing-card .price{gap:5px;margin:24px 0 20px;align-items:flex-start}
.pricing-card .price strong{font-size:4.1rem}
.pricing-card .price span{font-size:.72rem;max-width:88px;line-height:1.2}
.pricing-card.annual{border-color:rgba(0,217,255,.65);background:radial-gradient(circle at 90% 0%,rgba(0,217,255,.20),transparent 38%),linear-gradient(145deg,rgba(0,217,255,.12),rgba(255,255,255,.035)),rgba(255,255,255,.04);box-shadow:0 24px 70px rgba(0,184,232,.16),inset 0 1px 0 rgba(255,255,255,.12);transform:translateY(-6px)}
.pricing-card.lifetime{border-color:#00d9ff;background:radial-gradient(circle at 88% 0%,rgba(0,217,255,.30),transparent 40%),linear-gradient(145deg,rgba(2,132,199,.25),rgba(255,255,255,.045)),rgba(255,255,255,.05);box-shadow:0 30px 90px rgba(0,184,232,.28),0 0 42px rgba(0,217,255,.14);transform:translateY(-12px)}
.pricing-card.annual:hover{transform:translateY(-12px)}
.pricing-card.lifetime:hover{transform:translateY(-18px)}
.pricing-card.annual .pricing-tag,.pricing-card.lifetime .pricing-tag{color:#8be9ff;border-color:rgba(0,217,255,.42);background:rgba(0,217,255,.10)}
@media (max-width:1100px){.pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.pricing-card.annual,.pricing-card.lifetime{transform:none}.pricing-card.annual:hover{transform:translateY(-8px)}.pricing-card.lifetime:hover{transform:translateY(-8px)}}
@media (max-width:620px){.pricing-grid{grid-template-columns:1fr;gap:16px}.pricing-card,.pricing-card.annual,.pricing-card.lifetime{min-height:auto;padding:24px 22px;transform:none}.pricing-card.annual:hover,.pricing-card.lifetime:hover{transform:translateY(-4px)}.pricing-card .price strong{font-size:4.4rem}.pricing-card .pricing-header p{max-width:34ch}.pricing-card .button-primary,.pricing-card .button-secondary{min-height:52px}.popular-ribbon{position:static;display:inline-flex;transform:none;margin:-4px 0 16px;border-radius:999px}}