/* ============================================================================
   Funnel Labs Funis — Sales Page (Central de Controle)
   Hero: mission control / war room (campanhas + pipeline + kanban + upload)
   ≠ palco webinar / dossiê pesquisa / quiz / órbita / KPI wall / inbox
   Accent: amber command (#fbbf24) + laser orange
   Fontes: Playfair Display + Space Grotesk + IBM Plex Mono
   ============================================================================ */
:root {
  --void: #050505;
  --panel: #10100e;
  --panel-2: #161612;
  --accent: #ff5a00;
  --accent-2: #ff8c40;
  --amber: #fbbf24;
  --amber-dim: #d97706;
  --amber-soft: rgba(251, 191, 36, 0.12);
  --ok: #22c55e;
  --live: #22c55e;
  --prod: #38bdf8;
  --brief: #a78bfa;
  --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(--amber);
  background: rgba(251, 191, 36, 0.1);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}
::selection { background: rgba(251, 191, 36, 0.35); color: #0a0a0a; }
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; }

/* Header */
.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;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .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(251, 191, 36, 0.45);
  color: var(--amber);
  background: var(--amber-soft);
}

/* Drawer */
.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: #0c0c0a;
  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;
  line-height: 1;
  color: rgba(253, 253, 253, 0.6);
}

/* Type */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dim);
  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(--amber) 0%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Sections */
.sec { padding: 96px 0; position: relative; }
.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(251, 191, 36, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(255, 90, 0, 0.06), transparent 50%),
    #0a0a08;
}

/* ========== 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 72% 40%, rgba(251, 191, 36, 0.14), transparent 60%),
    radial-gradient(ellipse 35% 45% at 18% 55%, rgba(255, 90, 0, 0.11), transparent 55%);
}
.hero__radar {
  position: absolute;
  right: 5%;
  top: 18%;
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  border-radius: 50%;
  border: 1px solid rgba(251, 191, 36, 0.08);
  background:
    repeating-radial-gradient(circle at center, transparent 0 28px, rgba(251, 191, 36, 0.03) 28px 29px);
  opacity: 0.55;
  mask-image: radial-gradient(circle, #000 0%, transparent 70%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 36px 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(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.07);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
  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(--amber);
  margin-bottom: 4px;
  font-weight: 600;
}
.hero__meta span {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(253, 253, 253, 0.42);
}

/* --- Mission control --- */
.mc {
  background: linear-gradient(165deg, #161410 0%, #0a0a08 100%);
  border: 1px solid rgba(251, 191, 36, 0.2);
  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(251, 191, 36, 0.08);
}
.mc::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.55), rgba(255, 90, 0, 0.4), transparent);
}
.mc__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}
.mc__dots { display: flex; gap: 6px; }
.mc__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(253, 253, 253, 0.12);
}
.mc__dots i:nth-child(1) { background: #ff5f57; }
.mc__dots i:nth-child(2) { background: #febc2e; }
.mc__dots i:nth-child(3) { background: #28c840; }
.mc__path {
  flex: 1;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(253, 253, 253, 0.4);
}
.mc__pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.mc__pulse b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 1.3s ease-in-out infinite;
}

.mc__body {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 360px;
}
.mc__rail {
  border-right: 1px solid var(--line);
  padding: 12px 10px;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mc__rail-h {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.35);
  padding: 4px 6px 8px;
}
.mc__camp {
  text-align: left;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.mc__camp:hover { background: rgba(253, 253, 253, 0.04); }
.mc__camp.is-on {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.28);
}
.mc__camp strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(253, 253, 253, 0.9);
  margin: 4px 0 2px;
  line-height: 1.25;
}
.mc__camp small {
  display: block;
  font-size: 10.5px;
  color: rgba(253, 253, 253, 0.4);
  line-height: 1.3;
}
.mc__st {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}
.mc__st--live { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.mc__st--prod { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.mc__st--brief { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }
.mc__st--done { background: rgba(148, 163, 184, 0.15); color: #94a3b8; }

.mc__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px 14px 12px;
  gap: 12px;
}
.mc__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.mc__head small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.mc__head strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.mc__kpis {
  display: flex;
  gap: 14px;
}
.mc__kpis div {
  text-align: center;
  min-width: 44px;
}
.mc__kpis em {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
}
.mc__kpis span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.35);
}

.mc__pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mc__pipeline span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 4px;
  color: rgba(253, 253, 253, 0.3);
  background: rgba(253, 253, 253, 0.04);
  border: 1px solid transparent;
}
.mc__pipeline span.is-done {
  color: rgba(253, 253, 253, 0.55);
  background: rgba(34, 197, 94, 0.08);
}
.mc__pipeline span.is-on {
  color: #0a0a0a;
  background: var(--amber);
  font-weight: 600;
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.35);
}

.mc__board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
  min-height: 140px;
}
.col {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.col header {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.4);
  margin-bottom: 2px;
}
.card-t {
  font-size: 11.5px;
  line-height: 1.35;
  padding: 8px 8px;
  border-radius: 7px;
  background: rgba(253, 253, 253, 0.05);
  border: 1px solid rgba(253, 253, 253, 0.06);
  color: rgba(253, 253, 253, 0.75);
  transition: transform .35s var(--ease), border-color .25s, background .25s;
}
.card-t.is-hot {
  border-color: rgba(255, 90, 0, 0.4);
  background: rgba(255, 90, 0, 0.1);
  color: var(--white);
  box-shadow: 0 0 16px rgba(255, 90, 0, 0.12);
}
.card-t.is-done {
  opacity: 0.55;
  text-decoration: line-through;
  text-decoration-color: rgba(253, 253, 253, 0.25);
}
.card-t.is-move {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.45);
}

.mc__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mc__asset {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.mc__asset.is-on {
  opacity: 1;
  transform: none;
}
.mc__asset-tag {
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--amber);
  padding: 6px 8px;
  border-radius: 6px;
  font-weight: 700;
}
.mc__asset strong {
  font-size: 12.5px;
  color: var(--white);
}
.mc__asset small {
  font-size: 11px;
  color: rgba(253, 253, 253, 0.45);
  line-height: 1.35;
}
.mc__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mc__tabs i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 6px;
  color: rgba(253, 253, 253, 0.35);
  background: rgba(253, 253, 253, 0.04);
}
.mc__tabs i.is-on {
  color: var(--amber);
  background: var(--amber-soft);
  border: 1px solid rgba(251, 191, 36, 0.25);
}

/* Problem */
.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;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.58);
}

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

/* Modules */
.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(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.04);
}
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-soft);
  border: 1px solid rgba(251, 191, 36, 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 */
.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 */
.strip {
  background: #080806;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 32s 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(251, 191, 36, 0.2);
  background: rgba(251, 191, 36, 0.05);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Access */
.access {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}
.access__main {
  background: var(--panel);
  border: 1px solid rgba(251, 191, 36, 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(251, 191, 36, 0.45);
  background-image: radial-gradient(circle, var(--amber) 0 35%, transparent 36%);
  background-color: var(--amber-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 */
.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;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.35);
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.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 */
.final {
  padding: 110px 0 100px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 50% at 50% 100%, rgba(251, 191, 36, 0.1), 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;
}

/* Footer */
.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; }

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

/* ========== CANVAS DOBRA (mapa do funil) ========== */
.canvas-sec {
  padding: 100px 0 96px;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(251, 191, 36, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 90, 0, 0.07), transparent 50%),
    #070706;
  overflow: hidden;
}
.canvas-sec__head {
  max-width: 640px;
  margin-bottom: 36px;
}
.canvas-sec__head .h2 { margin-bottom: 14px; }
.canvas-sec__head .lead { max-width: 560px; }

.fc {
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #14120e 0%, #0a0a08 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(251, 191, 36, 0.08);
  margin-bottom: 28px;
}
.fc::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.6), rgba(255, 90, 0, 0.45), transparent);
}
.fc__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
}
.fc__dots { display: flex; gap: 6px; }
.fc__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(253, 253, 253, 0.12);
}
.fc__dots i:nth-child(1) { background: #ff5f57; }
.fc__dots i:nth-child(2) { background: #febc2e; }
.fc__dots i:nth-child(3) { background: #28c840; }
.fc__title {
  flex: 1;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(253, 253, 253, 0.4);
  min-width: 140px;
}
.fc__tools {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.fc__tools span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  color: rgba(253, 253, 253, 0.4);
  background: rgba(253, 253, 253, 0.04);
  border: 1px solid transparent;
}
.fc__tools span.is-on {
  color: var(--amber);
  border-color: rgba(251, 191, 36, 0.3);
  background: var(--amber-soft);
}
.fc__save {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4ade80;
}
.fc__save.is-pulse {
  animation: saveFlash 0.8s ease;
}
@keyframes saveFlash {
  0%, 100% { color: #4ade80; }
  40% { color: var(--amber); }
}

.fc__layout {
  display: grid;
  grid-template-columns: 132px 1fr 168px;
  min-height: 440px;
}
.fc__palette {
  border-right: 1px solid var(--line);
  padding: 12px 10px;
  background: rgba(0, 0, 0, 0.3);
  overflow: auto;
}
.fc__pal-h {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.35);
  margin-bottom: 10px;
}
.fc__pal-g {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc__pal-g small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.3);
  margin-bottom: 2px;
}
.fc__pal-g b {
  font-weight: 500;
  font-size: 11.5px;
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(253, 253, 253, 0.04);
  border: 1px solid rgba(253, 253, 253, 0.06);
  color: rgba(253, 253, 253, 0.7);
}
.fc__pal-g b.is-meta { border-color: rgba(56, 189, 248, 0.25); color: #7dd3fc; }
.fc__pal-g b.is-wa { border-color: rgba(34, 197, 94, 0.25); color: #86efac; }
.fc__pal-g b.is-web { border-color: rgba(167, 139, 250, 0.25); color: #c4b5fd; }
.fc__pal-g b.is-sale { border-color: rgba(255, 90, 0, 0.3); color: #fdba74; }
.fc__pal-g b.is-drag {
  transform: scale(1.04);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.2);
}

.fc__board {
  position: relative;
  overflow: hidden;
  background: #0b0b09;
  /* stage design 820×400, centralizado; escala no mobile */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 400px;
}
.fc__board-scale {
  position: relative;
  width: 820px;
  height: 400px;
  flex: 0 0 820px;
  transform-origin: top center;
}
.fc__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(251, 191, 36, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
  pointer-events: none;
}
.fc__edges {
  position: absolute;
  left: 0;
  top: 0;
  width: 820px;
  height: 400px;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}
.fc-edge {
  fill: none;
  stroke: rgba(251, 191, 36, 0.7);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
}
.fc-edge[data-edge="1"] { stroke: rgba(56, 189, 248, 0.75); }
.fc-edge[data-edge="2"] { stroke: rgba(52, 211, 153, 0.75); }
.fc-edge[data-edge="3"],
.fc-edge--branch { stroke: rgba(251, 113, 133, 0.8); }
.fc-edge[data-edge="4"] { stroke: rgba(56, 189, 248, 0.65); }
.fc-edge[data-edge="5"] { stroke: rgba(251, 191, 36, 0.7); }
.fc-edge[data-edge="6"] { stroke: rgba(52, 211, 153, 0.7); }
.fc.is-live .fc-edge {
  opacity: 1;
  /* dash length set via JS from path length */
  animation: edgeDraw 0.85s var(--ease) forwards;
}
.fc.is-live .fc-edge[data-edge="0"] { animation-delay: 0.2s; }
.fc.is-live .fc-edge[data-edge="1"] { animation-delay: 0.35s; }
.fc.is-live .fc-edge[data-edge="2"] { animation-delay: 0.5s; }
.fc.is-live .fc-edge[data-edge="3"] { animation-delay: 0.65s; }
.fc.is-live .fc-edge[data-edge="4"] { animation-delay: 0.8s; }
.fc.is-live .fc-edge[data-edge="5"] { animation-delay: 0.7s; }
.fc.is-live .fc-edge[data-edge="6"] { animation-delay: 0.95s; }
@keyframes edgeDraw {
  to { stroke-dashoffset: 0; }
}
/* continuous flow after draw */
.fc.is-flowing .fc-edge:not(.fc-edge--branch) {
  stroke-dasharray: 5 9 !important;
  animation: edgeFlow 1.6s linear infinite;
  opacity: 0.9;
}
.fc.is-flowing .fc-edge--branch {
  stroke-dasharray: 7 6 !important;
  animation: edgeFlow 2.2s linear infinite reverse;
  opacity: 0.85;
}
@keyframes edgeFlow {
  to { stroke-dashoffset: -64; }
}
.fc-dot {
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.8));
}
.fc.is-flowing .fc-dot {
  opacity: 1;
}

.fc-node {
  position: absolute;
  width: 128px;
  z-index: 3;
  padding: 10px 10px 9px;
  border-radius: 12px;
  background: linear-gradient(160deg, #1a1814 0%, #12110e 100%);
  border: 1px solid rgba(253, 253, 253, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease),
    border-color .3s,
    box-shadow .3s;
}
.fc.is-live .fc-node {
  opacity: 1;
  transform: none;
}
.fc.is-live .fc-node[data-node="0"] { transition-delay: 0.05s; }
.fc.is-live .fc-node[data-node="1"] { transition-delay: 0.2s; }
.fc.is-live .fc-node[data-node="2"] { transition-delay: 0.35s; }
.fc.is-live .fc-node[data-node="3"] { transition-delay: 0.5s; }
.fc.is-live .fc-node[data-node="4"] { transition-delay: 0.65s; }
.fc.is-live .fc-node[data-node="5"] { transition-delay: 0.75s; }
.fc.is-live .fc-node[data-node="6"] { transition-delay: 0.9s; }
.fc.is-live .fc-node[data-node="7"] { transition-delay: 0.7s; }
.fc-node__cat {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.fc-node strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 4px;
}
.fc-node em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(253, 253, 253, 0.42);
}
.fc-node.is-focus {
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.25), 0 12px 32px rgba(251, 191, 36, 0.15);
}
.fc-node.is-pulse {
  animation: nodePulse 1.2s ease;
}
@keyframes nodePulse {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.04); }
}
.fc-node--branch {
  border-style: dashed;
  border-color: rgba(251, 113, 133, 0.4);
}
.fc-node--branch .fc-node__cat { color: #fb7185; }

.fc-rate {
  position: absolute;
  z-index: 4;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0a0a0a;
  background: var(--amber);
  padding: 3px 7px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
.fc.is-live .fc-rate {
  opacity: 1;
  transform: none;
  transition-delay: 1.1s;
}
.fc-rate--hot {
  background: linear-gradient(135deg, var(--accent), #ff8c40);
  color: #fff;
}
.fc-rate--branch {
  background: rgba(251, 113, 133, 0.95);
  color: #fff;
  font-size: 9px;
}

.fc-cursor {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 0 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transform: rotate(-20deg);
  transition: left .7s var(--ease), top .7s var(--ease), opacity .3s;
}
.fc-cursor.is-on { opacity: 0.9; }
.fc-cursor::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  top: 14px;
  left: 10px;
  opacity: 0.7;
}

.fc__inspector {
  border-left: 1px solid var(--line);
  padding: 14px 12px;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fc__ins-h {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.35);
  margin-bottom: 4px;
}
.fc__ins-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}
.fc__inspector strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}
.fc__inspector label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 253, 253, 0.32);
  margin-top: 6px;
}
.fc__ins-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(253, 253, 253, 0.7);
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(253, 253, 253, 0.04);
}
.fc__ins-row em {
  font-style: normal;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--amber);
}
.fc__ins-url {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(253, 253, 253, 0.55);
  word-break: break-all;
}
.fc__inspector p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(253, 253, 253, 0.5);
}
.fc__ins-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}
.fc__ins-tags i {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--amber);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.fc__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: rgba(253, 253, 253, 0.45);
  background: rgba(0, 0, 0, 0.3);
}
.fc__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fc__legend b {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  display: inline-block;
}
.lg-amber { background: var(--amber); }
.lg-coral { background: #fb7185; }
.lg-mint { background: #34d399; }
.fc__legend-note {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(253, 253, 253, 0.32);
}

.canvas-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.canvas-feats article {
  background: rgba(253, 253, 253, 0.025);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 16px;
}
.canvas-feats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.canvas-feats span {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(253, 253, 253, 0.5);
}

/* Responsive */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mc { order: 2; }
  .hero__copy { order: 1; }
  .mc__body { grid-template-columns: 1fr; }
  .mc__rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .mc__camp { flex: 1 1 140px; }
  .mc__board { grid-template-columns: 1fr 1fr; }
  .phases { grid-template-columns: 1fr 1fr; }
  .mods { grid-template-columns: 1fr 1fr; }
  .access { grid-template-columns: 1fr; }
  .fc__layout { grid-template-columns: 1fr; }
  .fc__palette {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    max-height: none;
  }
  .fc__pal-h { width: 100%; }
  .fc__pal-g { flex-direction: row; flex-wrap: wrap; margin: 0; align-items: center; gap: 4px; }
  .fc__pal-g small { width: 100%; }
  .fc__inspector {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .canvas-feats { grid-template-columns: 1fr 1fr; }
  .fc__legend-note { margin-left: 0; width: 100%; }
}
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--hdr) + 28px); min-height: auto; }
  .hero__meta { grid-template-columns: 1fr; gap: 12px; }
  .problem__list,
  .feats,
  .mods,
  .phases,
  .canvas-feats { grid-template-columns: 1fr; }
  .mc__board { grid-template-columns: 1fr 1fr; }
  .sec { padding: 72px 0; }
  .ftr__in { flex-direction: column; align-items: flex-start; }
  .fc__board {
    min-height: 300px;
  }
  .fc__board-scale {
    /* scale set by JS via --fc-scale when needed; fallback */
    transform: scale(var(--fc-scale, 0.72));
  }
  .fc-node {
    width: 128px;
    padding: 10px;
  }
  .fc-node strong { font-size: 12px; }
}
@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; }
  .mc__asset { opacity: 1; transform: none; }
  .fc-node,
  .fc-edge,
  .fc-rate { opacity: 1; transform: none; stroke-dashoffset: 0; }
}

/* 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; }
  .mc { order: 2 !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; }
}

