/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --navy:        #0B0D17;
  --cobalt:      #2B3FE8;
  --cobalt-light:#4F63FF;
  --red:         #D63B2F;
  --red-light:   #E85A4F;
  --offwhite:    #F5F4F0;
  --stone:       #E3E1DB;
  --white:       #ffffff;
  --muted:       rgba(11, 13, 23, 0.48);
  --muted-light: rgba(245, 244, 240, 0.52);
  --rule:        rgba(11, 13, 23, 0.1);
  --rule-dark:   rgba(245, 244, 240, 0.1);
  --cobalt-glow: rgba(43, 63, 232, 0.28);
  --red-glow:    rgba(214, 59, 47, 0.22);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  margin: 0;
  background: var(--offwhite);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

/* ─── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 64px);
  background: rgba(245, 244, 240, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand, .nav-links { display: flex; align-items: center; }

.brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  gap: clamp(20px, 2.5vw, 36px);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a:hover { color: var(--navy); }

.nav-mobile-link {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(11, 13, 23, 0.22);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  min-height: 42px;
  padding: 11px 24px;
  text-transform: uppercase;
  transition: background 130ms ease, color 130ms ease, transform 130ms ease, box-shadow 130ms ease;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  background: var(--cobalt);
  color: var(--white);
}
.nav-cta:hover,
.button-primary:hover {
  background: var(--cobalt-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--cobalt-glow);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(11, 13, 23, 0.24);
  color: var(--navy);
}
.button-secondary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.button-disabled,
.button-disabled:hover {
  cursor: default;
  background: transparent;
  border: 1px solid rgba(11, 13, 23, 0.14);
  color: rgba(11, 13, 23, 0.42);
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.button[disabled],
.button[data-loading="true"] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.button-secondary--light {
  border-color: rgba(245, 244, 240, 0.3);
  color: var(--offwhite);
}
.button-secondary--light:hover {
  background: var(--offwhite);
  border-color: var(--offwhite);
  color: var(--navy);
}

/* ─── EYEBROW / LABEL ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
}
.eyebrow::before { content: '[ '; white-space: pre; }
.eyebrow::after  { content: ' ]'; white-space: pre; }

/* eyebrow on dark backgrounds */
.eyebrow--light { color: rgba(245, 244, 240, 0.5); }

/* ─── TIPOGRAFIA ──────────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* ─── SECTIONS BASE ───────────────────────────────────────── */
.section {
  padding: clamp(72px, 10vw, 130px) clamp(28px, 5vw, 80px);
  position: relative;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 56px;
}
.section-heading h2 { margin-bottom: 0; }

.section-sub {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 58ch;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal .reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.js-reveal .reveal-stagger.is-visible > *:nth-child(1)  { transition-delay: 0.06s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: 0.14s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 0.22s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 0.30s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 0.38s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 0.46s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 0.54s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: 0.62s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: 0.70s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.78s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(11) { transition-delay: 0.86s; }
.js-reveal .reveal-stagger.is-visible > *:nth-child(12) { transition-delay: 0.94s; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--offwhite);
  color: var(--navy);
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px) clamp(48px, 6vw, 88px);
  border-right: 1px solid var(--rule);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  margin-bottom: 32px;
  max-width: 14ch;
  color: var(--navy);
}

.hero h1 .accent { color: var(--cobalt); }
.hero .eyebrow    { color: var(--red); }

.hero-copy {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
  max-width: 46ch;
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  max-width: 44ch;
  margin-bottom: 36px;
  opacity: 0.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.microcopy {
  font-family: var(--font-mono);
  color: rgba(11, 13, 23, 0.28);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.hero-right { overflow: hidden; }
.hero-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@keyframes sphereFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* ─── HERO ANIMAÇÕES ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-left > * {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
}
.hero-left > *:nth-child(1) { animation-delay: 0.06s; }
.hero-left > *:nth-child(2) { animation-delay: 0.16s; }
.hero-left > *:nth-child(3) { animation-delay: 0.26s; }
.hero-left > *:nth-child(4) { animation-delay: 0.36s; }
.hero-left > *:nth-child(5) { animation-delay: 0.44s; }
.hero-left > *:nth-child(6) { animation-delay: 0.52s; }
.hero-right { animation: fadeIn 1.2s ease 0.06s both; }

/* ─── A DIFERENÇA ─────────────────────────────────────────── */
.section-diferenca {
  background: var(--offwhite);
  color: var(--navy);
}
.section-diferenca .eyebrow { color: var(--cobalt); }
.section-diferenca h2       { color: var(--navy); }

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
}

.comp-card {
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--offwhite);
  border-right: 1px solid var(--rule);
}
.comp-card:last-child { border-right: 0; }

.comp-card--before { opacity: 0.6; }
.comp-card--before h3 { color: var(--muted); }
.comp-card--before p  { color: var(--muted); font-size: 0.9rem; line-height: 1.72; margin: 0; }

.comp-card--sofia {
  background: var(--navy);
  color: var(--offwhite);
}
.comp-card--sofia h3 { color: var(--offwhite); }
.comp-card--sofia p  { color: var(--muted-light); font-size: 0.9rem; line-height: 1.72; margin: 0; }

.comp-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid currentColor;
  align-self: flex-start;
}
.comp-card--before .comp-tag { color: rgba(11,13,23,0.3); }
.comp-card--sofia  .comp-tag { color: rgba(245,244,240,0.4); }

.comp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.comp-card--before .comp-list li { color: rgba(11,13,23,0.4); }
.comp-card--sofia  .comp-list li { color: rgba(245,244,240,0.7); }

.comp-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.comp-x     { background: rgba(11,13,23,0.07); color: rgba(11,13,23,0.3); }
.comp-check { background: var(--cobalt); color: var(--white); }

/* ─── COMO FUNCIONA ───────────────────────────────────────── */
.how {
  background: var(--stone);
  color: var(--navy);
}
.how .eyebrow { color: var(--cobalt); }
.how h2 { color: var(--navy); }

.steps-visual { border-top: 1px solid var(--rule); }

.step {
  display: grid;
  grid-template-columns: clamp(64px, 8vw, 100px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  padding: clamp(28px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--rule);
}

.step-num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--cobalt);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -0.02em;
}

.step-body h3 { color: var(--navy); margin-bottom: 10px; }
.step-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.76;
  margin: 0;
  max-width: 56ch;
}

/* ─── MOCKUP BAND ─────────────────────────────────────────── */
.mockup-band {
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.mockup-frames {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 4vw, 64px);
  background: var(--stone);
  border-right: 1px solid var(--rule);
}

.mockup-frame { margin: 0; }
.mockup-frame img { width: 100%; height: auto; display: block; }
.mockup-frame--primary  { transform: translateY(0); }
.mockup-frame--secondary { transform: translateY(28px); }

.mockup-copy {
  padding: clamp(48px, 7vw, 96px) clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.mockup-copy .eyebrow { margin: 0; }
.mockup-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin: 0;
  color: var(--navy);
}
.mockup-lead {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.76;
  max-width: 36ch;
  margin: 0;
}

/* ─── APROFUNDAMENTO / SKILLS ─────────────────────────────── */
.aprofundamento {
  background: var(--offwhite);
  color: var(--navy);
}
.aprofundamento .eyebrow { color: var(--cobalt); }

.apro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.apro-content h2 { color: var(--navy); }
.apro-body {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.76;
  margin-bottom: 20px;
}
.apro-highlight {
  border-left: 2px solid var(--cobalt);
  padding-left: 20px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.72;
  margin: 0;
}

/* skills console */
.skills-console {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0;
  overflow: hidden;
}

.skill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}

.skill-tab {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 18px;
  cursor: pointer;
  border: 0;
  background: transparent;
  border-right: 1px solid var(--rule);
  transition: color 150ms ease, background 150ms ease;
  white-space: nowrap;
}
.skill-tab:hover   { color: var(--navy); }
.skill-tab.active  { color: var(--cobalt); background: rgba(43,63,232,0.05); }

.skill-card {
  padding: clamp(20px, 3vw, 32px);
}
.skill-kicker {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 12px;
}
.skill-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.skill-card > p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.skill-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-card li {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--rule);
}
.skill-card li::before { content: '[ '; }
.skill-card li::after  { content: ' ]'; }

/* ─── CUSTO / EQUIPE ──────────────────────────────────────── */
.custo { background: var(--offwhite); }

.cost-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.cost-card {
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--offwhite);
  border-right: 1px solid var(--rule);
}
.cost-card:last-child { border-right: 0; }

.cost-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cost-rule {
  display: block;
  height: 2px;
  width: 32px;
  background: var(--stone);
  margin: 2px 0;
}

.cost-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cost-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
  margin: 0;
  flex: 1;
}

.cost-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 8px;
  transition: opacity 120ms ease;
}
.cost-cta:hover { opacity: 0.7; }

.cost-card--sofia {
  background: var(--navy);
  border-color: var(--navy);
}
.cost-card--sofia .cost-value { color: var(--offwhite); }
.cost-card--sofia .cost-rule  { background: var(--rule-dark); }
.cost-card--sofia .cost-label { color: rgba(245,244,240,0.38); }
.cost-card--sofia p            { color: rgba(245,244,240,0.5); }

/* ─── PARA QUEM ───────────────────────────────────────────── */
.para-quem {
  background: var(--stone);
  color: var(--navy);
}
.para-quem .eyebrow { color: var(--cobalt); }
.para-quem h2 { color: var(--navy); }

.persona-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.persona-card {
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--stone);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 200ms ease;
}
.persona-card:nth-child(2n)    { border-right: 0; }
.persona-card:nth-child(3),
.persona-card:nth-child(4)     { border-bottom: 0; }
.persona-card:hover            { background: rgba(43,63,232,0.05); }

.persona-icon {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--cobalt);
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.persona-card h3 { color: var(--navy); margin-bottom: 10px; }
.persona-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
  margin: 0;
}

/* ─── PHOTO BAND ──────────────────────────────────────────── */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--offwhite);
}

.photo-band-img {
  overflow: hidden;
}
.photo-band-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.photo-band-copy {
  padding: clamp(48px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

/* esfera vermelha no lado do texto */
.photo-band-copy::after {
  content: '';
  position: absolute;
  width: clamp(200px, 28vw, 380px);
  height: clamp(200px, 28vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%,
    #f07060 0%,
    var(--red-light) 28%,
    var(--red) 55%,
    #6b1510 100%
  );
  box-shadow:
    inset -20px -20px 50px rgba(0,0,0,0.4),
    inset 7px 7px 24px rgba(255,140,120,0.18),
    0 0 80px var(--red-glow);
  bottom: -80px;
  right: -80px;
  animation: sphereFloat 8s ease-in-out infinite;
  pointer-events: none;
}

/* satélite azul */
.photo-band-copy::before {
  content: '';
  position: absolute;
  width: clamp(32px, 4.5vw, 58px);
  height: clamp(32px, 4.5vw, 58px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,
    #8fa0ff,
    var(--cobalt) 58%,
    #0d0f2e
  );
  box-shadow: inset -5px -5px 12px rgba(0,0,0,0.4);
  bottom: calc(-80px + clamp(165px, 23vw, 315px));
  right: calc(-80px + clamp(165px, 23vw, 315px) - 16px);
  animation: sphereFloat 8s ease-in-out infinite;
  animation-delay: 0.5s;
  pointer-events: none;
}

.photo-band-copy .eyebrow { color: var(--cobalt); }
.photo-band-copy h2 {
  color: var(--navy);
  max-width: 16ch;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}
.photo-band-copy p {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.75;
  max-width: 38ch;
  margin: 0;
}

/* ─── BETA / ACESSO ───────────────────────────────────────── */
.beta {
  background: var(--offwhite);
  color: var(--navy);
}
.beta-header { max-width: 680px; margin-bottom: 52px; }
.beta-header .eyebrow { color: var(--cobalt); }
.beta-header h2 { color: var(--navy); margin-bottom: 16px; }

.beta-sub {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.76;
  max-width: 58ch;
  margin-bottom: 10px;
}

.beta-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--rule);
  margin-bottom: 48px;
  background: var(--stone);
}

.beta-step {
  padding: clamp(20px, 3vw, 36px) clamp(18px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--rule);
  background: var(--offwhite);
}

.beta-step-num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--cobalt);
  opacity: 0.6;
}

.beta-step strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.beta-step span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.beta-step--muted { opacity: 0.4; }

.beta-arrow {
  padding: 0 clamp(10px, 1.5vw, 20px);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--cobalt);
  opacity: 0.4;
  user-select: none;
}

.beta-bottom { padding-top: 4px; }
.beta-bottom .button-primary {
  background: var(--cobalt);
  color: var(--white);
}
.beta-bottom .button-primary:hover {
  background: var(--cobalt-light);
  box-shadow: 0 8px 28px var(--cobalt-glow);
}

/* ─── CANDIDATURA ─────────────────────────────────────────── */
.application {
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  border-top: 1px solid var(--rule);
}

.application-copy {
  padding: clamp(72px, 9vw, 128px) clamp(36px, 5.5vw, 88px);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--offwhite);
}

.application-copy .eyebrow { color: var(--red); }

.application-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  margin-bottom: 20px;
  color: var(--navy);
}

.application-copy h2 .accent-cobalt { color: var(--cobalt); }

.application-copy > p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 42ch;
}

.queue-proof {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-left: 2px solid var(--cobalt);
  padding-left: 20px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}
.queue-proof span {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  flex-shrink: 0;
}

/* ─── FORM ────────────────────────────────────────────────── */
.application > .lead-form {
  margin: clamp(48px, 7vw, 88px) clamp(36px, 5.5vw, 88px);
}

.lead-form {
  background: var(--offwhite);
  border: 1px solid var(--rule);
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 44px);
}

.honeypot { display: none; }

label {
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.4);
}

input, select, textarea {
  background: var(--stone);
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.94rem;
  min-height: 48px;
  padding: 12px 14px;
  transition: border-color 120ms ease, background 120ms ease;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  background: var(--white);
  border-color: var(--cobalt);
  outline: none;
}
textarea { resize: vertical; }

.legal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(11, 13, 23, 0.52);
}

.legal-consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--cobalt);
}

.legal-consent a {
  color: rgba(11, 13, 23, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-consent a:hover {
  color: var(--navy);
}

.form-note    { color: var(--muted); font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.1em; margin: 0; }
.form-success { color: var(--navy); font-family: var(--font-mono); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.08em; margin: 0; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq {
  background: var(--stone);
  color: var(--navy);
}
.faq .eyebrow { color: var(--cobalt); }
.faq h2 { color: var(--navy); }

.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list details:first-child { border-top: 1px solid var(--rule); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cobalt);
  line-height: 1;
  transition: transform 180ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--muted);
  padding-bottom: 22px;
  margin: 0;
  max-width: 66ch;
}

/* ─── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  background: var(--offwhite);
  color: var(--navy);
  padding: clamp(80px, 11vw, 160px) clamp(28px, 5vw, 80px);
}

.final-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta .eyebrow { color: var(--cobalt); }

.final-cta h2 {
  font-size: clamp(2.6rem, 6vw, 6rem);
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 0.95;
}

.final-cta h2 .accent-cobalt { color: var(--cobalt); }
.final-cta h2 .accent-red    { color: var(--red); }

.final-inner p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 40px;
}

.final-inner .typing-dots { margin-top: 0; margin-bottom: 32px; }

.final-cta .button-primary       { background: var(--cobalt); color: var(--white); }
.final-cta .button-primary:hover { background: var(--cobalt-light); box-shadow: 0 8px 28px var(--cobalt-glow); }

/* ─── PÁGINAS LEGAIS ─────────────────────────────────────── */
.legal-page {
  background: var(--offwhite);
}

.legal-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--rule);
  background: rgba(245, 244, 240, 0.94);
}

.legal-header .brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--red);
}

.legal-back {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 13, 23, 0.45);
}

.legal-main {
  padding: clamp(48px, 7vw, 92px) 20px;
}

.legal-document {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--rule);
}

.legal-document .legal-eyebrow,
.legal-document h2,
.legal-document h3 {
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document .legal-eyebrow {
  margin-bottom: 12px;
  font-size: 0.68rem;
  color: var(--red);
}

.legal-document h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-meta {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}

.legal-meta p,
.legal-document p {
  max-width: 760px;
  color: rgba(11, 13, 23, 0.68);
  font-size: 0.98rem;
  line-height: 1.78;
}

.legal-meta p {
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: rgba(11, 13, 23, 0.46);
}

.legal-document h2 {
  margin: 34px 0 12px;
  font-size: 0.78rem;
  color: var(--navy);
}

.legal-document h3 {
  margin: 22px 0 8px;
  font-size: 0.72rem;
  color: rgba(11, 13, 23, 0.72);
}

.legal-document .legal-note {
  padding-left: 16px;
  border-left: 2px solid var(--red);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--stone);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--rule);
}
.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer a {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.35);
  transition: color 120ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer a:hover { color: var(--navy); }
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.footer p {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.25);
  margin: 0;
}

/* ─── ELEMENTOS GRÁFICOS ──────────────────────────────────── */

/* Pontos de digitação — o ponto triplo */
.typing-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.typing-dots span {
  display: block;
  border-radius: 50%;
}
.typing-dots span:nth-child(1) {
  width: 10px; height: 10px;
  background: var(--red);
}
.typing-dots span:nth-child(2) {
  width: 10px; height: 10px;
  background: var(--cobalt);
}
.typing-dots span:nth-child(3) {
  width: 10px; height: 10px;
  background: var(--red);
  opacity: 0.45;
}

/* Barras de contraste editorial */
.contrast-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.bar {
  display: block;
  height: 3px;
  border-radius: 0;
}
.bar--red  { width: 64px; background: var(--red); }
.bar--blue { width: 48px; background: var(--cobalt); }
.bar--short { width: 32px; opacity: 0.4; }

/* ─── PRICING PAGE ────────────────────────────────────────── */
.page-topbar { position: sticky; }

.pricing-page {
  padding-top: 64px;
  background: var(--offwhite);
  color: var(--navy);
}

body[data-checkout-source="exclusive_access"] .pricing-page {
  padding-top: 0;
}

body[data-checkout-source="exclusive_access"] {
  overflow-x: hidden;
}

body[data-checkout-source="exclusive_access"] .pricing-plans > .section-heading,
body[data-checkout-source="exclusive_access"] .pricing-intro-band > .section-heading,
body[data-checkout-source="exclusive_access"] .pricing-plan-grid,
body[data-checkout-source="exclusive_access"] .pricing-intro-grid {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

body[data-checkout-source="exclusive_access"] .pricing-plans > .section-heading,
body[data-checkout-source="exclusive_access"] .pricing-intro-band > .section-heading {
  margin-bottom: 56px;
}

.pricing-hero,
.pricing-intro-band,
.pricing-plans,
.pricing-compare,
.pricing-addons,
.pricing-usage,
.pricing-faq,
.pricing-final-cta {
  padding: clamp(72px, 10vw, 130px) clamp(28px, 5vw, 80px);
}

.pricing-hero {
  min-height: auto;
  display: block;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--rule);
}

.pricing-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.pricing-hero-title {
  max-width: 820px;
}

.pricing-hero-side {
  max-width: 520px;
}

.pricing-hero h1 {
  max-width: 8ch;
  margin-bottom: 0;
}

.pricing-hero-copy {
  max-width: 60ch;
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
}

.pricing-hero-copy--secondary {
  margin-bottom: 24px;
}

.pricing-plan-kicker,
.pricing-plan-list h4,
.pricing-addon-price {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.pricing-intro-grid p,
.pricing-addon-card p,
.pricing-final-inner p,
.pricing-usage-copy p,
.pricing-faq-grid p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.exclusive-plans-first .pricing-plan-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 580px;
  margin: 0 auto;
}

.exclusive-plans-first #plano-pro[hidden] {
  display: none !important;
}

.pricing-plan-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 22px 60px rgba(11, 13, 23, 0.05);
}

.pricing-plan-card--featured {
  background: linear-gradient(180deg, #101432 0%, #0b0d17 100%);
  border-color: rgba(43, 63, 232, 0.18);
  color: var(--offwhite);
  box-shadow: 0 30px 70px rgba(11, 13, 23, 0.18);
}

.pricing-plan-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.pricing-plan-kicker { color: var(--cobalt); }
.pricing-plan-kicker--light,
.pricing-plan-list--light h4 { color: rgba(245, 244, 240, 0.56); }

.pricing-plan-head h3 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: inherit;
}

.pricing-discount-price {
  display: grid;
  gap: 7px;
}

.pricing-exclusive-label {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(43, 63, 232, 0.24);
  background: rgba(43, 63, 232, 0.08);
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-discount-price--light .pricing-exclusive-label {
  border-color: rgba(245, 244, 240, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 244, 240, 0.9);
}

.pricing-original-price {
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
  color: rgba(11, 13, 23, 0.46);
}

.pricing-discount-price--light .pricing-original-price {
  color: rgba(245, 244, 240, 0.52);
}

.pricing-discount-price p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.pricing-discount-price--light p {
  color: rgba(245, 244, 240, 0.68);
}

.pricing-plan-head h3 span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-plan-card--featured .pricing-plan-head h3 span,
.pricing-plan-card--featured .pricing-plan-copy--muted-light,
.pricing-plan-card--featured .pricing-plan-list li {
  color: rgba(245, 244, 240, 0.76);
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(11, 13, 23, 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(43, 63, 232, 0.05);
}

.pricing-pill--light {
  border-color: rgba(245,244,240,0.16);
  color: rgba(245,244,240,0.88);
  background: rgba(255,255,255,0.06);
}

.pricing-plan-copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--navy);
}

.pricing-plan-copy--muted { color: var(--muted); }
.pricing-plan-copy--light { color: rgba(245, 244, 240, 0.94); }
.pricing-plan-copy--muted-light { color: rgba(245,244,240,0.64); }

.pricing-plan-list {
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.pricing-plan-list--limits {
  margin-top: -4px;
}

.pricing-plan-card--featured .pricing-plan-list {
  border-top-color: rgba(245,244,240,0.1);
}

.pricing-plan-list h4 {
  margin-bottom: 14px;
  color: var(--cobalt);
}

.pricing-plan-list ul {
  margin: 0;
  padding-left: 18px;
}

.pricing-plan-list li {
  margin-bottom: 10px;
  line-height: 1.72;
}

.pricing-plan-cta {
  margin-top: auto;
  width: 100%;
}

.pricing-plan-card--featured .pricing-plan-cta--light {
  box-shadow: none;
}

.pricing-plans-note {
  margin: 24px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.exclusive-plans-first {
  padding-top: clamp(72px, 9vw, 112px);
}

.pricing-checkout-modal[hidden] {
  display: none;
}

.pricing-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.pricing-checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 23, 0.48);
  backdrop-filter: blur(8px);
}

.pricing-checkout-panel {
  position: relative;
  width: min(100%, 920px);
  max-height: min(92vh, 920px);
  overflow: auto;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(245, 244, 240, 0.98);
  border: 1px solid var(--rule);
  box-shadow: 0 28px 80px rgba(11, 13, 23, 0.16);
}

.pricing-checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.pricing-checkout-head h2 {
  margin: 0;
  max-width: 14ch;
}

.pricing-checkout-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.pricing-checkout-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  background: rgba(43, 63, 232, 0.04);
}

.pricing-checkout-plan-label {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-checkout-form {
  display: grid;
  gap: 18px;
}

.pricing-checkout-step[hidden] {
  display: none;
}

.pricing-checkout-step {
  display: grid;
  gap: 14px;
}

.pricing-checkout-step-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.pricing-checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lead-form-field {
  display: grid;
  gap: 8px;
}

.lead-form-field span,
.lead-form-field small {
  color: var(--muted);
}

.lead-form-field span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.lead-form-field small {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  line-height: 1.45;
  color: #b45a37;
}

.lead-form-field input {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
}

.lead-form-field input:focus {
  outline: none;
  border-color: rgba(43, 63, 232, 0.42);
  box-shadow: 0 0 0 4px rgba(43, 63, 232, 0.08);
}

.pricing-checkout-note,
.form-error {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.pricing-checkout-note {
  color: var(--muted);
}

.form-error {
  color: var(--red);
}

.pricing-checkout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ─── EXCLUSIVE ACCESS LANDING ────────────────────────────── */
.exclusive-landing {
  --exclusive-page-max: 1120px;
  --exclusive-page-gutter: clamp(18px, 5vw, 80px);
  --exclusive-blue: var(--cobalt);
  --exclusive-blue-hover: var(--cobalt-light);
  --exclusive-red: var(--red);
  --exclusive-bg: var(--offwhite);
  --exclusive-border: var(--stone);
  background: var(--exclusive-bg);
  color: var(--navy);
  overflow: hidden;
}

.exclusive-landing *,
.exclusive-landing *::before,
.exclusive-landing *::after {
  box-sizing: border-box;
}

.exclusive-landing img {
  max-width: 100%;
}

.exclusive-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding-block: clamp(80px, 9vw, 130px) clamp(64px, 8vw, 100px);
  padding-left: var(--exclusive-page-gutter);
  padding-right: var(--exclusive-page-gutter);
  background: var(--offwhite);
  color: var(--navy);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.exclusive-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,13,23,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,13,23,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.exclusive-hero-left,
.exclusive-hero-right {
  position: relative;
  min-width: 0;
  z-index: 1;
}

.exclusive-hero-left {
  max-width: 780px;
}

.exclusive-hero-eyebrow,
.exclusive-eyebrow {
  display: block;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--exclusive-blue);
}

.exclusive-hero-eyebrow,
.exclusive-eyebrow-red {
  color: var(--exclusive-red);
}

.exclusive-hero-offer {
  display: grid;
  gap: 8px;
  max-width: 100%;
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--font-mono);
  line-height: 1;
  text-transform: uppercase;
}

.exclusive-hero-offer span {
  color: var(--exclusive-red);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.exclusive-hero-offer strong {
  color: var(--exclusive-blue);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.55rem);
  letter-spacing: -0.04em;
}

.exclusive-hero-title,
.exclusive-h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: none;
}

.exclusive-hero-title {
  max-width: 12ch;
  font-size: clamp(3rem, 5.25vw, 5.45rem);
  line-height: 0.95;
  text-transform: none;
}

.exclusive-hero-title span {
  display: block;
}

.exclusive-hero-title span:nth-child(1),
.exclusive-hero-title span:nth-child(2),
.exclusive-hero-title span:nth-child(3),
.exclusive-hero-title span:nth-child(4),
.exclusive-hero-title span:nth-child(5) {
  white-space: nowrap;
}

.exclusive-hero-title em {
  color: var(--exclusive-blue);
  font-style: normal;
}

.exclusive-hero-sub {
  max-width: 500px;
  margin: 24px 0 16px;
  font-size: 0.98rem;
  line-height: 1.68;
  color: rgba(11,13,23,0.62);
}

.exclusive-hero-note {
  max-width: 540px;
  margin: 0 0 38px;
  padding-left: 16px;
  border-left: 3px solid var(--exclusive-blue);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.6;
}

.exclusive-hero-actions,
.exclusive-hero-badges,
.exclusive-steps-grid + .exclusive-button {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.exclusive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.exclusive-button:hover {
  transform: translateY(-1px);
}

.exclusive-button-primary {
  background: var(--exclusive-blue);
  border-color: var(--exclusive-blue);
  color: var(--white);
}

.exclusive-button-primary:hover {
  background: var(--exclusive-blue-hover);
  border-color: var(--exclusive-blue-hover);
}

.exclusive-button-ghost {
  border-color: rgba(11,13,23,0.24);
  color: var(--navy);
}

.exclusive-button-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.exclusive-button-outline {
  border-color: rgba(11,13,23,0.24);
  color: var(--navy);
}

.exclusive-button-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.exclusive-hero-badges {
  margin-top: 44px;
  gap: 22px;
}

.exclusive-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.48);
}

.exclusive-hero-badge span {
  width: 5px;
  height: 5px;
  background: var(--exclusive-red);
}

.exclusive-hero-proof {
  width: min(100%, 660px);
  margin: 0 0 0 auto;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 28px 80px rgba(11,13,23,0.12);
}

.exclusive-proof-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule);
  background: #fafaf8;
}

.exclusive-proof-browser span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11,13,23,0.16);
}

.exclusive-proof-browser p {
  margin: 0 0 0 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(11,13,23,0.46);
}

.exclusive-hero-proof img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  object-position: top left;
}

.exclusive-hero-proof figcaption {
  margin: 0;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(11,13,23,0.62);
}

.exclusive-hero-proof figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.exclusive-chat {
  width: min(100%, 430px);
  margin-left: auto;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.exclusive-chat-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.exclusive-chat-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}

.exclusive-chat-topbar p {
  margin: 0 0 0 6px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.24);
}

.exclusive-chat-message {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  animation: exclusiveFadeSlide 480ms ease forwards;
  opacity: 0;
}

.exclusive-chat-message:nth-of-type(2) { animation-delay: 0.2s; }
.exclusive-chat-message:nth-of-type(3) { animation-delay: 0.55s; }
.exclusive-chat-message:nth-of-type(4) { animation-delay: 0.9s; }
.exclusive-chat-message:nth-of-type(5) { animation-delay: 1.25s; }
.exclusive-chat-message:nth-of-type(6) { animation-delay: 1.6s; }

.exclusive-chat-message-user {
  justify-content: flex-end;
}

.exclusive-chat-message p {
  max-width: 78%;
  margin: 0;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.exclusive-chat-message-user p {
  background: var(--exclusive-blue);
  color: var(--white);
}

.exclusive-chat-message-bot b {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(255,255,255,0.62);
}

.exclusive-chat-message-bot p {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}

.exclusive-typing {
  display: inline-flex;
  gap: 4px;
  margin-left: 34px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.exclusive-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: exclusiveTyping 1.4s infinite;
}

.exclusive-typing span:nth-child(2) { animation-delay: 0.2s; }
.exclusive-typing span:nth-child(3) { animation-delay: 0.4s; }

.exclusive-ticker {
  padding: 18px 0;
  background: var(--white);
  border-top: 1px solid var(--exclusive-border);
  border-bottom: 1px solid var(--exclusive-border);
}

.exclusive-ticker > p {
  margin: 0 0 10px;
  padding-left: max(var(--exclusive-page-gutter), calc((100vw - var(--exclusive-page-max)) / 2));
  padding-right: max(var(--exclusive-page-gutter), calc((100vw - var(--exclusive-page-max)) / 2));
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.42);
}

.exclusive-ticker-mask {
  overflow: hidden;
}

.exclusive-ticker-track {
  display: flex;
  width: max-content;
  animation: exclusiveTicker 30s linear infinite;
}

.exclusive-ticker-track:hover {
  animation-play-state: paused;
}

.exclusive-ticker-track div {
  display: grid;
  gap: 2px;
  min-width: 300px;
  padding: 6px 36px;
  border-right: 1px solid var(--exclusive-border);
}

.exclusive-ticker-track strong {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exclusive-ticker-track span {
  font-size: 0.83rem;
  color: rgba(11,13,23,0.55);
}

.exclusive-section {
  padding-block: clamp(76px, 10vw, 116px);
  padding-left: var(--exclusive-page-gutter);
  padding-right: var(--exclusive-page-gutter);
}

.exclusive-wrap {
  max-width: var(--exclusive-page-max);
  margin: 0 auto;
}

.exclusive-center {
  text-align: center;
}

.exclusive-center .exclusive-eyebrow {
  text-align: center;
}

.exclusive-h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.8vw, 4.3rem);
  line-height: 0.98;
}

.exclusive-center .exclusive-h2 {
  margin-left: auto;
  margin-right: auto;
}

.exclusive-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  margin-top: 64px;
}

.exclusive-stats,
.exclusive-card-grid,
.exclusive-compare-grid,
.exclusive-steps-grid {
  display: grid;
  gap: 1px;
  background: var(--exclusive-border);
  border: 1px solid var(--exclusive-border);
}

.exclusive-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.exclusive-stat {
  padding: 34px 28px;
  background: var(--exclusive-bg);
}

.exclusive-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.exclusive-stat span {
  color: var(--exclusive-blue);
}

.exclusive-stat p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.46);
}

.exclusive-copy p {
  margin: 0 0 20px;
  font-size: 1.04rem;
  line-height: 1.82;
  color: rgba(11,13,23,0.66);
}

.exclusive-copy strong {
  color: var(--navy);
}

.exclusive-copy .exclusive-button {
  margin-top: 12px;
}

.exclusive-proof-section {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.exclusive-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.exclusive-proof-heading p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(11,13,23,0.62);
}

.exclusive-proof-grid {
  display: grid;
  gap: 24px;
}

.exclusive-proof-showcase {
  display: grid;
  grid-template-columns: minmax(190px, 0.24fr) minmax(0, 0.76fr);
  min-width: 0;
  border: 1px solid var(--rule);
  background: var(--offwhite);
  box-shadow: 0 22px 60px rgba(11,13,23,0.05);
}

.exclusive-proof-nav {
  display: grid;
  align-content: start;
  background: var(--offwhite);
  border-right: 1px solid var(--rule);
}

.exclusive-proof-nav button {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: rgba(11,13,23,0.56);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.exclusive-proof-nav button:hover,
.exclusive-proof-nav button.active {
  background: var(--white);
  color: var(--navy);
}

.exclusive-proof-nav span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cobalt);
}

.exclusive-proof-stage {
  position: relative;
  min-height: clamp(440px, 46vw, 620px);
  overflow: hidden;
}

.exclusive-proof-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 0;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  background: var(--offwhite);
  border: 1px solid var(--rule);
  box-shadow: 0 22px 60px rgba(11,13,23,0.05);
}

.exclusive-proof-stage .exclusive-proof-card {
  position: absolute;
  inset: 0;
  border: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.exclusive-proof-stage .exclusive-proof-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.exclusive-proof-card-wide {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
}

.exclusive-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
  border-right: 1px solid var(--rule);
}

.exclusive-proof-copy span {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.exclusive-proof-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.exclusive-proof-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(11,13,23,0.62);
}

.exclusive-proof-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top left;
  background: var(--white);
}

.exclusive-proof-card img[src*="sofia-brand-board-outside"] {
  object-fit: contain;
  padding: clamp(14px, 2vw, 24px);
}

.exclusive-proof-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-left: 1px solid var(--rule);
  background:
    linear-gradient(rgba(11,13,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,13,23,0.04) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
  color: rgba(11,13,23,0.44);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.exclusive-proof-progress {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  padding: 0 24px 22px;
  background: var(--offwhite);
}

.exclusive-proof-progress span {
  display: block;
  width: 38px;
  height: 2px;
  background: rgba(11,13,23,0.16);
}

.exclusive-proof-progress span.active {
  background: var(--cobalt);
}

.exclusive-visual-placeholder,
.exclusive-placeholder-card {
  display: grid;
  min-height: clamp(280px, 34vw, 520px);
  place-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px dashed rgba(11,13,23,0.28);
  background:
    linear-gradient(rgba(11,13,23,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,13,23,0.035) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
  color: rgba(11,13,23,0.46);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.exclusive-visual-placeholder {
  width: min(100%, 620px);
  margin-left: auto;
  box-shadow: 0 24px 70px rgba(11,13,23,0.08);
}

.exclusive-placeholder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  border: 1px solid var(--rule);
  background: var(--offwhite);
  box-shadow: 0 22px 60px rgba(11,13,23,0.05);
}

.exclusive-placeholder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 40px);
  border-right: 1px solid var(--rule);
}

.exclusive-placeholder-copy span {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.exclusive-placeholder-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.exclusive-placeholder-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(11,13,23,0.62);
}

.exclusive-diff,
.exclusive-faq {
  position: relative;
  background: var(--offwhite);
  color: var(--navy);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.exclusive-diff-intro {
  position: relative;
  z-index: 1;
  width: min(var(--exclusive-page-max), calc(100% - (var(--exclusive-page-gutter) * 2)));
  max-width: none;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 92px) 0 clamp(42px, 6vw, 64px);
  border-bottom: 1px solid var(--rule);
}

.exclusive-diff-intro .exclusive-h2,
.exclusive-faq .exclusive-h2 {
  color: var(--navy);
}

.exclusive-diff-intro p {
  max-width: 560px;
  margin: 0;
  color: rgba(11,13,23,0.54);
}

.exclusive-diff-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  width: min(var(--exclusive-page-max), calc(100% - (var(--exclusive-page-gutter) * 2)));
  max-width: none;
  margin: 0 auto clamp(64px, 8vw, 92px);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.exclusive-diff-tabs {
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--rule);
}

.exclusive-diff-tab {
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.exclusive-diff-tab span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.34);
}

.exclusive-diff-tab strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
  color: rgba(11,13,23,0.42);
}

.exclusive-diff-tab p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(11,13,23,0.36);
  transition: max-height 220ms ease, margin 220ms ease, color 220ms ease;
}

.exclusive-diff-tab i {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 10px;
  background: var(--exclusive-blue);
  transition: width 260ms ease;
}

.exclusive-diff-tab.active span {
  color: var(--exclusive-red);
}

.exclusive-diff-tab.active strong {
  color: var(--navy);
}

.exclusive-diff-tab.active p {
  max-height: 90px;
  margin-top: 8px;
  color: rgba(11,13,23,0.56);
}

.exclusive-diff-tab.active i {
  width: 34px;
}

.exclusive-diff-panels {
  padding: clamp(28px, 4vw, 48px);
}

.exclusive-diff-panel {
  display: none;
}

.exclusive-diff-panel.active {
  display: block;
  animation: exclusivePanelIn 240ms ease;
}

.exclusive-mockup {
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 18px 50px rgba(11,13,23,0.04);
}

.exclusive-mockup > p {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.38);
}

.exclusive-mockup div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}

.exclusive-mockup div:last-child {
  border-bottom: 0;
}

.exclusive-mockup span {
  color: rgba(11,13,23,0.66);
}

.exclusive-mockup strong {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8fa0ff;
  text-align: right;
}

.exclusive-pipeline strong {
  color: var(--exclusive-red);
}

.exclusive-examples {
  background: var(--white);
}

.exclusive-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
}

.exclusive-examples-showcase {
  margin-top: 54px;
  border: 1px solid var(--rule);
  background: var(--offwhite);
  box-shadow: 0 22px 60px rgba(11,13,23,0.05);
}

.exclusive-examples-stage {
  position: relative;
  min-height: clamp(390px, 32vw, 470px);
  overflow: hidden;
}

.exclusive-example-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.exclusive-example-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.exclusive-example-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--rule);
}

.exclusive-example-copy > span,
.exclusive-example-copy > strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.42);
}

.exclusive-example-copy p {
  margin: 0 0 24px;
  padding-left: 16px;
  border-left: 2px solid var(--exclusive-border);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(11,13,23,0.66);
}

.exclusive-example-copy > strong {
  color: var(--exclusive-blue);
}

.exclusive-example-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exclusive-example-copy em {
  padding: 7px 11px;
  border: 1px solid var(--exclusive-border);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.62);
}

.exclusive-example-placeholder {
  display: grid;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  place-items: center;
  padding: 0;
  background: var(--white);
  color: rgba(11,13,23,0.44);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.exclusive-example-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exclusive-examples-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}

.exclusive-examples-nav button {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: rgba(11,13,23,0.52);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}

.exclusive-examples-nav button:nth-child(4n) {
  border-right: 0;
}

.exclusive-examples-nav button:hover,
.exclusive-examples-nav button.active {
  background: var(--white);
  color: var(--navy);
}

.exclusive-examples-nav span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cobalt);
}

.exclusive-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--exclusive-border);
  border-right: 0;
  border-bottom: 0;
  background: transparent;
}

.exclusive-capability-grid p {
  min-height: 0;
  margin: 0;
  padding: 14px 16px 14px 28px;
  border-right: 1px solid var(--exclusive-border);
  border-bottom: 1px solid var(--exclusive-border);
  background: var(--white);
  color: rgba(11,13,23,0.72);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  position: relative;
}

.exclusive-capability-grid p::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.28em;
  width: 5px;
  height: 5px;
  background: var(--exclusive-blue);
}

.exclusive-example-card,
.exclusive-area-card,
.exclusive-compare-card,
.exclusive-step-card {
  background: var(--exclusive-bg);
}

.exclusive-example-card {
  padding: clamp(26px, 3vw, 36px);
}

.exclusive-example-card > span,
.exclusive-example-card > strong,
.exclusive-area-card span,
.exclusive-compare-card > span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.42);
}

.exclusive-example-card p {
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 2px solid var(--exclusive-border);
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(11,13,23,0.66);
}

.exclusive-example-card > strong {
  color: var(--exclusive-blue);
}

.exclusive-example-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exclusive-example-card em {
  padding: 5px 10px;
  border: 1px solid var(--exclusive-border);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.62);
}

.exclusive-area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  gap: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
}

.exclusive-area-card {
  padding: 28px 24px;
  border-right: 1px solid var(--exclusive-border);
  border-bottom: 1px solid var(--exclusive-border);
}

.exclusive-area-card span {
  color: var(--exclusive-blue);
}

.exclusive-area-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.exclusive-area-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.62;
  color: rgba(11,13,23,0.54);
}

.exclusive-compare {
  background: var(--white);
}

.exclusive-compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
}

.exclusive-compare-card {
  padding: clamp(30px, 4vw, 44px) clamp(26px, 4vw, 38px);
}

.exclusive-compare-card h3 {
  margin: 0 0 28px;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.exclusive-compare-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.exclusive-compare-card li {
  padding: 13px 0;
  border-bottom: 1px solid var(--exclusive-border);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(11,13,23,0.56);
}

.exclusive-compare-card-dark {
  background: var(--navy);
  color: var(--white);
}

.exclusive-compare-card-dark > span {
  color: var(--exclusive-red);
}

.exclusive-compare-card-dark li {
  border-color: rgba(255,255,255,0.08);
  color: rgba(245,244,240,0.6);
}

.exclusive-steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 54px 0 46px;
}

.exclusive-step-card {
  padding: clamp(26px, 3vw, 36px) clamp(22px, 3vw, 28px);
  text-align: left;
}

.exclusive-step-card > span {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 700;
  color: var(--exclusive-border);
}

.exclusive-step-card div {
  display: grid;
  place-items: center;
  min-height: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--exclusive-border);
  background: var(--exclusive-bg);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(11,13,23,0.32);
}

.exclusive-step-card .exclusive-step-dark {
  background: var(--navy);
  color: rgba(245,244,240,0.4);
}

.exclusive-step-card .exclusive-step-blue {
  border-color: var(--exclusive-blue);
  background: rgba(43,63,232,0.04);
  color: var(--exclusive-blue);
}

.exclusive-step-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.exclusive-step-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(11,13,23,0.55);
}

.exclusive-faq {
  padding: clamp(72px, 9vw, 104px) clamp(28px, 5vw, 80px);
}

.exclusive-faq-wrap {
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.exclusive-faq-wrap .exclusive-h2 {
  margin-left: 0;
  margin-right: 0;
}

.exclusive-faq-list {
  max-width: 860px;
  margin-top: 46px;
  border-top: 1px solid var(--rule);
  text-align: left;
}

.exclusive-faq-item {
  border-bottom: 1px solid var(--rule);
}

.exclusive-faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(11,13,23,0.66);
  text-align: left;
}

.exclusive-faq-item button span {
  font: 500 1rem/1.35 var(--font-body);
}

.exclusive-faq-item i {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(11,13,23,0.36);
  border-bottom: 1.5px solid rgba(11,13,23,0.36);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.exclusive-faq-item > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.exclusive-faq-item p {
  margin: 0;
  padding-bottom: 22px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(11,13,23,0.56);
}

.exclusive-faq-item.open button {
  color: var(--navy);
}

.exclusive-faq-item.open i {
  transform: rotate(225deg) translate(-2px, -2px);
}

.exclusive-faq-item.open > div {
  max-height: 240px;
}

.exclusive-sticky-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: var(--cobalt);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 280ms ease;
}

.exclusive-sticky-bar.on {
  transform: translateY(0);
}

.exclusive-sticky-bar p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exclusive-sticky-bar span {
  opacity: 0.58;
  font-weight: 400;
}

.exclusive-sticky-bar button {
  min-height: 40px;
  padding: 10px 24px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--cobalt);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exclusive-sticky-bar button:hover {
  background: var(--navy);
  color: var(--white);
}

.exclusive-landing .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.exclusive-landing .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes exclusiveTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes exclusiveFadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes exclusiveTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes exclusivePanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.checkout-success-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f8f5 0%, #f5f4f0 100%);
  color: var(--navy);
}

.checkout-success-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(40px, 8vw, 96px) 24px;
}

.checkout-success-card {
  width: min(100%, 760px);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 60px rgba(11, 13, 23, 0.06);
}

.checkout-success-card h1 {
  max-width: 10ch;
  margin-bottom: 18px;
}

.checkout-success-card p {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.pricing-table-shell {
  overflow-x: auto;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11, 13, 23, 0.04);
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}

.pricing-compare-table th {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.65);
}

.pricing-compare-table td {
  font-size: 0.94rem;
  color: var(--navy);
  vertical-align: top;
}

.pricing-compare-table td strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.pricing-compare-table td span {
  display: block;
  max-width: 40ch;
  font-size: 0.82rem;
  line-height: 1.58;
  color: var(--muted);
}

.pricing-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pricing-addon-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  min-height: 100%;
  box-shadow: 0 16px 42px rgba(11, 13, 23, 0.04);
}

.pricing-addon-card h3 {
  margin-bottom: 8px;
}

.pricing-addon-price {
  margin: 0 0 12px;
  color: var(--cobalt);
}

.pricing-usage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.pricing-usage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 16px 42px rgba(11, 13, 23, 0.04);
}

.pricing-usage-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(11, 13, 23, 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(43, 63, 232, 0.03);
}

.pricing-usage-note {
  max-width: 60ch;
  margin: 28px 0 0;
  color: var(--muted);
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-faq-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--rule);
}

.pricing-faq-grid h3 {
  margin-bottom: 12px;
  text-transform: none;
}

.pricing-final-inner {
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86));
  border: 1px solid var(--rule);
  box-shadow: 0 22px 60px rgba(11, 13, 23, 0.05);
}

.pricing-final-inner h2 {
  max-width: 12ch;
}

.pricing-final-inner p {
  max-width: 58ch;
}

/* ─── SKILLS PAGE ─────────────────────────────────────────── */
.skills-page {
  padding-top: 64px;
  background: var(--offwhite);
  color: var(--navy);
}

.skills-hero,
.skills-map,
.skills-cases,
.skills-cta {
  padding: clamp(72px, 10vw, 130px) clamp(28px, 5vw, 80px);
}

.skills-hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--rule);
}

.skills-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.skills-hero-title {
  max-width: 840px;
}

.skills-hero-side {
  max-width: 520px;
}

.skills-hero h1 {
  max-width: 11ch;
  margin-bottom: 0;
}

.skills-hero-copy {
  max-width: 60ch;
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
}

.skills-hero-copy--secondary {
  margin-bottom: 24px;
}

.skills-hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 440px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.skills-hero-visual img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 18px 32px rgba(11, 13, 23, 0.16));
}

.skills-hero-visual-secondary {
  transform: translateY(28px);
}

.skills-deliverables,
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.skills-deliverables span,
.skills-tags span,
.skills-case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(11, 13, 23, 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(43, 63, 232, 0.03);
}

.skills-deliverables span {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  background: var(--white);
}

.skills-prompt-band,
.skills-proof {
  padding: clamp(72px, 10vw, 130px) clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--rule);
}

.skills-prompt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.skills-prompt-grid p {
  margin: 0;
  padding: 18px;
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.55;
  box-shadow: 0 14px 34px rgba(11, 13, 23, 0.035);
}

.skills-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.skills-case-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 16px 42px rgba(11, 13, 23, 0.04);
}

.skills-case-head {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.skills-case-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  text-transform: none;
}

.skills-case-card p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.skills-case-card strong {
  color: var(--navy);
}

.skills-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.skills-proof-grid article {
  min-width: 220px;
  padding: 0 0 18px;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(11, 13, 23, 0.04);
}

.skills-proof-shot {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(43, 63, 232, 0.10), rgba(214, 59, 47, 0.06)),
    var(--offwhite);
  border-bottom: 1px solid var(--rule);
}

.skills-proof-shot p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cobalt);
}

.skills-proof-shot strong {
  max-width: 18ch;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.skills-proof-grid h3,
.skills-proof-grid > article > p {
  margin-left: 18px;
  margin-right: 18px;
}

.skills-proof-grid h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  text-transform: none;
}

.skills-proof-grid > article > p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.skills-cta-inner {
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86));
  border: 1px solid var(--rule);
  box-shadow: 0 22px 60px rgba(11, 13, 23, 0.05);
}

.skills-cta-inner h2 {
  max-width: 11ch;
}

.skills-cta-inner p {
  max-width: 58ch;
  color: var(--muted);
}

/* ─── RESPONSIVO: 1024 ────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-hero-main,
  .pricing-hero,
  .pricing-intro-grid,
  .pricing-plan-grid,
  .pricing-addon-grid,
  .pricing-usage-layout,
  .pricing-faq-grid,
  .skills-hero-main,
  .skills-prompt-grid,
  .skills-case-grid {
    grid-template-columns: 1fr;
  }

  .beta-process {
    grid-template-columns: 1fr 1fr;
  }
  .beta-arrow { display: none; }
  .beta-step  { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .beta-step:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.15); }
  .beta-step:last-child      { border-bottom: 0; }

  .exclusive-hero,
  .exclusive-value-grid,
  .exclusive-proof-heading,
  .exclusive-proof-showcase,
  .exclusive-proof-card,
  .exclusive-example-slide,
  .exclusive-placeholder-grid,
  .exclusive-diff-layout,
  .exclusive-card-grid-2,
  .exclusive-compare-grid,
  .exclusive-steps-grid {
    grid-template-columns: 1fr;
  }

  .exclusive-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exclusive-capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .exclusive-diff-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .exclusive-chat,
  .exclusive-hero-proof {
    margin-left: 0;
  }

  .exclusive-proof-copy {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .exclusive-proof-placeholder {
    border-left: 0;
  }

  .exclusive-placeholder-copy {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .exclusive-proof-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .exclusive-proof-nav button {
    border-bottom: 0;
    border-right: 1px solid var(--rule);
  }

  .exclusive-proof-nav button:last-child {
    border-right: 0;
  }
}

@media (max-width: 1180px) {
  .page-topbar .nav-links {
    gap: 18px;
  }

  .page-topbar .nav-cta {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ─── RESPONSIVO: 900 ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-link { display: inline-flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-left {
    border-right: 0;
    border-bottom: 1px solid var(--rule-dark);
    padding-top: 48px;
    justify-content: flex-start;
  }
  .hero-right {
    height: 50vw;
    max-height: 380px;
    min-height: 220px;
  }
  .hero-right::after {
    width: clamp(140px, 28vw, 240px);
    height: clamp(140px, 28vw, 240px);
    bottom: -10%;
    right: -5%;
  }

  .comp-grid { grid-template-columns: 1fr; }
  .comp-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .comp-card:last-child { border-bottom: 0; }
  .apro-layout { grid-template-columns: 1fr; }

  .mockup-band { grid-template-columns: 1fr; }
  .mockup-frames { border-right: 0; border-bottom: 1px solid var(--rule); }
  .mockup-frame--secondary { transform: translateY(0); }

  .cost-cards { grid-template-columns: 1fr; }
  .cost-card  { border-right: 0; border-bottom: 1px solid var(--rule); }
  .cost-card:last-child { border-bottom: 0; }

  .persona-cards { grid-template-columns: 1fr; }

  .photo-band  { grid-template-columns: 1fr; }
  .photo-band-img img { height: auto; min-height: 0; object-fit: contain; }
  .photo-band-copy { border-left: 0; border-top: 1px solid var(--rule); overflow: hidden; }
  .photo-band-copy::after, .photo-band-copy::before { display: none; }

  .beta-process { grid-template-columns: 1fr; }
  .beta-step    { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .beta-step:last-child { border-bottom: 0; }

  .application { grid-template-columns: 1fr; }
  .application-copy { border-right: 0; border-bottom: 1px solid var(--rule); }
  .application > .lead-form { margin: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px); }
}

@media (max-width: 700px) {
  .page-topbar .nav-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-topbar .nav-cta {
    display: none;
  }

  .exclusive-hero,
  .exclusive-section,
  .exclusive-diff-intro,
  .exclusive-diff-tabs,
  .exclusive-diff-panels,
  .exclusive-faq,
  .pricing-plans,
  .pricing-intro-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .exclusive-diff-layout {
    margin-left: 18px;
    margin-right: 18px;
    border: 1px solid var(--rule);
  }

  .exclusive-wrap {
    max-width: 100%;
  }

  .exclusive-hero {
    min-height: auto;
    gap: 32px;
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .exclusive-hero-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 7.2vw, 3.25rem);
    line-height: 1;
  }

  .exclusive-hero-title span {
    max-width: 100%;
    white-space: nowrap;
  }

  .exclusive-hero-sub {
    max-width: 100%;
    margin: 20px 0 26px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .exclusive-hero-offer {
    display: grid;
    width: 100%;
  }

  .exclusive-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .exclusive-hero-actions .exclusive-button {
    width: 100%;
  }

  .exclusive-hero-badges {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .exclusive-hero-proof {
    width: 100%;
  }

  .exclusive-visual-placeholder {
    width: 100%;
    margin-left: 0;
  }

  .exclusive-proof-stage {
    min-height: 0;
    overflow: visible;
  }

  .exclusive-proof-stage .exclusive-proof-card {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .exclusive-proof-stage .exclusive-proof-card.active {
    display: grid;
  }

  .exclusive-proof-card img {
    height: auto;
    min-height: 220px;
  }

  .exclusive-examples-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exclusive-examples-nav button:nth-child(4n) {
    border-right: 1px solid var(--rule);
  }

  .exclusive-examples-nav button:nth-child(2n) {
    border-right: 0;
  }

  .exclusive-example-copy {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .exclusive-proof-placeholder {
    min-height: 240px;
  }

  .exclusive-placeholder-card {
    min-height: 240px;
  }
}

/* ─── RESPONSIVO: 600 ─────────────────────────────────────── */
@media (max-width: 600px) {
  .pricing-page { padding-top: 56px; }
  body[data-checkout-source="exclusive_access"] .pricing-page { padding-top: 0; }
  .skills-page { padding-top: 56px; }
  .pricing-hero,
  .pricing-intro-band,
  .pricing-plans,
  .pricing-compare,
  .pricing-addons,
  .pricing-usage,
  .pricing-faq,
  .pricing-final-cta,
  .skills-hero,
  .skills-map,
  .skills-prompt-band,
  .skills-cases,
  .skills-proof,
  .skills-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-plan-card,
  .pricing-addon-card,
  .pricing-final-inner,
  .pricing-usage-list,
  .pricing-faq-grid article,
  .skills-case-card,
  .skills-cta-inner {
    padding: 20px;
  }

  .pricing-plan-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-checkout-panel {
    padding: 20px;
  }

  .pricing-checkout-grid {
    grid-template-columns: 1fr;
  }

  .pricing-checkout-actions {
    flex-direction: column-reverse;
  }

  .pricing-hero-main {
    gap: 24px;
  }

  .skills-hero-main {
    gap: 24px;
  }

  .skills-hero-visual {
    max-width: 100%;
  }

  .skills-hero-visual img {
    height: clamp(220px, 74vw, 360px);
  }

  .skills-hero-visual-secondary {
    transform: translateY(18px);
  }

  .exclusive-hero,
  .exclusive-section,
  .exclusive-diff-intro,
  .exclusive-diff-tabs,
  .exclusive-diff-panels,
  .exclusive-faq {
    padding-left: 16px;
    padding-right: 16px;
  }

  .exclusive-hero {
    min-height: auto;
    gap: 28px;
    padding-top: 84px;
    padding-bottom: 44px;
  }

  .exclusive-hero-title {
    max-width: 100%;
    font-size: clamp(2.08rem, 10.2vw, 3rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .exclusive-hero-title span {
    max-width: 100%;
    white-space: nowrap;
  }

  .exclusive-hero-offer {
    gap: 6px;
  }

  .exclusive-hero-offer strong {
    margin-left: 0;
  }

  .exclusive-hero-sub {
    margin: 20px 0 26px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .exclusive-hero-actions {
    flex-direction: column;
  }

  .exclusive-hero-actions .exclusive-button {
    width: 100%;
  }

  .exclusive-hero-badges {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .exclusive-chat {
    padding: 18px;
  }

  .exclusive-hero-proof {
    width: 100%;
  }

  .exclusive-proof-browser p {
    min-width: 0;
  }

  .exclusive-hero-proof img {
    aspect-ratio: 1.18;
  }

  .exclusive-proof-card img {
    height: auto;
    min-height: 220px;
  }

  .exclusive-proof-stage {
    min-height: 0;
    overflow: visible;
  }

  .exclusive-proof-stage .exclusive-proof-card {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .exclusive-proof-stage .exclusive-proof-card.active {
    display: grid;
    transform: none;
  }

  .exclusive-examples-stage {
    min-height: 0;
    overflow: visible;
  }

  .exclusive-example-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .exclusive-example-slide.active {
    display: grid;
    transform: none;
  }

  .exclusive-example-placeholder {
    min-height: 240px;
  }

  .exclusive-examples-nav {
    grid-template-columns: 1fr;
  }

  .exclusive-examples-nav button,
  .exclusive-examples-nav button:nth-child(2n),
  .exclusive-examples-nav button:nth-child(4n) {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 16px 18px;
  }

  .exclusive-proof-nav {
    grid-template-columns: 1fr;
  }

  .exclusive-proof-nav button {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 18px 20px;
  }

  .exclusive-proof-copy,
  .exclusive-placeholder-copy,
  .exclusive-card,
  .exclusive-step-card,
  .exclusive-compare-card {
    padding: 22px;
  }

  .exclusive-proof-copy h3,
  .exclusive-placeholder-copy h3,
  .exclusive-h2 {
    overflow-wrap: anywhere;
  }

  .exclusive-stats,
  .exclusive-area-grid {
    grid-template-columns: 1fr;
  }

  .exclusive-capability-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    background: transparent;
    border-left: 0;
    border-right: 0;
  }

  .exclusive-capability-grid p {
    padding: 12px 4px 12px 20px;
    border-bottom: 1px solid var(--exclusive-border);
    background: transparent;
    font-size: 0.95rem;
  }

  .exclusive-capability-grid p::before {
    left: 2px;
  }

  .exclusive-ticker-track div {
    min-width: 260px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .exclusive-mockup div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .exclusive-mockup strong {
    text-align: left;
  }

  .exclusive-sticky-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .exclusive-sticky-bar button {
    width: 100%;
  }

  .topbar     { padding: 0 16px; height: 56px; }
  .nav-cta    { font-size: 0.58rem; min-height: 38px; padding: 9px 14px; }
  .brand-logo { height: 26px; }

  .legal-header {
    min-height: 56px;
    padding: 0 16px;
  }

  .legal-main {
    padding: 32px 16px;
  }

  .legal-document {
    padding: 24px 18px;
  }

  .legal-document h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .legal-meta p,
  .legal-document p {
    font-size: 0.93rem;
    line-height: 1.7;
  }

  .hero      { padding-top: 56px; }
  .hero-left { padding: 36px 16px 28px; }

  .section, .final-cta, .mockup-band { padding-left: 16px; padding-right: 16px; }
  .mockup-frames { padding-left: 16px; padding-right: 16px; }
  .mockup-copy   { padding-left: 16px; padding-right: 16px; }

  .queue-proof { flex-direction: column; gap: 4px; }
  .queue-proof span { font-size: 2.5rem; }
}

@media (max-width: 380px) {
  .topbar {
    gap: 8px;
    padding: 0 12px;
  }

  .nav-mobile-link,
  .nav-cta {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    padding: 8px 10px;
  }
}
