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

:root {
  --bg: #0a0a0a;
  --bg2: #0f0f0f;
  --bg3: #141414;
  --orange: #e4b36a;
  --orange-light: #f0c886;
  --orange-dark: #c8974f;
  --amber: #fbbf24;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --border: rgba(228, 179, 106, 0.25);
  --border-hover: rgba(228, 179, 106, 0.6);
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(228, 179, 106, 0.08);
  --gradient: linear-gradient(135deg, #e4b36a 0%, #c8974f 100%);
  --gradient-soft: linear-gradient(135deg, rgba(228,179,106,0.15) 0%, rgba(200,151,79,0.15) 100%);
  --radius: 14px;
  --radius-sm: 8px;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', 'Montserrat', sans-serif;

  /* light surface tokens */
  --ink: #0e0e10;
  --ink-soft: #3d3d40;
  --ink-mute: #6c6c70;
  --paper: #fafaf7;
  --paper-rule: rgba(14, 14, 16, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

/* ─── SCREENS ─── */
.screen {
  display: none;
  min-height: 100vh;
  width: 100%;
  animation: fadeIn 0.4s ease;
}
.screen.active { display: flex; }

.screen-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ─── LOGO ─── */
.logo      { height: 56px; object-fit: contain; }
.logo-sm   { height: 36px; margin-bottom: 12px; }

/* ─── LANDING PAGE ─── */
.landing-page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ─── LP SECTION SYSTEM ─── */
.lp-section {
  position: relative;
  width: 100%;
  padding: 96px 24px;
  isolation: isolate;
}

.lp-dark {
  background: var(--bg);
  color: var(--text);
}

.lp-light {
  background: var(--paper);
  color: var(--ink);
}

.lp-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow-dark {
  color: var(--ink-soft);
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

/* ─── HERO SECTION ─── */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 72px;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(228,179,106,0.08) 0%, transparent 60%), var(--bg);
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  width: 720px;
  height: 720px;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(228,179,106,0.18) 0%, rgba(200,151,79,0.05) 35%, transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-container {
  max-width: 760px;
  width: 100%;
}

.hero-topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(228,179,106,0.6);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(34px, 6.5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  font-feature-settings: 'ss01';
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.78em;
  margin-top: 8px;
  letter-spacing: -0.015em;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  margin: 0 auto 44px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
}

.stat-unit {
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 2px;
  color: var(--muted);
}

.stat-lbl {
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 28px rgba(228,179,106,0.32);
}
.btn-lg:hover {
  box-shadow: 0 10px 36px rgba(228,179,106,0.48);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.btn-primary:hover .btn-arrow { transform: translateX(3px); }

.headline-em {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.015em;
}

.br-desk { display: none; }
@media (min-width: 720px) { .br-desk { display: inline; } }

/* ─── IMPACT SECTION ─── */
.impact-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(228,179,106,0.04) 0%, transparent 60%),
    var(--paper);
}

.impact-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.impact-em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--orange-dark);
  font-size: 0.78em;
  margin-top: 6px;
}

.impact-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: 'ss01';
  font-size: 11.5px;
  letter-spacing: 0.16em;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin-bottom: 56px;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px;
  background: #0a0a0a;
  border: 1px solid rgba(228,179,106,0.12);
  border-radius: var(--radius-sm);
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-item:hover {
  border-color: rgba(228,179,106,0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.impact-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: -0.01em;
  font-style: italic;
  flex-shrink: 0;
  line-height: 1;
  font-feature-settings: 'lnum';
}

.impact-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.impact-quote {
  position: relative;
  padding: 24px 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.quote-rule {
  width: 36px;
  height: 1px;
  background: var(--orange-dark);
}

.impact-quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.3;
  max-width: 22ch;
}

.impact-quote em {
  font-style: italic;
  color: var(--orange-dark);
  font-weight: 500;
}

.impact-cta-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
}

.impact-cta-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* ─── PROFILES SECTION ─── */
.profiles-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(228,179,106,0.06) 0%, transparent 65%),
    var(--bg);
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.section-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ─── PROFILES INDEX (2x2 grid) ─── */
.profiles-index {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.profile-row {
  --row-accent: var(--orange);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 28px;
  border: 1.5px solid rgba(228,179,106,0.45);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(228,179,106,0.04) 0%, rgba(228,179,106,0) 100%);
  text-align: center;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.profile-row::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--row-accent);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-row:hover {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(228,179,106,0.08) 0%, rgba(228,179,106,0.01) 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35),
              0 0 0 1px rgba(228,179,106,0.2);
}

.profile-row:hover::before {
  width: 64px;
}

.profile-row-executor  { --row-accent: #e4b36a; }
.profile-row-analitico { --row-accent: #60a5fa; }
.profile-row-mediador  { --row-accent: #34d399; }
.profile-row-inovador  { --row-accent: #c084fc; }

.profile-row-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(56px, 9vw, 84px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-feature-settings: 'lnum';
  color: var(--orange);
  margin-bottom: 4px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-row:hover .profile-row-num {
  transform: scale(1.05);
}

.profile-row-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 600px;
}

.profile-row-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.profile-row-name {
  font-family: var(--serif);
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.profile-row-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.45);
}

.profile-row-tags li::after {
  content: '·';
  margin: 0 8px;
  color: rgba(245,245,245,0.25);
}
.profile-row-tags li:last-child::after { content: ''; margin: 0; }

.profile-row-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}


/* ─── CTA SECTION ─── */
.cta-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(228,179,106,0.05) 0%, transparent 60%),
    var(--paper);
  padding: 96px 24px 112px;
}

.cta-container {
  max-width: 640px;
}

.cta-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-headline em {
  font-style: italic;
  color: var(--orange-dark);
}

.cta-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.trust-badges {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  padding-top: 28px;
  border-top: 1px solid var(--paper-rule);
  width: 100%;
  max-width: 480px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.trust-item svg {
  color: var(--orange-dark);
  flex-shrink: 0;
}

/* ─── RESPONSIVE LANDING ─── */
@media (max-width: 720px) {
  .lp-section { padding: 72px 22px; }
  .lp-hero { padding: 36px 22px 64px; }
  .cta-section { padding: 72px 22px 88px; }
  .hero-topbar { margin-bottom: 40px; padding-bottom: 16px; }
  .hero-title { font-size: clamp(30px, 9vw, 42px); }
  .hero-stats { gap: 16px; padding-top: 28px; }
  .stat-sep { height: 28px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
  .trust-badges { flex-direction: column; align-items: center; gap: 14px; }

  .profiles-index {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .profile-row {
    padding: 32px 22px;
    gap: 12px;
  }
  .profile-row-num { font-size: clamp(48px, 14vw, 64px); }
}

@media (max-width: 420px) {
  .hero-meta { display: none; }
  .impact-grid { grid-template-columns: 1fr; max-width: 320px; }
  .hero-stats { gap: 10px; }
  .stat-num { font-size: 26px; }
  .stat-lbl { font-size: 9.5px; letter-spacing: 0.1em; }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(228,179,106,0.35);
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(228,179,106,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-arrow { font-size: 18px; }
.btn-full  { width: 100%; justify-content: center; }

/* ─── PROGRESS ─── */
.progress-wrap {
  width: 100%;
  margin-bottom: 36px;
}

.progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.progress-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 10%;
}

/* ─── QUESTION SCREEN ─── */
.question-inner {
  padding-top: 48px;
  align-items: flex-start;
  text-align: left;
}

.question-card {
  width: 100%;
  animation: slideIn 0.35s ease;
}

.question-text {
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: left;
  width: 100%;
  font-family: var(--sans);
  color: var(--text);
}
.option-card:hover {
  border-color: var(--orange-light);
  background: var(--card-hover);
  transform: translateX(3px);
}
.option-card.selected {
  border-color: var(--orange);
  background: var(--gradient-soft);
  transform: translateX(3px);
}

.option-letter {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange-light);
  transition: border-color 0.2s, background 0.2s;
  margin-top: 1px;
}
.option-card:hover .option-letter,
.option-card.selected .option-letter {
  border-color: var(--orange);
  background: var(--gradient);
  color: #fff;
}

.option-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

/* ─── COLLECT SCREEN ─── */
.collect-inner { padding-top: 80px; }

.collect-icon {
  font-size: 36px;
  color: var(--orange-light);
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.collect-title {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.collect-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

.collect-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.field-wrap label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field-wrap input {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field-wrap input::placeholder { color: rgba(163,163,163,0.4); }
.field-wrap input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228,179,106,0.15);
}
.field-wrap input.has-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

.field-error {
  font-size: 12px;
  color: #f87171;
  font-weight: 500;
  min-height: 16px;
}

.privacy-note {
  font-size: 11px;
  color: rgba(163,163,163,0.6);
  line-height: 1.5;
  text-align: center;
}

/* ─── LOADING SCREEN ─── */
.loading-inner { justify-content: center; gap: 24px; padding-top: 0; }

.loader-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(228,179,106,0.15);
  border-top-color: var(--orange);
  animation: spin 0.9s linear infinite;
  margin-bottom: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.loading-sub {
  font-size: 14px;
  color: var(--muted);
}

/* ─── RESULT SCREEN ─── */
.result-inner {
  align-items: flex-start;
  text-align: left;
  padding-top: 48px;
  gap: 32px;
}

.result-header {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.result-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-name {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-greeting {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* Diagnosis blocks */
.diagnosis-blocks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diag-block {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  animation: fadeIn 0.5s ease both;
}
.diag-block:nth-child(1) { animation-delay: 0.05s; }
.diag-block:nth-child(2) { animation-delay: 0.15s; }
.diag-block:nth-child(3) { animation-delay: 0.25s; }
.diag-block:nth-child(4) { animation-delay: 0.35s; }

.diag-block-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 3px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.diag-icon-warning { color: var(--amber);   background: none; -webkit-text-fill-color: var(--amber); }
.diag-icon-impact  { color: var(--orange-light); background: none; -webkit-text-fill-color: var(--orange-light); }
.diag-icon-growth  { color: #34d399;         background: none; -webkit-text-fill-color: #34d399; }

.diag-block-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.diag-block-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

/* CTA box */
.nexus-cta-box {
  width: 100%;
  background: var(--gradient-soft);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  animation: fadeIn 0.5s ease 0.4s both;
}

.nexus-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.65;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.wpp-icon { display: flex; align-items: center; }

.btn-retry {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.btn-retry:hover { opacity: 1; }

/* ─── EMAIL BADGE ─── */
.email-sent-badge {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(228, 179, 106, 0.08);
  border: 1.5px solid rgba(228, 179, 106, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-light);
  animation: fadeIn 0.4s ease 0.2s both;
}

.email-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ─── CHART ─── */
.chart-section {
  width: 100%;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  animation: fadeIn 0.5s ease 0.1s both;
}

.chart-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.chart-wrap {
  height: 160px;
  position: relative;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .screen-inner { padding: 36px 20px 56px; }
  .welcome-inner { padding-top: 48px; }
  .collect-inner { padding-top: 48px; }
  .diag-block { padding: 16px; }
  .nexus-cta-box { padding: 22px 18px; }
  .chart-wrap { height: 140px; }
}
