/* ============================================================================
   Funnel Labs Meta Match — Sales Page
   Hero: ad card → message match → landing morph
   ≠ war room / palco / dossiê / quiz / órbita / KPI / inbox
   Accent: sky match (#60a5fa) + laser orange
   ============================================================================ */
:root {
  --void: #050505;
  --panel: #0e1016;
  --accent: #ff5a00;
  --sky: #60a5fa;
  --sky-dim: #3b82f6;
  --sky-soft: rgba(96, 165, 250, 0.12);
  --ok: #22c55e;
  --white: #fdfdfd;
  --paper: #f4f1eb;
  --line: rgba(253, 253, 253, 0.08);
  --line-l: rgba(10, 10, 10, 0.09);
  --display: "Playfair Display", Georgia, serif;
  --body: "Space Grotesk", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1180px;
  --hdr: 68px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--void);
  color: rgba(253, 253, 253, 0.82);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
code {
  font-family: var(--mono);
  font-size: 0.88em;
  color: var(--sky);
  background: var(--sky-soft);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}
.sec--paper code { color: var(--sky-dim); }
::selection { background: rgba(96, 165, 250, 0.35); color: #fff; }
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.wrap--center { max-width: 720px; }

.hdr {
  position: fixed;
  inset: 0 0 auto;
  height: var(--hdr);
  z-index: 50;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.hdr.is-on {
  background: rgba(5, 5, 5, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}
.hdr__in {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 12px rgba(255, 90, 0, 0.45));
}
.brand__mark svg,
.brand__mark img { display: block; width: 34px; height: 34px; }
.brand__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}
.brand__name span { color: var(--accent); }
.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.4);
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(253, 253, 253, 0.55);
}
.nav a:hover { color: var(--white); }
.hdr__act { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 26px; font-size: 15px; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7a2e 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 90, 0, 0.28);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 90, 0, 0.38);
}
.btn--ghost {
  border: 1px solid rgba(253, 253, 253, 0.16);
  color: var(--white);
  background: rgba(253, 253, 253, 0.03);
}
.btn--ghost:hover {
  border-color: rgba(96, 165, 250, 0.45);
  color: var(--sky);
  background: var(--sky-soft);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #0a0c12;
  border-left: 1px solid var(--line);
  padding: 72px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(12px);
  transition: transform .3s var(--ease);
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__panel a {
  font-size: 17px;
  font-weight: 500;
  color: rgba(253, 253, 253, 0.85);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: rgba(253, 253, 253, 0.6);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 12px;
  font-weight: 500;
}
.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 16px;
}
.sec--paper .h2 { color: #0a0a0a; }
.h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.25;
}
.sec--paper .h3 { color: #0a0a0a; }
.lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.62);
  max-width: 540px;
}
.lead--ink { color: rgba(253, 253, 253, 0.55); }
.italic { font-style: italic; font-weight: 500; }
.grad {
  background: linear-gradient(120deg, var(--sky) 0%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec { padding: 96px 0; }
.sec--tight { padding: 72px 0; }
.sec--paper { background: var(--paper); color: rgba(10, 10, 10, 0.72); }
.sec--ink { background: var(--void); }
.sec--soft {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(96, 165, 250, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(255, 90, 0, 0.06), transparent 50%),
    #080a10;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--hdr) + 40px) 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute;
  inset: -15% -10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 45% 55% at 75% 40%, rgba(96, 165, 250, 0.16), transparent 60%),
    radial-gradient(ellipse 35% 45% at 18% 55%, rgba(255, 90, 0, 0.1), transparent 55%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 40px 44px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.65);
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: var(--sky-soft);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 12px var(--sky);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero__h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 0 0 20px;
}
.hero__lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(253, 253, 253, 0.58);
  max-width: 460px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 440px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__meta strong {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--sky);
  margin-bottom: 4px;
  font-weight: 600;
}
.hero__meta span {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(253, 253, 253, 0.42);
}

/* Match mock */
.mm {
  background: linear-gradient(165deg, #141820 0%, #0a0c10 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(96, 165, 250, 0.1);
}
.mm::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.55), rgba(255, 90, 0, 0.4), transparent);
}
.mm__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}
.mm__url {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(253, 253, 253, 0.45);
}
.mm__url em {
  font-style: normal;
  color: var(--sky);
}
.mm__url b { color: var(--white); font-weight: 600; }
.mm__score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  font-weight: 600;
}
.mm__score i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 1.3s ease-in-out infinite;
}

.mm__stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  padding: 16px;
  align-items: stretch;
  min-height: 320px;
}
.mm__ad {
  background: #12151c;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm__ad-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.mm__ad-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #1877f2;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.mm__ad-hook {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(253, 253, 253, 0.4);
}
.mm__ad-hook b { color: var(--sky); }
.mm__ad-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(253, 253, 253, 0.85);
  font-weight: 500;
  flex: 1;
  transition: opacity .35s, transform .35s var(--ease);
}
.mm__ad-copy.is-swap {
  opacity: 0;
  transform: translateY(6px);
}
.mm__ad-cta {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #1877f2;
  padding: 8px 14px;
  border-radius: 8px;
}
.mm__ad-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.3);
}

.mm__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 56px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(253, 253, 253, 0.4);
  line-height: 1.3;
}
.mm__pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.5);
  animation: matchPulse 1.4s ease-out infinite;
  position: relative;
}
.mm__pulse::before,
.mm__pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky));
}
.mm__pulse::before { right: 100%; margin-right: 4px; }
.mm__pulse::after {
  left: 100%;
  margin-left: 4px;
  background: linear-gradient(90deg, var(--sky), transparent);
}
@keyframes matchPulse {
  0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

.mm__lp {
  background: linear-gradient(165deg, #16140f 0%, #100e0c 100%);
  border: 1px solid rgba(255, 90, 0, 0.25);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mm__lp-eye {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  transition: opacity .3s;
}
.mm__lp-h {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: opacity .3s, transform .3s var(--ease);
}
.mm__lp-h.is-swap,
.mm__lp-sub.is-swap,
.mm__lp-eye.is-swap {
  opacity: 0;
  transform: translateY(8px);
}
.mm__lp-sub {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(253, 253, 253, 0.5);
  transition: opacity .3s, transform .3s var(--ease);
}
.mm__lp-bul {
  margin: 4px 0 0;
  padding: 0 0 0 16px;
  font-size: 12px;
  color: rgba(253, 253, 253, 0.55);
  line-height: 1.45;
  flex: 1;
}
.mm__lp-bul li { margin-bottom: 4px; }
.mm__lp-cta {
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff7a2e);
  padding: 9px 14px;
  border-radius: 999px;
  margin-top: 4px;
  transition: opacity .3s;
}

.mm__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.35);
  background: rgba(0, 0, 0, 0.3);
}
.mm__foot #mmSignal { color: var(--sky); }

/* Sections shared */
.problem__head { margin-bottom: 40px; max-width: 560px; }
.problem__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.card {
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 16px;
  padding: 22px 22px 20px;
}
.card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.58);
}

.match__head { margin-bottom: 40px; max-width: 560px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), transparent);
  opacity: 0.75;
}
.step__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--sky);
  margin-bottom: 12px;
  font-weight: 600;
}
.step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(253, 253, 253, 0.5);
}

.mods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mod {
  background: rgba(253, 253, 253, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color .25s, background .25s;
}
.mod:hover {
  border-color: rgba(96, 165, 250, 0.3);
  background: var(--sky-soft);
}
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-soft);
  border: 1px solid rgba(96, 165, 250, 0.22);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-weight: 600;
}
.mod p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(253, 253, 253, 0.5);
}

.feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feat {
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 14px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feat strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: -0.02em;
}
.feat span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.55);
}

.strip {
  background: #07090e;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip__track span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.45);
  border: 1px solid rgba(96, 165, 250, 0.2);
  background: var(--sky-soft);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.access {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}
.access__main {
  background: var(--panel);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 20px;
  padding: 32px 28px;
}
.access__main h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.access__main > p {
  margin: 0 0 18px;
  color: rgba(253, 253, 253, 0.55);
  font-size: 15px;
  line-height: 1.55;
}
.checks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checks li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: rgba(253, 253, 253, 0.72);
  line-height: 1.45;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.45);
  background-image: radial-gradient(circle, var(--sky) 0 35%, transparent 36%);
  background-color: var(--sky-soft);
}
.access__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cta-note {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(253, 253, 253, 0.35);
  letter-spacing: 0.04em;
}
.access__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.note {
  background: rgba(253, 253, 253, 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  flex: 1;
}
.note h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(253, 253, 253, 0.48);
}
.note strong {
  color: rgba(253, 253, 253, 0.85);
  font-weight: 500;
}

.faq-head { text-align: center; margin-bottom: 28px; }
.faq-head .h2 { color: #0a0a0a; }
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: 14px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 600;
  color: #0a0a0a;
}
.faq__icon {
  font-size: 20px;
  color: rgba(10, 10, 10, 0.35);
  transition: transform .25s var(--ease);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); color: var(--accent); }
.faq__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.58);
}
.faq__item.is-open .faq__a { display: block; }
.faq__a strong { color: #0a0a0a; font-weight: 600; }

.final {
  padding: 110px 0 100px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 50% at 50% 100%, rgba(96, 165, 250, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(255, 90, 0, 0.08), transparent 55%),
    var(--void);
}
.final .h2 { margin-inline: auto; }
.final__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.ftr {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  background: #050505;
}
.ftr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ftr__copy {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(253, 253, 253, 0.32);
  letter-spacing: 0.04em;
}
.ftr .brand__mark { width: 28px; height: 28px; }
.ftr .brand__mark img { width: 28px; height: 28px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .mm { order: 2; }
  .hero__copy { order: 1; }
  .mm__stage { grid-template-columns: 1fr; }
  .mm__bridge { flex-direction: row; min-height: auto; padding: 8px 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .mods { grid-template-columns: 1fr 1fr; }
  .access { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--hdr) + 28px); min-height: auto; }
  .hero__meta { grid-template-columns: 1fr; }
  .problem__list, .feats, .mods, .steps { grid-template-columns: 1fr; }
  .sec { padding: 72px 0; }
  .ftr__in { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .strip__track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* hero headline fluid — 2 linhas, sem encaixotar palavra a palavra */
.hero__h1,
.hero .h1,
.hero h1.h1 {
  max-width: min(100%, 24ch);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
@media (min-width: 981px) {
  .hero__h1,
  .hero .h1,
  .hero h1.h1 {
    max-width: min(100%, 22ch);
    font-size: clamp(2.35rem, 3.6vw, 3.55rem);
  }
}
@media (max-width: 980px) {
  .hero__h1,
  .hero .h1,
  .hero h1.h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7.2vw, 2.65rem);
  }
  /* copy + CTA primeiro; visual/animação embaixo */
  .hero__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .hero__copy,
  .hero__grid > div:first-child:not(.hero__bg) {
    order: 1;
  }
  .hero__grid > .brief,
  .hero__grid > .stage,
  .hero__grid > .mc,
  .hero__grid > .mm,
  .hero__grid > .flow,
  .hero__grid > .orbit,
  .hero__grid > .kpi,
  .hero__grid > .inbox,
  .hero__grid > .hero__visual,
  .hero__grid > .visual,
  .hero__grid > .panel,
  .hero__grid > aside,
  .hero__grid > .mock,
  .hero__grid > [aria-hidden="true"]:not(.hero__bg) {
    order: 2;
  }
}

/* mobile-order-final-v2 */
@media (max-width: 980px) {
  .hero__copy { order: 1 !important; }
  .mm { order: 2 !important; }
  .hero__h1 { max-width: 100% !important; }
}

/* === polish v5: por dentro + para quem === */
.demo-sec { padding: 88px 0; position: relative; }
.demo-sec--ink { background: #070708; }
.demo-sec--soft {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,90,0,.07), transparent 55%),
    #0a0a0c;
}
.demo-head { max-width: 560px; margin-bottom: 32px; }
.demo-panel {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(165deg, #141416 0%, #0c0c0e 100%);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  margin-bottom: 28px;
}
.demo-panel__bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35); font-family: var(--mono), ui-monospace, monospace;
  font-size: 11px; color: rgba(255,255,255,.45);
}
.demo-panel__bar b { color: rgba(255,255,255,.85); font-weight: 600; }
.demo-panel__dots { display: flex; gap: 5px; }
.demo-panel__dots i { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.demo-panel__dots i:nth-child(1){background:#ff5f57}
.demo-panel__dots i:nth-child(2){background:#febc2e}
.demo-panel__dots i:nth-child(3){background:#28c840}
.demo-panel__body {
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 280px;
}
.demo-panel__col {
  padding: 16px; border-right: 1px solid rgba(255,255,255,.06);
}
.demo-panel__col:last-child { border-right: 0; }
.demo-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  font-size: 13px; color: rgba(255,255,255,.75);
  transition: border-color .25s, background .25s, transform .35s cubic-bezier(.16,1,.3,1);
}
.demo-row.is-on {
  border-color: rgba(255,90,0,.4);
  background: rgba(255,90,0,.1);
  transform: translateX(4px);
}
.demo-row strong { display: block; font-size: 13px; color: #fff; font-weight: 600; }
.demo-row small { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.demo-pill {
  font-family: var(--mono), ui-monospace, monospace; font-size: 9px;
  letter-spacing: .08em; text-transform: uppercase; padding: 3px 7px;
  border-radius: 999px; background: rgba(255,90,0,.15); color: #ff8c40; white-space: nowrap;
}
.demo-pill--ok { background: rgba(34,197,94,.15); color: #4ade80; }
.demo-pill--sky { background: rgba(96,165,250,.15); color: #60a5fa; }
.demo-pill--teal { background: rgba(45,212,191,.15); color: #2dd4bf; }
.demo-pill--rose { background: rgba(251,113,133,.15); color: #fb7185; }
.demo-preview {
  padding: 18px; border-radius: 12px; background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08); min-height: 200px;
}
.demo-preview h4 {
  margin: 0 0 8px; font-family: var(--display), Georgia, serif;
  font-size: 1.15rem; color: #fff; letter-spacing: -.02em; line-height: 1.25;
}
.demo-preview p { margin: 0 0 10px; font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.demo-preview ul { margin: 0; padding: 0 0 0 16px; font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.5; }
.demo-preview .demo-cta {
  display: inline-block; margin-top: 12px; padding: 8px 14px; border-radius: 999px;
  background: linear-gradient(135deg,#ff5a00,#ff7a2e); color: #fff; font-size: 12px; font-weight: 700;
}
.who-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.who-card {
  padding: 22px 18px; border-radius: 16px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08);
}
.who-card h3 {
  margin: 0 0 8px; font-family: var(--display), Georgia, serif;
  font-size: 1.15rem; color: #fff; letter-spacing: -.02em;
}
.who-card p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.5); }
.sec--paper .who-card {
  background: #fff; border-color: rgba(10,10,10,.09);
}
.sec--paper .who-card h3 { color: #0a0a0a; }
.sec--paper .who-card p { color: rgba(10,10,10,.55); }
.proof-line {
  font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 640px;
}
.sec--paper .proof-line { color: rgba(10,10,10,.58); }
@media (max-width: 900px) {
  .demo-panel__body { grid-template-columns: 1fr; }
  .demo-panel__col { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .who-grid { grid-template-columns: 1fr; }
}

/* interactive demo rows */
.demo-row { cursor: pointer; user-select: none; }
.demo-row:hover { border-color: rgba(255,90,0,.35); background: rgba(255,90,0,.08); }
.demo-row:focus-visible { outline: 2px solid rgba(255,90,0,.5); outline-offset: 2px; }
.demo-hint {
  font-size: 12px; color: rgba(255,255,255,.4); margin: 0 0 12px;
  font-family: var(--mono), ui-monospace, monospace; letter-spacing: .04em;
}


.mm-hooks {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 12px;
}
.mm-hook {
  font-family: var(--mono); font-size: 10px; letter-spacing: .04em;
  padding: 6px 10px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(96,165,250,.25); color: rgba(253,253,253,.55);
  background: rgba(96,165,250,.06);
}
.mm-hook:hover { border-color: rgba(96,165,250,.5); color: #fff; }
.mm-hook.is-on {
  background: rgba(96,165,250,.18); color: #60a5fa; border-color: rgba(96,165,250,.45);
}
