/* ========== Allomni — Design Tokens ========== */
:root {
  --bg-0: #0A0A0A;
  --bg-1: #111111;
  --bg-2: #1A1A1A;
  --bg-3: #232323;
  --line: #2A2A2A;
  --line-2: #3A3A3A;

  --fg: #FFFFFF;
  --fg-dim: #A0A0A0;
  --fg-faint: #6B6B6B;

  --y-1: #F5A800;
  --y-2: #FFC200;
  --y-3: #FFD84D;
  --y-grad: linear-gradient(90deg, #F5A800 0%, #FFC200 50%, #FFD84D 100%);
  --y-grad-diag: linear-gradient(135deg, #F5A800 0%, #FFC200 60%, #FFD84D 100%);

  --font-display: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ========== Typography ========== */
.h-display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--fg);
}
.h-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--y-2);
  font-weight: 500;
}
.h-eyebrow .dot { display: inline-block; width: 6px; height: 6px; background: var(--y-2); border-radius: 50%; margin-right: 10px; vertical-align: middle; box-shadow: 0 0 12px var(--y-2); }
.text-grad-y {
  background: var(--y-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-dim { color: var(--fg-dim); }
.text-mono { font-family: var(--font-mono); }

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  position: relative;
  padding: 80px 0;
}
.section--alt { background: var(--bg-1); }
@media (max-width: 768px) {
  .section { padding: 80px 0; }
}

/* ========== F1 grid backgrounds ========== */
.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.bg-grid--fine {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 32px 32px;
}
.bg-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  opacity: 0.6;
}
.glow-y {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,0,0.15) 0%, rgba(255,194,0,0.04) 35%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease, padding 240ms ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo__mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--y-grad-diag);
  color: #0A0A0A;
  font-weight: 900;
  font-family: var(--font-display);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(255,194,0,0.35);
  font-size: 18px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links { display: flex; gap: 32px; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  opacity: 0.78;
  transition: opacity 200ms, color 200ms;
  position: relative;
}
.nav__link:hover { opacity: 1; color: var(--y-2); }

@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  border-radius: 4px;
  transition: transform 200ms cubic-bezier(.2,.8,.3,1), box-shadow 200ms, filter 200ms;
  position: relative;
  white-space: nowrap;
}
.btn--y {
  background: var(--y-grad);
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 28px -6px rgba(255,194,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn--y:hover { transform: translateY(-1px); box-shadow: 0 10px 38px -6px rgba(255,194,0,0.6), inset 0 1px 0 rgba(255,255,255,0.35); filter: brightness(1.05); }
.btn--y .arrow { display: inline-block; transition: transform 240ms; }
.btn--y:hover .arrow { transform: translateX(4px); }
.btn--y { max-width: 600px; }
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  padding: 20px 34px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 200ms, filter 200ms;
  max-width: 600px;
}
.btn--whatsapp:hover { transform: translateY(-1px); filter: brightness(1.05); }
.final__cta-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 720px) {
  .final__cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .final__cta-row .btn { width: 100%; }
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-2);
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn--ghost:hover { border-color: var(--y-2); color: var(--y-2); }
.btn--sm { padding: 11px 18px; font-size: 13px; }
.btn--lg { padding: 20px 34px; font-size: 17px; }

/* Pulsing glow used by contextual CTAs */
.btn--pulse { animation: pulseGlow 2.4s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 28px -6px rgba(255,194,0,0.45), inset 0 1px 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 8px 40px -4px rgba(255,194,0,0.7), 0 0 30px rgba(255,194,0,0.35), inset 0 1px 0 rgba(255,255,255,0.35); }
}
.ctx-cta-wrap { margin-top: 48px; text-align: center; }
.ctx-cta {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  border-radius: 8px;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 4; width: 100%; }
.hero__center {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0 0 28px;
}
.hero__sub {
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim);
  margin: 0 auto 40px;
}
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; position: relative; }

.hero__slogan {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 32px auto 32px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  line-height: 1;
}
.hero__slogan-line--strike { color: #FFFFFF; font-weight: 800; }
.hero__slogan-line--y { color: #FFC200; font-weight: 900; }

.hero__secondary-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #A0A0A0;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.hero__secondary-link:hover {
  color: #FFFFFF;
  text-decoration-color: rgba(255,255,255,0.8);
}

.hero__logos {
  margin-top: 56px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.hero__logos-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}
.hero__logos-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.hero__logos-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: heroLogosScroll 60s linear infinite;
}
@keyframes heroLogosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero__logos-item {
  font-family: "Barlow Condensed", "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 15px;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}
.hero__cta-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(245,168,0,0.08) 0%, rgba(245,168,0,0.03) 35%, transparent 65%); pointer-events: none; z-index: -1; animation: ctaGlowPulse 4s ease-in-out infinite; filter: blur(28px); }
@keyframes ctaGlowPulse { 0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 0.85; transform: translate(-50%,-50%) scale(1.05); } }

/* Funnel SVG background */
.funnel-bg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.funnel-bg svg { width: 100%; height: 100%; display: block; }
.funnel-line { stroke: rgba(245,168,0,0.03); stroke-width: 1; fill: none; }
.funnel-line-h { stroke: rgba(245,168,0,0.03); stroke-width: 1; }

/* Top grid (regular, fades into funnel) */
.funnel-top-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,168,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,168,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 0%, black 25%, transparent 55%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 25%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Particles canvas */
.funnel-particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }

@keyframes funnelPulse {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1180; }
}
.hero__title .accent { color: var(--y-2); position: relative; }
.hero__title .accent::after {
  content: none;
}
.hero__sub {
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim);
  margin-bottom: 40px;
}
.hero__sub strong { color: var(--fg); font-weight: 600; }
.hero__cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.hero__meta {
  margin-top: 64px;
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 6px; min-width: 120px; }
.hero__meta-num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--fg); line-height: 1; }
.hero__meta-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); }

/* ===== Hero Dashboard ===== */
.dash {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 60px -10px rgba(245,168,0,0.08), 0 30px 60px -20px rgba(0,0,0,0.6);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  animation: dashIn 1.2s 0.5s cubic-bezier(.2,.8,.3,1) forwards;
  transition: border-color 320ms;
}
.dash:hover { border-color: rgba(245,168,0,0.3); }
@keyframes dashIn {
  to { opacity: 1; transform: scale(1); }
}
.dash::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
  animation: scan 5s linear infinite;
  z-index: 4;
}
@keyframes scan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.dash__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.dash__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}
.dash__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--y-2);
}
.dash__live::before {
  content: ""; width: 6px; height: 6px; background: var(--y-2);
  border-radius: 50%; box-shadow: 0 0 8px var(--y-2);
  animation: pulse 1.4s ease-in-out infinite;
}

.dash__chart {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  margin-bottom: 18px;
}
.dash__chart svg { width: 100%; height: 100%; display: block; overflow: visible; }
.dash-grid-line { stroke: #1f1f1f; stroke-width: 1; }
.dash-axis { stroke: #2a2a2a; stroke-width: 1; }
.dash-area { fill: url(#dashGrad); opacity: 0; animation: areaIn 0.8s 2.4s ease-out forwards; }
@keyframes areaIn { to { opacity: 1; } }
.dash-line {
  fill: none;
  stroke: #FFC200;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255,194,0,0.5));
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-in-out infinite;
}
@keyframes drawLine {
  0% { stroke-dashoffset: 1000; }
  37%, 80% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
.dash-dot {
  fill: var(--y-2);
  opacity: 0.35;
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.4); }
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.kpi {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  position: relative;
  overflow: hidden;
}
.kpi__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 6px;
}
.kpi__val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--y-2);
  line-height: 1;
  letter-spacing: -0.01em;
}
.kpi__delta {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #25D366;
  letter-spacing: 0.04em;
}

.dash__bar {
  display: flex; align-items: center; gap: 12px;
}
.dash__bar-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
  flex: 0 0 auto;
}
.dash__bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg-2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.dash__bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--y-grad);
  box-shadow: 0 0 12px rgba(255,194,0,0.5);
  border-radius: 3px;
  animation: barFill 2.5s 1s cubic-bezier(.2,.8,.3,1) forwards;
}
@keyframes barFill { to { width: 85%; } }
.dash__bar-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--y-2);
  flex: 0 0 auto;
  min-width: 36px;
  text-align: right;
}

@media (max-width: 900px) {
  .dash { padding: 22px; }
  .kpi__val { font-size: 24px; }
}

/* Speed lines */
.speed-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.speed-lines .line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,194,0,0.55), transparent);
  width: 220px;
  opacity: 0;
  animation: dash 3.6s linear infinite;
}
@keyframes dash {
  0% { transform: translateX(-260px); opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(110vw); opacity: 0; }
}

/* HUD corners */
.hud-corner { position: absolute; width: 28px; height: 28px; border: 1px solid var(--line-2); pointer-events: none; }
.hud-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hud-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.hud-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.hud-corner.y { border-color: var(--y-2); }

/* ========== Credibility ========== */
.cred {
  text-align: center;
  position: relative;
}
.cred__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.95;
  color: #FFC200;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 60px rgba(255,194,0,0.22));
  margin-bottom: 24px;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .cred__num { font-size: clamp(48px, 11vw, 120px); }
}
@media (max-width: 720px) {
  .cred__num { font-size: clamp(44px, 12vw, 80px); white-space: normal; }
}
.cred__sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 10px;
}
.cred__since {
  color: var(--fg-dim);
  font-size: 15px;
  margin-bottom: 56px;
}
.cred__metrics {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.cred__metric { display: flex; flex-direction: column; gap: 4px; }
.cred__metric-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--y-2); }
.cred__metric-lbl { font-size: 13px; color: var(--fg-dim); }

/* logo marquee */
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee__track {
  display: flex;
  gap: 80px;
  animation: marquee 40s linear infinite;
  width: max-content;
  padding: 8px 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  opacity: 0.55;
  transition: opacity 300ms, color 300ms;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.marquee__logo:hover { opacity: 1; color: var(--fg); }

/* ========== Section heading ========== */
.s-head { max-width: 880px; margin: 0 auto 72px; text-align: center; }
.s-head--left { text-align: left; margin-left: 0; }
.s-head__title {
  font-size: clamp(40px, 5.4vw, 68px);
  margin: 16px 0 18px;
}
.s-head__sub { color: var(--fg-dim); font-size: clamp(15px, 1.3vw, 18px); max-width: 640px; margin: 0 auto; }
.s-head--left .s-head__sub { margin-left: 0; }

/* ========== Problem cards ========== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-3--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .cards-3--four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } .cards-3--four { grid-template-columns: 1fr; } }

.p-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  position: relative;
  transition: border-color 240ms, transform 240ms, background 240ms;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.p-card:hover { border-color: var(--y-2); transform: translateY(-4px); }

/* Problem cards — danger accent (red glow, NOT yellow) */
.p-card--danger {
  border-color: rgba(255, 60, 60, 0.3);
  box-shadow: 0 0 20px rgba(255, 60, 60, 0.08);
}
.p-card--danger:hover {
  border-color: rgba(255, 60, 60, 0.5);
  box-shadow: 0 0 30px rgba(255, 60, 60, 0.12);
}
.p-card--danger .p-card__num {
  color: #FF3C3C;
}

/* Rotating beam border — each danger card has a beam circling its border */
.p-card--danger {
  position: relative;
  isolation: isolate;
  background-clip: padding-box;
}
.p-card--danger::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--beam-angle, 0deg),
    transparent 0deg,
    transparent 270deg,
    rgba(255, 60, 60, 0.15) 300deg,
    #FF3C3C 340deg,
    rgba(255, 120, 120, 0.9) 350deg,
    #FF3C3C 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: pCardBeam 4s linear infinite;
  opacity: 0.85;
}
.p-card--danger:nth-of-type(2)::before { animation-delay: -1s; }
.p-card--danger:nth-of-type(3)::before { animation-delay: -2s; }
.p-card--danger:nth-of-type(4)::before { animation-delay: -3s; }
.p-card--danger:hover::before { opacity: 1; }

@property --beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes pCardBeam {
  to { --beam-angle: 360deg; }
}
/* Fallback for browsers without @property — animate via background-position trick */
@supports not (background: conic-gradient(from var(--beam-angle))) {
  .p-card--danger::before {
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 270deg,
      rgba(255, 60, 60, 0.15) 300deg,
      #FF3C3C 340deg,
      rgba(255, 120, 120, 0.9) 350deg,
      #FF3C3C 360deg
    );
    animation: pCardBeamRotate 4s linear infinite;
  }
  @keyframes pCardBeamRotate {
    to { transform: rotate(360deg); }
  }
}
.p-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--y-2);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.p-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}
.p-card__body { color: var(--fg-dim); font-size: 15px; line-height: 1.6; }

.problem-close {
  margin-top: 64px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.problem-close .accent { color: var(--y-2); }

/* ========== Mechanism / Levers ========== */
.levers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .levers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .levers { grid-template-columns: 1fr; } }

.lever {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
  transition: border-color 280ms, background 280ms;
  overflow: hidden;
}
.lever::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,194,0,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 280ms;
  pointer-events: none;
}
.lever:hover { border-color: var(--y-2); }
.lever:hover::before { opacity: 1; }

.lever__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px;
}
.lever__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--y-2);
  background: linear-gradient(135deg, rgba(255,194,0,0.08), rgba(255,194,0,0.02));
  position: relative;
  flex: 0 0 auto;
  transition: border-color 280ms, color 280ms, background 280ms;
}
.lever:hover .lever__icon {
  border-color: var(--y-2);
  color: var(--y-3);
  background: linear-gradient(135deg, rgba(255,194,0,0.18), rgba(255,194,0,0.05));
}
.lever__icon svg { width: 26px; height: 26px; }
.lever__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--y-2);
  letter-spacing: 0.02em;
  line-height: 1;
}
.lever__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lever__body { color: var(--fg-dim); font-size: 14.5px; line-height: 1.55; }
.lever__num { position: absolute; top: 16px; right: 18px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: 0.14em; }

.mech-close {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
}
.mech-highlight {
  margin: 0 auto 48px;
  max-width: 720px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(255,194,0,0.15), rgba(255,168,0,0.08));
  border: 1px solid var(--y-2);
  display: flex; align-items: center; gap: 20px;
  position: relative;
}
.mech-highlight__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  background: var(--y-grad);
  color: #0A0A0A;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}
.mech-highlight__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  line-height: 1.2;
}

/* ========== Cases ========== */
.case-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 240ms, transform 240ms;
  position: relative;
}
.case-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.case-card__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.case-card__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.case-card__seg {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid var(--line-2);
  padding: 5px 10px;
}
.case-card__progress {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.case-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 0;
  align-items: flex-start;
  text-align: left;
}
.case-stat__lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #666; }
.case-stat__num { font-family: var(--font-display); line-height: 1; white-space: nowrap; }
.case-stat--from .case-stat__lbl { color: #666; }
.case-stat--from .case-stat__num { color: #666; font-size: 28px; font-weight: 700; text-decoration: none; }
.case-stat--to .case-stat__lbl { color: #F5A800; }
.case-stat--to .case-stat__num { color: #FFC200; font-size: 36px; font-weight: 800; background: none; -webkit-text-fill-color: #FFC200; filter: drop-shadow(0 0 18px rgba(255,194,0,0.3)); }
.case-arrow {
  align-self: flex-start;
  color: #FFC200;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0;
}
.case-bar {
  height: 4px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.case-bar__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--y-grad);
  width: 0;
  transition: width 1200ms cubic-bezier(.2,.8,.3,1);
  box-shadow: 0 0 12px rgba(255,194,0,0.5);
}
.case-card.in-view .case-bar__fill { width: var(--w, 80%); }
.case-card__quote { color: var(--fg-dim); font-size: 14.5px; line-height: 1.6; font-style: italic; border-left: 2px solid var(--y-2); padding-left: 16px; }
.case-card__period { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--y-2); text-transform: uppercase; }
.case-card__cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--y-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.case-card__cta:hover { color: var(--y-3); }

/* ========== Testimonials ========== */
.t-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  display: flex; flex-direction: column; gap: 28px;
}
.t-card__quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.7;
  color: var(--y-2);
  height: 36px;
  filter: drop-shadow(0 0 24px rgba(255,194,0,0.25));
}
.t-card__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
  flex: 1;
}
.t-card__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--y-2);
  background: var(--bg-3);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--y-2);
  flex: 0 0 auto;
}
.t-card__name { font-weight: 600; font-size: 14px; line-height: 1.3; }
.t-card__role { color: var(--fg-dim); font-size: 12.5px; line-height: 1.4; }

/* ========== Objections (Accordion) ========== */
.faq {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 240ms;
  overflow: hidden;
}
.faq-item.open { border-color: var(--y-2); }
.faq-item.open::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--y-grad);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 21px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--fg);
  transition: color 200ms;
}
.faq-item.open .faq-q { color: var(--y-2); }
.faq-q__num { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); letter-spacing: 0.16em; min-width: 28px; }
.faq-q__icon { flex: 0 0 auto; width: 24px; height: 24px; position: relative; }
.faq-q__icon::before, .faq-q__icon::after {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 100%; height: 2px; background: currentColor;
  transform: translateY(-50%);
  transition: transform 280ms cubic-bezier(.2,.8,.3,1);
}
.faq-q__icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.open .faq-q__icon::after { transform: translateY(-50%) rotate(0deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(.2,.8,.3,1);
}
.faq-a__inner {
  padding: 0 28px 26px 28px;
  color: var(--fg-dim);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 740px;
}

/* ========== Founder section ========== */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
}

.founder-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  padding: 2px;
  background: var(--y-grad-diag);
  box-shadow: 0 0 80px -20px rgba(255,194,0,0.45), 0 30px 60px -20px rgba(0,0,0,0.6);
}
.founder-photo {
  width: 100%; height: 100%;
  border-radius: 10px;
  background-color: var(--bg-2);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.025) 0 8px,
    transparent 8px 16px
  );
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  position: relative;
}
.founder-photo__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.founder-photo__corner {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--y-2);
  display: flex; align-items: center; gap: 6px;
}
.founder-photo__corner::before {
  content: ""; width: 8px; height: 8px; background: var(--y-2);
  border-radius: 50%; box-shadow: 0 0 10px var(--y-2);
  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); }
}

.founder-name {
  font-size: clamp(48px, 7vw, 88px);
  margin: 14px 0 10px;
  letter-spacing: -0.02em;
}
.founder-role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--y-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.founder-bio {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}
.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.founder-badge {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 240ms, transform 240ms;
}
.founder-badge:hover { border-color: var(--y-2); transform: translateY(-2px); }
.founder-badge__icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,194,0,0.16), rgba(255,194,0,0.04));
  display: grid; place-items: center;
  color: var(--y-2);
  flex: 0 0 auto;
}
.founder-badge__icon svg { width: 16px; height: 16px; }

.slide-l { opacity: 0; transform: translateX(-32px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.3,1); }
.slide-l.in-view { opacity: 1; transform: translateX(0); }
.slide-r { opacity: 0; transform: translateX(32px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.3,1); }
.slide-r.in-view { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) {
  .slide-l, .slide-r { transform: translateY(24px); }
}
.final {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.final__title {
  font-size: clamp(42px, 6vw, 84px);
  margin-bottom: 48px;
}
.final__note {
  margin-top: 26px;
  color: var(--fg-dim);
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ========== Footer ========== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-0);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Footer newsletter */
.footer__newsletter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  background: #0F0F0F;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  transition: border-color 200ms;
}
.footer__newsletter:focus-within { border-color: var(--y-2); }
.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 0;
}
.footer__newsletter-input::placeholder { color: #666; }
.footer__newsletter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--y-2);
  color: #0A0A0A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.34,1.56,.64,1), background 200ms;
}
.footer__newsletter-btn:hover { transform: translateX(2px); background: #FFD84D; }

/* Footer certifications */
.footer__certs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 0 20px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.footer__certs-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
}
.footer__certs-list {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.25);
}
.footer__certs-sep { color: rgba(255,255,255,0.15); }

/* Footer bottom additions */
.footer__bottom-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer__privacy { color: #666; font-size: 12px; transition: color 200ms; }
.footer__privacy:hover { color: var(--y-2); }
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0 0;
  font-size: 12px;
  color: #666;
  text-align: center;
  align-items: center;
}
@media (max-width: 700px) {
  .footer__certs-list { flex-wrap: wrap; justify-content: center; }
  .footer__bottom-left { justify-content: center; }
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__links a:hover { color: var(--y-2); }
.footer__tagline { color: var(--fg-dim); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: border-color 200ms, color 200ms;
}
.footer__social a:hover { border-color: var(--y-2); color: var(--y-2); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--fg-dim); font-family: var(--font-mono); letter-spacing: 0.04em;
}

/* v2.0.49 - footer bottom centralizado */
#allomni-root .footer__bottom {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
#allomni-root .footer__bottom-left {
  justify-content: center !important;
}

/* ========== Modal ========== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%;
  max-width: 460px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 320ms cubic-bezier(.2,.8,.3,1);
  overflow: hidden;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal__top {
  background: var(--bg-2);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.modal__avatar {
  width: 40px; height: 40px;
  background: var(--y-grad-diag);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #0A0A0A;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  position: relative;
}
.modal__avatar::after {
  content: "";
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  background: var(--y-2);
  border: 2px solid var(--bg-2);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--y-2);
}
.modal__hd-text { display: flex; flex-direction: column; gap: 1px; }
.modal__hd-name { font-weight: 600; font-size: 14.5px; }
.modal__hd-status { font-family: var(--font-mono); font-size: 11px; color: var(--y-2); letter-spacing: 0.08em; }
.modal__close {
  margin-left: auto;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--fg-dim);
  transition: color 200ms;
}
.modal__close:hover { color: var(--y-2); }

.modal__body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.012) 14px 15px),
    var(--bg-1);
}
.bubble {
  align-self: flex-start;
  max-width: 92%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 12px 16px;
  font-size: 14.5px;
  color: var(--fg);
  border-radius: 0 12px 12px 12px;
  position: relative;
}
.bubble strong { color: var(--y-2); }
.bubble--time { font-family: var(--font-mono); font-size: 10px; color: var(--fg-faint); margin-top: 4px; display: block; letter-spacing: 0.08em; }

.field {
  display: flex; flex-direction: column; gap: 6px;
  align-self: flex-end;
  width: 100%;
}
.field__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  align-self: flex-end;
}
.field input {
  align-self: flex-end;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 12px 0 12px 12px;
  width: 100%;
  transition: border-color 200ms;
}
.field input:focus { outline: none; border-color: var(--y-2); }
.field input::placeholder { color: var(--fg-faint); }

.modal__footer {
  padding: 14px 22px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.modal__send {
  width: 100%;
  background: var(--y-grad);
  color: #0A0A0A;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: filter 200ms, transform 200ms;
}
.modal__send:hover { filter: brightness(1.06); transform: translateY(-1px); }
.modal__send:disabled { filter: grayscale(0.6); opacity: 0.6; cursor: not-allowed; transform: none; }
.modal__disclaimer {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ========== Mobile sticky CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
  display: none;
}
.sticky-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ========== Mobile menu ========== */
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  position: relative;
}
.menu-btn span {
  position: absolute;
  width: 18px; height: 2px;
  background: var(--fg);
  transition: transform 240ms, opacity 240ms;
}
.menu-btn span:nth-child(1) { transform: translateY(-5px); }
.menu-btn span:nth-child(3) { transform: translateY(5px); }
.menu-btn.open span:nth-child(1) { transform: rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg); }
@media (max-width: 900px) { .menu-btn { display: flex; } .header__cta { display: none; } }

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 320px;
  background: var(--bg-1);
  border-left: 1px solid var(--line);
  z-index: 99;
  padding: 90px 28px 28px;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(.2,.8,.3,1);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ========== Cases carousel ========== */
.cases-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
.cases-viewport {
  overflow: hidden;
  width: 100%;
}
.cases-track {
  display: grid;
  width: 100%;
  transition: transform 0.5s cubic-bezier(.2,.8,.3,1);
}
.cases-page {
  display: grid;
  gap: 24px;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.cases-page.is-active { opacity: 1; }

.cases-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2A2A2A;
  background: rgba(0,0,0,0.4);
  color: #A0A0A0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 4;
}
.cases-arrow svg { width: 20px; height: 20px; }
.cases-arrow:hover {
  border-color: #F5A800;
  color: #FFFFFF;
}
.cases-arrow--prev { left: 0; }
.cases-arrow--next { right: 0; }

.cases-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.cases-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2A2A2A;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cases-dot.is-active { background: #FFC200; transform: scale(1.2); }
.cases-dot:hover { background: #4A4A4A; }
.cases-dot.is-active:hover { background: #FFC200; }

@media (max-width: 1024px) {
  .cases-carousel { padding: 0 56px; }
}
@media (max-width: 768px) {
  .cases-carousel { padding: 0 0; }
  .cases-arrow--prev { left: 4px; }
  .cases-arrow--next { right: 4px; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }
.reveal-delay-7 { transition-delay: 560ms; }

.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.3,1); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.3,1); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* ========== Implementação ========== */
.impl { position: relative; background: #0A0A0A; padding: 100px 40px; overflow: hidden; }
.impl__inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.impl__label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #F5A800;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 16px;
}
.impl__title {
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1;
  color: #FFF;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.impl__sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #A0A0A0;
  max-width: 480px;
  margin: 0 0 32px;
}
.impl__checks { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 16px; }
.impl__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #FFF;
}
.impl__check-mark { color: #FFC200; font-weight: 700; flex-shrink: 0; }

.impl__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #F5A800 0%, #FFC200 100%);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  padding: 18px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(245,168,0,0.25);
}
.impl__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,168,0,0.4); }

/* Phone */
.impl__right { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.impl__phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.impl__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2A2A2A;
  background: rgba(0,0,0,0.4);
  color: #A0A0A0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  z-index: 3;
}
.impl__nav svg { width: 18px; height: 18px; }
.impl__nav:hover {
  border-color: #F5A800;
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(245,168,0,0.25);
}
.impl__phone {
  position: relative;
  width: 265px;
  height: 560px;
  border-radius: 38px;
  padding: 14px;
  background: linear-gradient(135deg, #F5A800 0%, #FFD84D 100%);
  box-shadow: 0 0 40px rgba(245,168,0,0.08);
  animation: implFloat 4s ease-in-out infinite;
}
@keyframes implFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.impl__phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 4px;
  background: #2A2A2A;
  border-radius: 10px;
  z-index: 2;
}
.impl__phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1A1A1A;
  border-radius: 26px;
  overflow: hidden;
}
.impl__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.impl__slide.is-active { opacity: 1; }
.impl__slide-icon { width: 72px; height: 72px; color: #2A2A2A; }
.impl__slide-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  text-align: center;
  padding: 0 24px;
}
.impl__dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.impl__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2A2A2A;
  transition: background 0.3s ease;
}
.impl__dot.is-active { background: #FFC200; }

/* Platforms carousel */
.impl__platforms-wrap { width: 100%; max-width: 720px; }
.impl__platforms-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #666;
  text-align: center;
  margin-bottom: 16px;
}
.impl__platforms { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%); }
.impl__platforms-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: implScroll 32s linear infinite;
}
@keyframes implScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
.impl__platform {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .impl__inner { grid-template-columns: 60% 40%; }
}
@media (max-width: 768px) {
  .impl { padding: 80px 20px; }
  .impl__inner { grid-template-columns: 1fr; gap: 48px; }
  .impl__phone { width: 180px; height: 380px; border-radius: 32px; }
  .impl__phone-screen { border-radius: 22px; }
  .impl__nav { width: 40px; height: 40px; }
  .impl__platform { font-size: 14px; }
}

/* ===== Section divider animation ===== */
.section-div {
  position: relative;
  height: 1px;
  background: transparent;
  overflow: hidden;
}
.section-div::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--y-2), transparent);
  transition: width 1500ms cubic-bezier(.2,.8,.3,1);
}
.section-div.in-view::before { width: 100%; }

/* ===== Card shine on hover ===== */
.p-card, .lever, .case-card, .t-card-v2 {
  position: relative;
  overflow: hidden;
}
.p-card::after, .lever::after, .case-card::after, .t-card-v2::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 800ms ease;
  pointer-events: none;
  z-index: 1;
}
.p-card:hover::after, .lever:hover::after, .case-card:hover::after, .t-card-v2:hover::after {
  left: 150%;
}

/* ===== Number glow pulse ===== */
.glow-pulse {
  animation: numGlow 3s ease-in-out infinite;
}
@keyframes numGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255,194,0,0.25)); }
  50% { filter: drop-shadow(0 0 36px rgba(255,194,0,0.6)); }
}

/* ===== Bastidores carousel ===== */
.bastidores {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.bastidores__head {
  text-align: center;
  margin-bottom: 56px;
}
.bastidores__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bast-track-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.bast-track {
  display: flex;
  gap: 0;
  animation: bastScroll 50s linear infinite;
  width: max-content;
  padding: 24px 0;
}
.bast-track-wrap:hover .bast-track { animation-play-state: paused; }
@keyframes bastScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.bast-card {
  flex: 0 0 auto;
  width: 460px;
  aspect-ratio: 16 / 9;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  margin-left: -20px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 320ms ease, border-color 320ms ease;
}
.bast-card:first-child { margin-left: 0; }
.bast-card:nth-child(odd) { z-index: 2; }
.bast-card:nth-child(even) { z-index: 1; }
.bast-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--y-2);
  z-index: 5;
}
.bast-card__ico {
  width: 36px; height: 36px;
  color: #555;
  margin-bottom: 14px;
}
.bast-card__lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666;
  text-align: center;
  padding: 0 16px;
}
.bast-card__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bastidores__caption {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
  font-style: italic;
}

/* ===== Testimonials Carousel ===== */
.t-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.t-stage {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.t-card-v2 {
  position: absolute;
  width: 480px;
  max-width: 90vw;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 500ms cubic-bezier(.2,.8,.3,1), opacity 500ms ease, filter 500ms ease;
  border-radius: 8px;
  overflow: hidden;
}
.t-card-v2.is-active {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: none;
}
.t-card-v2.is-prev {
  z-index: 2;
  transform: translateX(-58%) scale(0.85);
  opacity: 0.5;
  filter: blur(0.5px);
}
.t-card-v2.is-next {
  z-index: 2;
  transform: translateX(58%) scale(0.85);
  opacity: 0.5;
  filter: blur(0.5px);
}
.t-card-v2.is-hidden {
  z-index: 1;
  transform: scale(0.7);
  opacity: 0;
  pointer-events: none;
}
.t-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1A1A1A;
  border-bottom: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  cursor: pointer;
}
.t-video__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--y-grad);
  display: grid; place-items: center;
  color: #0A0A0A;
  box-shadow: 0 0 0 0 rgba(255,194,0,0.5);
  animation: playPulse 2.2s ease-in-out infinite;
  transition: transform 220ms;
}
.t-video:hover .t-video__play { transform: scale(1.1); }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,194,0,0.5); }
  50% { box-shadow: 0 0 0 18px rgba(255,194,0,0); }
}
.t-video__lbl {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #666;
  text-transform: uppercase;
}
.t-card-v2__body {
  padding: 32px 28px 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.t-card-v2__quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--y-2);
  height: 28px;
}
.t-card-v2__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  text-transform: none;
  color: var(--fg);
}
.t-card-v2__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-nav {
  display: flex; justify-content: space-between;
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 8px;
  z-index: 5;
}
.t-arrow {
  pointer-events: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--y-2);
  background: rgba(10,10,10,0.7);
  color: var(--y-2);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 240ms, color 240ms, transform 240ms;
}
.t-arrow:hover { background: var(--y-2); color: #0A0A0A; transform: scale(1.06); }
.t-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 0;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
  border: none;
  cursor: pointer;
  transition: background 220ms, transform 220ms;
}
.t-dot.active { background: var(--y-2); transform: scale(1.3); box-shadow: 0 0 8px var(--y-2); }
@media (max-width: 720px) {
  .t-card-v2.is-prev, .t-card-v2.is-next { opacity: 0; }
  .t-stage { height: 620px; }
  .t-arrow { width: 44px; height: 44px; }
}

/* ===== Case screenshot ===== */
.case-shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 4px;
  position: relative;
}
.case-shot__inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform 600ms ease;
}
.case-card:hover .case-shot__inner { transform: scale(1.05); }
.case-shot__ico { color: #555; width: 28px; height: 28px; }
.case-shot__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  text-align: center;
}

/* ===== Roadmap — flat horizontal layout ===== */
.roadmap {
  background: #0A0A0A;
  padding: 60px 0;
  position: relative;
}
.rm {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
/* Horizontal connector line — sits behind the markers, aligned with their centers (24px = half of 48px marker) */
.rm__line {
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #2A2A2A;
  z-index: 0;
}
/* Yellow progress fill overlaying the gray line */
.rm__line-fill {
  position: absolute;
  top: 24px;
  left: 12.5%;
  height: 2px;
  background: #FFC200;
  z-index: 0;
  width: 0%;
  max-width: 75%; /* end of line is at right:12.5%, so 100% - 12.5% - 12.5% = 75% of container */
  transition: width 0.5s ease;
}
.rm__col {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rm__marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFC200;
  background: #1A1A1A;
  color: #FFC200;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: all 0.5s ease;
}
.rm__col.is-active .rm__marker {
  border-color: #FFFFFF;
  background: #FFC200;
  color: #0A0A0A;
  box-shadow: 0 0 20px rgba(255, 194, 0, 0.3);
}
.rm__stem {
  width: 2px;
  height: 24px;
  background: #2A2A2A;
  margin: 0 auto;
}
.rm__icon {
  color: #666;
  font-size: 20px;
  filter: grayscale(1);
  opacity: 0.7;
  margin-bottom: 8px;
  transition: all 0.5s ease;
}
.rm__col.is-active .rm__icon {
  color: #FFC200;
  filter: grayscale(0);
  opacity: 1;
}
.rm__title {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  transition: color 0.5s ease;
}
.rm__col.is-active .rm__title {
  color: #FFC200;
}
.rm__body {
  color: #A0A0A0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 200px;
}
/* Finish flag at the end of the line, aligned to marker center */
.rm__flag {
  position: absolute;
  top: 16px;
  right: 0;
  width: 16px;
  height: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  border-radius: 2px;
  overflow: hidden;
  z-index: 2;
}
.rm__flag span { display: block; width: 100%; height: 100%; }

@media (max-width: 760px) {
  .rm {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    max-width: 360px;
  }
  .rm__line {
    top: 24px;
    bottom: 24px;
    left: calc(50% - 1px);
    right: auto;
    width: 2px;
    height: auto;
  }
  .rm__line-fill { display: none; }
  .rm__col {
    flex-direction: column;
  }
  .rm__flag {
    position: static;
    margin: 0 auto;
  }
}

/* ===== Conquistas — Bento Grid ===== */
.conquistas {
  background: #0A0A0A;
  padding: 80px 0;
}
.conquistas__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.conquistas__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #F5A800;
  margin-bottom: 16px;
}
.conquistas__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.conquistas__sub {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #A0A0A0;
  max-width: 600px;
  margin: 0 auto;
}

.bento {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento__row {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 16px;
  align-items: stretch;
}
.bento__row > .reveal { display: flex; height: 100%; }
.bento__row > .reveal > * { width: 100%; height: 100%; }
.bento__small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.bento__small > .reveal { display: flex; height: 100%; }
.bento__small > .reveal > * { width: 100%; height: 100%; }

.bento__card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  padding: 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.bento__card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 168, 0, 0.25);
  box-shadow: 0 20px 60px rgba(245, 168, 0, 0.06);
}
.bento__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

/* Shine sweep */
.bento__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
}
.bento__shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}
.bento__card:hover .bento__shine::after {
  left: 120%;
}

/* Big card */
.bento__card--big {
  padding: 40px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
}
.bento__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  background: #0E0E0E;
  position: relative;
}
.bento__badge::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #FFC200 0%, #F5A800 50%, #2A2A2A 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.bento__badge--trophy span {
  font-size: 42px;
  line-height: 1;
}
.bento__cardTitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.bento__cardDesc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #A0A0A0;
  margin: 0;
}

/* Small card */
.bento__card--sm {
  padding: 24px;
  border-radius: 12px;
  background: #1A1A1A;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 140px;
}
.bento__smLogo {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #666;
  line-height: 1;
}
.bento__smTitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Reveal wrappers stretch to grid cell */
.bento > .reveal { height: 100%; }
.bento > .reveal > * { height: 100%; }

@media (max-width: 1024px) {
  .bento__row { grid-template-columns: 1fr; }
  .bento__small { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento__card--big { min-height: 260px; }
}
@media (max-width: 640px) {
  .conquistas { padding: 80px 0; }
  .bento__small { grid-template-columns: 1fr; }
  .bento__card--big { padding: 28px; }
  .bento__card--sm { min-height: 100px; padding: 20px; }
}

/* ===== Parceria — argumento final ===== */
.parceria {
  background: #FFC200;
  padding: 100px 40px;
}
.parceria__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.parceria__rule {
  width: 200px;
  height: 1px;
  opacity: 0.2;
  background: #0A0A0A;
}
.parceria__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-align: center;
}
.parceria__title-em { color: #0A0A0A; font-weight: 900; font-style: italic; }
.parceria__body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -8px;
}
.parceria__title { color: #0A0A0A; }
.parceria__lead {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #0A0A0A;
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}
.parceria__yellow { color: #0A0A0A; font-weight: 800; }
.parceria__line {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: rgba(10,10,10,0.7);
  font-size: 18px;
  color: #A0A0A0;
  margin: 0;
  line-height: 1.5;
}
.parceria__white { color: #0A0A0A; font-weight: 700; }

@media (max-width: 640px) {
  .parceria { padding: 72px 24px; }
  .parceria__inner { gap: 28px; }
  .parceria__lead { font-size: 17px; }
  .parceria__line { font-size: 16px; }
}

/* override existing color rule from earlier .parceria__title block (color: #fff) */
.parceria .parceria__title { color: #0A0A0A; }
.parceria .parceria__lead { color: #0A0A0A; }
.parceria .parceria__line { color: rgba(10,10,10,0.7); }

/* ===== Especialistas — portrait carousel ===== */
.esp {
  padding: 80px 0;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}
.esp__head {
  text-align: center;
  margin-bottom: 56px;
}
.esp__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #F5A800;
  margin-bottom: 16px;
}
.esp__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.esp__viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.esp__track {
  display: flex;
  gap: 16px;
  animation: espScroll 60s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.esp__viewport:hover .esp__track { animation-play-state: paused; }
@keyframes espScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}
.esp__slide {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 3 / 4;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 320ms ease, border-color 320ms ease;
}
.esp__slide:first-child { border-color: #2A2A2A !important; }
.esp__slide:hover {
  transform: scale(1.03);
  border-color: rgba(245, 168, 0, 0.3);
}
.esp__slide-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 16px;
}
.esp__slide-inner svg {
  width: 36px;
  height: 36px;
  color: #333;
}
.esp__slide-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  text-align: center;
}
.esp__caption {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #666;
  margin-top: 24px;
}
.esp__caption-em {
  color: #FFC200;
  font-weight: 700;
}
@media (max-width: 768px) {
  .esp__slide { width: 200px; }
}

/* ===== Programa de Aceleração — funnel ===== */
.programa { background: #111111; font-family: "Montserrat", sans-serif; }
.programa * { font-family: "Montserrat", sans-serif !important; }
.programa__label {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #F5A800;
  text-align: center;
  margin-bottom: 16px;
}
.programa__title {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
}
.programa__sub {
  font-weight: 400;
  font-size: 18px;
  color: #A0A0A0;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px;
  line-height: 1.55;
}

.funnel-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.funnel-arrow {
  margin-top: 96px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #2A2A2A;
  background: rgba(0,0,0,0.4);
  color: #A0A0A0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  z-index: 4;
}
.funnel-arrow svg { width: 20px; height: 20px; }
.funnel-arrow:hover {
  border-color: #F5A800;
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(245,168,0,0.25);
}
.funnel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 0;
}
.funnel__cell {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.funnel__connector {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: -16px;
  height: 100%;
  width: 20px;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
  animation: funnelArrowPulse 2s ease-in-out infinite;
}
.funnel__connector svg { width: 20px; height: 20px; }
@keyframes funnelArrowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.funnel__chev {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  margin-right: -10px;
  opacity: 0.5;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.funnel__chev:last-child { margin-right: 0; }
.funnel__chev-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 22px 0 18px;
  width: 100%;
  height: 100%;
  text-align: center;
}
.funnel__chev-num {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,0.45);
  line-height: 1;
}
.funnel__chev-icon {
  width: 28px;
  height: 28px;
  color: #666666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.funnel__chev-icon svg { width: 28px; height: 28px; }
.funnel__chev-code {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  color: #0A0A0A;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.05;
}

/* progressive heights (inverted: 01 largest → 06 smallest) — uniform vivid yellow */
.funnel__chev--1 {
  height: 240px; width: 175px;
  background: #FFC200;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  opacity: 0.6;
}
.funnel__chev--2 {
  height: 220px; width: 175px;
  background: #FFC200;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  opacity: 0.6;
}
.funnel__chev--3 {
  height: 200px; width: 175px;
  background: #FFC200;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  opacity: 0.6;
}
.funnel__chev--4 {
  height: 180px; width: 175px;
  background: #FFC200;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  opacity: 0.6;
}
.funnel__chev--5 {
  height: 160px; width: 175px;
  background: #FFC200;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  opacity: 0.6;
}
.funnel__chev--6 {
  height: 140px; width: 175px;
  background: #FFC200;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  opacity: 0.6;
}
/* compensate inner padding for arrow notch on left */
.funnel__chev--2 .funnel__chev-inner,
.funnel__chev--3 .funnel__chev-inner,
.funnel__chev--4 .funnel__chev-inner,
.funnel__chev--5 .funnel__chev-inner,
.funnel__chev--6 .funnel__chev-inner {
  padding-left: 28px;
}

.funnel__chev:hover { filter: brightness(1.05); }
.funnel__chev.is-active {
  opacity: 1;
  filter: brightness(1.05);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245,168,0,0.3);
  z-index: 2;
}
.funnel__chev.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #FFFFFF;
  clip-path: inherit;
  pointer-events: none;
  opacity: 0.85;
}

/* progress bar */
.funnel__progress {
  position: relative;
  max-width: 1200px;
  margin: 18px auto 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.funnel__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #F5A800;
  animation: funnelProgress 4s linear forwards;
}
.funnel__progress-fill.is-paused {
  animation: none;
  width: 0;
}
@keyframes funnelProgress {
  from { width: 0; }
  to { width: 100%; }
}

.funnel__panel {
  margin: 32px auto 0;
  max-width: 1200px;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  animation: panelFade 0.3s ease;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.funnel__panel-tag {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F5A800;
  margin-bottom: 14px;
}
.funnel__panel-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.funnel__panel-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #A0A0A0;
  margin: 0;
}
.funnel__panel-tools-label {
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 14px;
}
.funnel__panel-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.funnel__tool {
  background: #0F0F0F;
  border: 1px solid #2A2A2A;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  color: #FFFFFF;
}

/* Closing copy */
.programa__close {
  text-align: center;
  max-width: 700px;
  margin: 64px auto 32px;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 1.45;
}
.programa__close-em {
  color: #FFC200;
  font-weight: 700;
}
.programa__close-sub {
  display: inline-block;
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #A0A0A0;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .funnel__chev--1, .funnel__chev--2, .funnel__chev--3,
  .funnel__chev--4, .funnel__chev--5, .funnel__chev--6 { width: 145px; }
  .funnel__chev-code { font-size: 14px; }
  .funnel__chev-icon { font-size: 22px; }
}
@media (max-width: 768px) {
  .funnel-wrap { flex-direction: column; gap: 12px; }
  .funnel-arrow { display: none; }
  .funnel {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
  .funnel__cell { display: block; width: 100%; max-width: 520px; }
  .funnel__chev {
    margin-right: 0;
    margin-bottom: 0;
    height: 70px !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), 50% 100%, 0 calc(100% - 18px)) !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .funnel__chev--1 { width: 100% !important; }
  .funnel__chev--2 { width: 92% !important; }
  .funnel__chev--3 { width: 84% !important; }
  .funnel__chev--4 { width: 76% !important; }
  .funnel__chev--5 { width: 68% !important; }
  .funnel__chev--6 { width: 60% !important; }
  .funnel__chev-inner {
    flex-direction: row;
    gap: 14px;
    padding: 0 18px 18px !important;
    justify-content: center;
    align-items: flex-start;
  }
  /* Connectors point down on mobile */
  .funnel__connector {
    position: static;
    display: flex;
    margin: 6px auto 0;
    transform: rotate(90deg);
  }
  .funnel__panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}
.founder-grid-v2 {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 56px;
  align-items: center;
}
.founder-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 140px 140px 140px;
  gap: 8px;
  width: 100%;
}
.founder-mosaic__cell {
  position: relative;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.founder-mosaic__cell:hover {
  transform: scale(1.03);
  border-color: #3A3A3A;
  z-index: 2;
}
.founder-mosaic__big {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  background:
    linear-gradient(135deg, rgba(245,168,0,0.15), rgba(255,194,0,0.08)) padding-box,
    linear-gradient(135deg, #F5A800, #FFD84D) border-box;
  border: 1px solid transparent;
}
.founder-mosaic__big::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1A1A1A;
  border-radius: 7px;
  z-index: 0;
}
.founder-mosaic__med-1 { grid-column: 3; grid-row: 1; }
.founder-mosaic__med-2 { grid-column: 3; grid-row: 2; }
.founder-mosaic__small-1 { grid-column: 1; grid-row: 3; }
.founder-mosaic__small-2 { grid-column: 2 / span 2; grid-row: 3; }

.founder-mosaic__icon {
  width: 30px;
  height: 30px;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}
.founder-mosaic__big .founder-mosaic__icon { width: 48px; height: 48px; }
.founder-mosaic__label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  z-index: 1;
}
.founder-mosaic__big .founder-mosaic__label { font-size: 11px; color: #777; }

/* Right column overrides */
.founder-grid-v2 .founder-name {
  font-size: clamp(48px, 6vw, 80px);
  margin: 14px 0 6px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.founder-grid-v2 .founder-role {
  color: #FFC200;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.founder-grid-v2 .founder-bio {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 18px;
}

.founder-quote-v2 {
  margin: 24px 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid #FFC200;
  font-family: "Bebas Neue", "Barlow Condensed", "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #FFC200;
  text-transform: uppercase;
}

.founder-badges-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 24px;
}
.founder-badge-v2 {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.founder-brands { margin-top: 24px; }
.founder-brands__label {
  font-family: var(--font-body);
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.founder-brands__row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.founder-brands__item {
  font-family: "Barlow Condensed", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}

.founder-linkedin {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #A0A0A0;
}
.founder-linkedin svg { width: 18px; height: 18px; flex-shrink: 0; }
.founder-linkedin__num { color: #FFC200; font-weight: 700; }

.founder-cta-wrap { margin-top: 32px; }

@media (max-width: 1024px) {
  .founder-grid-v2 { grid-template-columns: 50% 50%; gap: 40px; }
  .founder-mosaic { grid-template-rows: 110px 110px 110px; }
}
@media (max-width: 768px) {
  .founder-grid-v2 { grid-template-columns: 1fr; gap: 40px; }
  .founder-mosaic { grid-template-rows: 110px 110px 110px; }
  .founder-quote-v2 { font-size: 24px; }
}
.founder-photo-wrap { position: relative; }
.founder-speedlines {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: -1;
}
.founder-quote {
  margin-top: 32px;
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--y-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  color: var(--y-2);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
}
.founder-quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 0.4;
  color: var(--y-2);
  opacity: 0.4;
  margin-right: 8px;
  vertical-align: -10px;
}

/* ===== Footer logo strip ===== */
.footer-strip {
  height: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  display: flex; align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.footer-strip .marquee__track { animation-duration: 50s; }
.footer-strip .marquee__logo { font-size: 18px; }

/* social bounce */
.footer__social a { transition: border-color 220ms, color 220ms, transform 280ms cubic-bezier(.34, 1.56, .64, 1); }
.footer__social a:hover { transform: translateY(-3px); }

/* Live data dot (hero dashboard) */
.live-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 8px #25D366;
  opacity: 0;
  animation: liveDot 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes liveDot {
  0% { opacity: 0; transform: scale(0); }
  40% { opacity: 1; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(0.8); }
}

/* ========== Bastidores ========== */
.bts { padding: 100px 0 60px; position: relative; overflow: hidden; }
.bts__head { text-align: center; margin-bottom: 56px; }
.bts__title { font-size: clamp(36px, 5vw, 64px); font-weight: 900; }
.bts__viewport { width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; padding: 24px 0; }
.bts__track { display: flex; gap: 0; width: max-content; animation: btsScroll 50s linear infinite; }
.bts:hover .bts__track { animation-play-state: paused; }
@keyframes btsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bts__slide { position: relative; flex: 0 0 auto; width: 480px; aspect-ratio: 16/9; margin-left: -20px; background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 8px; overflow: hidden; display: grid; place-items: center; transition: transform 320ms ease, border-color 320ms ease; }
.bts__slide:first-child { margin-left: 24px; }
.bts__slide:hover { transform: translateY(-4px); border-color: var(--y-2); z-index: 10; }
.bts__slide-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; color: #666; }
.bts__slide-inner svg { width: 32px; height: 32px; opacity: 0.6; }
.bts__slide-label { font-family: var(--font-display); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: #666; }
.bts__caption { margin-top: 32px; text-align: center; font-size: 14px; color: #666; }
@media (max-width: 720px) { .bts__slide { width: 320px; } }

/* Card shine */
.p-card, .lever, .case-card { overflow: hidden; }
.p-card::after, .lever::after, .case-card::after { content: ""; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); pointer-events: none; transition: left 0.8s ease; z-index: 1; }
.p-card:hover::after, .lever:hover::after, .case-card:hover::after { left: 130%; }

/* Case screenshot */
.case-screenshot { position: relative; width: 100%; max-height: 150px; aspect-ratio: 16/10; background: #1A1A1A; border: 1px solid #2A2A2A; border-radius: 8px; overflow: hidden; display: grid; place-items: center; margin-bottom: 8px; color: #666; }
.case-screenshot__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform 0.5s ease; }
.case-card:hover .case-screenshot__inner { transform: scale(1.05); }
.case-screenshot__inner svg { width: 28px; height: 28px; opacity: 0.5; }
.case-screenshot__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

/* Founder quote */
.founder-speed { position: absolute; inset: -40px; pointer-events: none; opacity: 0.35; z-index: -1; }
.founder-quote { margin: 28px 0 32px; padding: 14px 0 14px 22px; border-left: 3px solid var(--y-2); font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1.15; color: var(--y-2); text-transform: uppercase; letter-spacing: -0.01em; position: relative; }

/* Footer strip */
.footer-strip { height: 60px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-1); display: flex; align-items: center; overflow: hidden; }
.footer-strip .marquee__track { animation-duration: 50s; }
.footer-strip .marquee__logo { font-size: 18px; }
.footer__social a { transition: border-color 200ms, color 200ms, transform 280ms cubic-bezier(.34,1.56,.64,1); }
.footer__social a:hover { transform: translateY(-3px); }

/* Testimonials carousel */
.tcar { position: relative; margin: 0 auto; max-width: 1100px; }
.tcar__viewport { position: relative; min-height: 540px; padding: 20px 0; }
.tcar__slide { position: absolute; left: 50%; top: 20px; width: min(560px, 86vw); transform: translateX(-50%) scale(0.85); opacity: 0; pointer-events: none; transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease; filter: blur(2px); }
.tcar__slide.is-prev { opacity: 0.5; transform: translateX(calc(-50% - 360px)) scale(0.85); pointer-events: auto; filter: blur(0); }
.tcar__slide.is-next { opacity: 0.5; transform: translateX(calc(-50% + 360px)) scale(0.85); pointer-events: auto; filter: blur(0); }
.tcar__slide.is-active { opacity: 1; transform: translateX(-50%) scale(1); pointer-events: auto; filter: none; z-index: 5; }
.tcar__card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.tcar__slide.is-active .tcar__card { border-color: rgba(255,194,0,0.4); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 60px -20px rgba(255,194,0,0.3); }
.tcar__video { position: relative; width: 100%; aspect-ratio: 16/9; background: #1A1A1A; border-bottom: 1px solid var(--line); display: grid; place-items: center; cursor: pointer; }
.tcar__play { width: 60px; height: 60px; border-radius: 50%; background: var(--y-2); color: #0A0A0A; display: grid; place-items: center; animation: playPulse 2s ease-in-out infinite; transition: transform 0.3s ease; }
.tcar__video:hover .tcar__play { transform: scale(1.1); }
@keyframes playPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,194,0,0.5); } 50% { box-shadow: 0 0 0 18px rgba(255,194,0,0); } }
.tcar__body { padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; }
.tcar__quote-mark { font-family: var(--font-display); font-size: 64px; line-height: 0.6; color: var(--y-2); height: 24px; }
.tcar__text { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.45; color: var(--fg); }
.tcar__author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.tcar__nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--y-2); background: rgba(10,10,10,0.6); color: var(--y-2); display: grid; place-items: center; z-index: 20; transition: background 200ms, color 200ms, transform 200ms; cursor: pointer; }
.tcar__nav-btn:hover { background: var(--y-2); color: #0A0A0A; transform: translateY(-50%) scale(1.06); }
.tcar__nav-btn--prev { left: 8px; }
.tcar__nav-btn--next { right: 8px; }
.tcar__dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.tcar__dot { width: 8px; height: 8px; border-radius: 50%; background: #2A2A2A; border: none; transition: all 200ms; cursor: pointer; }
.tcar__dot.is-active { background: var(--y-2); width: 24px; border-radius: 4px; }
@media (max-width: 720px) { .tcar__slide.is-prev, .tcar__slide.is-next { display: none; } .tcar__viewport { min-height: 480px; } }

/* tiny utilities */
.center { text-align: center; }
.muted { color: var(--fg-dim); }
.spacer-sm { height: 32px; } .spacer-md { height: 64px; } .spacer-lg { height: 96px; }

/* ========== Cockpit (Dobra 3 — alavancas) ========== */
.cockpit-wrap { margin-top: 56px; }
.cockpit-intro { text-align: center; margin: 0 auto; max-width: 760px; }
.cockpit-intro__l1 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: #fff; line-height: 1.35; }
.cockpit-intro__l2 { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 16px; color: #A0A0A0; line-height: 1.5; }
.acc-y { color: #FFC200; }

.cockpit { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 40px auto 0; }
.cockpit__circuit { position: absolute; left: 6%; right: 6%; top: 76px; height: 2px; background: #2A2A2A; pointer-events: none; overflow: hidden; z-index: 0; }
.cockpit__pulse { position: absolute; top: 0; left: -10%; width: 60px; height: 2px; background: linear-gradient(90deg, rgba(255,194,0,0) 0%, rgba(255,194,0,0.7) 50%, rgba(255,194,0,0) 100%); filter: drop-shadow(0 0 6px rgba(255,194,0,0.6)); animation: cockpit-pulse 4s linear infinite; }
@keyframes cockpit-pulse { 0% { left: -10%; } 100% { left: 110%; } }

.cockpit__card { position: relative; z-index: 1; background: #111111; border: 1px solid #2A2A2A; border-radius: 12px; padding: 28px 20px; text-align: center; transition: all 0.3s ease; }
.cockpit__card:hover { border-color: rgba(245, 168, 0, 0.3); box-shadow: 0 0 24px rgba(255, 194, 0, 0.08); }

.cockpit__gauge { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto; display: grid; place-items: center; position: relative; }
.cockpit__gauge-inner { width: 54px; height: 54px; border-radius: 50%; background: #111111; }

.cockpit__label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: #666; margin-top: 16px; font-family: 'Montserrat', sans-serif; font-weight: 500; }
.cockpit__title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; color: #fff; margin: 8px 0 0; line-height: 1.25; }
.cockpit__rule { width: 60%; height: 1px; background: #2A2A2A; margin: 16px auto; }
.cockpit__desc { font-size: 13px; color: #A0A0A0; line-height: 1.6; margin: 0; }

.cockpit-tease { text-align: center; margin: 40px auto 0; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 20px; color: #fff; max-width: 760px; line-height: 1.35; }

@media (max-width: 900px) { .cockpit { grid-template-columns: 1fr 1fr; gap: 16px; } .cockpit__circuit { display: none; } }
@media (max-width: 480px) { .cockpit__title { font-size: 16px; } .cockpit-intro__l1 { font-size: 18px; } .cockpit-tease { font-size: 18px; } }


/* ========== WordPress template isolation helpers ========== */
body.allomni-template {
  margin: 0;
  background: var(--bg-0);
}
body.admin-bar .header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
}
#allomni-root {
  min-height: 100vh;
  background: var(--bg-0);
  color: var(--fg);
}
