:root {
  --black: #050507;
  --surface: #0b0b10;
  --surface-2: #111118;
  --surface-3: #171722;
  --purple: #6F0FB3;
  --purple-neon: #A846ED;
  --purple-deep: #351D58;
  --white: #FBFDFC;
  --silver: #D2D2D2;
  --text: rgba(251, 253, 252, 0.96);
  --text-soft: rgba(251, 253, 252, 0.76);
  --text-muted: rgba(251, 253, 252, 0.54);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(168, 70, 237, 0.24);
  --shadow-xl: 0 34px 100px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 22px 56px rgba(0, 0, 0, 0.32);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 10%, rgba(168,70,237,.14), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(111,15,179,.16), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(111,15,179,.08), transparent 26%),
    linear-gradient(180deg, #08080b 0%, #050507 100%);
}
.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.68), transparent 78%);
  opacity: .38;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; line-height: 1.72; color: var(--text-soft); }
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.legado-mono { font-family: 'IBM Plex Mono', monospace; letter-spacing: .08em; }
.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 108px 0; }
.section--soft::before,
#faq::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.04);
  pointer-events: none;
}
.accent {
  background: linear-gradient(90deg, var(--purple), var(--purple-neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--purple-neon);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
}
.eyebrow--pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,.04);
  color: var(--white);
}
.eyebrow--pill::before { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:not(.button--ghost) {
  color: #fff;
  background: linear-gradient(100deg, var(--purple), var(--purple-neon));
  box-shadow: 0 14px 34px rgba(111,15,179,.3);
}
.button--ghost {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.button--small { min-height: 42px; padding: 0 18px; font-size: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5,5,7,.66);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.site-header.is-scrolled {
  background: rgba(5,5,7,.82);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand img { width: min(230px, 28vw); min-width: 156px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-soft);
}
.site-nav a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 96px;
}
.hero > .container {
  width: 100%;
  max-width: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(5,5,7,0) 0%, rgba(5,5,7,.72) 52%, #050507 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-shell {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 820px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: #09090C;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,7,.94) 0%, rgba(5,5,7,.86) 27%, rgba(5,5,7,.54) 58%, rgba(5,5,7,.78) 100%),
    linear-gradient(180deg, rgba(5,5,7,.22) 0%, rgba(5,5,7,.36) 54%, rgba(5,5,7,.82) 84%, #050507 100%);
}
.hero-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/pattern-tech.svg') right 6% center / 360px auto no-repeat;
  opacity: .14;
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .92fr);
  gap: 42px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  min-height: 760px;
  padding: 118px 0 176px;
}
.hero-copy {
  max-width: 600px;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 70px);
  line-height: .98;
  max-width: 10.8ch;
}
.hero-lead {
  margin-top: 22px;
  max-width: 590px;
  font-size: clamp(16px, 1.45vw, 18px);
  color: rgba(251,253,252,.84);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-badges {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 30px 0 0;
}
.hero-badges li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: rgba(251,253,252,.8);
}
.hero-badges li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .64em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-neon);
  box-shadow: 0 0 12px rgba(168,70,237,.85);
}
.hero-side {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-card {
  width: min(100%, 590px);
  padding: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,8,12,.48);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.dashboard-card img { width: 100%; }
.side-floating {
  position: absolute;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,8,12,.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
}
.side-floating strong,
.side-floating p { color: var(--text); }
.side-floating--a {
  left: 0;
  top: 22px;
  max-width: 250px;
}
.side-floating--b {
  right: 0;
  bottom: 18px;
  width: 220px;
}
.mini-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.metric-row + .metric-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.positive { color: #38d17d; }

.trust-strip {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-strip article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.trust-strip img { width: 52px; height: 52px; }
.trust-strip strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.trust-strip span { font-size: 13px; color: var(--text-soft); line-height: 1.5; }

.origin-layout,
.compare-layout,
.pillars-shell,
.faq-shell,
.footer-grid,
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}
.compare-layout { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.section-copy h2,
.compare-copy h2,
.section-head h2,
.faq-head h2,
.cta-box h2,
.pillars-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
}
.section-copy p,
.compare-copy p,
.section-head p,
.faq-head p,
.cta-box p,
.pillars-copy p {
  margin-top: 16px;
  font-size: 17px;
  max-width: 720px;
}
.section-head--center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.origin-layout {
  align-items: start;
}
.origin-copy {
  max-width: 610px;
}
.origin-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.origin-card,
.compare-points article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.origin-card--wide { grid-column: 1 / -1; }
.origin-card img { width: 56px; height: 56px; }
.origin-kicker {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  color: var(--purple-neon);
}
.origin-card h3,
.compare-points h3,
.feature-card h3,
.audience-card h3 { font-size: 22px; line-height: 1.15; margin-bottom: 8px; }
.origin-visuals {
  display: grid;
  gap: 18px;
}
.origin-illustration-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}
.origin-illustration-card::after,
.visual-card::after,
.feature-card::after,
.audience-card::after,
.cta-box::after {
  content: '';
  position: absolute;
  right: -22px;
  top: -22px;
  width: 150px;
  height: 150px;
  background: url('assets/pattern-tech.svg') center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.origin-illustration-card img {
  width: 100%;
  border-radius: 22px;
}
.floating-note {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,8,12,.76);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
}
.floating-note span {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.floating-note strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}
.floating-note--top {
  top: 18px;
  left: 18px;
  max-width: 240px;
}
.floating-note--bottom {
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  min-width: 162px;
}
.floating-note--bottom strong {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
}
.origin-process-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow-lg);
}
.process-head h3 {
  font-size: 28px;
  line-height: 1.08;
}
.eyebrow--mini {
  margin-bottom: 10px;
  font-size: 11px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.process-steps article {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: rgba(168,70,237,.16);
  color: var(--white);
  font-size: 11px;
}
.process-steps h4 {
  margin: 0 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
}
.process-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.visual-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow: var(--shadow-lg);
}
.visual-card::after,
.feature-card::after,
.audience-card::after,
.cta-box::after {
  content: '';
  position: absolute;
  right: -22px;
  top: -22px;
  width: 150px;
  height: 150px;
  background: url('assets/pattern-tech.svg') center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.visual-card--dark { background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)); }
.visual-card img { width: 100%; }

.compare-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.point-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(168,70,237,.16);
  color: var(--white);
  font-size: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.audience-card,
.faq-list details,
.cta-box {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.feature-icon {
  width: 58px;
  height: 58px;
  padding: 6px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.feature-icon img { width: 100%; height: auto; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.audience-tag {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--purple-neon);
}
.audience-card ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
}
.audience-card li {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  font-size: 13px;
  color: var(--text-soft);
}

.pillars-shell {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  align-items: start;
}
.pillars-board {
  display: grid;
  gap: 16px;
}
.pillars-visual-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow: var(--shadow-lg);
}
.pillars-visual-card::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 140px;
  height: 140px;
  background: url('assets/pattern-tech.svg') center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.pillar-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.pillar-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(168,70,237,.16), transparent 70%);
  pointer-events: none;
}
.pillar-card--wide { grid-column: 1 / -1; }
.pillar-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  color: var(--purple-neon);
}
.pillar-card h3 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 10px;
}
.pillar-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.pillar-values span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  font-size: 13px;
  color: var(--text-soft);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag-row span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--silver);
  background: rgba(255,255,255,.03);
  font-size: 12px;
}
.faq-shell {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details { padding: 0; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple-neon);
  font-size: 24px;
}
.faq-list details[open] summary::after { content: '–'; }
.faq-answer { padding: 0 24px 22px; }

.section--cta {
  padding-top: 32px;
  padding-bottom: 110px;
}
.cta-box {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, .9fr);
  align-items: end;
  gap: 26px;
}
.footer-logo { width: min(220px, 55vw); margin-bottom: 16px; }
.footer-links {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--text-soft);
}
.footer-note { text-align: right; }
.disclaimer {
  max-width: 420px;
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

::selection { background: rgba(111,15,179,.92); color: #fff; }

@media (max-width: 1120px) {
  .hero-grid,
  .origin-layout,
  .compare-layout,
  .pillars-shell,
  .faq-shell,
  .cta-box,
  .footer-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .audience-grid,
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .origin-cards,
  .process-steps { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero-side { min-height: auto; padding-top: 20px; }
  .side-floating--a { left: 12px; top: 12px; }
  .side-floating--b { right: 12px; bottom: 12px; }
  .cta-actions { justify-content: flex-start; }
  .footer-note { text-align: left; }
  .disclaimer { margin-left: 0; }
}

@media (max-width: 860px) {
  :root { --container: min(1180px, calc(100vw - 28px)); }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    padding: 16px;
    border-radius: 22px;
    background: rgba(11,11,15,.96);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .25s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .section { padding: 82px 0; }
  .hero { padding-top: 0; padding-bottom: 56px; }
  .hero-grid,
  .pillars-shell,
  .faq-shell { padding: 22px; }
  .hero-grid {
    width: var(--container);
    min-height: auto;
    padding: 90px 0 118px;
  }
  .hero-shell {
    min-height: 0;
  }
  .trust-strip {
    width: var(--container);
    margin-top: -36px;
  }
  .hero h1 { max-width: none; }
  .hero-badges,
  .trust-strip,
  .audience-grid,
  .feature-grid,
  .origin-cards,
  .process-steps { grid-template-columns: 1fr; }
  .origin-card--wide { grid-column: auto; }
}

@media (max-width: 620px) {
  .button,
  .button--ghost { width: 100%; }
  .hero-actions,
  .cta-actions { width: 100%; }
  .feature-card,
  .audience-card,
  .faq-list details,
  .cta-box,
  .pillar-card,
  .pillars-visual-card,
  .origin-card,
  .origin-process-card,
  .compare-points article,
  .visual-card { padding: 20px; }
  .hero-grid { padding: 84px 0 108px; gap: 22px; }
  .hero-badges { grid-template-columns: 1fr; }
  .origin-quote {
    font-size: 16px !important;
    padding: 16px 18px;
  }
  .dashboard-card { padding: 10px; }
  .side-floating {
    position: static;
    margin-top: 12px;
  }
  .hero-side { display: block; }
  .origin-illustration-card { min-height: auto; }
  .floating-note { position: static; margin-top: 12px; }
  .faq-list summary { padding-right: 56px; font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Seção de origem simplificada ===== */
.origin-simple {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}
.origin-simple__copy {
  max-width: 590px;
}
.origin-simple__copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
}
.origin-simple__copy > p {
  margin-top: 18px;
  font-size: 17px;
  max-width: 560px;
}
.origin-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.origin-point {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}
.origin-point--wide { grid-column: 1 / -1; }
.origin-points img {
  width: 52px;
  height: 52px;
}
.origin-points h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.origin-points p {
  font-size: 14px;
  line-height: 1.55;
}
.origin-quote {
  margin-top: 0 !important;
  max-width: none;
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.034), rgba(255,255,255,.018));
  color: var(--text) !important;
  font-family: 'Sora', sans-serif;
  font-size: 18px !important;
  line-height: 1.45;
  box-shadow: var(--shadow-lg);
}
.origin-quote strong {
  color: var(--white);
}
.origin-simple__visual {
  min-width: 0;
  display: grid;
  gap: 18px;
}
.investor-visual-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.018));
  box-shadow: var(--shadow-xl);
}
.investor-visual-card::after {
  content: '';
  position: absolute;
  right: -24px;
  top: -24px;
  width: 160px;
  height: 160px;
  background: url('assets/pattern-tech.svg') center/contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.investor-pill {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,8,12,.78);
  color: var(--purple-neon);
  font-size: 10px;
}
.investor-visual-card > img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  min-height: 540px;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
  display: block;
}
.investor-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,8,12,.76);
  backdrop-filter: blur(12px);
}
.investor-caption span {
  font-size: 10px;
  color: var(--purple-neon);
  white-space: nowrap;
}
.investor-caption strong {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  text-align: right;
}
@media (max-width: 1120px) {
  .origin-simple {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .origin-simple__copy {
    max-width: 760px;
  }
  .investor-visual-card > img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .origin-points {
    grid-template-columns: 1fr;
  }
  .origin-point--wide {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .origin-point {
    grid-template-columns: 42px minmax(0,1fr);
    padding: 16px;
  }
  .origin-points img {
    width: 42px;
    height: 42px;
  }
  .investor-visual-card {
    padding: 10px;
  }
  .investor-pill {
    position: static;
    margin-bottom: 10px;
  }
  .investor-caption {
    position: static;
    margin-top: 10px;
    display: block;
  }
  .investor-caption strong {
    display: block;
    margin-top: 8px;
    text-align: left;
  }
}

/* ===== Refinos de layout v14 ===== */
.compare-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
  padding: 34px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  box-shadow: var(--shadow-lg);
}
.compare-points--stack { gap: 16px; }
.compare-board {
  display: grid;
  gap: 16px;
}
.compare-board__chart {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.compare-board__head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.compare-board__head span {
  font-size: 11px;
  color: var(--text-muted);
}
.compare-board__head strong {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  line-height: 1.05;
}
.compare-board__chart img {
  margin-top: 10px;
  border-radius: 20px;
}
.compare-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.compare-strip article {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
}
.compare-strip span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--purple-neon);
}
.compare-strip strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.section--light {
  padding-top: 92px;
  padding-bottom: 92px;
}
.audience-shell {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 32px;
  padding: 40px;
  border-radius: 38px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0,0,0,.16);
}
.audience-intro {
  display: grid;
  align-content: start;
  gap: 18px;
}
.audience-photo-card {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  border-radius: 28px;
  min-height: 420px;
  background: linear-gradient(180deg, #12131a, #0b0c10);
  box-shadow: 0 24px 56px rgba(0,0,0,.18);
}
.audience-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.audience-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,7,.08) 0%, rgba(5,5,7,.14) 38%, rgba(5,5,7,.78) 100%);
}
.audience-photo-card__overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.audience-photo-card__overlay span {
  color: var(--purple-neon);
  font-size: 11px;
}
.audience-photo-card__overlay strong {
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  line-height: 1.18;
}
.section--light h2,
.section--light h3,
.section--light strong {
  color: var(--black);
}
.section--light p {
  color: rgba(5,5,7,.72);
}
.section--light .eyebrow {
  color: var(--purple);
}
.section--light .eyebrow::before {
  background: linear-gradient(90deg, var(--purple), transparent);
}
.tag-row--light span {
  color: var(--purple-deep);
  border-color: rgba(111,15,179,.12);
  background: rgba(111,15,179,.05);
}
.audience-grid--creative {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.audience-card--featured {
  grid-row: span 2;
  background: radial-gradient(circle at 100% 0%, rgba(168,70,237,.24), transparent 34%), linear-gradient(180deg, #0d0d13, #171722);
  border-color: rgba(168,70,237,.22);
  box-shadow: 0 24px 54px rgba(15,15,24,.22);
}
.audience-card--featured h3,
.audience-card--featured strong,
.audience-card--featured p,
.audience-card--featured li { color: var(--text); }
.audience-card--featured .audience-tag { color: var(--purple-neon); }
.audience-card--light {
  background: linear-gradient(180deg, #ffffff, #f8f7fc);
  border-color: rgba(23,23,34,.08);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
}
.audience-card--light .audience-tag { color: var(--purple); }
.audience-card--light li {
  color: rgba(5,5,7,.72);
  border-color: rgba(111,15,179,.12);
  background: rgba(111,15,179,.05);
}
.audience-card--featured li {
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}

.pillars-v2 {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}
.pillars-v2__intro {
  display: grid;
  align-content: start;
}
.pillars-brand-badge {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: 190px;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  box-shadow: var(--shadow-lg);
}
.pillars-brand-badge::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,70,237,.22) 0%, rgba(168,70,237,.10) 38%, transparent 70%);
  filter: blur(8px);
}
.pillars-brand-badge img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(111, 15, 179, .28));
}
.pillars-v2__hero {
  display: grid;
  gap: 16px;
}
.pillars-band,
.pillars-values-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  box-shadow: var(--shadow-lg);
}
.pillars-band::after,
.pillars-values-panel::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(168,70,237,.22), transparent 68%);
  pointer-events: none;
}
.pillars-band__head {
  display: grid;
  gap: 8px;
}
.pillars-band__head span {
  font-size: 11px;
  color: var(--text-muted);
}
.pillars-band__head strong {
  font-family: 'Sora', sans-serif;
  font-size: 34px;
  line-height: 1.1;
}
.pillars-band__curve {
  position: relative;
  height: 130px;
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(168,70,237,.10), rgba(255,255,255,.01)),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 100% 32px;
}
.pillars-band__curve::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(168,70,237,.65), rgba(168,70,237,.95));
}
.pillars-band__curve span {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,15,.78);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
}
.pillars-band__curve span:nth-child(1) { left: 28px; top: 62px; }
.pillars-band__curve span:nth-child(2) { left: 38%; top: 44px; }
.pillars-band__curve span:nth-child(3) { right: 28px; top: 18px; }
.pillars-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.pillar-card--compact h3 {
  font-size: 18px;
  line-height: 1.28;
}
.pillars-values-panel {
  grid-column: 1 / -1;
}
.pillars-values-panel .pillar-values {
  margin-top: 12px;
}

@media (max-width: 1120px) {
  .compare-shell,
  .audience-shell,
  .pillars-v2 {
    grid-template-columns: 1fr;
  }
  .audience-grid--creative,
  .pillars-cards {
    grid-template-columns: 1fr;
  }
  .audience-card--featured {
    grid-row: auto;
  }
  .audience-photo-card,
  .audience-photo-card img {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .compare-shell,
  .audience-shell,
  .pillars-band,
  .pillars-values-panel {
    padding: 22px;
  }
  .compare-strip {
    grid-template-columns: 1fr;
  }
  .pillars-band__head strong,
  .compare-board__head strong {
    font-size: 28px;
  }
  .audience-photo-card__overlay strong {
    font-size: 18px;
  }
  .pillars-brand-badge {
    width: 100%;
    min-height: 170px;
    padding: 18px 20px;
  }
  .pillars-brand-badge img {
    max-width: 132px;
  }
  .pillars-band__curve {
    height: auto;
    padding: 18px;
  }
  .pillars-band__curve::before {
    display: none;
  }
  .pillars-band__curve span {
    position: static;
    display: inline-flex;
    margin: 0 8px 8px 0;
  }
}
