/* =========================================================================
   IGNIS · Design System v3 (dark/light híbrido · premium real)
   Identidade: Clash Display + Satoshi · neon laranja + glass
   Escala 4/8 rígida · nada fora dela.
   ========================================================================= */

:root {
  /* superfícies dark */
  --bg:        #07070a;
  --bg-elev:   #0c0c11;
  --surface:   #111118;
  --surface-2: #181822;

  /* superfícies light (off-white quente) */
  --bg-light:        #f5f4f0;
  --bg-light-elev:   #ffffff;
  --surface-light:   #ffffff;

  /* linhas */
  --line: 255 255 255;        /* dark mode */
  --line-light: 13 13 16;     /* light mode */

  /* texto dark */
  --text:      #f5f5f7;
  --text-dim:  #b9b9c4;
  --text-mute: #74747f;

  /* texto light */
  --text-light:      #0d0d10;
  --text-light-dim:  #4a4a55;
  --text-light-mute: #74747f;

  /* acentos */
  --accent:   234 124 48;   /* #ea7c30 */
  --accent-2: 45 212 191;   /* #2dd4bf */

  /* raios */
  --r-1: 8px; --r-2: 12px; --r-3: 16px; --r-4: 20px; --r-5: 24px; --r-6: 32px;

  /* ESCALA DE ESPAÇAMENTO 4/8 · fonte da verdade */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;
  --s-11: 160px;

  --section-y:    clamp(96px, 12vw, 160px);
  --section-y-sm: clamp(64px, 8vw, 96px);

  --maxw: 1200px;
  --pad:  clamp(20px, 4vw, 32px);

  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 70px rgba(0,0,0,.55);
  --shadow-light:    0 2px 12px rgba(13,13,16,.06);
  --shadow-light-lg: 0 24px 60px rgba(13,13,16,.10);

  --font-display: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-snap: cubic-bezier(.4,0,.2,1);
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: "ss01", "ss03", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgb(var(--accent) / .35); color: #fff; }

/* --------------------------------------------------------------- helpers */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: var(--section-y-sm); }

/* SEÇÕES LIGHT (override local · só dentro delas) */
.section-light {
  background: var(--bg-light);
  color: var(--text-light);
}
.section-light .lead { color: var(--text-light-dim); }
.section-light .muted { color: var(--text-light-mute); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 11.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgb(var(--accent));
  margin-bottom: var(--s-5);
  font-family: var(--font-body);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: rgb(var(--accent) / .55); }

/* --------------------------------------------------------------- typography */
.h-display, .h-section, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.0;
}
.h-display { font-size: clamp(48px, 8vw, 104px); letter-spacing: -.045em; line-height: .98; }
.h-section { font-size: clamp(34px, 5vw, 64px); line-height: 1.02; }
h3 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -.025em; line-height: 1.1; }
h4 { font-size: 18px; letter-spacing: -.02em; line-height: 1.2; }

.lead {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-dim);
  line-height: 1.55;
  font-weight: 400;
}

/* acento sutil · sem gradient italic genérico */
.accent-text { color: rgb(var(--accent)); font-weight: 700; }
.section-light .accent-text { color: rgb(var(--accent)); }

/* ---------------------------------------------------------------- botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  height: 52px; padding-inline: 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600; letter-spacing: -.005em;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke-width: 2; }

.btn-primary {
  background: linear-gradient(180deg, rgb(var(--accent) / 1), rgb(var(--accent) / .85));
  color: #1a0d02;
  box-shadow: 0 8px 28px rgb(var(--accent) / .38), inset 0 1px 0 rgb(255 255 255 / .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgb(var(--accent) / .5), inset 0 1px 0 rgb(255 255 255 / .3); }
.btn-primary:active { transform: translateY(0); transition-duration: .08s; }

.btn-ghost {
  background: rgb(var(--line) / .04);
  border: 1px solid rgb(var(--line) / .14);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgb(var(--line) / .08); transform: translateY(-2px); border-color: rgb(var(--line) / .22); }

.section-light .btn-ghost {
  background: rgb(13 13 16 / .04);
  border-color: rgb(13 13 16 / .12);
  color: var(--text-light);
}
.section-light .btn-ghost:hover { background: rgb(13 13 16 / .07); border-color: rgb(13 13 16 / .2); }

.btn-lg { height: 60px; padding-inline: 32px; font-size: 16px; gap: var(--s-3); }
.btn-sm { height: 40px; padding-inline: 16px; font-size: 14px; }

/* =========================================================================
   NAV · pílula flutuante centralizada
   ========================================================================= */
.nav-pill {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex; align-items: center; gap: var(--s-3);
  height: 56px;
  padding: 6px 8px 6px 20px;
  border-radius: 999px;
  background: rgb(7 7 10 / .55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgb(255 255 255 / .08);
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 1px 0 rgb(255 255 255 / .04);
  transition: top .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  max-width: calc(100vw - 32px);
}
.nav-pill.scrolled {
  background: rgb(7 7 10 / .75);
  border-color: rgb(255 255 255 / .12);
}

.nav-pill .brand {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px; letter-spacing: -.025em;
  color: #fff;
  padding-right: var(--s-3);
  border-right: 1px solid rgb(255 255 255 / .1);
}
.nav-pill .brand .mark {
  width: 22px; height: 22px;
  filter: drop-shadow(0 0 12px rgb(var(--accent) / .55));
}

.nav-pill-links {
  display: flex; align-items: center; gap: var(--s-5);
}
.nav-pill-links a {
  font-size: 13.5px;
  color: rgb(255 255 255 / .72);
  font-weight: 500;
  transition: color .18s;
  white-space: nowrap;
}
.nav-pill-links a:hover { color: #fff; }

.nav-pill .nav-cta {
  display: inline-flex; align-items: center;
  height: 44px; padding-inline: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--accent)), rgb(var(--accent) / .88));
  color: #1a0d02;
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600;
  box-shadow: 0 6px 20px rgb(var(--accent) / .4);
  transition: transform .18s var(--ease), box-shadow .25s;
  gap: var(--s-2);
}
.nav-pill .nav-cta svg { width: 14px; height: 14px; stroke-width: 2.2; }
.nav-pill .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgb(var(--accent) / .55); }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgb(255 255 255 / .06);
  border: 1px solid rgb(255 255 255 / .1);
  place-items: center;
  color: #fff;
}
.nav-burger svg { width: 18px; height: 18px; }

/* =========================================================================
   HERO · vídeo FULL-BLEED + degrade horizontal + texto largo à esquerda
   ========================================================================= */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  /* padding-top reserva espaço pra nav pílula (top:16 + height:56 + folga) */
  padding: clamp(140px, 15vw, 200px) 0 clamp(80px, 10vw, 120px) 0;
}

/* vídeo ocupa o hero inteiro (sem moldura, sem cantos arredondados) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* degrade horizontal: escuro à esquerda (texto destacado), revela vídeo à direita */
.hero-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(7,7,10,.96) 0%,
      rgba(7,7,10,.92) 38%,
      rgba(7,7,10,.70) 58%,
      rgba(7,7,10,.30) 78%,
      rgba(7,7,10,.08) 100%),
    linear-gradient(180deg,
      rgba(7,7,10,.30) 0%,
      transparent 25%,
      transparent 70%,
      rgba(7,7,10,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

/* glow laranja no chão (passa por cima de tudo, dá atmosfera) */
.hero-cinema::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -180px;
  transform: translateX(-50%);
  width: 130%; height: 600px;
  background: radial-gradient(closest-side,
    rgba(234,124,48,.42) 0%,
    rgba(234,124,48,.16) 38%,
    rgba(234,124,48,.05) 60%,
    transparent 78%);
  filter: blur(24px);
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 780px;
  width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: clamp(24px, 4vw, 64px);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgb(7 7 10 / .55);
  backdrop-filter: blur(14px);
  border: 1px solid rgb(255 255 255 / .14);
  font-size: 12.5px;
  color: rgb(255 255 255 / .88);
  margin-bottom: var(--s-6);
  font-family: var(--font-body);
  letter-spacing: .02em;
}
.hero-badge b { color: #fff; font-weight: 600; }
.hero-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgb(var(--accent));
  box-shadow: 0 0 12px rgb(var(--accent) / .9);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero-cinema h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .95;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.45);
  max-width: 13ch;
  text-align: left;
}
.hero-cinema h1 .num {
  display: inline-block;
  background: linear-gradient(180deg, #ffd8b8 0%, rgb(var(--accent)) 60%, #c25a18 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 28px rgb(var(--accent) / .55));
}

.hero-cinema .sub {
  font-family: var(--font-body);
  font-size: clamp(16.5px, 1.5vw, 19px);
  color: rgb(255 255 255 / .82);
  line-height: 1.55;
  margin-top: var(--s-5);
  max-width: 44ch;
  font-weight: 400;
  text-align: left;
}
.hero-cinema .sub b { color: #fff; font-weight: 600; }

/* PROOF CARD · +R$100k em 4 dias · destaque hierárquico */
.hero-proof {
  margin-top: var(--s-6);
  display: inline-flex; align-items: center; gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  border-radius: 18px;
  background: linear-gradient(135deg, rgb(234 124 48 / .22) 0%, rgb(234 124 48 / .10) 100%);
  border: 1px solid rgb(234 124 48 / .50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 36px rgb(234 124 48 / .22),
    0 0 0 1px rgb(255 255 255 / .04),
    inset 0 1px 0 rgb(255 255 255 / .08);
}
.hero-proof .proof-mark {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgb(234 124 48 / .42), rgb(234 124 48 / .22));
  border: 1px solid rgb(234 124 48 / .65);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgb(234 124 48 / .3);
}
.hero-proof .proof-mark svg { width: 22px; height: 22px; stroke-width: 2.4; }
.hero-proof .proof-body { display: flex; flex-direction: column; gap: 2px; }
.hero-proof .proof-big {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-proof .proof-big .num {
  background: linear-gradient(180deg, #ffdab8 0%, #ffae6b 60%, rgb(var(--accent)) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
}
.hero-proof .proof-small {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgb(255 215 184 / .85);
  letter-spacing: .015em;
  font-weight: 500;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: flex-start;
  margin-top: var(--s-6);
}

/* 3 botões de plataforma · Argos · CRM Ignis · Nous */
.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-7);
  width: 100%;
}
.plat-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5) var(--s-3) var(--s-3);
  border-radius: 14px;
  background: rgb(7 7 10 / .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgb(255 255 255 / .14);
  color: #fff;
  font-family: var(--font-body);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  isolation: isolate;
}
.plat-btn .plat-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgb(var(--c, 234 124 48) / .15);
  border: 1px solid rgb(var(--c, 234 124 48) / .35);
  color: rgb(var(--c, 234 124 48));
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.plat-btn .plat-ico svg { width: 20px; height: 20px; stroke-width: 2; }
.plat-btn .plat-info { display: flex; flex-direction: column; gap: 1px; }
.plat-btn .plat-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: #fff;
  line-height: 1.1;
}
.plat-btn .plat-tag {
  font-size: 11.5px;
  color: rgb(255 255 255 / .58);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.plat-btn .plat-arrow {
  width: 16px; height: 16px;
  margin-left: var(--s-2);
  color: rgb(255 255 255 / .5);
  stroke-width: 2.2;
  transition: transform .25s var(--ease), color .2s;
}
.plat-btn:hover {
  transform: translateY(-2px);
  background: rgb(7 7 10 / .7);
  border-color: rgb(var(--c, 234 124 48) / .55);
  box-shadow: 0 14px 36px rgb(var(--c, 234 124 48) / .22);
}
.plat-btn:hover .plat-ico {
  background: rgb(var(--c, 234 124 48) / .25);
  border-color: rgb(var(--c, 234 124 48) / .65);
}
.plat-btn:hover .plat-arrow {
  transform: translateX(4px);
  color: rgb(var(--c, 234 124 48));
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: var(--s-7);
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid rgb(255 255 255 / .1);
  justify-content: flex-start;
  width: 100%;
}
.hero-stats .st { display: flex; flex-direction: column; gap: var(--s-2); align-items: flex-start; min-width: 110px; }
.hero-stats .st b {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800; letter-spacing: -.04em;
  line-height: 1;
  color: #fff;
}
.hero-stats .st .accent { color: rgb(var(--accent)); }
.hero-stats .st span {
  font-size: 13px;
  color: rgb(255 255 255 / .65);
  line-height: 1.4;
  max-width: 18ch;
}

/* =========================================================================
   PRODUTOS · light editorial, 3 faixas alternadas
   ========================================================================= */
.products {
  background: var(--bg-light);
  color: var(--text-light);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}

/* glow do accent perfurando o claro · único elemento que vaza */
.products::before {
  content: "";
  position: absolute;
  left: 50%; top: -200px;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(closest-side, rgb(var(--accent) / .25), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.products-head {
  max-width: 720px;
  margin-bottom: var(--s-10);
}
.products-head .eyebrow {
  color: rgb(var(--accent));
}
.products-head h2 {
  color: var(--text-light);
  max-width: 18ch;
}
.products-head .lead {
  color: var(--text-light-dim);
  margin-top: var(--s-5);
  max-width: 58ch;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-block: var(--s-9);
  border-top: 1px solid rgb(13 13 16 / .08);
  position: relative;
}
.product-row:last-child { border-bottom: 1px solid rgb(13 13 16 / .08); }
.product-row.rev .product-copy { order: 2; }

.product-copy .eye {
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgb(var(--accent));
  margin-bottom: var(--s-4);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.product-copy .eye::before { content: ""; width: 24px; height: 1px; background: rgb(var(--accent) / .55); }

.product-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.04em;
  line-height: 1.02;
  color: var(--text-light);
  max-width: 14ch;
}

.product-copy p {
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  color: var(--text-light-dim);
  line-height: 1.55;
  margin-top: var(--s-5);
  max-width: 48ch;
}
.product-copy p b { color: var(--text-light); font-weight: 600; }

.product-copy .pcta {
  display: inline-flex; align-items: center; gap: var(--s-2);
  height: 52px; padding-inline: 24px;
  border-radius: 999px;
  background: var(--text-light);
  color: var(--bg-light);
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 600;
  margin-top: var(--s-6);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.product-copy .pcta:hover {
  transform: translateY(-2px);
  background: rgb(var(--accent));
  color: #1a0d02;
  box-shadow: 0 10px 30px rgb(var(--accent) / .4);
}
.product-copy .pcta svg { width: 16px; height: 16px; stroke-width: 2.2; transition: transform .25s; }
.product-copy .pcta:hover svg { transform: translateX(3px); }

/* ===== mockups dos produtos (light, glass com neon laranja) ===== */
.product-mock {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-6);
  background: linear-gradient(160deg, #fff 0%, #f5f4f0 100%);
  border: 1px solid rgb(13 13 16 / .08);
  box-shadow:
    0 30px 60px rgba(13,13,16,.10),
    0 0 0 1px rgb(13 13 16 / .04),
    inset 0 1px 0 #fff;
  overflow: hidden;
  isolation: isolate;
}
/* glow neon laranja por dentro do mockup */
.product-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 75% 15%, rgb(var(--accent) / .22), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
/* borda neon sutil */
.product-mock::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgb(var(--accent) / .15);
  z-index: 2;
}

.mock-frame {
  position: relative; z-index: 3;
  height: 100%;
  padding: clamp(16px, 2vw, 28px);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.mock-frame .mhead {
  display: flex; align-items: center; gap: var(--s-2);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgb(13 13 16 / .06);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  color: var(--text-light-mute);
  letter-spacing: .04em;
}
.mock-frame .mhead .dots { display: inline-flex; gap: 5px; margin-right: 6px; }
.mock-frame .mhead .dots span { width: 9px; height: 9px; border-radius: 50%; background: rgb(13 13 16 / .12); }
.mock-frame .mhead .dots span:first-child { background: rgb(var(--accent) / .7); }

/* Kanban (CRM) */
.mock-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  flex: 1;
}
.mock-kanban .col {
  background: rgb(13 13 16 / .03);
  border: 1px solid rgb(13 13 16 / .05);
  border-radius: var(--r-2);
  padding: var(--s-2);
  display: flex; flex-direction: column; gap: var(--s-2);
  min-height: 0;
}
.mock-kanban .col-name {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-light-mute);
}
.mock-kanban .lead-card {
  background: #fff;
  border-radius: 8px;
  padding: var(--s-2) var(--s-3);
  display: flex; align-items: center; gap: var(--s-2);
  box-shadow: 0 1px 3px rgba(13,13,16,.05), inset 0 0 0 1px rgb(13 13 16 / .04);
  font-size: 11.5px;
  color: var(--text-light);
}
.mock-kanban .lead-card .av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent-2)));
  flex-shrink: 0;
}
.mock-kanban .lead-card.hot { box-shadow: 0 1px 3px rgba(13,13,16,.05), inset 0 0 0 1px rgb(var(--accent) / .35), 0 0 16px rgb(var(--accent) / .15); }

/* Chat WhatsApp (Nous) */
.mock-chat {
  flex: 1;
  display: flex; flex-direction: column; gap: var(--s-2);
  padding: var(--s-2);
  background: rgb(13 13 16 / .02);
  border-radius: var(--r-2);
}
.mock-bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  font-family: var(--font-body);
  position: relative;
}
.mock-bubble.lead {
  align-self: flex-start;
  background: #fff;
  color: var(--text-light);
  border: 1px solid rgb(13 13 16 / .06);
}
.mock-bubble.bot {
  align-self: flex-end;
  background: linear-gradient(180deg, rgb(var(--accent)), rgb(var(--accent) / .85));
  color: #1a0d02;
  box-shadow: 0 4px 14px rgb(var(--accent) / .3);
}
.mock-bubble .time { display: block; font-size: 9.5px; margin-top: 3px; opacity: .6; }
.mock-status {
  align-self: center;
  font-size: 10.5px;
  color: var(--text-light-mute);
  font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 4px;
}
.mock-status svg { width: 11px; height: 11px; color: rgb(var(--accent)); stroke-width: 2.4; }
.mock-status b { color: rgb(var(--accent)); font-weight: 700; }

/* Argos (lista de perfis com % match) */
.mock-feed {
  flex: 1;
  display: flex; flex-direction: column; gap: var(--s-2);
}
.mock-profile {
  display: flex; align-items: center; gap: var(--s-3);
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgb(13 13 16 / .06);
  border-radius: var(--r-2);
  position: relative;
}
.mock-profile.match-high { box-shadow: 0 0 0 1px rgb(var(--accent) / .35), 0 0 20px rgb(var(--accent) / .15); }
.mock-profile .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, rgb(var(--accent) / .8), rgb(var(--accent-2) / .8));
  flex-shrink: 0;
}
.mock-profile .info { flex: 1; min-width: 0; }
.mock-profile .name { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--text-light); }
.mock-profile .meta { font-size: 10.5px; color: var(--text-light-mute); margin-top: 1px; }
.mock-profile .match {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  letter-spacing: -.025em;
  color: rgb(var(--accent));
  flex-shrink: 0;
}

/* =========================================================================
   NEUROCONEXÕES · duas seções consecutivas (A esparso · B denso)
   ========================================================================= */
.brain-section {
  position: relative;
  padding-block: var(--section-y);
  background: var(--bg);
  overflow: hidden;
}
.brain-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 50% 50%, rgb(var(--accent) / .08), transparent 60%);
  pointer-events: none;
}
.brain-section.b-after::before {
  background:
    radial-gradient(900px 500px at 50% 50%, rgb(var(--accent) / .18), transparent 60%),
    radial-gradient(600px 400px at 20% 80%, rgb(var(--accent-2) / .10), transparent 60%);
}

.brain-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.brain-section.b-after .brain-grid {
  grid-template-columns: 1.3fr 1fr;
}

.brain-copy .eyebrow { color: rgb(var(--accent)); }
.brain-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 14ch;
  color: #fff;
}
.brain-copy p {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgb(255 255 255 / .72);
  line-height: 1.6;
  margin-top: var(--s-6);
  max-width: 50ch;
}
.brain-copy p b { color: #fff; font-weight: 600; }

.brain-canvas-shell {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-6);
  background:
    linear-gradient(180deg, rgb(255 255 255 / .03), rgb(255 255 255 / .01)),
    radial-gradient(circle at 50% 50%, rgb(var(--accent) / .06), transparent 70%);
  border: 1px solid rgb(255 255 255 / .08);
  overflow: hidden;
  isolation: isolate;
}
.brain-section.b-after .brain-canvas-shell {
  border-color: rgb(var(--accent) / .25);
  box-shadow:
    0 30px 80px rgba(0,0,0,.4),
    0 0 60px rgb(var(--accent) / .15),
    inset 0 1px 0 rgb(255 255 255 / .05);
}
/* fade nas bordas pra graph não cortar feio */
.brain-canvas-shell::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 8%, transparent 92%, var(--bg) 100%);
  opacity: .7;
}
.brain-canvas-shell canvas { width: 100%; height: 100%; display: block; }

/* badge "antes" / "depois" no canto do canvas */
.brain-badge {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  z-index: 3;
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(7 7 10 / .65);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / .12);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
}
.brain-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: rgb(var(--accent-2)); box-shadow: 0 0 10px rgb(var(--accent-2) / .8); }
.b-after .brain-badge { border-color: rgb(var(--accent) / .4); }
.b-after .brain-badge .dot { background: rgb(var(--accent)); box-shadow: 0 0 12px rgb(var(--accent) / .9); }

/* divisor sutil entre A e B */
.brain-divider {
  background: var(--bg);
  text-align: center;
  padding: var(--s-7) var(--pad);
  position: relative;
}
.brain-divider::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgb(var(--accent) / .35) 30%,
    rgb(var(--accent) / .8) 50%,
    rgb(var(--accent) / .35) 70%,
    transparent 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgb(var(--accent) / .55);
}
.brain-divider .label {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px 16px;
  border-radius: 999px;
  background: rgb(7 7 10 / .9);
  border: 1px solid rgb(var(--accent) / .35);
  box-shadow: 0 0 24px rgb(var(--accent) / .25);
  font-family: var(--font-body);
  font-size: 12px;
  color: rgb(var(--accent));
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.brain-divider .label svg { width: 14px; height: 14px; stroke-width: 2.4; }

/* =========================================================================
   ARGOS DEEP · explica o cérebro com copy persuasiva (DARK)
   ========================================================================= */
.argos-deep {
  position: relative;
  padding-block: var(--section-y);
  background: var(--bg);
  overflow: hidden;
}
.argos-deep::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 10% 100%, rgb(var(--accent) / .14), transparent 60%),
    radial-gradient(600px 400px at 90% 0%, rgb(var(--accent-2) / .08), transparent 60%);
  pointer-events: none;
}
.argos-deep .wrap { position: relative; z-index: 1; }

.deep-head { max-width: 720px; margin-bottom: var(--s-9); }
.deep-head h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 18ch;
}
.deep-head .lead {
  color: rgb(255 255 255 / .72);
  margin-top: var(--s-5);
  max-width: 58ch;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
}
.deep-head .lead b { color: #fff; font-weight: 600; }

.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}

.deep-card {
  position: relative;
  padding: var(--s-6);
  border-radius: var(--r-5);
  background: linear-gradient(180deg, rgb(255 255 255 / .04), rgb(255 255 255 / .015));
  border: 1px solid rgb(255 255 255 / .08);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.deep-card:hover {
  border-color: rgb(var(--accent) / .4);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
}
.deep-card.hero-card {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgb(var(--accent) / .18) 0%, rgb(255 255 255 / .03) 50%, rgb(var(--accent-2) / .08) 100%);
  border-color: rgb(var(--accent) / .35);
  padding: var(--s-7);
}
.deep-card.hero-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 85% 0%, rgb(var(--accent) / .22), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.deep-card .deep-verb {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgb(var(--accent));
}
.deep-card h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.9vw, 24px);
  letter-spacing: -.025em;
  line-height: 1.1;
  color: #fff;
  max-width: 22ch;
  font-weight: 700;
}
.deep-card.hero-card h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -.035em;
  max-width: 18ch;
}
.deep-card p {
  font-size: 14.5px;
  color: rgb(255 255 255 / .72);
  line-height: 1.55;
}
.deep-card.hero-card p {
  font-size: 16.5px;
  max-width: 52ch;
  color: rgb(255 255 255 / .85);
  line-height: 1.6;
}
.deep-card p b { color: #fff; font-weight: 600; }

.deep-card .deep-ico {
  position: absolute;
  top: var(--s-5); right: var(--s-5);
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgb(var(--accent) / .12);
  border: 1px solid rgb(var(--accent) / .28);
  color: rgb(var(--accent));
  opacity: .75;
  transition: opacity .2s, background .2s, border-color .2s;
}
.deep-card .deep-ico svg { width: 20px; height: 20px; stroke-width: 1.75; }
.deep-card:hover .deep-ico {
  opacity: 1;
  background: rgb(var(--accent) / .2);
  border-color: rgb(var(--accent) / .5);
}
.deep-card.hero-card .deep-ico {
  width: 56px; height: 56px;
  opacity: 1;
  background: linear-gradient(135deg, rgb(var(--accent) / .3), rgb(var(--accent-2) / .15));
  border-color: rgb(var(--accent) / .5);
  color: #fff;
  box-shadow: 0 6px 18px rgb(var(--accent) / .25);
}
.deep-card.hero-card .deep-ico svg { width: 26px; height: 26px; }

/* =========================================================================
   RESULTADOS · light, números grandes editoriais
   ========================================================================= */
.results-light {
  background: var(--bg-light);
  color: var(--text-light);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
.results-light::before {
  content: "";
  position: absolute;
  left: -200px; top: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgb(var(--accent) / .14), transparent 70%);
  pointer-events: none;
}

.results-head { max-width: 720px; margin-bottom: var(--s-9); }
.results-head .eyebrow { color: rgb(var(--accent)); }
.results-head h2 {
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 16ch;
}
.results-head p {
  color: var(--text-light-dim);
  margin-top: var(--s-5);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 56ch;
  line-height: 1.55;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.metric { position: relative; padding-top: var(--s-5); }
.metric::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 56px; height: 3px;
  background: rgb(var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 12px rgb(var(--accent) / .55);
}
.metric .big {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 144px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .9;
  color: var(--text-light);
}
.metric .big .accent { color: rgb(var(--accent)); }
.metric .lbl {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: var(--s-4);
  letter-spacing: -.01em;
}
.metric .desc {
  font-size: 13.5px;
  color: var(--text-light-mute);
  line-height: 1.55;
  margin-top: var(--s-2);
  max-width: 28ch;
}

/* =========================================================================
   CTA FINAL · dark com glow forte
   ========================================================================= */
.cta-final {
  position: relative;
  padding-block: var(--section-y);
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -30%);
  width: 1200px; height: 700px;
  background: radial-gradient(closest-side, rgb(var(--accent) / .28), rgb(var(--accent) / .08) 50%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.cta-final .wrap { position: relative; }
.cta-final .eyebrow { justify-content: center; }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 72px);
  letter-spacing: -.04em;
  line-height: 1.02;
  max-width: 18ch;
  margin: 0 auto;
  color: #fff;
}
.cta-final .lead {
  max-width: 52ch;
  margin: var(--s-5) auto 0;
  color: rgb(255 255 255 / .72);
  font-size: clamp(16px, 1.5vw, 18px);
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center;
  margin-top: var(--s-7);
}

/* =========================================================================
   FOOTER · dark minimal
   ========================================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid rgb(255 255 255 / .06);
  padding-block: var(--s-9) var(--s-7);
}
.footer .wrap { display: flex; justify-content: space-between; gap: var(--s-7); flex-wrap: wrap; }
.footer .brand {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px; letter-spacing: -.03em;
  color: #fff;
  margin-bottom: var(--s-3);
}
.footer .brand .mark { width: 28px; height: 28px; filter: drop-shadow(0 0 14px rgb(var(--accent) / .45)); }
.footer p { font-size: 13.5px; color: rgb(255 255 255 / .55); max-width: 36ch; line-height: 1.6; }
.footer .cols { display: flex; gap: clamp(48px, 7vw, 96px); flex-wrap: wrap; }
.footer h5 {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .18em;
  color: rgb(255 255 255 / .5);
  margin-bottom: var(--s-4);
  font-family: var(--font-body); font-weight: 700;
}
.footer .cols a { display: block; font-size: 14px; color: rgb(255 255 255 / .72); margin-bottom: var(--s-2); transition: color .18s; }
.footer .cols a:hover { color: #fff; }
.foot-bottom {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgb(255 255 255 / .06);
  display: flex; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap;
  font-size: 12.5px; color: rgb(255 255 255 / .45);
  font-family: var(--font-body);
}

/* =========================================================================
   REVEAL on scroll (stagger)
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .22s; }
.reveal.d4 { transition-delay: .30s; }
.reveal.d5 { transition-delay: .38s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-badge .pulse { animation: none; }
  .hero-video { display: none; }
  .hero-cinema { background: linear-gradient(120deg, #07070a 35%, #1a1a22 100%); }
}

/* =========================================================================
   RESPONSIVO
   ========================================================================= */
@media (max-width: 940px) {
  .nav-pill-links { display: none; }
  .deep-grid { grid-template-columns: 1fr; }
  .nav-pill { padding: 6px 6px 6px 16px; gap: var(--s-2); }
  .nav-pill .brand { font-size: 16px; padding-right: var(--s-2); border-right: 0; }
  .nav-pill .nav-cta { height: 40px; font-size: 13px; padding-inline: 14px; }
  .nav-burger { display: inline-grid; }

  .product-row,
  .brain-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .brain-section.b-after .brain-grid { grid-template-columns: 1fr; }
  .product-row.rev .product-copy { order: 0; }

  .metrics-grid { grid-template-columns: 1fr; gap: var(--s-7); }

  .hero-cinema { min-height: 88vh; justify-content: center; text-align: center; }
  /* em mobile, gradient volta a ser vertical · texto centralizado sobre o vídeo */
  .hero-cinema::before {
    background:
      linear-gradient(180deg,
        rgba(7,7,10,.65) 0%,
        rgba(7,7,10,.55) 40%,
        rgba(7,7,10,.78) 75%,
        rgba(7,7,10,.95) 100%);
  }
  .hero-inner { align-items: center; padding: var(--s-8) var(--s-4); max-width: 100%; }
  .hero-cinema h1, .hero-cinema .sub { text-align: center; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { gap: var(--s-6); margin-top: var(--s-8); padding-top: var(--s-5); justify-content: center; }
  .hero-stats .st { min-width: 0; flex: 1 1 30%; align-items: center; }
  .hero-proof { align-self: center; }
}
@media (max-width: 560px) {
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .footer .wrap { flex-direction: column; gap: var(--s-6); }
  .hero-cinema h1 { font-size: clamp(44px, 12vw, 64px); }
  .metric .big { font-size: clamp(56px, 18vw, 84px); }
}

/* =========================================================================
   PÁGINA CRM-IGNIS (mantém estilos antigos pra não quebrar)
   ========================================================================= */
.subhero { padding-top: var(--s-7); padding-bottom: var(--s-7); }
.back-link {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 13.5px; color: var(--text-dim);
  margin-bottom: var(--s-6);
  font-family: var(--font-body);
  transition: color .18s, gap .18s;
}
.back-link:hover { color: var(--text); gap: var(--s-3); }
.back-link svg { width: 16px; height: 16px; stroke-width: 2; }

.subhero-stats { display: flex; flex-wrap: wrap; gap: var(--s-7); margin-top: var(--s-7); }
.subhero-stats .st { display: flex; flex-direction: column; gap: var(--s-1); }
.subhero-stats .st b { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; letter-spacing: -.025em; line-height: 1; color: var(--text); }
.subhero-stats .st span { font-size: 13px; color: var(--text-mute); }

.cap-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.cap {
  padding: var(--s-5);
  border-radius: var(--r-4);
  background: var(--surface);
  border: 1px solid rgb(var(--line) / .08);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  display: flex; flex-direction: column; gap: var(--s-3);
  position: relative; overflow: hidden;
}
.cap:hover { border-color: rgb(var(--accent) / .3); transform: translateY(-3px); }
.cap--xl { grid-column: span 4; grid-row: span 2; padding: var(--s-6); }
.cap--lg { grid-column: span 3; }
.cap--md { grid-column: span 3; }
.cap--sm { grid-column: span 2; }
.cap--gradient {
  background: linear-gradient(135deg, rgb(var(--accent) / .12), rgb(var(--accent-2) / .06));
  border-color: rgb(var(--accent) / .25);
}
.cap--gradient::before { content: ""; position: absolute; inset: 0; background: radial-gradient(360px 220px at 100% 0%, rgb(var(--accent) / .2), transparent 70%); pointer-events: none; }
.cap > * { position: relative; }
.cap .ico {
  width: 40px; height: 40px; border-radius: var(--r-2);
  display: grid; place-items: center;
  background: rgb(var(--accent) / .12);
  border: 1px solid rgb(var(--accent) / .26);
  color: rgb(var(--accent));
  margin-bottom: var(--s-2);
}
.cap .ico svg { width: 20px; height: 20px; stroke-width: 1.75; }
.cap--xl .ico { width: 52px; height: 52px; }
.cap--xl .ico svg { width: 26px; height: 26px; }
.cap h3 { font-size: 18px; letter-spacing: -.02em; }
.cap--xl h3 { font-size: clamp(22px, 2.4vw, 28px); }
.cap p { font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.cap--xl p { font-size: 15.5px; max-width: 44ch; }

.fields-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-2); margin-top: var(--s-4); }
.field-chip { display: flex; align-items: center; gap: var(--s-2); padding: var(--s-2) var(--s-3); border-radius: var(--r-2); background: rgb(var(--line) / .04); border: 1px solid rgb(var(--line) / .08); font-size: 12.5px; font-family: ui-monospace, "SF Mono", Menlo, monospace; color: var(--text-dim); }
.field-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: rgb(var(--accent) / .8); }

.lost-reasons { display: grid; gap: var(--s-2); margin-top: var(--s-4); }
.lost-row { display: flex; align-items: center; justify-content: space-between; padding: var(--s-3) var(--s-4); border-radius: var(--r-2); background: rgb(var(--line) / .03); border: 1px solid rgb(var(--line) / .06); font-size: 13.5px; }
.lost-row .label { color: var(--text); font-weight: 500; }
.lost-row .weight { font-family: var(--font-body); font-size: 11.5px; color: rgb(var(--accent)); font-weight: 700; letter-spacing: .04em; }

.cycle-shell {
  margin-top: var(--s-7);
  padding: var(--s-7);
  border-radius: var(--r-6);
  background: linear-gradient(135deg, rgb(var(--accent) / .1), rgb(var(--accent-2) / .06));
  border: 1px solid rgb(var(--accent) / .2);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center;
}
.cycle-shell::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 280px at 50% 0%, rgb(var(--accent) / .15), transparent 70%); pointer-events: none; }
.cycle-shell > * { position: relative; }
.cycle-shell h3 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: var(--s-3); }
.cycle-shell p { font-size: 15px; color: var(--text-dim); line-height: 1.55; }
.cycle-shell .events { display: grid; gap: var(--s-3); margin-top: var(--s-5); }
.event-row { display: flex; align-items: center; gap: var(--s-3); font-size: 13px; color: var(--text-dim); font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.event-row .ev-ico { width: 22px; height: 22px; border-radius: 7px; background: rgb(var(--accent) / .14); color: rgb(var(--accent)); display: grid; place-items: center; flex-shrink: 0; }
.event-row .ev-ico svg { width: 12px; height: 12px; stroke-width: 2; }
.event-row .arrow { color: rgb(var(--line) / .3); }
.event-row b { color: var(--text); font-family: var(--font-body); }
.cycle-canvas-shell { height: clamp(280px, 28vw, 360px); border-radius: var(--r-5); background: rgb(7 7 10 / .5); border: 1px solid rgb(var(--line) / .08); position: relative; overflow: hidden; }
#cycle-canvas { width: 100%; height: 100%; }

.steps { margin-top: var(--s-6); display: grid; gap: var(--s-3); }
.step { display: grid; grid-template-columns: 56px 1fr; gap: var(--s-5); align-items: start; padding: var(--s-5); border-radius: var(--r-4); background: linear-gradient(180deg, rgb(var(--line) / .04), rgb(var(--line) / .01)); border: 1px solid rgb(var(--line) / .07); }
.step .num { width: 44px; height: 44px; border-radius: var(--r-3); display: grid; place-items: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: rgb(var(--accent)); background: rgb(var(--accent) / .12); border: 1px solid rgb(var(--accent) / .28); }
.step h4 { font-size: 17px; margin-bottom: var(--s-1); }
.step p { font-size: 14.5px; color: var(--text-dim); line-height: 1.55; }
.step code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; background: rgb(var(--line) / .07); padding: 2px 7px; border-radius: 6px; color: var(--text); }
.step .tip { margin-top: var(--s-2); font-size: 13px; color: var(--text-mute); display: flex; gap: var(--s-2); align-items: flex-start; }
.step .tip svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: rgb(var(--accent-2)); }

.download { margin: 0 var(--pad); padding: clamp(40px, 6vw, 64px); border-radius: var(--r-6); text-align: center; background: linear-gradient(135deg, rgb(var(--accent) / .14), rgb(var(--accent-2) / .06)); border: 1px solid rgb(var(--accent) / .22); position: relative; overflow: hidden; }
.download::before { content: ""; position: absolute; inset: 0; background: radial-gradient(540px 280px at 50% 0%, rgb(var(--accent) / .22), transparent 70%); }
.download > * { position: relative; }
.download .dico { width: 64px; height: 64px; border-radius: var(--r-3); display: grid; place-items: center; margin: 0 auto var(--s-5); background: rgb(var(--accent) / .16); border: 1px solid rgb(var(--accent) / .3); color: rgb(var(--accent)); }
.download .dico svg { width: 32px; height: 32px; stroke-width: 1.75; }
.download h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: var(--s-3); }
.download p { color: var(--text-dim); max-width: 48ch; margin: 0 auto var(--s-6); font-size: 15.5px; }
.download .meta-files { margin-top: var(--s-4); font-size: 13px; color: var(--text-mute); }

.faq { margin-top: var(--s-6); display: grid; gap: var(--s-2); max-width: 800px; }
.faq details { border: 1px solid rgb(var(--line) / .08); border-radius: var(--r-3); background: var(--surface); padding: 0 var(--s-5); transition: border-color .2s var(--ease); }
.faq details[open] { border-color: rgb(var(--accent) / .25); }
.faq summary { cursor: pointer; list-style: none; padding: var(--s-5) 0; font-family: var(--font-body); font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform .25s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: rgb(var(--accent)); border-radius: 2px; }
.faq summary .plus::before { top: 11px; left: 3px; right: 3px; height: 2px; }
.faq summary .plus::after { left: 11px; top: 3px; bottom: 3px; width: 2px; transition: transform .25s var(--ease); }
.faq details[open] summary .plus::after { transform: scaleY(0); }
.faq details p { padding: 0 0 var(--s-5); color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

@media (max-width: 940px) {
  .cap-bento { grid-template-columns: 1fr; }
  .cap--xl, .cap--lg, .cap--md, .cap--sm { grid-column: 1; grid-row: auto; }
  .cycle-shell { grid-template-columns: 1fr; }
}
