:root {
  /* ---- color ---- */
  --bg:        #F7F6F1;
  --bg-raise:  #FFFFFF;
  --ink:       #10160F;
  --ink-soft:  #384038;
  --muted:     #667066;
  --line:      rgba(16, 22, 15, 0.12);
  --line-soft: rgba(16, 22, 15, 0.07);
  --green:     #0CA968;
  --green-deep:#0B3D2A;
  --green-soft:rgba(12, 169, 104, 0.09);
  --green-line:rgba(12, 169, 104, 0.28);
  --bad:       #A23B33;

  /* ---- type ---- */
  --f-display: 'Fraunces', serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --f-mono:    'Space Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

body.loading { overflow: hidden; height: 100vh; }

button, input, select { font: inherit; color: inherit; }
button { border: none; background: none; cursor: pointer; }
a { color: inherit; }

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

/* =======================================================
   LOADER
   ======================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  color: #F7F6F1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: transform 0.9s cubic-bezier(.76,0,.24,1), opacity 0.6s ease;
}

.loader.hide {
  transform: translateY(-100%);
}

.loader-field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.loader-ring { transform: rotate(-90deg); }

.loader-ring-track {
  fill: none;
  stroke: rgba(247,246,241,0.14);
  stroke-width: 2;
}

.loader-ring-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 389.6;
  stroke-dashoffset: 389.6;
  transition: stroke-dashoffset 0.2s linear;
}

.loader-copy {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.loader-pct {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
}

.loader-sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,246,241,0.5);
}

.loader-word {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.loader-word span { color: rgba(247,246,241,0.55); }

/* =======================================================
   NAV
   ======================================================= */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(247, 246, 241, 0.86);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.n0 { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a, .link-button {
  color: var(--muted);
  font-size: 13.5px;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 1px;
  background: var(--ink);
  transition: right 0.25s ease;
}

.nav-links a:hover::after { right: 0; }
.nav-links a:hover, .link-button:hover { color: var(--ink); }

.wp-nav-link {
  color: var(--green-deep) !important;
  font-weight: 600;
  border: 1px solid var(--green-line);
  padding: 6px 12px !important;
  border-radius: 100px;
}

.wp-nav-link::after { display: none; }
.wp-nav-link:hover { background: var(--green-soft); color: var(--green-deep) !important; }

/* =======================================================
   BUTTONS
   ======================================================= */
.btn, .btn-ghost, .btn-sm {
  border-radius: 100px;
  cursor: pointer;
  transition: opacity .2s, transform .15s, border-color .2s, background .2s;
}

.btn {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 600;
}

.btn:hover { background: var(--green-deep); transform: translateY(-1px); }

.btn-success { background: var(--green) !important; color: #fff !important; }

.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 12.5px; font-weight: 600; background: var(--ink); color: var(--bg); }
.btn-sm:hover { background: var(--green-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover svg { transform: translateY(2px); }

/* =======================================================
   HERO — wordmark + símbolo interactivo
   ======================================================= */
.hero-intro {
  position: relative;
  background: var(--ink);
  color: #F7F6F1;
  padding: 90px 48px 76px;
  overflow: hidden;
  isolation: isolate;
}

.hero-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 82% 30%, rgba(12,169,104,0.14) 0%, transparent 70%),
    radial-gradient(45% 40% at 10% 85%, rgba(12,169,104,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.hi-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: rgba(247,246,241,0.5);
  margin-bottom: 22px;
}

.hi-wordmark {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(64px, 13vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  color: #F2F0E8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.hi-zero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.62em;
  height: 0.72em;
  margin: 0 0.01em;
  position: relative;
  top: 0.02em;
}

.hi-zero-svg { width: 100%; height: 100%; overflow: visible; }

.hi-zero-dash {
  fill: none;
  stroke: rgba(12,169,104,0.35);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  animation: spin-slow 18s linear infinite;
  transform-origin: 50px 50px;
}

.hi-zero-circle {
  fill: none;
  stroke: #F2F0E8;
  stroke-width: 4;
}

.hi-zero-slash {
  stroke: var(--green);
  stroke-width: 4.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(12,169,104,0.65));
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(12,169,104,0.35);
  color: #cdeee0;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hi-tagline {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247,246,241,0.55);
  margin-bottom: 22px;
}

.hi-copy {
  font-size: 17px;
  color: rgba(247,246,241,0.65);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 auto 38px;
}

.hi-ctas { justify-content: center; }

.btn-ghost-dark {
  color: #F7F6F1;
  border-color: rgba(247,246,241,0.22);
}
.btn-ghost-dark:hover { border-color: rgba(247,246,241,0.5); }

.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .hero-intro { padding-top: 76px; }
}

/* =======================================================
   STATS
   ======================================================= */
.stats {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raise);
}

.stat { flex: 1; padding: 26px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-val { font-family: var(--f-display); font-size: 26px; font-weight: 500; color: var(--green-deep); }
.stat-label { font-size: 11.5px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* =======================================================
   SECTIONS
   ======================================================= */
.sec { padding: 88px 48px; max-width: 1040px; margin: 0 auto; }
.sec-head { margin-bottom: 48px; }

.eyebrow {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.sec h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lead { font-size: 16.5px; color: var(--muted); line-height: 1.65; max-width: 560px; }

.divider { height: 1px; background: var(--line); max-width: 1040px; margin: 0 auto; }

/* =======================================================
   COMPARISON TABLE (desktop/tablet)
   ======================================================= */
.table-container {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-raise);
}

.comparison-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13.5px; min-width: 650px; }

.comparison-table th, .comparison-table td { padding: 18px 22px; border-bottom: 1px solid var(--line-soft); line-height: 1.5; }

.comparison-table th {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.comparison-table tr:last-child td { border-bottom: none; }

.th-bad { color: var(--bad); }
.th-good { color: var(--green-deep); background: var(--green-soft) !important; }

.comparison-table td:nth-child(2), .comparison-table td:nth-child(3) { color: var(--muted); }

.td-highlight {
  color: var(--ink) !important;
  background: var(--green-soft);
  font-weight: 500;
}

/* =======================================================
   COMPARISON CARDS (mobile only — stacked, easy to scan)
   ======================================================= */
.contrast-cards {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.ccard {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-raise);
  padding: 18px 18px 14px;
}

.ccard h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.ccard-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
}
.ccard-row:first-of-type { border-top: none; }

.ccard-row p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }

.ccard-tag {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 1px;
}
.ccard-bad { color: var(--bad); background: rgba(162,59,51,0.08); }
.ccard-good { color: var(--green-deep); background: var(--green-soft); }
.ccard-good-row p { color: var(--ink); font-weight: 500; }

/* =======================================================
   ACCORDION (cómo funciona)
   ======================================================= */
.acc { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--bg-raise); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:last-child { border-bottom: none; }

.acc-h {
  width: 100%;
  padding: 24px 28px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  transition: background .2s;
}

.acc-h:hover { background: var(--green-soft); }
.acc-title { flex: 1; }

.snum {
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 26px;
}

.acc-h.open .snum { color: var(--green-deep); }
.acc-arrow { color: var(--muted); font-size: 20px; margin-left: auto; transition: transform .3s; }
.acc-h.open .acc-arrow { transform: rotate(45deg); color: var(--green-deep); }

.acc-body { display: none; padding: 0 28px 26px 62px; font-size: 15px; color: var(--muted); line-height: 1.65; }
.acc-body.open { display: block; }
.highlight { color: var(--green-deep); font-weight: 600; }
.modal-note { margin-top: 14px; }

.see-math {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-deep);
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--green-line);
  padding-bottom: 2px;
}
.see-math:hover { border-color: var(--green-deep); }

/* =======================================================
   CALCULATOR
   ======================================================= */
.calc-wrap {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-raise);
  padding: 44px;
}

.calc-head { margin-bottom: 36px; }
.calc-title-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.calc-head h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
}
.model-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--bad);
  border: 1px solid rgba(162,59,51,0.3);
  background: rgba(162,59,51,0.06);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.calc-lead { margin-bottom: 0; max-width: 640px; }
.calc-lead strong { color: var(--ink); }

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.calc-inputs { display: flex; flex-direction: column; gap: 22px; }

.calc-field-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 12px;
}

.calc-field label { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }

.calc-val {
  font-family: var(--f-mono);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-deep);
  white-space: nowrap;
}

.calc-field-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Botón "ⓘ" de explicación por parámetro */
.info-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .15s, border-color .15s, background .15s;
}
.info-btn:hover { color: var(--green-deep); border-color: var(--green-line); background: var(--green-soft); }
.info-btn[aria-expanded="true"] { color: var(--green-deep); border-color: var(--green-line); background: var(--green-soft); }

.info-text {
  display: none;
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.info-text.open { display: block; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--bg-raise);
  box-shadow: 0 0 0 1px var(--green);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--bg-raise);
  box-shadow: 0 0 0 1px var(--green);
  cursor: pointer;
}

.calc-divider {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--line-soft);
}
.calc-divider span {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}

.calc-results {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-result-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cr-label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.cr-value { font-family: var(--f-mono); font-size: 40px; font-weight: 700; color: var(--green-deep); line-height: 1.15; }
.cr-sub { font-size: 13px; color: var(--muted); }
.cr-sub-annual #calc-prize-annual-sub { font-family: var(--f-mono); font-weight: 700; color: var(--ink-soft); }

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

.cr-cell { display: flex; flex-direction: column; gap: 4px; }
.cr-cell-label { font-size: 12px; color: var(--muted); }
.cr-cell-value { font-family: var(--f-mono); font-size: 18px; font-weight: 700; color: var(--ink); }

/* ===== v2: dos bloques de resultado independientes ===== */
.calc-results-v2 {
  background: transparent;
  border: none;
  padding: 0;
  gap: 20px;
}

.result-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.result-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-block-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-block-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.result-block .calc-result-main { border-bottom: none; padding-bottom: 0; }
.result-block .calc-result-grid { grid-template-columns: 1fr 1fr; }
.result-block .calc-result-grid .cr-cell:last-child { grid-column: 1 / -1; }

.lottery-compare {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--green-deep);
  line-height: 1.5;
}
.lottery-compare svg { flex-shrink: 0; margin-top: 1px; }

.calc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  align-self: flex-start;
}
.calc-toggle svg { transition: transform .25s; }
.calc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.calc-toggle:hover { color: var(--green-deep); }

.calc-breakdown {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--line-soft);
}
.calc-breakdown.open { display: flex; }

.cb-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--muted);
}
.cb-row span:last-child { font-family: var(--f-mono); color: var(--ink-soft); font-weight: 700; flex-shrink: 0; }
.cb-final { padding-top: 8px; border-top: 1px dashed var(--line); }
.cb-final span:first-child { color: var(--ink-soft); font-weight: 600; }
.cb-final span:last-child { color: var(--green-deep); }

.calc-disclaimer {
  margin-top: 28px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
}

/* =======================================================
   SEGURIDAD
   ======================================================= */
.sgrid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.scard-inline {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}

.sicon-small {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.sicon-small svg { width: 16px; height: 16px; stroke: var(--green-deep); }
.scard-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.scard-content p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.pending-block {
  border: 1px dashed rgba(162,59,51,0.35);
  background: rgba(162,59,51,0.045);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.pending-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bad);
  margin-bottom: 8px;
}
.pending-block h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.pending-block p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

.audit-pill {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: 100px;
  color: var(--green-deep);
  font-size: 12.5px;
  font-weight: 700;
}

/* =======================================================
   EQUIPO
   ======================================================= */
.team-compact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.team-compact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 22px 26px;
  border-radius: 14px;
}

.t-avatar-wrapper {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--green-line);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
  margin-top: 2px;
}
.t-avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; text-indent: -10000px; }

.t-info h3 { font-family: var(--f-display); font-size: 17px; font-weight: 500; margin-bottom: 2px; }
.team-ln-link:hover { color: var(--green-deep); }
.role-text { font-size: 12.5px; color: var(--green-deep); font-weight: 600; margin-bottom: 8px; }
.t-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* =======================================================
   FAQ
   ======================================================= */
.faq { max-width: 720px; margin-top: 4px; }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  padding: 22px 0;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.plus { font-size: 20px; color: var(--green-deep); transition: transform .3s; flex-shrink: 0; }
.faq-q.open .plus { transform: rotate(45deg); }

.faq-a { display: none; padding-bottom: 22px; font-size: 14.5px; color: var(--muted); line-height: 1.65; max-width: 600px; }
.faq-a.open { display: block; }

/* =======================================================
   WAITLIST CTA
   ======================================================= */
.cta-sec {
  background: var(--ink);
  color: var(--bg);
  padding: 88px 48px;
  text-align: center;
}

.cta-sec .eyebrow { color: var(--green); }
.cta-sec h2 { font-family: var(--f-display); font-size: clamp(28px, 3.2vw, 38px); font-weight: 500; margin-bottom: 12px; }
.cta-sec > p { color: rgba(247,246,241,0.6); font-size: 15.5px; margin-bottom: 38px; }

.form-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto;
}

.inp, .sel {
  background: rgba(247,246,241,0.07);
  border: 1px solid rgba(247,246,241,0.16);
  color: var(--bg);
  padding: 13px 18px;
  border-radius: 100px;
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s;
  flex: 1;
  min-width: 200px;
}

.sel option { background-color: var(--ink); color: #fff; }
.inp::placeholder { color: rgba(247,246,241,0.35); }
.inp:focus, .sel:focus { border-color: var(--green); }

.form-row .btn { background: var(--green); color: #fff; }
.form-row .btn:hover { background: #0b8f58; }

.micro { font-size: 12.5px; color: rgba(247,246,241,0.45); margin-top: 14px; }

/* =======================================================
   AVISOS IMPORTANTES (bloque único de disclaimers)
   ======================================================= */
.notice-sec {
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  padding: 56px 48px;
}

.notice-inner {
  max-width: 860px;
  margin: 0 auto;
}

.notice-inner h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--ink-soft);
}

.notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice-list li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
}

.notice-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bad);
  opacity: 0.55;
}

/* =======================================================
   MODALES / COOKIES
   ======================================================= */
.modal-bg {
  display: none;
  position: fixed; inset: 0;
  background: rgba(16,22,15,.55);
  backdrop-filter: blur(3px);
  z-index: 200;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-bg.open { display: flex; }

.modal {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px;
  max-width: 560px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  position: relative;
}

.modal h3 { font-family: var(--f-display); font-size: 21px; font-weight: 500; margin-bottom: 10px; }
.modal p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

.modal-scroll h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 8px;
}
.modal-scroll ul { margin: 0 0 16px 18px; }
.modal-scroll li { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 6px; }
.modal-scroll p { font-size: 13.5px; }

.mtable { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 16px; }
.mtable th {
  color: var(--muted); font-weight: 600; padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em;
}
.mtable td { padding: 12px 14px; border-bottom: 1px solid var(--line-soft); font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.mtable tr:last-child td { border-bottom: none; }
.hl { color: var(--green-deep); font-weight: 700; }

.modal-footnote {
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: 12px;
  padding: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 13px;
}

.mclose {
  position: sticky;
  float: right;
  top: 0; right: 0;
  margin-left: 12px;
  color: var(--muted); font-size: 22px; cursor: pointer;
  background: var(--bg-raise);
}
.mclose:hover { color: var(--ink); }

.link-inline {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  display: inline;
}

footer {
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line);
  max-width: 1180px;
  margin: 0 auto;
}

.flinks { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: var(--muted); }

.cookie-banner {
  position: fixed;
  inset: auto 20px 20px;
  max-width: 560px;
  width: calc(100% - 40px);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  z-index: 250;
  box-shadow: 0 30px 60px rgba(16,22,15,.14);
}

.hidden { display: none !important; }
.cookie-content { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-content p { color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1 1 320px; }
.cookie-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.cookie-config { margin-top: 18px; padding: 16px; background: var(--bg); border: 1px solid var(--line-soft); border-radius: 14px; }
.cookie-config p { font-size: 12.5px; margin-bottom: 12px; }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 900px) {
  .calc-body { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero-intro { padding: 60px 20px 56px; }
  .sec, .cta-sec, footer { padding: 60px 20px; }
  .notice-sec { padding: 40px 20px; }
  .calc-wrap { padding: 28px 20px; }
  .sgrid-compact { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; }
  .stat { min-width: 100%; border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .form-row { flex-direction: column; }
  footer { flex-direction: column; text-align: center; padding: 28px 20px; }
  .flinks { justify-content: center; }
  .acc-body { padding-left: 28px; }
  .team-compact-item { flex-direction: column; align-items: center; text-align: center; }
  .calc-result-grid { grid-template-columns: 1fr; }

  /* Tabla comparativa: en móvil se oculta la tabla y se muestran las cards apiladas */
  .table-container { display: none; }
  .contrast-cards { display: flex; }
}
