/* ============================================
 * Landing Page — extensões específicas
 * Importa: tokens.css, base.css, components.css, motion.css
 * ============================================ */

/* === Header com logo SVG === */

.header-logo-svg {
  height: 26px;
  width: auto;
  color: var(--text-primary);
  transition: color var(--duration-base) var(--ease-smooth);
}

.header-logo-svg .logo-x-accent {
  fill: var(--brand-primary);
}

/* === Hero (lateral layout) === */

.lp-hero {
  position: relative;
  padding-block: var(--space-24) var(--space-16);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.lp-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .lp-hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 50% 100%, rgba(14, 165, 233, 0.16), transparent 65%),
    radial-gradient(ellipse 700px 400px at 22% 28%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 500px 300px at 78% 50%, rgba(124, 58, 237, 0.06), transparent 55%),
    radial-gradient(ellipse 400px 250px at 50% 50%, rgba(37, 99, 235, 0.05), transparent 65%);
  animation: hero-bg-shift 30s ease-in-out infinite;
}

@keyframes hero-bg-shift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(2deg); }
}

html.dark .lp-hero-bg {
  background:
    radial-gradient(ellipse 900px 500px at 50% 100%, rgba(14, 165, 233, 0.20), transparent 65%),
    radial-gradient(ellipse 700px 400px at 22% 28%, rgba(96, 165, 250, 0.15), transparent 55%),
    radial-gradient(ellipse 500px 300px at 78% 50%, rgba(168, 85, 247, 0.10), transparent 55%),
    radial-gradient(ellipse 400px 250px at 50% 50%, rgba(96, 165, 250, 0.08), transparent 65%);
}

/* Animated SVG abstract shapes no fundo */
.lp-hero-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.lp-hero-curves svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

html.dark .lp-hero-curves svg {
  opacity: 0.6;
}

.lp-hero-curves .curve {
  fill: none;
  stroke: var(--brand-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 8 16;
  opacity: 0.35;
  animation: curve-draw 20s ease-in-out infinite;
}

.lp-hero-curves .curve-2 {
  animation-delay: -10s;
  opacity: 0.2;
}

@keyframes curve-draw {
  0%, 100% { stroke-dashoffset: 0; }
  50% { stroke-dashoffset: -240; }
}

/* Noise texture sutil sobre tudo */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.04;
  mix-blend-mode: overlay;
}

html.dark body::before {
  opacity: 0.08;
}

.lp-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Grid arquitetural sóbrio: só linhas verticais sutis (colunas de tribunal) */
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px);
  background-size: 96px 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  opacity: 0.4;
}

html.dark .lp-hero-grid {
  background-image:
    linear-gradient(to right, rgba(245, 235, 220, 0.04) 1px, transparent 1px);
  opacity: 1;
}

/* Floating shapes decorativas */
.lp-hero-shape {
  position: absolute;
  border-radius: var(--radius-2xl);
  pointer-events: none;
  border: 1px solid var(--border);
  background: var(--surface-card);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.lp-hero-shape-1 {
  top: 20%;
  left: 8%;
  width: 64px;
  height: 64px;
  animation: float 8s ease-in-out infinite;
}

.lp-hero-shape-2 {
  top: 14%;
  right: 12%;
  width: 96px;
  height: 96px;
  animation: float 10s ease-in-out infinite -2s;
  border-radius: var(--radius-3xl);
}

.lp-hero-shape-3 {
  bottom: 30%;
  left: 14%;
  width: 48px;
  height: 48px;
  animation: float 7s ease-in-out infinite -4s;
}

.lp-hero-shape svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--brand-primary);
  opacity: 0.7;
}

.lp-hero-shape-1 svg { width: 22px; height: 22px; }
.lp-hero-shape-2 svg { width: 32px; height: 32px; }
.lp-hero-shape-3 svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .lp-hero-shape { display: none; }
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 560px;
}

@media (max-width: 980px) {
  .lp-hero-content {
    text-align: center;
    margin-inline: auto;
  }
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.lp-hero-eyebrow .eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}

.lp-hero-eyebrow .eyebrow-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}

.lp-hero-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 980px) {
  .lp-hero-title {
    align-items: center;
    text-align: center;
  }
}

.lp-hero-title .title-line {
  display: block;
  position: relative;
}

.lp-hero-title .title-line-1 {
  animation: title-line-in 1s var(--ease-smooth) backwards;
}

.lp-hero-title .title-line-2 {
  animation: title-line-in 1s var(--ease-smooth) 0.15s backwards;
}

@keyframes title-line-in {
  0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.lp-hero-title em {
  font-style: italic;
  font-family: 'Inter', serif;
  display: block;
  background: linear-gradient(
    105deg,
    var(--text-secondary) 0%,
    var(--brand-primary) 25%,
    var(--accent-glow) 50%,
    var(--brand-primary) 75%,
    var(--text-secondary) 100%
  );
  background-size: 250% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease-in-out infinite;
  position: relative;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lp-hero-lede {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-weight: 500;
  letter-spacing: -0.2px;
}

.lp-hero-lede-cta {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

@media (max-width: 980px) {
  .lp-hero-lede, .lp-hero-lede-cta {
    margin-inline: auto;
    max-width: 600px;
  }
}

.lp-hero-lede-cta strong {
  color: var(--text-primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.lp-hero-lede-cta strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--brand-subtle);
  z-index: -1;
}

html.dark .lp-hero-lede-cta strong::after {
  background: rgba(96, 165, 250, 0.15);
}

.lp-hero-lede-cta .lede-highlight {
  color: var(--brand-primary);
  font-weight: 600;
  position: relative;
}

.lp-hero-lede-cta .lede-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight-draw 1s var(--ease-smooth) 1.2s forwards;
}

@keyframes highlight-draw {
  to { transform: scaleX(1); }
}

.lp-hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .lp-hero-actions {
    justify-content: center;
  }
}

.lp-hero-meta {
  margin-top: var(--space-10);
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-light);
}

@media (max-width: 980px) {
  .lp-hero-meta {
    justify-content: center;
  }
}

.lp-hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.lp-hero-meta-item {
  align-items: flex-start;
}

@media (max-width: 980px) {
  .lp-hero-meta-item {
    align-items: center;
  }
}

.lp-hero-meta-item .meta-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--text-primary);
  line-height: 1;
}

.lp-hero-meta-item .meta-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* === Hero scene: dashboard + phone composto à direita === */

.hero-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .hero-scene {
    min-height: auto;
    margin-top: var(--space-8);
  }
}

/* Dashboard fica atrás, mais à esquerda */
.hero-scene .dashboard-mock {
  position: relative;
  width: 100%;
  max-width: 580px;
  z-index: 1;
  transform: rotateY(-3deg) rotateX(2deg) translateX(-30px);
  transform-origin: right center;
}

/* Phone à frente, à direita */
.hero-scene .phone-mock {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 240px;
  z-index: 2;
  transform: rotateY(6deg) rotateX(-2deg);
  transform-origin: left center;
}

@media (max-width: 980px) {
  .hero-scene .dashboard-mock {
    transform: none;
    max-width: 100%;
  }
  .hero-scene .phone-mock {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: var(--space-6);
    transform: none;
  }
}

/* Conector animado entre dashboard e phone */
.hero-scene::before {
  content: '';
  position: absolute;
  right: 240px;
  bottom: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary));
  z-index: 3;
  pointer-events: none;
}

.hero-scene::after {
  content: '';
  position: absolute;
  bottom: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 16px var(--brand-primary);
  animation: flow-dot 3s var(--ease-smooth) infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes flow-dot {
  0% { right: 300px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { right: 240px; opacity: 0; }
}

@media (max-width: 980px) {
  .hero-scene::before, .hero-scene::after { display: none; }
}

/* === Mockup do dashboard === */

.dashboard-mock {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.02),
    0 24px 48px -16px rgba(15, 15, 14, 0.08),
    0 60px 100px -40px rgba(15, 15, 14, 0.04);
  position: relative;
  transform: rotateY(-2deg) rotateX(2deg);
  transform-origin: right center;
}

@media (max-width: 980px) {
  .dashboard-mock {
    transform: none;
  }
}

html.dark .dashboard-mock {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 48px -16px rgba(0, 0, 0, 0.4);
}

.dashboard-mock::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.5;
}

.dashboard-window {
  background: var(--bg-page);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.dashboard-bar {
  background: var(--bg-warm);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--border-light);
}

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

.dashboard-bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.dashboard-bar-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: var(--space-2);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 400px;
}

.dashboard-sidebar {
  background: var(--bg-warm);
  border-right: 1px solid var(--border-light);
  padding: var(--space-4) var(--space-3);
}

.dashboard-sidebar-section {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  padding-inline: var(--space-2);
}

.dashboard-sidebar-section:first-child {
  margin-top: 0;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px var(--space-2);
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: default;
}

.dashboard-nav-item.is-active {
  color: var(--brand-primary);
  background: var(--brand-subtle);
  font-weight: 500;
}

.dashboard-nav-item svg {
  width: 14px;
  height: 14px;
}

.dashboard-main {
  padding: var(--space-6);
}

.dashboard-page-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.dashboard-stat {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.dashboard-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.dashboard-stat-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

.dashboard-stat-delta {
  font-size: 11px;
  color: var(--success);
  margin-top: 2px;
}

.dashboard-table {
  background: var(--bg-warm);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 100px 1fr 80px 60px;
  gap: var(--space-3);
  padding: 10px var(--space-3);
  font-size: 12px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.dashboard-row:last-child { border-bottom: none; }

.dashboard-row .cell-time {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  font-size: 11px;
}

.dashboard-row .cell-msg {
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-row .cell-status {
  display: flex;
  justify-content: flex-end;
}

/* === Section divider === */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding-block: var(--space-12);
  position: relative;
}

.section-divider .divider-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-divider .divider-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -1px;
  box-shadow: var(--shadow-glow-brand);
}

/* === Sections === */

.lp-section {
  padding-block: var(--space-24);
  position: relative;
  overflow: hidden;
}

.lp-section + .lp-section {
  border-top: 1px solid var(--border-light);
}

.lp-section.bg-warm {
  background: var(--bg-warm);
}

.lp-section.bg-textured {
  background: var(--bg-page);
}

.lp-section.bg-textured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.04), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.04), transparent 50%);
  pointer-events: none;
}

html.dark .lp-section.bg-textured::before {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(96, 165, 250, 0.06), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.05), transparent 50%);
}

.lp-section.bg-grid {
  background: var(--bg-warm);
}

.lp-section.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 90%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 90%);
  opacity: 0.5;
  pointer-events: none;
}

.lp-section > .container {
  position: relative;
  z-index: 1;
}

.lp-section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 720px;
  margin-inline: auto;
}

.lp-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
  margin-bottom: var(--space-3);
  padding: 6px 12px;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-full);
}

.lp-section-eyebrow .num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--brand-primary);
  opacity: 0.6;
  font-weight: 500;
}

.lp-section-title {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.lp-section-lede {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
}

/* === Manifesto bar (marquee horizontal infinito) === */

.manifesto-bar {
  padding-block: var(--space-12);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.manifesto-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px);
  background-size: 64px 100%;
  opacity: 0.3;
  pointer-events: none;
}

.manifesto-marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  position: relative;
}

.manifesto-marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  animation: marquee-loop 40s linear infinite;
  flex-shrink: 0;
  padding-right: var(--space-8);
  white-space: nowrap;
}

.manifesto-marquee:hover .manifesto-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.manifesto-marquee-item {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
}

.manifesto-marquee-item .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.manifesto-marquee-item .muted {
  color: var(--text-muted);
  font-weight: 400;
}

.manifesto-marquee-divider {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  opacity: 0.5;
  flex-shrink: 0;
}

/* === Stat cards (problema, prova social) === */

.stat-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-smooth),
    border-color var(--duration-base) var(--ease-smooth);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 60%);
  pointer-events: none;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

html.dark .stat-card::before {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 60%);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-border);
}

.stat-card:hover::before {
  transform: translate(-20%, 20%);
}

.stat-card .stat-value {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.stat-card .stat-value.is-brand {
  color: var(--brand-primary);
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  position: relative;
}

/* === Steps === */

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 50px;
  bottom: 50px;
  width: 1px;
  background: linear-gradient(to bottom, var(--brand-border), var(--border-light), var(--brand-border));
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  align-items: start;
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-2xl);
  background: var(--surface-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-primary);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-card);
}

.step:hover .step-num {
  border-color: var(--brand-border);
  box-shadow: var(--shadow-glow-brand);
}

.step-body {
  padding-top: var(--space-3);
}

.step-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.step-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .steps::before { display: none; }
  .step { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* === Differentials cards (6) === */

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}

.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--space-6);
}

.diff-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  transition:
    transform var(--duration-base) var(--ease-smooth),
    border-color var(--duration-base) var(--ease-smooth),
    box-shadow var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
  transition: left 0.7s var(--ease-smooth);
  pointer-events: none;
}

.diff-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

html.dark .diff-card::after {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1), transparent 60%);
}

html.dark .diff-card::before {
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.12), transparent);
}

.diff-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-card-hover);
}

.diff-card:hover::before {
  left: 100%;
}

.diff-card:hover::after {
  opacity: 1;
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-subtle);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  position: relative;
}

.diff-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-lg);
  background: var(--brand-subtle);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
  z-index: -1;
}

.diff-card:hover .diff-icon::before {
  opacity: 0.5;
}

.diff-icon svg { width: 24px; height: 24px; }

.diff-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  position: relative;
}

.diff-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  position: relative;
}

/* === Comparison table === */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table th {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-warm);
  text-align: center;
  vertical-align: middle;
  position: relative;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.compare-table .col-self {
  background: var(--brand-subtle);
}

.compare-table .col-self.is-header {
  color: var(--brand-primary);
  font-weight: 700;
}

.compare-table .col-self.is-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-primary);
}

.compare-table tbody tr {
  transition: background-color var(--duration-fast) var(--ease-smooth);
}

.compare-table tbody tr:hover {
  background: var(--bg-warm);
}

.check-icon {
  color: var(--success);
  display: inline-flex;
}

.x-icon-cell {
  color: var(--text-muted);
  display: inline-flex;
}

.minus-icon {
  color: var(--error);
  display: inline-flex;
  opacity: 0.85;
}

/* === Quote / testimonial === */

.quote-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  padding: var(--space-12);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 60%);
  pointer-events: none;
}

html.dark .quote-card::before {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08), transparent 60%);
}

.quote-card .quote-mark {
  font-size: 96px;
  line-height: 1;
  color: var(--brand-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: -40px;
  position: relative;
}

.quote-card blockquote {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: var(--space-6);
  position: relative;
}

.quote-card cite {
  font-style: normal;
  display: block;
  position: relative;
}

.quote-card cite .cite-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-card cite .cite-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

/* === Pricing === */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  align-items: stretch;
  margin-top: var(--space-8);
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-smooth),
    border-color var(--duration-base) var(--ease-smooth);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
}

.price-card.is-pro {
  border-color: var(--brand-border);
  border-width: 2px;
  background: linear-gradient(180deg, var(--brand-subtle) 0%, var(--surface-card) 30%);
}

html.dark .price-card.is-pro {
  background: linear-gradient(180deg, var(--brand-subtle) 0%, var(--surface-card) 50%);
}

.price-card.is-pro::before {
  content: 'Mais escolhido';
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--brand-primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  animation: pulse-glow var(--duration-loop-pulse) var(--ease-smooth) infinite;
}

.price-card .price-tier {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.price-card.is-pro .price-tier { color: var(--brand-primary); }

.price-card .price-value {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.price-card .price-amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  line-height: 1;
}

.price-card .price-suffix {
  font-size: 14px;
  color: var(--text-muted);
}

/* Headline em vez de preço (substitui price-value/amount/suffix) */
.price-card .price-headline {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.price-card.is-pro .price-headline {
  color: var(--brand-primary);
}

.price-card .price-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  min-height: 60px;
  line-height: 1.55;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.price-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.price-card .btn { width: 100%; }

/* === Final CTA === */

.cta-final {
  text-align: center;
  padding-block: var(--space-32);
  position: relative;
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 400px at 50% 50%, rgba(37, 99, 235, 0.10), transparent 70%),
    radial-gradient(ellipse 400px 200px at 50% 100%, rgba(14, 165, 233, 0.06), transparent 70%);
}

.cta-final-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 90%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent 90%);
  opacity: 0.5;
}

html.dark .cta-final-grid {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  opacity: 1;
}

.cta-final-content {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.cta-final h2 {
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.cta-final p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

/* === LP Footer === */

.lp-footer {
  padding-block: var(--space-16) var(--space-8);
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.lp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.4;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.lp-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lp-footer-jx {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.lp-footer-jx img {
  width: 100%;
  height: 100%;
  display: block;
}

.lp-footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.6;
}

.lp-footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.lp-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.lp-footer-col a:hover {
  color: var(--brand-primary);
}

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-muted);
}

/* === Phone mockup com WhatsApp === */

.phone-mock {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.04),
    0 24px 48px -16px rgba(15, 15, 14, 0.18),
    0 60px 100px -40px rgba(15, 15, 14, 0.08);
  transform: rotateY(4deg) rotateX(-2deg);
  transform-origin: left center;
  animation: float 8s ease-in-out infinite;
}

@media (max-width: 980px) {
  .phone-mock {
    transform: none;
  }
}

html.dark .phone-mock {
  background: #0a0a0a;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.06),
    0 24px 48px -16px rgba(0, 0, 0, 0.6),
    0 60px 100px -40px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 16px;
  z-index: 10;
}

html.dark .phone-notch {
  background: #0a0a0a;
}

.phone-screen {
  background: #ECE5DD;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 18;
  position: relative;
  display: flex;
  flex-direction: column;
}

.whatsapp-status {
  background: #075E54;
  color: white;
  padding: 6px 24px 4px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.whatsapp-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 10px;
}

.whatsapp-header {
  background: #075E54;
  color: white;
  padding: 14px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-back {
  font-size: 16px;
  margin-right: 2px;
}

.whatsapp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.whatsapp-avatar img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.whatsapp-contact-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.whatsapp-contact-status {
  font-size: 10px;
  opacity: 0.85;
}

.whatsapp-header-icons {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.whatsapp-messages {
  flex: 1;
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(0,0,0,0.02) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.whatsapp-day-divider {
  text-align: center;
  font-size: 10px;
  color: #545454;
  background: rgba(225, 245, 254, 0.92);
  padding: 4px 10px;
  border-radius: 8px;
  margin: 4px auto;
  font-weight: 500;
}

.bubble {
  max-width: 80%;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #111;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  word-wrap: break-word;
}

.bubble-in {
  align-self: flex-start;
  background: white;
  border-bottom-left-radius: 2px;
}

.bubble-out {
  align-self: flex-end;
  background: #DCF8C6;
  border-bottom-right-radius: 2px;
}

.bubble-time {
  display: inline-block;
  font-size: 9px;
  color: #888;
  margin-left: 6px;
  vertical-align: bottom;
}

.bubble-out .bubble-check {
  display: inline-block;
  color: #4FC3F7;
  font-size: 11px;
  margin-left: 2px;
}

.bubble-typing {
  align-self: flex-start;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  display: flex;
  gap: 3px;
}

.bubble-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
  animation: typing-dot 1.4s ease-in-out infinite;
}

.bubble-typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.bubble-new {
  animation: bubble-in 0.6s var(--ease-smooth) backwards;
  animation-delay: 1.5s;
}

@keyframes bubble-in {
  0% { transform: translateY(8px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* === Conversa animada (one-shot) ===
   Cada .chat-step entra com fade + slide-up quando JS remove [hidden]
   e adiciona .is-shown. Roda uma vez quando o phone entra na viewport.
   Estado final: todas as bubbles permanecem visíveis. */
.chat-step {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-step[hidden] {
  display: none;
}

.chat-step.is-shown {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .chat-step {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.whatsapp-input {
  background: #f0f0f0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.whatsapp-input-field {
  flex: 1;
  background: white;
  border-radius: 24px;
  padding: 8px 12px;
  font-size: 12px;
  color: #888;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.whatsapp-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #075E54;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Notification badge no header pulsando */
.whatsapp-notification-pulse {
  position: absolute;
  top: 8%;
  right: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-primary);
  z-index: 20;
  box-shadow: 0 0 0 2px var(--bg-page);
  animation: pulse-ring 2s ease-out infinite;
}

html.dark .whatsapp-notification-pulse {
  box-shadow: 0 0 0 2px var(--bg-page);
}

/* ============================================
 * DESIGN SYSTEM UPGRADES — aplicado pos-hero
 * Inspirado em apps/landing/assets/design_system.html
 * ============================================ */

/* === Section header rico (3 colunas: num + giant title + meta) === */
.lp-section-rich-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-16);
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 768px) {
  .lp-section-rich-header {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

.lp-section-num-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
  background: var(--brand-subtle);
  border: 1px solid var(--brand-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.lp-section-giant-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-primary);
  max-width: 18ch;
}

.lp-section-meta-info {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lp-section-meta-info { text-align: left; }
}

.lp-section-rich-header + .lp-section-lede {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--space-6);
  margin-bottom: var(--space-16);
  text-align: center;
}

/* === JX divider (entre seções) === */
.lp-jx-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding-block: var(--space-12);
  position: relative;
  background: var(--bg-page);
}

.lp-jx-divider.is-warm { background: var(--bg-warm); }

.lp-jx-divider-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.lp-jx-divider-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow-brand);
  animation: pulse-glow 3s var(--ease-smooth) infinite;
}

.lp-jx-divider-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-md);
}

/* === Section curves SVG (decorativas) === */
.lp-section-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.lp-section-curves svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.lp-section-curves path {
  fill: none;
  stroke: var(--brand-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 14;
  opacity: 0.2;
  animation: lp-curve-draw 30s ease-in-out infinite;
}

.lp-section-curves path:nth-child(2) {
  animation-delay: -10s;
  opacity: 0.12;
}

@keyframes lp-curve-draw {
  0%, 100% { stroke-dashoffset: 0; }
  50% { stroke-dashoffset: -240; }
}

/* === Stat cards com icon header (problema, prova social) === */
.stat-card-rich {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-smooth);
}

.stat-card-rich::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--brand-subtle), transparent 60%);
  pointer-events: none;
  transition: transform var(--duration-slow) var(--ease-smooth), opacity var(--duration-base) var(--ease-smooth);
  opacity: 0.6;
}

html.dark .stat-card-rich::before {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 60%);
}

.stat-card-rich:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
  box-shadow: var(--shadow-card-hover);
}

.stat-card-rich:hover::before {
  transform: translate(-30%, 30%);
  opacity: 1;
}

.stat-card-rich-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  position: relative;
}

.stat-card-rich-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--brand-subtle);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-border);
}

.stat-card-rich-icon svg { width: 18px; height: 18px; }

.stat-card-rich-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-card-rich-value {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  position: relative;
}

.stat-card-rich-value.is-brand {
  color: var(--brand-primary);
}

.stat-card-rich-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  position: relative;
}

/* === Steps redesenhados (timeline visual) === */
.steps-timeline {
  display: grid;
  gap: var(--space-4);
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), var(--border-light), var(--brand-primary));
  opacity: 0.3;
}

@media (max-width: 768px) {
  .steps-timeline::before { left: 20px; }
}

.step-rich {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-6);
  padding: var(--space-6);
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  position: relative;
  transition: all var(--duration-base) var(--ease-smooth);
  overflow: hidden;
}

.step-rich::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--brand-subtle), transparent);
  transition: left 0.7s var(--ease-smooth);
  pointer-events: none;
  opacity: 0.5;
}

.step-rich:hover {
  border-color: var(--brand-border);
  transform: translateX(4px);
  box-shadow: var(--shadow-card-hover);
}

.step-rich:hover::before { left: 100%; }

.step-rich-num {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-2xl);
  background: var(--brand-subtle);
  border: 2px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-primary);
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
  transition: all var(--duration-base) var(--ease-smooth);
}

.step-rich:hover .step-rich-num {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-brand);
}

.step-rich-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.step-rich-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.step-rich-body em {
  font-style: italic;
  color: var(--text-primary);
  background: var(--brand-subtle);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.95em;
}

@media (max-width: 768px) {
  .step-rich { grid-template-columns: 1fr; gap: var(--space-3); padding: var(--space-4); }
  .step-rich-num { width: 48px; height: 48px; font-size: 18px; }
}

/* === Diff card invertendo cor on hover (estilo ds-feature) === */
.diff-card-invert {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.diff-card-invert::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.7s var(--ease-smooth);
  pointer-events: none;
}

.diff-card-invert::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--brand-subtle), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

.diff-card-invert:hover {
  border-color: var(--brand-primary);
  border-width: 1.5px;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.diff-card-invert:hover::before { left: 100%; }
.diff-card-invert:hover::after { opacity: 0.7; }

.diff-card-invert:hover .diff-card-icon {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: scale(1.05);
}

.diff-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
  position: relative;
}

.diff-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-subtle);
  color: var(--brand-primary);
  border: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) var(--ease-smooth);
}

.diff-card-icon svg { width: 22px; height: 22px; }

.diff-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--duration-base) var(--ease-smooth);
}

.diff-card-invert h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  position: relative;
  transition: color var(--duration-base) var(--ease-smooth);
}

.diff-card-invert p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--duration-base) var(--ease-smooth);
}

/* === Bg patterns por section === */
.lp-section.bg-mesh-glow {
  position: relative;
  overflow: hidden;
}

.lp-section.bg-mesh-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.05), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(14, 165, 233, 0.05), transparent 40%);
  z-index: 0;
}

html.dark .lp-section.bg-mesh-glow::before {
  background:
    radial-gradient(circle at 15% 25%, rgba(96, 165, 250, 0.08), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(14, 165, 233, 0.08), transparent 40%);
}

.lp-section.bg-mesh-glow > * {
  position: relative;
  z-index: 1;
}

/* ============================================
 * PHOTO COMPONENTS — Uma (UX) + Brad Frost
 * Atomic: photo-frame > photo-detail > photo-bg-section
 * ============================================ */

/* Photo frame base — molecule */
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--photo-radius, var(--radius-2xl));
  background: var(--bg-warm);
  box-shadow: var(--shadow-card);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: var(--photo-filter);
  transition: transform 1.2s var(--ease-smooth), filter var(--duration-base) var(--ease-smooth);
}

.photo-frame:hover img {
  transform: scale(1.04);
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--photo-overlay-light);
}

/* Modificador: foto-feature preserva drama original (sem wash, sem filter). */
.photo-frame.photo-feature::after {
  display: none;
}

.photo-frame.photo-feature img {
  filter: contrast(1.06) saturate(1.05);
}

/* Variants por aspect ratio */
.photo-portrait {
  aspect-ratio: var(--photo-ratio-portrait);
  max-width: 480px;
}

.photo-detail {
  aspect-ratio: var(--photo-ratio-detail);
  max-width: 280px;
}

.photo-wide {
  aspect-ratio: var(--photo-ratio-wide);
  width: 100%;
}

.photo-strip {
  aspect-ratio: var(--photo-ratio-strip);
  width: 100%;
}

/* Photo caption (optional) */
.photo-caption {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* Photo background da section — organism */
.photo-bg-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.photo-bg-section .photo-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.photo-bg-section .photo-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  display: block;
}

.photo-bg-section .photo-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--photo-overlay-light-strong);
}

html.dark .photo-bg-section .photo-bg-overlay {
  background: var(--photo-overlay-dark);
}

/* Modificador: photo-bg-dark força tratamento escuro permanente
   (texto claro, overlay forte) em qualquer tema. */
.photo-bg-section.photo-bg-dark .photo-bg-image img {
  filter: contrast(1.1) saturate(1.05) brightness(0.85);
}

.photo-bg-section.photo-bg-dark .photo-bg-overlay {
  background: linear-gradient(180deg, rgba(15, 12, 8, 0.78) 0%, rgba(15, 12, 8, 0.92) 100%);
}

html.dark .photo-bg-section.photo-bg-dark .photo-bg-overlay {
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.82) 0%, rgba(8, 6, 4, 0.95) 100%);
}

.photo-bg-section.photo-bg-dark .lp-section-num-pill,
.photo-bg-section.photo-bg-dark .lp-section-num-pill::before {
  color: rgba(245, 235, 220, 0.7);
  background: rgba(245, 235, 220, 0.08) !important;
}

.photo-bg-section.photo-bg-dark .lp-section-giant-title,
.photo-bg-section.photo-bg-dark h3 {
  color: #F5EFE3;
}

.photo-bg-section.photo-bg-dark .lp-section-meta-info,
.photo-bg-section.photo-bg-dark .lp-section-lede {
  color: rgba(245, 235, 220, 0.8);
}

.photo-bg-section.photo-bg-dark .production-stats-line strong {
  color: #F5EFE3;
}

.photo-bg-section.photo-bg-dark .production-stats-line .label {
  color: rgba(245, 235, 220, 0.65);
}

.cta-final.photo-bg-dark h2 {
  color: #F5EFE3;
}

.cta-final.photo-bg-dark p {
  color: rgba(245, 235, 220, 0.78);
}

.photo-bg-section > *:not(.photo-bg-image):not(.photo-bg-overlay) {
  position: relative;
  z-index: 2;
}

/* Photo strip section — 3 photos em row visiveis com overlay sutil */
.lp-photo-strip-section {
  padding-block: var(--space-12);
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.lp-photo-strip-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  opacity: 0.4;
  z-index: 1;
}

.lp-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-3);
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 768px) {
  .lp-photo-strip { grid-template-columns: 1fr; }
}

.lp-photo-strip-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-elevated);
  transition: transform var(--duration-base) var(--ease-smooth);
}

.lp-photo-strip-item:hover {
  transform: translateY(-4px);
}

.lp-photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
  transition: transform 1.4s var(--ease-smooth);
}

.lp-photo-strip-item:hover img {
  transform: scale(1.06);
}

.lp-photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5));
  pointer-events: none;
}

.lp-photo-strip-caption {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.lp-photo-strip-num {
  display: inline-block;
  background: var(--brand-primary);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-right: var(--space-2);
  font-size: 10px;
  font-weight: 700;
}

/* Photo + text split (50/50 organism) */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.photo-split.is-reversed {
  grid-template-columns: 1fr 1fr;
}

.photo-split.is-reversed > .photo-frame {
  order: 2;
}

@media (max-width: 980px) {
  .photo-split, .photo-split.is-reversed {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .photo-split.is-reversed > .photo-frame {
    order: 0;
  }
}

/* Photo strip (3 photos em row) */
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 768px) {
  .photo-strip-grid {
    grid-template-columns: 1fr;
  }
}

/* Step photo (small detail icon-image hybrid) */
.step-rich-photo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: var(--bg-warm);
}

.step-rich-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
}

.step-rich-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), transparent 60%);
  pointer-events: none;
}

/* ============================================
 * EDITORIAL RESET — Brad Frost Plan B + Round 1
 * Target: remover "vibe coding tells" estruturais
 * ============================================ */

/* === Section eyebrow virou texto editorial simples === */
.lp-section-num-pill {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: var(--text-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: var(--space-3) !important;
}

.lp-section-num-pill::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--text-muted);
}

/* === Section meta info perde uppercase === */
.lp-section-meta-info {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* === Diff card icon — remove container === */
.diff-card-icon {
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin-bottom: var(--space-4) !important;
  color: var(--brand-primary);
}

.diff-card-icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke-width: 1.5 !important;
}

.diff-card-invert:hover .diff-card-icon {
  background: transparent !important;
  border: none !important;
  transform: scale(1.08) rotate(-3deg);
  color: var(--brand-primary);
}

/* === Stat card icon — also remove container === */
.stat-card-rich-icon {
  background: transparent !important;
  border: none !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
}

.stat-card-rich-icon svg {
  width: 28px !important;
  height: 28px !important;
  stroke-width: 1.5 !important;
}

/* === JX divider — hairline only, mark sumido === */
.lp-jx-divider {
  padding-block: var(--space-12) !important;
}

.lp-jx-divider .lp-jx-divider-mark {
  display: none !important;
}

.lp-jx-divider .lp-jx-divider-line {
  max-width: none !important;
  flex: 1 !important;
  height: 1px !important;
  background: var(--border-light) !important;
  opacity: 0.6 !important;
}

/* === Remove pulse-glow from CTA final === */
.cta-final .pulse-glow {
  animation: none !important;
}

/* === Section rich-header — alinha à esquerda em vez de centro === */
.lp-section-rich-header {
  grid-template-columns: 1fr !important;
  gap: var(--space-3) !important;
  text-align: left !important;
  align-items: start !important;
  margin-bottom: var(--space-12) !important;
  max-width: var(--container-md) !important;
}

.lp-section-rich-header + .lp-section-lede {
  text-align: left !important;
  max-width: var(--container-md) !important;
  margin-inline: auto !important;
  margin-bottom: var(--space-12) !important;
}

.lp-section-meta-info {
  text-align: left !important;
  margin-top: var(--space-2) !important;
}

/* === Editorial layout (photo + text 50/50) === */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.editorial-split.is-reversed > .photo-frame {
  order: 2;
}

@media (max-width: 980px) {
  .editorial-split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .editorial-split.is-reversed > .photo-frame {
    order: 0;
  }
}

.editorial-text h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  max-width: 18ch;
}

.editorial-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  max-width: 60ch;
}

.editorial-stats-inline {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-12);
  border-top: 1px solid var(--border);
}

.editorial-stat-line {
  display: grid;
  grid-template-columns: minmax(140px, max-content) 1fr;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.editorial-stat-num {
  display: block;
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 0.95;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.editorial-stat-label {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-top: 14px;
  max-width: 56ch;
}

@media (max-width: 540px) {
  .editorial-stat-line {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: var(--space-5) 0;
  }
  .editorial-stat-label {
    padding-top: 0;
  }
  .editorial-stat-num {
    font-size: 40px;
  }
}

/* === Editorial step list (Como funciona) === */
.editorial-steps {
  max-width: var(--container-md);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.editorial-step {
  display: grid;
  grid-template-columns: 80px 1fr 96px;
  gap: var(--space-8);
  align-items: start;
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border-light);
}

.editorial-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .editorial-step {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .editorial-step .editorial-step-photo {
    grid-row: -1;
    margin-top: var(--space-4);
  }
}

.editorial-step-num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--text-muted);
  font-feature-settings: 'tnum';
}

.editorial-step-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.editorial-step-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 60ch;
}

.editorial-step-body em {
  font-style: italic;
  color: var(--text-primary);
  background: var(--brand-subtle);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.editorial-step-photo {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}

.editorial-step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
}

/* === Diff section: photo column lateral + 5-card grid === */
.diff-with-photo {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: var(--space-8);
  align-items: start;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 980px) {
  .diff-with-photo {
    grid-template-columns: 1fr;
  }
}

.diff-photo-column {
  position: sticky;
  top: var(--space-12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: clamp(560px, 72vh, 720px);
  background: var(--bg-warm);
}

@media (max-width: 980px) {
  .diff-photo-column {
    position: relative;
    top: auto;
    height: clamp(420px, 60vw, 560px);
  }
}

.diff-photo-column img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-filter);
}

.diff-photo-column-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
  z-index: 1;
}

.diff-photo-column-caption {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  z-index: 2;
  color: white;
}

.diff-photo-column-caption .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: var(--space-2);
  display: block;
}

.diff-photo-column-caption .label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.diff-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .diff-cards-grid { grid-template-columns: 1fr; }
}

/* === Em produção: stats inline editorial === */
.production-inline {
  max-width: var(--container-md);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.production-stats-line {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-primary);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-12);
}

.production-stats-line strong {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.production-stats-line .label {
  color: var(--text-muted);
  font-style: italic;
}

/* === Production spec card (substitui depoimento fake) === */
.production-spec-card {
  background: rgba(245, 235, 220, 0.04);
  border: 1px solid rgba(245, 235, 220, 0.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.production-spec-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(245, 235, 220, 0.55);
  margin-bottom: var(--space-3);
}

.production-spec-card h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: #F5EFE3;
  margin-bottom: var(--space-6);
}

.production-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.production-spec-list li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 235, 220, 0.85);
  padding-left: var(--space-4);
  position: relative;
}

.production-spec-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: rgba(245, 235, 220, 0.5);
}

.production-spec-list li strong {
  color: #F5EFE3;
  font-weight: 600;
}

.production-spec-foot {
  font-size: 13px;
  font-style: italic;
  color: rgba(245, 235, 220, 0.6);
  border-top: 1px solid rgba(245, 235, 220, 0.1);
  padding-top: var(--space-5);
  margin-bottom: 0;
}

/* ============================================
 * FEATURE MARQUEE (substitui manifesto bar)
 * ============================================ */

.manifesto-marquee-item .feature-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-right: var(--space-2);
}

.manifesto-marquee-item {
  font-weight: 500 !important;
  letter-spacing: -0.2px !important;
}

.manifesto-marquee-item .num {
  display: none !important;
}

/* Quando o item tiver um ícone, esconde o num e usa só ícone+label */
