/* ============================================
   VERYPAY — Tokens + Global Styles
============================================ */

:root {
  --navy: #1E303E;
  --navy-2: #273243;
  --navy-3: #2F3D4F;
  --magenta: #BA2F7D;
  --magenta-soft: #EE4389;
  --magenta-deep: #8B1F5C;
  --petroleo: #27667B;
  --petroleo-light: #4D8FA5;
  --cromo: #726D65;
  --offwhite: #F5F1EC;
  --offwhite-2: #EAE5DE;
  --ink: #0F1521;

  /* functional palette (Phase 2 — not yet used in MVP) */
  --success: #2DAA6E;
  --warning: #E89B2C;
  --danger: #D63030;

  --font-display: "Geist", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  --container: 1400px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  background: var(--navy);
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none), (max-width: 900px) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
@media (hover: none), (max-width: 900px) { button { cursor: pointer; } }
a { color: inherit; text-decoration: none; cursor: none; }
@media (hover: none), (max-width: 900px) { a { cursor: pointer; } }

::selection { background: var(--magenta); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* ============================================
   GRAIN OVERLAY
============================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ============================================
   CURSOR
============================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--magenta);
  border-radius: 1px;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.25s cubic-bezier(.2,.7,.3,1),
              height 0.25s cubic-bezier(.2,.7,.3,1),
              opacity 0.2s,
              border-radius 0.25s,
              background 0.2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor.hover-link { width: 36px; height: 36px; opacity: 0.55; border-radius: 999px; }
.cursor.hover-text { width: 2px; height: 22px; opacity: 0.7; border-radius: 1px; }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ============================================
   PRIMITIVES
============================================ */
.magenta-bar {
  display: inline-block;
  width: 90px;
  height: 6px;
  background: var(--magenta);
  transform-origin: left center;
}
.magenta-bar.sm { width: 56px; height: 4px; }

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1, "zero" 1;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.eyebrow.dark { color: rgba(15,21,33,0.55); }
.eyebrow .slash { color: var(--magenta); margin: 0 4px; font-weight: 600; }

.slash { color: var(--magenta); font-weight: 600; padding: 0 6px; }

.section-meta {
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 56px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section-meta .left {
  display: flex; align-items: center; gap: 16px;
}
.section-meta.dark {
  color: rgba(15,21,33,0.65);
  border-bottom: 1px solid rgba(15,21,33,0.10);
}

/* ============================================
   WORDMARK
============================================ */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  white-space: nowrap;
}
.wordmark .pay {
  font-weight: 400;
  color: var(--cromo);
}
.wordmark.on-dark .pay {
  color: var(--cromo);
}
.wordmark .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--magenta);
  border-radius: 1px;
  margin: 0 2px;
  transform: translateY(-2px);
}
.wordmark.compact { letter-spacing: -0.015em; }
.wordmark.compact > span:first-child { margin-right: 1px; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px 18px 28px;
  background: var(--magenta);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.4s,
              background 0.3s;
  position: relative;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px rgba(238,67,137,0.45),
              0 0 0 1px rgba(238,67,137,0.3);
  background: var(--magenta-soft);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .arrow { transform: translateX(6px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--magenta);
  color: var(--magenta-soft);
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--magenta);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--magenta);
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(.7,.2,.2,1);
}
.btn-ghost:hover::after { transform-origin: left center; transform: scaleX(1); }

/* ============================================
   DISPLAY TYPE
============================================ */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.035em;
  font-size: clamp(48px, 8vw, 124px);
  text-wrap: balance;
}
.display-sm {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 5vw, 72px);
}
.display.ink, .display-sm.ink { color: var(--ink); }

.underline-magenta {
  position: relative;
  display: inline-block;
}
.underline-magenta::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.02em;
  height: 0.16em;
  background: var(--magenta);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.0s cubic-bezier(.7,.1,.2,1);
}
.underline-magenta.in::after { transform: scaleX(1); }

.text-magenta { color: var(--magenta-soft); }
.text-petroleo { color: var(--petroleo-light); }

/* ============================================
   SECTION DEFAULTS
============================================ */
section {
  position: relative;
  padding: 80px 0;
}
@media (max-width: 900px) {
  section { padding: 64px 0; }
}
section.dark { background: var(--navy); color: #fff; }
section.darker { background: var(--ink); color: #fff; }
section.light { background: var(--offwhite); color: var(--ink); }

.halo-magenta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(238,67,137,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.bg-symbol {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(560px, 70vw, 980px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
  filter: saturate(1);
  will-change: transform;
}
@media (max-width: 900px) {
  .bg-symbol { opacity: 0.10; right: -25%; width: 140vw; }
}

.corner-mark {
  position: absolute;
  bottom: 40px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 2;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 14px var(--gutter);
  background: rgba(30,48,62,0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s cubic-bezier(.3,.7,.2,1),
              padding 0.4s, background 0.4s, border-color 0.4s, min-height 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar.condensed {
  padding: 10px var(--gutter);
  min-height: 56px;
  background: rgba(15,21,33,0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(186,47,125,0.12);
}
.navbar.hidden { transform: translateY(-110%); }
.navbar .links {
  display: flex; gap: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navbar .links a {
  position: relative;
  color: rgba(255,255,255,0.75);
  padding: 6px 2px;
}
.navbar .links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--magenta);
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(.7,.2,.2,1);
}
.navbar .links a:hover { color: #fff; }
.navbar .links a:hover::after { transform-origin: left center; transform: scaleX(1); }
@media (max-width: 900px) { .navbar .links { display: none; } }
.navbar .brand {
  display: flex; align-items: center; gap: 0;
}
.navbar .brand-icon {
  height: 36px;
  width: auto;
  margin-right: 14px;
  vertical-align: middle;
  background: transparent;
  display: block;
}

/* ============================================
   LOADER
============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.loader-stage {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .loader-stage { width: 260px; height: 260px; }
}
.loader-bracket {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--magenta);
  opacity: 0;
}
.loader-bracket.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.loader-bracket.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.loader-bracket.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.loader-bracket.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.loader-mono {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.loader-mono.bottom { bottom: 8%; }
.loader-mono.counter { bottom: 8%; left: var(--gutter); }
.loader-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  background: var(--magenta);
  width: 0%;
}
.loader-icon {
  width: 50%;
  position: relative;
}

/* ============================================
   HERO — CINEMATIC v2
============================================ */
.hero-cinematic {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  display: block;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.55) saturate(0.7) contrast(1.1);
  z-index: 0;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(105deg,
    rgba(15,21,33,0.92) 0%,
    rgba(15,21,33,0.65) 40%,
    rgba(15,21,33,0.45) 70%,
    rgba(15,21,33,0.25) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 30%,
    rgba(15,21,33,0.35) 75%,
    rgba(15,21,33,0.7) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}
/* Magenta bar pulse — used on hero eyebrow */
@keyframes pulse-bar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.magenta-bar.pulse {
  animation: pulse-bar 2.4s ease-in-out infinite;
}
/* Scroll indicator — desktop: ROLAR + arrow horizontal, bottom-left */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: var(--gutter);
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.55);
}
.scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: inherit;
}
.scroll-arrow {
  width: 12px;
  height: 18px;
  color: inherit;
  animation: scroll-bob 1.8s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(4px); opacity: 1; }
}
.hero-inner {
  position: relative;
  z-index: 4;
  height: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(56px, 8vh, 110px);
  padding-top: clamp(100px, 14vh, 160px);
}
.hero-cinematic .eyebrow {
  margin-bottom: clamp(20px, 3vh, 36px);
  font-size: 12.5px;
}
.hero-display {
  margin-bottom: clamp(20px, 3vh, 36px);
  font-size: clamp(44px, 8vw, 124px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.045em;
}
.hero-display .line {
  display: block;
}
.underline-magenta.loteria {
  /* uses default underline style — timing override only */
}
.underline-magenta.loteria::after {
  transition: transform 0.9s cubic-bezier(.16,1,.3,1) 3.9s;
}
.hero-cinematic .sub {
  max-width: 560px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin-bottom: clamp(24px, 4vh, 44px);
}
.hero-cinematic .cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cinematic .micro {
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.hero-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-word > span {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  will-change: transform, opacity;
}

/* Hero CTA — outlined cinematic */
.btn-hero {
  padding: 22px 36px;
  border: 1.5px solid var(--magenta);
  background: transparent;
  color: #fff;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  box-shadow: none;
}
.btn-hero:hover {
  background: var(--magenta);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(186,47,125,0.4);
  color: #fff;
}
.btn-hero .arrow { transition: transform 0.4s cubic-bezier(.16,1,.3,1); }
.btn-hero:hover .arrow { transform: translateX(6px); }

/* Mobile hero */
@media (max-width: 900px) {
  .hero-photo { object-position: center; }
  .hero-display { font-size: clamp(40px, 11vw, 72px); }
  .hero-inner {
    padding-top: clamp(40px, 8vh, 80px);
    padding-bottom: 80px;
  }
  .hero-vignette {
    background: radial-gradient(ellipse at center,
      transparent 20%,
      rgba(15,21,33,0.5) 70%,
      rgba(15,21,33,0.85) 100%);
  }
  /* Scroll indicator — mobile: só a seta, centralizada */
  .scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  .scroll-label { display: none; }
  .scroll-arrow {
    width: 16px;
    height: 22px;
    opacity: 0.7;
  }
}

/* ============================================
   MANIFESTO
============================================ */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  max-width: 1180px;
}
.manifesto-grid p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 38ch;
}
.manifesto-grid p .num {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--magenta);
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
}
.manifesto-divider {
  margin-top: 56px;
  margin-bottom: 16px;
  height: 1px;
  background: rgba(238,67,137,0.3);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(.7,.1,.2,1);
}
.manifesto-divider.in { transform: scaleX(1); }
.manifesto-sign {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 14px;
}

/* ============================================
   PROBLEM
============================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 56px;
}
@media (min-width: 700px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
.problem-card {
  position: relative;
  padding: 24px 22px;
  background: var(--navy-2);
  border: 1px solid rgba(245,241,236,0.08);
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1),
              border 0.3s, box-shadow 0.4s, background 0.3s;
  overflow: hidden;
}
.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(186,47,125,0.25);
  box-shadow: 0 18px 48px -22px rgba(186,47,125,0.22);
  background: var(--navy-3);
}
.problem-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  display: block;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--offwhite);
}
.problem-card p {
  color: rgba(245,241,236,0.7);
  font-size: 13px;
  line-height: 1.5;
}
.problem-card .corner-slash {
  position: absolute;
  top: 22px; right: 22px;
  color: var(--magenta);
  font-family: var(--font-mono);
  opacity: 0.7;
  transform: rotate(0deg);
  transition: transform 0.5s;
}
.problem-card:hover .corner-slash { transform: rotate(90deg); }

/* ============================================
   DIAGNOSTIC
============================================ */
.diag-bridge {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 0 48px;
  padding: 18px 22px;
  background: rgba(186, 47, 125, 0.06);
  border-left: 3px solid var(--magenta);
  border-radius: 0 4px 4px 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: rgba(245, 241, 236, 0.85);
  font-style: italic;
}
.diag-bridge-dot {
  width: 8px;
  height: 8px;
  background: var(--magenta);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
@media (max-width: 700px) {
  .diag-bridge {
    margin: 0 0 32px;
    font-size: 14px;
    padding: 14px 18px;
  }
}
.diag-hint {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  opacity: 0.5;
  margin-top: 8px;
  line-height: 1.4;
}
.diag-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-top: 64px;
}
@media (max-width: 1024px) { .diag-wrap { grid-template-columns: 1fr; gap: 48px; } }

.diag-control {
  margin-bottom: 36px;
}
.diag-control .label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.55);
}
.diag-control .value {
  font-family: var(--font-mono);
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.03em;
  text-transform: none;
}
.diag-control .value .sml { font-size: 12px; color: rgba(255,255,255,0.5); margin-right: 6px; }
.diag-control .value .pop { color: var(--magenta-soft); }

input[type="range"].diag-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}
input[type="range"].diag-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--magenta);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 1px var(--magenta), 0 0 20px rgba(238,67,137,0.5);
  cursor: grab;
  transition: transform 0.2s;
}
input[type="range"].diag-slider::-webkit-slider-thumb:active { transform: scale(1.2); }
input[type="range"].diag-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--magenta);
  border: 3px solid var(--navy); box-shadow: 0 0 0 1px var(--magenta);
}

.diag-split {
  display: flex;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.07);
}
.diag-split > div {
  height: 100%;
  transition: width 0.45s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.diag-split .seg-c { background: var(--magenta); }
.diag-split .seg-d { background: var(--petroleo); }
.diag-split .seg-p { background: var(--cromo); }

.diag-split-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.diag-split-labels .item {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.diag-split-labels .item .v { font-size: 15px; color: #fff; letter-spacing: 0; }
.diag-split-labels .item button {
  text-align: left; padding: 6px 0;
  border-radius: 1px;
  border: 1px dashed rgba(255,255,255,0.12);
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  padding: 4px 8px;
  transition: color 0.2s, border 0.2s;
}
.diag-split-labels .item button:hover { color: var(--magenta-soft); border-color: var(--magenta); }

.diag-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}
.diag-toggle .switch {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.diag-toggle .switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s cubic-bezier(.3,.8,.3,1);
}
.diag-toggle.on .switch { background: var(--magenta); }
.diag-toggle.on .switch::after { transform: translateX(20px); }
.diag-toggle .txt {
  font-size: 14px; color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.diag-viz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) { .diag-viz { grid-template-columns: 1fr; } }
.diag-card {
  position: relative;
  padding: 26px 24px 24px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.diag-card.muted { opacity: 0.45; }
.diag-card .ck-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.diag-card .ck-viz {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
}
.diag-card .ck-label {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.diag-card .ck-mono {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}
.diag-card .ck-mono .rs { font-size: 10px; opacity: 0.55; margin-right: 4px; }
.diag-card .ck-mono .cents { color: var(--magenta-soft); font-size: 10px; }
.diag-card .ck-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.bars-2 {
  display: flex; align-items: flex-end; gap: 28px; height: 110px;
  width: 100%; justify-content: center;
}
.bars-2 .bar {
  position: relative;
  width: 38px;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: height 0.6s cubic-bezier(.2,.8,.2,1);
}
.bars-2 .bar.magenta { background: var(--magenta); }
.bars-2 .bar .cap {
  position: absolute;
  bottom: -22px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.bars-12 {
  display: flex; align-items: flex-end; gap: 4px;
  height: 100px; width: 100%;
}
.bars-12 .bar {
  flex: 1;
  background: var(--magenta);
  opacity: 0.85;
  transition: height 0.5s cubic-bezier(.2,.8,.2,1), background 0.3s;
  min-height: 6px;
}
.bars-12 .bar.smart { background: var(--petroleo-light); }

.dashboard-viz {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 8px;
}
.dashboard-viz .pdfs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  flex: 0.55;
}
.dashboard-viz .pdfs .pdf {
  background: rgba(255,255,255,0.12);
  aspect-ratio: 0.77;
  border-radius: 1px;
}
.dashboard-viz .panel {
  flex: 0.85;
  background: var(--navy-3);
  padding: 10px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 2px solid var(--magenta);
}
.dashboard-viz .panel .row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
}
.dashboard-viz .panel .row .k { color: rgba(255,255,255,0.5); }
.dashboard-viz .panel .row .v { color: var(--magenta-soft); }

.split-circles {
  position: relative;
  width: 100%; height: 100%;
  min-height: 110px;
}
.split-circles .col {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  padding: 4px;
}
.split-circles .col.chaos {
  inset: 0;
}
.split-circles .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  align-self: center;
  justify-self: center;
}
.split-circles .col.chaos .dot {
  transform: translate(calc(var(--rx) * 1px), calc(var(--ry) * 1px));
}
.split-circles .col.order { display: none; }

.diag-cta {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--navy-2);
  border: 1px solid rgba(238,67,137,0.18);
  border-radius: 2px;
  flex-wrap: wrap;
}
.diag-cta .dot-pulse {
  width: 10px; height: 10px;
  background: var(--magenta);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.diag-cta .dot-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--magenta);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.diag-cta .txt {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}
.diag-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--magenta-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   METHOD (scroll-pinned)
============================================ */
.method-track {
  position: relative;
  margin-top: 40px;
}
.method-progress {
  position: sticky;
  top: 80px;
  height: 2px;
  background: rgba(15,21,33,0.1);
  margin-bottom: 40px;
  z-index: 3;
}
.method-progress .fill {
  height: 100%;
  background: var(--magenta);
  width: 25%;
  transition: width 0.6s cubic-bezier(.4,.7,.3,1);
}
.method-pinned {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) { .method-pinned { grid-template-columns: 1fr; gap: 24px; } }

.method-left {
  position: sticky;
  top: 140px;
  align-self: start;
}
@media (max-width: 1024px) { .method-left { position: static; } }
.method-left .step-num {
  font-family: var(--font-mono);
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.method-left .step-num .barlet {
  position: absolute;
  top: 4%; left: -28px;
  width: 6px; height: 90%;
  background: var(--magenta);
}
.method-left h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.method-left p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(15,21,33,0.7);
  max-width: 44ch;
}
.method-right {
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 80px;
}
@media (max-width: 1024px) { .method-right { height: auto; min-height: 360px; position: static; padding: 60px 0; } }
.method-illust {
  width: 100%;
  height: 100%;
  background: var(--offwhite-2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.method-step-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) { .method-step-panel { min-height: auto; padding: 40px 0; } }

/* ============================================
   SYSTEM (network)
============================================ */
.network-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  margin-top: 64px;
  align-items: stretch;
}
@media (max-width: 1024px) { .network-wrap { grid-template-columns: 1fr; } }

.network-stage {
  position: relative;
  height: 620px;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 700px) { .network-stage { height: 480px; } }
.network-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(238,67,137,0.12) 0%, transparent 60%);
}

.network-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: none;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
@media (hover: none), (max-width: 900px) { .network-node { cursor: pointer; } }
.network-node .bubble {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--navy-3);
  border: 1px solid rgba(238,67,137,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              border 0.3s, box-shadow 0.4s, background 0.3s;
  color: var(--magenta-soft);
}
.network-node.center .bubble {
  width: 104px; height: 104px;
  background: var(--magenta);
  border-color: var(--magenta-soft);
  color: #fff;
  box-shadow: 0 0 60px rgba(238,67,137,0.5);
  animation: center-pulse 2.4s ease-in-out infinite;
}
@keyframes center-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(186,47,125,0.55), 0 0 60px rgba(238,67,137,0.5); }
  50% { box-shadow: 0 0 0 26px rgba(186,47,125,0), 0 0 60px rgba(238,67,137,0.7); }
}
.network-node.center .bubble::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--magenta);
  animation: pulse-ring 2.8s ease-out infinite;
}
.network-node .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
  max-width: 120px;
  line-height: 1.25;
}
.network-node:hover .bubble,
.network-node.active .bubble {
  transform: scale(1.12);
  background: var(--magenta);
  border-color: var(--magenta-soft);
  color: #fff;
  box-shadow: 0 0 36px rgba(238,67,137,0.4);
}
.network-node:hover .label,
.network-node.active .label { color: #fff; }
.network-stage.dimmed .network-node:not(:hover):not(.active):not(.center) { opacity: 0.35; }

.network-info {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  position: relative;
}
.network-info .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}
.network-info h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.network-info p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  max-width: 38ch;
}
.network-info .hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* mobile accordion fallback — replaced by constellation */
.network-list { display: none; }
.mobile-constellation { display: none; }
@media (max-width: 1024px) {
  .network-stage { display: none; }
  .network-info { display: none; }
  .mobile-constellation { display: block; margin-top: 48px; }
}

/* MOBILE CONSTELLATION */
.mc-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.mc-center-bubble {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(186,47,125,0.55), 0 0 40px rgba(238,67,137,0.4);
  animation: center-pulse 2.4s ease-in-out infinite;
  position: relative;
}
.mc-center-bubble::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--magenta);
  animation: pulse-ring 2.8s ease-out infinite;
}
.mc-center-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.mc-grid-wrap {
  position: relative;
}
.mc-lines {
  position: absolute;
  top: -40px;
  left: 0; right: 0;
  width: 100%;
  height: calc(100% + 40px);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.mc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.mc-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
}
.mc-node-bubble {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 1px solid rgba(238,67,137,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--magenta-soft);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1),
              background 0.35s, border-color 0.35s, box-shadow 0.4s, color 0.3s;
}
.mc-node.active .mc-node-bubble {
  background: var(--magenta);
  border-color: var(--magenta-soft);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 1px var(--magenta-soft), 0 12px 30px -10px rgba(238,67,137,0.5);
}
.mc-node-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.25;
  max-width: 100px;
  transition: color 0.3s;
}
.mc-node.active .mc-node-label { color: #fff; }
.mc-panel {
  margin-top: 32px;
  background: var(--navy-2);
  border: 1px solid rgba(238,67,125,0.2);
  padding: 24px 22px;
  border-radius: 4px;
  animation: mc-slide 0.45s cubic-bezier(.16,1,.3,1);
}
@keyframes mc-slide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.mc-panel .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}
.mc-panel h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.mc-panel p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.network-list .item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.network-list .item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.network-list .item .head {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
}
.network-list .item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
}
.network-list .item .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--magenta);
  letter-spacing: 0.1em;
}
.network-list .item p {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, margin-top 0.3s;
}
.network-list .item.open p { max-height: 200px; margin-top: 12px; }

/* ============================================
   BEFORE / AFTER
============================================ */
.ba-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg,
    rgba(15,21,33,0.96) 0%,
    rgba(15,21,33,0.5) 35%,
    rgba(245,241,236,0.5) 65%,
    rgba(245,241,236,0.96) 100%);
}
@media (max-width: 900px) {
  .ba-stage {
    grid-template-columns: 1fr;
    background: none;
  }
}
.ba-col {
  padding: 48px 38px;
  min-height: 580px;
  position: relative;
  transition: opacity 0.6s, background 0.6s;
  z-index: 1;
}
.ba-before { background: transparent; color: rgba(255,255,255,0.78); }
.ba-after { background: transparent; color: var(--ink); }
@media (max-width: 900px) {
  .ba-before { background: var(--ink); }
  .ba-after { background: var(--offwhite); }
}
.ba-col .ba-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 38px;
  display: flex; align-items: center; gap: 12px;
}
.ba-before .ba-eyebrow { color: #C97562; }
.ba-after .ba-eyebrow { color: var(--magenta); }
.ba-bar { width: 40px; height: 3px; }
.ba-before .ba-bar { background: #C97562; }
.ba-after .ba-bar { background: var(--magenta); }

.ba-item {
  padding: 18px 0;
  border-top: 1px solid currentColor;
  border-color: rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ba-after .ba-item { border-color: rgba(15,21,33,0.12); }
.ba-item .marker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.5;
  flex-shrink: 0;
  width: 28px;
}
.ba-item .body { flex: 1; }
.ba-item .body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.ba-before .ba-item .body strong { color: rgba(255,255,255,0.92); }
.ba-after .ba-item .body strong { color: var(--ink); }
.ba-item .body span { opacity: 0.65; font-family: var(--font-body); font-size: 13.5px; letter-spacing: 0; line-height: 1.5; }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--magenta);
  z-index: 2;
  transform: translateX(-50%);
}
@media (max-width: 900px) { .ba-divider { display: none; } }

.ba-final {
  margin-top: 80px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PROFILES
============================================ */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 1024px) { .profiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .profiles-grid { grid-template-columns: 1fr; } }
.profile-card {
  background: var(--offwhite-2);
  border: 1px solid rgba(15,21,33,0.08);
  padding: 24px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1),
              border 0.3s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}
.profile-card:hover {
  transform: perspective(1200px) rotateY(4deg) translateY(-3px);
  border-color: var(--magenta);
  box-shadow: -8px 14px 32px -10px rgba(186,47,125,0.18);
}
.profile-card .icon-wrap {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--magenta);
  margin-bottom: 26px;
}
.profile-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--ink);
}
.profile-card p {
  color: rgba(15,21,33,0.7);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .profile-card { aspect-ratio: auto; }
}
.profile-card .num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(15,21,33,0.35);
  letter-spacing: 0.1em;
}
.profiles-foot {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(15,21,33,0.55);
  letter-spacing: 0.06em;
}

/* ============================================
   FAQ
============================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 56px;
}
@media (max-width: 1024px) { .faq-wrap { grid-template-columns: 1fr; gap: 32px; } }
.faq-title {
  position: sticky;
  top: 120px;
  align-self: start;
}
@media (max-width: 1024px) {
  .faq-title {
    position: static;
    top: auto;
  }
}
.faq-title .display-sm { color: var(--ink); }
.faq-list { display: block; }
.faq-item {
  border-top: 1px solid rgba(186,47,125,0.22);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(186,47,125,0.22); }
.faq-item .head {
  display: flex; align-items: center; gap: 22px;
  padding: 28px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.faq-item .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(15,21,33,0.4);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 30px;
}
.faq-item .q {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-item .plus {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--magenta);
  border: 1px solid rgba(186,47,125,0.4);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.faq-item.open .plus {
  transform: rotate(45deg);
  background: var(--magenta);
  color: #fff;
}
.faq-item .body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.3,.8,.3,1), opacity 0.4s;
  opacity: 0;
}
.faq-item.open .body { max-height: 280px; opacity: 1; padding-bottom: 28px; }
.faq-item .body p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15,21,33,0.72);
  max-width: 60ch;
  padding-left: 52px;
}

/* ============================================
   CTA FINAL + FOOTER
============================================ */
.cta-final {
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.cta-final h2,
.cta-final .display {
  transform: none !important;
  position: relative !important;
  top: auto !important;
}
.footer { margin-top: 0; }
.cta-final .display {
  font-size: clamp(54px, 8.5vw, 152px);
  margin: 36px auto 28px;
  max-width: 16ch;
  line-height: 0.92;
}
.cta-final .sub {
  max-width: 540px;
  margin: 0 auto 44px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.btn-big {
  font-size: 16px;
  padding: 22px 32px;
  font-weight: 600;
}
.btn-big .wa {
  display: inline-flex;
  margin-right: 4px;
}
.cta-final .micro {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

.footer {
  background: var(--ink);
  padding: 100px 0 50px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186,47,125,0.5), transparent);
}
.footer-anchor {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7.2vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 90px;
  max-width: 18ch;
}
.footer-anchor .accent { color: var(--magenta-soft); }
.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-info .slash { color: var(--magenta); }
.footer-final {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}

/* ============================================
   WHATSAPP FLOAT + TOOLTIP
============================================ */
.wa-float-wrap {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.16,1,.3,1);
}
.wa-float-wrap.visible { opacity: 1; pointer-events: auto; }
.wa-tooltip {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 14px;
  background: rgba(15,21,33,0.92);
  color: #fff;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.35s cubic-bezier(.16,1,.3,1), transform 0.35s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  position: relative;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255,255,255,0.08);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(15,21,33,0.92);
  border-right: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wa-tooltip.in {
  opacity: 1;
  transform: translateX(0);
}
.wa-float {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
  transition: transform 0.3s;
  position: relative;
  flex-shrink: 0;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2.4s ease-out infinite;
}
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; }
  .wa-float-wrap { bottom: 18px; right: 18px; }
}

/* ============================================
   PROBLEM SECTION (continued)
============================================ */
.problem-title { max-width: 18ch; }
.problem-title .accent { color: var(--magenta-soft); }

/* Method illustrations */
.illust-svg { width: 100%; height: 100%; }
.illust-pulse {
  animation: gentle-pulse 3s ease-in-out infinite;
}
@keyframes gentle-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* In-view reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(.2,.8,.2,1),
              transform 0.85s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

.fade-in {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(.2,.8,.2,1);
}
.fade-in.in { opacity: 1; }
