/* ——— Tokens ——— */
:root {
  --bg: #F5F3EE;
  --bg-soft: #EDEAE3;
  --fg: #1a1a1a;
  --fg-soft: #3F3F3F;
  --muted: #6B7069;
  --muted-2: #9B9E97;
  --border: rgba(26,26,26,0.10);
  --border-2: rgba(26,26,26,0.18);
  --accent: #2FB380;
  --accent-deep: #1F8A61;
  --lime: #CCFF3A;
  --dark: #0E1411;
  --dark-2: #141A16;
  --dark-3: #1C2420;
  --dark-border: rgba(255,255,255,0.08);
  --dark-border-2: rgba(255,255,255,0.14);
  --dark-fg: #F2F0EA;
  --dark-muted: #7E857E;
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ——— Type helpers ——— */
.accent-word { color: var(--accent); font-style: normal; }
.accent-italic { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; color: var(--fg-soft); }
.accent-lime { color: var(--lime); }

/* ——— Nav ——— */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: rgba(245,243,238,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.nav--transparent {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Light nav: white text on dark/video backgrounds */
.nav--light:not(.nav--transparent) {
  background: rgba(14,20,17,0.82);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav--light .nav__link { color: rgba(255,255,255,0.78); }
.nav--light .nav__link:hover { color: #fff; }
.btn--primary-light {
  background: #3ca66f;
  color: #ffffff;
}
.btn--primary-light:hover { background: #2f8458; transform: translateY(-1px); }
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }
.nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 18px 40px;
  display: flex; align-items: center; gap: 40px;
}
.nav__logo { height: 22px; }
.nav--light .nav__logo { height: 15px; }
.nav__links { display: flex; gap: 34px; flex: 1; }
.nav__link {
  font-size: 13.5px; color: var(--fg-soft); font-weight: 500;
  letter-spacing: -0.005em;
}
.nav__link:hover { color: var(--fg); }
.nav__right { display: flex; gap: 10px; align-items: center; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary { background: var(--fg); color: #fff; }
.btn--primary:hover { background: #000; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--border-2); }
.btn--ghost:hover { background: rgba(26,26,26,0.05); }
.btn--ghost-dark { background: transparent; color: var(--dark-fg); border-color: var(--dark-border-2); }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.05); }
.btn--lime { background: var(--lime); color: var(--dark); }
.btn--lime:hover { background: #d8ff5a; transform: translateY(-1px); }
.btn--link {
  background: transparent; color: var(--fg);
  padding: 8px 0; font-weight: 500;
  border-bottom: 1px solid var(--fg); border-radius: 0;
}
.btn--lg { padding: 16px 26px; font-size: 14.5px; }

/* ——— Back to top button ——— */
.totop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--dark-fg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
  z-index: 50;
}
.totop--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.totop:hover { background: var(--accent); color: #fff; }

/* ——— Section base ——— */
.section { padding: 120px 0; position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.section--dark { background: var(--dark); color: var(--dark-fg); }

.section__head { max-width: 880px; margin-bottom: 72px; }
.section__head--dark { color: var(--dark-fg); }
.section__label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.section__label--dark { color: var(--dark-muted); }
.section__label-num {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid currentColor;
  border-radius: 100px;
  opacity: 0.7;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.032em;
  font-weight: 500;
  margin: 0;
  color: var(--fg);
  text-wrap: pretty;
}
.section__title--dark { color: var(--dark-fg); }
.section__title--lg { font-size: clamp(44px, 5.2vw, 76px); }

/* ——— HERO base ——— */
.hero { padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
  min-height: calc(100vh - 200px);
}
.hero__left { max-width: 560px; }
.hero__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.hero__label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47,179,128,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.034em;
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--fg);
}
.hero__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0 0 40px;
  max-width: 460px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__meta {
  display: flex; align-items: flex-start; gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hero__meta-label {
  font-size: 11.5px; color: var(--muted); line-height: 1.35;
  font-weight: 450;
}
.hero__meta-divider { width: 1px; align-self: stretch; background: var(--border); }

.hero__right { position: relative; height: 620px; }
.globe-wrap { position: absolute; inset: 0; }
.globe-caption {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(245,243,238,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.globe-caption__pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47,179,128,0.2);
  animation: pulse 2s ease-in-out infinite;
}

/* ——— HERO · CONSERVADOR (mockup-matched) ——— */
.hero--conservador {
  position: relative;
  padding: 0;
  min-height: 100vh;
  background: #EDEAE3;
  overflow: hidden;
}
.hero-c__media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  z-index: 1;
  transition: opacity 0.15s linear, transform 0.3s ease-out;
  transform-origin: center right;
}
.hero--conservador-reveal .hero-c__media {
  will-change: opacity, transform;
}
.hero-c__media::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 260px;
  background: linear-gradient(90deg, #EDEAE3 0%, rgba(237,234,227,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-c__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-c__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-c__inner {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  display: grid;
  grid-template-columns: minmax(480px, 1fr) auto;
  gap: 40px;
  min-height: 100vh;
  align-content: center;
}
.hero-c__left { max-width: 560px; padding-top: 10px; position: relative; isolation: isolate; }
.hero--conservador .hero-c__left::before {
  content: '';
  position: absolute;
  left: -15%;
  right: -35%;
  top: -12%;
  bottom: -15%;
  background: radial-gradient(ellipse 70% 60% at 38% 55%, rgba(252,246,228,0.85) 0%, rgba(250,242,218,0.55) 25%, rgba(248,238,210,0.25) 55%, rgba(248,238,210,0) 78%);
  pointer-events: none;
  z-index: -1;
  filter: blur(45px);
}
.hero-c__label {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-c__headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 6.4vw, 81px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 28px;
  color: var(--fg);
}
.hero-c__headline .accent-word { color: #209773; }
.hero-c__sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0 0 36px;
  max-width: 50%;
}
.hero-c__ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 64px; flex-wrap: wrap; }
.btn--pill { padding: 15px 22px; }
.btn__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.hero-c__play {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--fg); font-weight: 500;
  cursor: pointer;
}
.hero-c__play-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg);
}

.hero-c__module {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 320px;
}
.hero-c__module-thumb {
  width: 58px; height: 58px; border-radius: 50%;
  background-image: url('assets/hero-tree-2.png');
  background-size: cover; background-position: 60% 50%;
  position: relative; flex-shrink: 0;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border);
}
.hero-c__module-play {
  position: absolute; inset: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(26,26,26,0.2);
  border-radius: 50%;
}
.hero-c__module-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: var(--fg); margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.hero-c__module-desc {
  font-size: 11.5px; line-height: 1.4;
  color: var(--muted);
}

.hero-c__right {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 28px;
  padding-top: 20px;
}
.hero-c__pagination {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero-c__pag-active { color: var(--fg); font-weight: 500; }
.hero-c__pag-rail {
  width: 1px; height: 40px;
  background: rgba(26,26,26,0.15);
  position: relative;
}
.hero-c__pag-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%; background: var(--fg);
}
.hero-c__pag-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(26,26,26,0.2);
}
.hero-c__pag-dot--on { background: var(--fg); }
.hero-c__pag-last { color: var(--muted); margin-top: 4px; }

.hero-c__card {
  width: 240px;
  padding: 22px 22px 20px;
  background: rgba(245,243,238,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  position: relative;
}
.hero-c__card-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-deep);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: absolute;
  top: -18px; left: 22px;
  box-shadow: 0 4px 14px rgba(31,138,97,0.3);
}
.hero-c__card-text {
  font-family: var(--font-display);
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--fg);
  margin-top: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  font-weight: 450;
}
.hero-c__card-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(26,26,26,0.06);
  border-radius: 100px;
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
}
.hero-c__card-link:hover { background: rgba(26,26,26,0.1); }

.hero-c__stats {
  position: absolute;
  left: 40px; right: 40px; bottom: 28px;
  z-index: 4;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 32px;
  background: rgba(245,243,238,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.hero-c__stat {
  display: flex; align-items: center; gap: 16px;
}
.hero-c__stat-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-soft);
  flex-shrink: 0;
}
.hero-c__stat-v {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-c__stat-l {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--muted);
}
.hero-c__stat-sep {
  width: 1px; height: 34px;
  background: rgba(26,26,26,0.12);
}

@media (max-width: 900px) {
  .hero-c__media { width: 55%; opacity: 0.4; }
  .hero-c__inner { grid-template-columns: 1fr; }
  .hero-c__right { display: none; }
  .hero-c__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    left: auto; right: auto; bottom: auto;
    margin: 40px 20px 0;
  }
  .hero-c__stat-sep { display: none; }
}

/* ——— HERO · EDITORIAL ——— */
.hero--editorial { padding: 100px 0 80px; }
.hero__inner--editorial { display: block; padding: 0 40px; }
.hero-ed__kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0;
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.hero-ed__kicker-sep { color: var(--border-2); }
.hero-ed__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 56px;
  align-items: start;
}
.hero-ed__display { grid-column: 1; grid-row: 1 / 3; }
.hero-ed__headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0;
  color: var(--fg);
}
.hero-ed__globe {
  grid-column: 2; grid-row: 1;
  height: 380px; position: relative;
}
.hero-ed__aside {
  grid-column: 2; grid-row: 2;
  max-width: 420px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
}
.hero-ed__aside-num {
  position: absolute;
  top: -8px; right: 0;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  background: var(--bg);
  padding: 0 8px;
}
.hero-ed__aside-text {
  font-size: 16px; line-height: 1.55;
  color: var(--fg-soft); margin: 0 0 24px;
}
.hero-ed__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-ed__footline {
  display: flex; align-items: center; gap: 14px;
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-ed__dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

/* ——— HERO · TECHY ——— */
.hero--techy { background: var(--dark); color: var(--dark-fg); padding: 120px 0 80px; }
.hero__inner--techy {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; min-height: calc(100vh - 200px);
}
.hero-tx__left { max-width: 620px; }
.hero-tx__chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border-2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-fg);
  margin-bottom: 32px;
}
.hero-tx__chip-led {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero-tx__chip-sep { color: var(--dark-border-2); }
.hero-tx__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--dark-fg);
}
.hero-tx__headline .accent-word { color: var(--accent); }
.hero-tx__sub {
  font-size: 16.5px; line-height: 1.55;
  color: var(--dark-muted); margin: 0 0 32px;
  max-width: 480px;
}
.hero-tx__terminal {
  background: #0A0F0C;
  border: 1px solid var(--dark-border-2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.hero-tx__terminal-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #141A16;
  border-bottom: 1px solid var(--dark-border);
}
.hero-tx__term-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-tx__term-title {
  margin-left: 12px;
  font-size: 11px; color: var(--dark-muted);
}
.hero-tx__terminal-body {
  padding: 16px;
  font-size: 12.5px; line-height: 1.7;
  min-height: 180px;
}
.hero-tx__term-line { display: flex; gap: 10px; align-items: center; }
.hero-tx__term-prompt { color: var(--accent); }
.hero-tx__term-ok { color: var(--accent); font-weight: 600; }
.hero-tx__term-text { color: var(--dark-fg); }
.hero-tx__term-muted { color: var(--dark-muted); }
.hero-tx__term-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: var(--accent); margin-left: 2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-tx__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-tx__right { position: relative; height: 640px; }
.hero-tx__globe-frame {
  position: absolute; inset: 0;
  border: 1px solid var(--dark-border);
  background: radial-gradient(circle at 50% 50%, rgba(47,179,128,0.04) 0%, transparent 60%);
}
.hero-tx__corner {
  position: absolute; width: 14px; height: 14px;
  border-color: var(--accent);
}
.hero-tx__corner--tl { top: -1px; left: -1px; border-top: 1.5px solid; border-left: 1.5px solid; }
.hero-tx__corner--tr { top: -1px; right: -1px; border-top: 1.5px solid; border-right: 1.5px solid; }
.hero-tx__corner--bl { bottom: -1px; left: -1px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.hero-tx__corner--br { bottom: -1px; right: -1px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.hero-tx__hud {
  position: absolute;
  padding: 10px 14px;
  background: rgba(14,20,17,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--dark-border-2);
  font-family: var(--font-display);
}
.hero-tx__hud--tl { top: 20px; left: 20px; }
.hero-tx__hud--tr { top: 20px; right: 20px; text-align: right; }
.hero-tx__hud--bl { bottom: 20px; left: 20px; }
.hero-tx__hud--br { bottom: 20px; right: 20px; text-align: right; }
.hero-tx__hud-k {
  font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dark-muted);
  margin-bottom: 3px;
}
.hero-tx__hud-v {
  font-size: 14px; color: var(--dark-fg);
  display: flex; align-items: center; gap: 6px;
  justify-content: inherit;
}
.hero-tx__hud--tr .hero-tx__hud-v, .hero-tx__hud--br .hero-tx__hud-v { justify-content: flex-end; }
.hero-tx__hud-led {
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}
/* On techy, globe canvas needs different colors — use overlay blend */
.hero--techy canvas { filter: invert(1) hue-rotate(180deg); opacity: 0.92; }

/* ——— Section: Problema ——— */
.problema__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.problema__card {
  padding: 36px 30px 40px;
  background: var(--bg);
  transition: background 0.3s;
}
.problema__card:hover { background: var(--bg-soft); }
.problema__card-num {
  font-family: var(--font-display);
  font-size: 12px; color: var(--accent);
  letter-spacing: 0.1em; margin-bottom: 36px;
}
.problema__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--fg);
}
.problema__card-desc {
  font-size: 14px; line-height: 1.55;
  color: var(--muted);
}

/* ——— Posicionamento ——— */
.posicionamento__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: start;
}
.posicionamento__lede {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.posicionamento__body {
  font-size: 15.5px; line-height: 1.6;
  color: var(--fg-soft);
  margin: 0 0 40px;
  max-width: 480px;
}
.posicionamento__marks { display: flex; flex-direction: column; gap: 14px; }
.posicionamento__mark {
  display: flex; gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.posicionamento__mark-k {
  font-family: var(--font-display);
  font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  min-width: 90px;
}
.posicionamento__mark-v {
  font-size: 14.5px; color: var(--fg);
  font-weight: 500;
}

/* ——— Pilares ——— */
.pilares__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pilar {
  padding: 40px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pilar::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1);
}
.pilar:hover { background: var(--bg); transform: translateY(-4px); }
.pilar:hover::before { transform: scaleX(1); }
.pilar__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 40px;
}
.pilar__icon {
  width: 44px; height: 44px;
  color: var(--accent);
}
.pilar__icon svg { width: 100%; height: 100%; }
.pilar__num {
  font-family: var(--font-display);
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.08em;
}
.pilar__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px; color: var(--fg);
}
.pilar__desc {
  font-size: 14px; line-height: 1.55;
  color: var(--muted);
}

/* ——— Bridge (dark) ——— */
.section--bridge .section__head { max-width: 720px; }
.bridge__lede {
  font-size: 16px; color: var(--dark-muted);
  line-height: 1.55; margin: 28px 0 0;
  max-width: 520px;
}
.bridge__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 60px 0 20px;
}
.bridge__rail {
  position: absolute;
  top: 60px;
  left: 9px;
  right: calc(20% + 9px);
  height: 1px;
  background: rgb(253 227 0 / 50%);
}
.bridge__rail-fill {
  position: absolute;
  top: 60px;
  left: calc(40% + 9px);
  width: 40%;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.bridge__step {
  position: relative;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bridge__dot {
  width: 18px; height: 18px;
  border: 1px solid var(--dark-border-2);
  background: var(--dark);
  border-radius: 50%;
  margin: 0 0 30px 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.bridge__dot-inner {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--dark-muted);
}
.bridge__step--accent .bridge__dot {
  border-color: var(--accent);
  background: rgba(47,179,128,0.15);
  box-shadow: 0 0 0 4px rgba(47,179,128,0.1), 0 0 16px rgba(47,179,128,0.5);
}
.bridge__step--accent .bridge__dot-inner { background: var(--accent); }

/* Pre-Traceply steps (01, 02): yellow */
.bridge__step--pre .bridge__dot {
  border-color: rgb(253 227 0 / 50%);
  background: rgba(253, 227, 0, 0.08);
}
.bridge__step--pre .bridge__dot-inner { background: rgb(253 227 0 / 50%); }
.bridge__num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--dark-muted);
  margin-bottom: 8px;
}
.bridge__step--accent .bridge__num { color: var(--accent); }
.bridge__step-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--dark-fg);
  margin-bottom: 10px;
}
.bridge__step-desc {
  font-size: 13.5px; line-height: 1.55;
  color: var(--dark-muted);
  max-width: 200px;
}
.bridge__tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 5px 10px;
  background: rgba(47,179,128,0.1);
  border: 1px solid rgba(47,179,128,0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.bridge__tag-led {
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
}
.bridge__tag--top {
  position: absolute;
  top: -40px;
  left: -32px;
  margin: 0;
  z-index: 3;
}

/* ——— Traceply (dark) ——— */
.traceply__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.traceply__logo { height: 24px; margin: 24px 0 28px; }
.traceply__logo img { height: 100%; width: auto; }
.section--traceply .section__title--dark .accent-lime { color: var(--lime); }
.traceply__body {
  font-size: 16px; line-height: 1.6;
  color: var(--dark-muted);
  margin: 24px 0 36px;
  max-width: 480px;
}
.traceply__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.traceply__viz {
  background: var(--dark-2);
  border: 1px solid var(--dark-border-2);
  border-radius: 8px;
  padding: 24px;
  position: relative;
}
.traceply__viz-top { display: flex; gap: 8px; margin-bottom: 24px; }
.traceply__viz-tab {
  padding: 7px 12px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-muted);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  display: flex; align-items: center; gap: 8px;
}
.traceply__viz-tab--active {
  color: var(--lime);
  border-color: rgba(204,255,58,0.4);
  background: rgba(204,255,58,0.08);
}
.traceply__viz-led {
  width: 6px; height: 6px; background: var(--lime); border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 1.8s ease-in-out infinite;
}
.traceply__viz-stat {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 20px;
}
.traceply__viz-stat-k {
  font-family: var(--font-display);
  font-size: 11px; color: var(--dark-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.traceply__viz-stat-v {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--dark-fg);
  display: flex; align-items: baseline; gap: 12px;
}
.traceply__viz-stat-delta {
  font-size: 13px; color: var(--lime);
  letter-spacing: 0;
}
.traceply__viz-bars {
  display: flex; align-items: flex-end;
  gap: 3px; height: 90px; margin-bottom: 24px;
}
.traceply__viz-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--lime) 0%, rgba(204,255,58,0.3) 100%);
  min-height: 10%;
  border-radius: 1px;
}
.traceply__viz-rows { display: flex; flex-direction: column; gap: 10px; }
.traceply__viz-row {
  display: grid; grid-template-columns: 60px 1fr 90px;
  gap: 12px; align-items: center;
}
.traceply__viz-row-node {
  font-family: var(--font-display);
  font-size: 12px; color: var(--dark-fg);
  letter-spacing: 0.05em;
}
.traceply__viz-row-bar {
  height: 4px; background: var(--dark-border);
  border-radius: 2px; overflow: hidden;
}
.traceply__viz-row-fill { height: 100%; border-radius: 2px; }
.traceply__viz-row-fill--ok { background: var(--lime); }
.traceply__viz-row-fill--warn { background: #F5C14E; }
.traceply__viz-row-status {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.12em;
  text-align: right;
}
.traceply__viz-row-status--ok { color: var(--lime); }
.traceply__viz-row-status--warn { color: #F5C14E; }

/* ——— Impacto ——— */
.impacto__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.impacto__card {
  padding: 44px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr;
  column-gap: 40px;
}
.impacto__card-k {
  grid-column: 1; grid-row: 1;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.impacto__card-t {
  grid-column: 1; grid-row: 2;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.15;
}
.impacto__card-d {
  grid-column: 1; grid-row: 3;
  font-size: 14.5px; line-height: 1.55;
  color: var(--muted); max-width: 340px;
}
.impacto__card-metric {
  grid-column: 2; grid-row: 1 / 4;
  text-align: right;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border);
  padding-left: 32px;
  align-self: stretch;
}
.impacto__card-metric-v {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.impacto__card-metric-l {
  font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.02em; margin-top: 4px;
  max-width: 120px; margin-left: auto;
  line-height: 1.3;
}

/* ——— Proof ——— */
.proof__logos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 80px;
}
.proof__logo {
  display: flex; align-items: center; justify-content: center;
  padding: 36px 28px;
  background: var(--bg);
  min-height: 120px;
  transition: background 0.2s;
}
.proof__logo img {
  max-width: 160px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
}
.proof__logo:hover { background: var(--bg-soft); }
.proof__logo:hover img { opacity: 1; filter: grayscale(0); }

.proof__logo--cta {
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--fg-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.proof__logo-plus {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: color 0.2s;
}
.proof__logo-cta-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.proof__logo--cta:hover { background: var(--accent); }
.proof__logo--cta:hover .proof__logo-plus,
.proof__logo--cta:hover .proof__logo-cta-text { color: #fff; }
.proof__case {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 60px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  align-items: center;
  margin-bottom: 60px;
}
.proof__case-chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--fg); color: var(--bg);
  font-family: var(--font-display);
  font-size: 10.5px; letter-spacing: 0.14em;
  border-radius: 100px;
  margin-bottom: 24px;
}
.proof__case-company {
  font-family: var(--font-display);
  font-size: 14px; color: var(--muted);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.proof__case-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.proof__case-body {
  font-size: 15px; line-height: 1.6;
  color: var(--fg-soft);
  margin: 0 0 32px;
}
.proof__case-stats {
  display: flex; gap: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.proof__case-stat-v {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.proof__case-stat-l {
  font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.02em;
}

.proof__case-viz {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
}
.proof__case-viz-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.proof__case-viz-flow {
  display: flex; justify-content: space-between;
  align-items: center; height: 140px;
  position: relative;
}
.proof__case-viz-flow::before {
  content: ''; position: absolute;
  top: 50%; left: 10px; right: 10px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 4px, transparent 4px 8px);
}
.proof__case-col {
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative; z-index: 1;
}
.proof__case-node {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(47,179,128,0.18);
  opacity: 0.7;
}
.proof__case-node--end { opacity: 1; box-shadow: 0 0 0 4px rgba(47,179,128,0.3); }
.proof__case-viz-footer {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.proof__case-viz-led {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.proof__sectors {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.proof__sectors-label {
  font-family: var(--font-display);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.proof__sectors-list {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.proof__sector-sep { color: var(--accent); margin-left: 14px; }

/* ——— Visão ——— */
.section--visao { padding: 160px 0; text-align: center; }
.visao__content { max-width: 900px; margin: 0 auto; }
.section--visao .section__label { justify-content: center; }
.visao__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 28px 0 28px;
  color: var(--fg);
}
.visao__body {
  font-size: 18px; line-height: 1.55;
  color: var(--fg-soft);
  max-width: 620px; margin: 0 auto;
}

/* ——— CTA final ——— */
.section--cta { padding: 140px 0; }
.cta__content { max-width: 860px; }
.cta__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--dark-border-2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: 36px;
}
.cta__eyebrow-led {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--dark-fg);
}
.section--cta .accent-word { color: var(--accent); }
.cta__body {
  font-size: 17px; line-height: 1.55;
  color: var(--dark-muted);
  max-width: 560px;
  margin: 0 0 40px;
}
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer — dark */
.footer { padding: 100px 0 40px; background: var(--dark) !important; color: var(--dark-fg); }
.footer__top {
  display: grid; grid-template-columns: 1.1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-border);
}
.footer__logo { height: 22px; margin-bottom: 24px; }
.footer__tag {
  font-size: 14.5px; line-height: 1.5;
  color: var(--dark-muted);
  max-width: 280px;
}
.footer__cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dark-fg);
  margin-bottom: 20px;
}
.footer__link {
  display: block;
  font-size: 14px; color: var(--dark-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--dark-fg); }
.footer__bot {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px; color: var(--dark-muted);
}
.footer__legal { display: flex; gap: 28px; }
.footer__legal a:hover { color: var(--dark-fg); }

/* ——— Tweaks panel ——— */
.tweaks {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 100;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 16px;
  min-width: 260px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  font-family: var(--font-body);
  display: none;
}
.tweaks.tweaks--open { display: block; }
.tweaks__title {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px;
}
.tweaks__row {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 14px;
}
.tweaks__row-label {
  font-size: 12px; color: var(--fg-soft);
  font-weight: 500;
}
.tweaks__seg {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 3px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.tweaks__seg-btn {
  padding: 8px 10px;
  font-size: 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--fg-soft);
  font-family: var(--font-body);
  font-weight: 500;
}
.tweaks__seg-btn--on {
  background: var(--fg); color: #fff;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero__inner, .hero__inner--techy, .traceply__grid, .posicionamento__grid,
  .proof__case, .footer__top {
    grid-template-columns: 1fr; gap: 40px;
  }
  .hero__right, .hero-tx__right { height: 440px; }
  .problema__grid, .pilares__grid { grid-template-columns: repeat(2, 1fr); }
  .impacto__grid { grid-template-columns: 1fr; }
  .bridge__timeline { grid-template-columns: 1fr; }
  .bridge__rail, .bridge__rail-fill { display: none; }
  .bridge__step { margin-bottom: 30px; padding-left: 36px; }
  .bridge__dot { position: absolute; left: 0; top: 0; margin: 0; }
  .bridge__step-desc { max-width: none; }
  .hero-ed__grid { grid-template-columns: 1fr; }
  .hero-ed__display, .hero-ed__globe, .hero-ed__aside {
    grid-column: 1; grid-row: auto;
  }
  .hero-ed__globe { height: 320px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .proof__logos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container, .hero__inner, .hero__inner--techy, .hero__inner--editorial,
  .nav__inner { padding-left: 20px; padding-right: 20px; }
  .section { padding: 80px 0; }
  .problema__grid, .pilares__grid { grid-template-columns: 1fr; }
  .hero__meta { flex-wrap: wrap; gap: 16px; }
  .hero__meta-divider { display: none; }
  .nav__links { display: none; }
  .proof__case { padding: 32px 24px; }
  .proof__case-stats { gap: 20px; flex-wrap: wrap; }
}

/* ——— Fixed scrubbing video behind hero + problema ——— */
.hero-c__media--fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
}
.hero-c__media--fixed .hero-c__img,
.hero-c__media--fixed .hero-c__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  left: auto; right: auto; /* reset any width override */
}
/* When fixed, drop the left-edge gradient fade from the non-fixed variant */
.hero-c__media--fixed::before { display: none; }

.hero-c__video {
  opacity: 1;
  transition: opacity 0.6s ease;
}
.hero-c__video:not(.hero-c__video--ready) { opacity: 0; }

/* Hero inner must stay above fixed media */
.hero--conservador .hero-c__inner { position: relative; z-index: 2; }

/* Problema over video: transparent section, overlay for legibility, light text */
.section--problema-over-video {
  background: transparent !important;
  position: relative;
  z-index: 1;
  color: #F2F0EA;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: flex-start;
  padding-top: 122px;
}
.section--problema-over-video::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0.15) 50%,
      rgba(0,0,0,0.55) 70%,
      rgba(0,0,0,0.96) 100%
    ),
    radial-gradient(
      circle at 20% 18%,
      rgba(35,35,35,0.65) 0%,
      rgba(21,18,13,0.45) 20%,
      rgba(0,0,0,0.18) 40%,
      rgba(0,0,0,0.05) 55%,
      rgba(0,0,0,0) 70%
    ),
    linear-gradient(
      to left,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.18) 20%,
      rgba(0,0,0,0.05) 35%,
      rgba(0,0,0,0) 50%
    );
  opacity: var(--problema-overlay-opacity, 0);
  transition: opacity 0.6s ease;
}
.section--problema-over-video.is-fading-out::before {
  transition: opacity 0.4s ease;
}
.section--problema-over-video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.75) 100%
  );
  opacity: var(--problema-overlay-opacity, 0);
  transition: opacity 0.6s ease;
}
.section--problema-over-video.is-fading-out::after {
  transition: opacity 0.4s ease;
}
.section--problema-over-video .section__title--problema,
.section--problema-over-video .section__label--light {
  transition: opacity 0s;
}
.section--problema-over-video.is-fading-out .section__title--problema,
.section--problema-over-video.is-fading-out .section__label--light {
  opacity: 0;
  transition: opacity 0.7s ease 0.15s;
}
.section--problema-over-video .section__title { color: #F2F0EA; }
.section--problema-over-video .section__label--light { color: rgba(242,240,234,0.7); }
.section--problema-over-video .section__label--light .section__label-num { color: rgb(255,255,255); }
.section--problema-over-video .accent-word--light { color: #50ca8b; }
.section--problema-over-video .problema__grid {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}
.section--problema-over-video .problema__card {
  background: rgba(14, 20, 17, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F2F0EA;
}
.section--problema-over-video .problema__card-num { color: rgba(242,240,234,0.55); }
.section--problema-over-video .problema__card-title { color: #F2F0EA; }
.section--problema-over-video .problema__card-desc { color: rgba(242,240,234,0.72); }

/* ——— Diagonal variant: offset cards, minimal chrome, oversized numerals ——— */
.section--problema-over-video .section__head--problema-left {
  max-width: 640px;
  text-align: left;
  margin: 0 0 64px;
}
.section--problema-over-video .section__title--problema {
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #F2F0EA;
  margin-top: 22px;
}
.section--problema-over-video .problema__lede {
  margin-top: 28px;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(242,240,234,0.78);
}
.problema__grid--diagonal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 36px;
  background: transparent !important;
  border: 0 !important;
  margin-top: 0;
  position: relative;
  align-items: start;
}
.problema__grid--diagonal .problema__card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0;
  border: 0;
  position: relative;
}
.problema__grid--diagonal .problema__card-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #7FD9AB;
  margin: 0 0 56px;
  padding-bottom: 14px;
  border-bottom: 2px solid #7FD9AB;
  display: block;
  width: 20px;
}
.problema__grid--diagonal .problema__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F2F0EA;
  margin-bottom: 18px;
}
.problema__grid--diagonal .problema__card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(242,240,234,0.7);
}

@media (max-width: 900px) {
  .problema__grid--diagonal { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (max-width: 560px) {
  .problema__grid--diagonal { grid-template-columns: 1fr; }
}
/* Sections AFTER problema must cover the fixed video */
.section--posicionamento,
.section--pilares,
.section--bridge,
.section--traceply,
.section--impacto,
.section--proof,
.section--case,
.section--visao,
.section--cta,
.footer { position: relative; z-index: 2; background: var(--bg); }
.section--pilares { background: #fff; }
.section--bridge { background: var(--dark); }
.section--traceply { background: var(--dark-2); }
.section--impacto { background: var(--dark); }
.section--visao { background: var(--dark); }
.section--cta { background: var(--dark); }
.section--case { background: var(--bg-soft); }
.section--case .proof__case { background: var(--bg); }

/* Dark sections: invert title and body colors */
.section--impacto .section__title,
.section--visao .visao__title,
.section--cta .cta__title { color: var(--dark-fg); }
.section--visao .visao__body { color: var(--dark-muted); }

/* Section 3 — Posicionamento: 100vh minus nav */
.section--posicionamento {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
