@font-face {
      font-family: "Glacial Indifference";
      font-weight: 400; font-style: normal; font-display: swap;
      src: url("https://cdn.jsdelivr.net/gh/xz/fonts/glacialindifference/GlacialIndifference-Regular.otf") format("opentype");
    }
    @font-face {
      font-family: "Glacial Indifference";
      font-weight: 700; font-style: normal; font-display: swap;
      src: url("https://cdn.jsdelivr.net/gh/xz/fonts/glacialindifference/GlacialIndifference-Bold.otf") format("opentype");
    }
  

/* ===== Start Hunt — Landing styles =====
   Grounded in the Start Hunt design system:
   - Five colors only (black, yellow, white, grey, grey-light)
   - Glacial Indifference (display) + Poppins (body)
   - 8-pt spacing grid, 1px borders, minimal shadows
   - Yellow is punctuation, never background behind long text
*/

:root {
  color-scheme: light;
  --sh-black: #000000;
  --sh-yellow: #ffbd59;
  --sh-yellow-hover: #e5a94e;
  --sh-yellow-press: #cc962e;
  --sh-white: #ffffff;
  --sh-grey: #bfbfbf;
  --sh-grey-light: #e6e6e6;
  --sh-ink-900: #0a0a0a;
  --sh-ink-800: #141414;
  --sh-ink-700: #1f1f1f;
  --sh-ink-400: #6b6b6b;

  /* Semantic (light) */
  --ink-1: #0a0a0a;
  --ink-2: #3d3d3d;
  --ink-3: #6b6b6b;
  --surface-0: #ffffff;
  --surface-1: #fafafa;
  --surface-2: #f4f4f4;

  /* Accent intensity (controlled by tweak) — 0..1 */
  --accent-alpha: 1;

  --font-display: "Glacial Indifference", "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Poppins", ui-sans-serif, system-ui, sans-serif;

  --fs-display: clamp(2.5rem, 5.6vw, 4.25rem);
  --fs-h2: clamp(1.75rem, 3.2vw, 2.5rem);
  --fs-h3: 1.375rem;
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px;
  --space-8: 64px; --space-9: 96px; --space-10: 128px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 48px -16px rgba(0,0,0,0.14);

  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 120ms;
  --dur-base: 180ms;
  --dur-slow: 320ms;

  --container: 1200px;
  --topbar-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
p { text-align: justify; hyphens: auto; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface-0);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
strong { font-weight: 600; color: var(--ink-1); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--sh-black); color: var(--sh-white);
  padding: 10px 16px; z-index: 1000; border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

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

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn-sm  { padding: 9px 14px; font-size: 13px; }
.btn-lg  { padding: 16px 26px; font-size: var(--fs-body); }

.btn-primary {
  background: var(--sh-yellow);
  color: var(--sh-black);
}
.btn-primary:hover  { background: var(--sh-yellow-hover); }
.btn-primary:active { background: var(--sh-yellow-press); transform: translateY(1px); }

.btn-secondary {
  background: transparent; color: var(--ink-1);
  border-color: var(--sh-grey-light);
}
.btn-secondary:hover { background: var(--surface-1); border-color: var(--sh-grey); }

.btn-dark { background: var(--sh-black); color: var(--sh-white); }
.btn-dark:hover { background: #1a1a1a; }

.btn-ghost {
  background: transparent; color: var(--sh-white);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); }

/* ============ Section label ============ */
.section-label {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: var(--space-4);
}
.section-label--light { color: var(--sh-grey); }

.display-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-1);
  text-wrap: balance;
}
.display-h2--light { color: var(--sh-white); }

/* ============ Nav ============ */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--sh-grey-light);
  height: var(--topbar-h);
}
.nav {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--ink-1); }
.nav-logo-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  overflow: hidden;
  border-radius: 4px;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a {
  padding: 8px 2px;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}
.nav-links a:hover { color: var(--ink-1); }
.nav-links a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 2px; height: 1px;
  background: var(--sh-black); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: var(--space-4); }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-pill);
  padding: 3px;
  background: var(--surface-0);
}
.lang-toggle button {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease-out);
}
.lang-toggle button.is-active {
  background: var(--sh-black);
  color: var(--sh-white);
}

/* ============ Hero ============ */
.hero {
  padding: clamp(56px, 8vw, 120px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(255,189,89, calc(0.08 * var(--accent-alpha))), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(0,0,0,0.03), transparent 55%),
    var(--surface-0);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
[data-hero-layout="split"] .hero-inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
[data-hero-layout="split"] .hero-copy { text-align: left; }
[data-hero-layout="split"] .hero-h1 { max-width: 640px; }
[data-hero-layout="split"] .hero-lede { max-width: 540px; }
[data-hero-layout="split"] .hero-ctas { justify-content: flex-start; }
[data-hero-layout="split"] .hero-metrics { justify-content: flex-start; }
[data-hero-layout="split"] .hero-candidate { text-align: left; }

.hero-copy {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-5);
}
[data-hero-layout="split"] .hero-copy { align-items: flex-start; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sh-yellow);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, calc(0.18 * var(--accent-alpha)));
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(255, 189, 89, calc(0.18 * var(--accent-alpha))); }
  50%     { box-shadow: 0 0 0 6px rgba(255, 189, 89, calc(0.06 * var(--accent-alpha))); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 780px;
  text-wrap: balance;
}
.hero-h1 em {
  font-style: normal;
  display: inline;
  background-image: linear-gradient(transparent 62%, rgba(255, 189, 89, calc(0.55 * var(--accent-alpha))) 62%, rgba(255, 189, 89, calc(0.55 * var(--accent-alpha))) 95%, transparent 95%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 580px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center;
  margin-top: var(--space-2);
}

.hero-metrics {
  margin-top: var(--space-5);
  display: flex;
  gap: var(--space-7);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: var(--space-5);
  border-top: 1px solid var(--sh-grey-light);
  width: 100%;
  max-width: 640px;
}
.hero-metric { display: flex; flex-direction: column; gap: 4px; }
.hero-metric-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
}
.hero-metric-label {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.hero-candidate {
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}
.hero-candidate a {
  color: var(--ink-1);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--sh-grey);
  transition: border-color var(--dur-fast) var(--ease-out);
  margin-left: 4px;
}
.hero-candidate a:hover { border-color: var(--sh-black); }
.hero-candidate a svg { transition: transform var(--dur-fast) var(--ease-out); }
.hero-candidate a:hover svg { transform: translateX(2px); }

/* ------- Hero aside card (split layout) ------- */
.hero-aside {
  display: none;
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 480px;
}
[data-hero-layout="split"] .hero-aside { display: block; }

.hero-card-bg {
  position: absolute; inset: 20px -30px -20px 30px;
  background: var(--sh-black);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: calc(0.04 + 0.02 * var(--accent-alpha));
}
.hero-card {
  position: relative; z-index: 1;
  background: var(--sh-white);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.hero-card-top {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--sh-grey-light);
}
.hero-card-frame {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--sh-black);
  padding: 3px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card-frame img { width: 100%; height: 100%; object-fit: contain; }
.hero-card-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.hero-card-role { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.hero-card-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-pill);
  font-size: 11px; color: var(--ink-3);
}
.hero-card-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
}
.hero-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.hero-card-list { display: flex; flex-direction: column; gap: 10px; }
.hero-card-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.hero-card-list li:hover { border-color: var(--sh-grey); background: var(--surface-1); }
.hero-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sh-yellow);
  color: var(--sh-black);
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.02em;
}
.hero-card-person { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-card-pname { font-weight: 600; font-size: 13px; }
.hero-card-pmeta { font-size: 11px; color: var(--ink-3); }
.hero-card-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
}
.hero-card-score small { font-size: 10px; color: var(--ink-3); font-weight: 600; margin-left: 1px; }

/* ============ Trust bar ============ */
.trust {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--sh-grey-light);
  border-bottom: 1px solid var(--sh-grey-light);
  background: var(--surface-1);
}
.trust-inner {
  display: flex; align-items: center; gap: var(--space-7);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.trust-list {
  display: flex; align-items: center; gap: var(--space-5);
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sh-grey);
  flex-shrink: 0;
}

/* ============ Problema ============ */
.problema {
  padding: var(--space-8) 0;
  background: var(--surface-0);
}
.problema-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: start;
}
.problema-col p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: var(--space-4);
  text-wrap: pretty;
}
.problema-col p:last-child { margin-bottom: 0; }
.problema-kicker {
  padding-top: var(--space-5);
  border-top: 1px solid var(--sh-grey-light);
  font-size: 18px !important;
  color: var(--ink-1) !important;
  font-weight: 500;
}

/* ============ Cómo funciona (timeline) ============ */
.how { padding: var(--space-8) 0; background: var(--surface-1); }
.how-header { max-width: 760px; margin-bottom: var(--space-7); }
.how-sub {
  margin-top: var(--space-4);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  text-wrap: pretty;
}

.timeline { position: relative; display: flex; flex-direction: column; gap: var(--space-5); }
.timeline::before {
  content: ""; position: absolute;
  left: 27px; top: 28px; bottom: 28px;
  width: 1px; background: var(--sh-grey-light);
  z-index: 0;
}
.timeline-step {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.timeline-step:hover {
  border-color: var(--ink-1);
  box-shadow: var(--shadow-md);
}

.timeline-mark {
  width: 56px; height: 56px;
  background: var(--sh-black);
  border-radius: 4px;
  display: grid; place-items: center;
  color: var(--sh-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  position: relative;
  flex-shrink: 0;
}
.timeline-mark::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
}
.timeline-mark span { position: relative; z-index: 1; }

.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.timeline-body p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
  text-wrap: pretty;
}

/* ============ Diferenciadores ============ */
.diff {
  background: var(--sh-black);
  color: var(--sh-white);
  padding: var(--space-8) 0;
  position: relative;
}
.diff-header { display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: var(--space-8); max-width: 760px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.diff-card {
  background: var(--sh-ink-900);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  min-height: 220px;
}
.diff-card:hover {
  background: var(--sh-ink-800);
  border-color: rgba(255, 189, 89, calc(0.35 * var(--accent-alpha) + 0.1));
  transform: translateY(-2px);
}
.diff-tag {
  display: inline-flex; align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 189, 89, calc(var(--accent-alpha)));
  color: var(--sh-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.diff-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h4);
  line-height: 1.25;
  color: var(--sh-white);
  height: 2.5em;
  display: flex;
  align-items: flex-start;
}
.diff-card p {
  color: var(--sh-grey);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ Credibilidad ============ */
.cred { padding: var(--space-8) 0; background: var(--surface-0); }
.cred-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.cred-copy p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: var(--space-4);
  text-wrap: pretty;
}
.cred-copy .display-h2 { margin-bottom: var(--space-5); }
.cred-copy .btn { display: block; width: fit-content; margin-left: auto; margin-top: var(--space-5); }

.cred-stats {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--sh-grey-light);
}
.cred-stats div { display: flex; flex-direction: column; gap: 4px; }
.cred-stats dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.cred-stats dd {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.3;
}

.cred-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
}
.cred-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}
.cred-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%) contrast(1.02);
  transition: filter var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.cred-card:hover .cred-photo img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}
.cred-framemark {
  position: absolute; left: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: var(--sh-black);
  padding: 3px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
}
.cred-framemark img { width: 100%; height: 100%; object-fit: contain; }

.cred-caption { padding: var(--space-5); }
.cred-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 4px;
}
.cred-role {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-1);
  margin-bottom: 2px;
}
.cred-creds {
  font-size: 13px;
  color: var(--ink-3);
}

/* ============ Testimonios ============ */
.quotes { padding: var(--space-8) 0; background: var(--surface-1); }
.quotes-header { max-width: 720px; margin-bottom: var(--space-8); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.quote-card {
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.quote-card:hover {
  border-color: var(--ink-1);
  box-shadow: var(--shadow-md);
}
.quote-mark {
  width: 28px; height: 20px;
  color: var(--sh-yellow);
  opacity: calc(var(--accent-alpha) * 0.9 + 0.1);
}
.quote-card blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-1);
  flex: 1;
  text-wrap: pretty;
}
.quote-card figcaption {
  display: flex; align-items: center; gap: 12px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--sh-grey-light);
}
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sh-yellow);
  color: var(--sh-black);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.quote-name { font-weight: 600; font-size: 14px; }
.quote-role { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* ============ FAQ ============ */
.faq { padding: var(--space-8) 0; background: var(--surface-0); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-10); align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-item[open] { border-color: var(--ink-1); }
.faq-item summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  transition: background var(--dur-fast) var(--ease-out);
  color: var(--ink-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-1); }
.faq-icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--ink-1);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-icon::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after  { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out);
}
.faq-item[open] .faq-body { max-height: 400px; }
.faq-body p {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ CTA blocks ============ */
.how-cta, .quotes-cta, .faq-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.link-cta {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--sh-black);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
}
.link-cta:hover { opacity: 0.7; }

/* ============ Contacto ============ */
.contacto {
  background: var(--sh-black);
  color: var(--sh-white);
  padding: var(--space-8) 0;
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.contacto-copy .display-h2 { margin-bottom: var(--space-5); }
.contacto-copy p {
  color: var(--sh-grey);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  text-wrap: pretty;
}
.contacto-bullets { display: flex; flex-direction: column; gap: var(--space-3); }
.contacto-bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--sh-grey);
  font-size: 14px;
}
.contacto-bullets svg {
  width: 16px; height: 16px;
  color: var(--sh-yellow);
  flex-shrink: 0;
}

.contact-form {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: var(--sh-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.contact-form label span { letter-spacing: 0.02em; }
.contact-form input {
  width: 100%;
  background: var(--surface-1);
  color: var(--ink-1);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.3;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.contact-form input::placeholder { color: var(--ink-3); }
.contact-form input:focus {
  outline: none;
  border-color: var(--sh-yellow);
  background: var(--surface-0);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.contact-form .btn-primary { margin-top: var(--space-3); width: 100%; }
.form-disclaimer {
  font-size: 11.5px;
  color: var(--sh-ink-400);
  line-height: 1.55;
  margin-top: 4px;
}

/* ============ WhatsApp float ============ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

/* ============ Footer ============ */
.footer {
  background: var(--sh-black);
  color: var(--sh-grey);
  padding: var(--space-9) 0 var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}
.footer-logomark {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: var(--space-4);
}
.footer-logomark img { width: 100%; height: 100%; object-fit: cover; }
.footer-word {
  color: var(--sh-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: var(--space-3);
}
.footer-word sup { font-size: 11px; margin-left: 2px; color: var(--sh-grey); }
.footer-brand p {
  font-size: 13px; line-height: 1.6; max-width: 280px;
}
.footer-brand address {
  font-style: normal;
  margin-top: var(--space-4);
  font-size: 13px;
  line-height: 1.8;
}
.footer-brand address a { color: var(--sh-grey); transition: color var(--dur-fast) var(--ease-out); }
.footer-brand address a:hover { color: var(--sh-white); }
.footer-col h4 {
  color: var(--sh-white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--sh-grey);
  font-size: 14px;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--sh-white); }

.footer-candidate {
  margin-top: var(--space-6);
  padding: var(--space-5) var(--space-6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
  background: var(--sh-ink-900);
}
.footer-candidate-title {
  color: var(--sh-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.footer-candidate-sub {
  color: var(--sh-grey);
  font-size: 13px;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--sh-grey);
}

/* ============ Reveal animation ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow .dot { animation: none; }
}

/* ============ Tweaks panel ============ */
.tweaks {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  width: 280px;
  background: var(--sh-white);
  color: var(--ink-1);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  z-index: 200;
  font-family: var(--font-body);
}
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--sh-grey-light);
}
.tweaks-close {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--ink-3);
  border-radius: 4px;
}
.tweaks-close:hover { background: var(--surface-1); color: var(--ink-1); }
.tweaks-row {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: var(--space-4);
}
.tweaks-row label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-3);
}
.tweaks-row input[type="range"] {
  width: 100%;
  accent-color: var(--sh-black);
}
.tweaks-row output {
  font-size: 12px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  align-self: flex-end;
}
.tweaks-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface-1);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
}
.tweaks-seg button {
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--ink-3);
  transition: all var(--dur-fast) var(--ease-out);
}
.tweaks-seg button.is-active {
  background: var(--sh-black);
  color: var(--sh-white);
}
.tweaks-hint {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.4;
}


/* ============ User type modal ============ */
.type-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(6px);
}
.type-modal[hidden] { display: none; }
.type-modal-box {
  background: var(--sh-white);
  border: 1px solid var(--sh-grey-light);
  border-radius: 4px;
  padding: var(--space-8) var(--space-7);
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.type-modal-lang {
  width: fit-content;
  margin: var(--space-6) auto 0;
}
.type-modal-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-grey);
  margin-bottom: var(--space-3);
}
.type-modal-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--sh-black);
  line-height: 1.15;
  margin-bottom: var(--space-7);
}
.type-modal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.type-modal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-5);
  border: 1px solid var(--sh-grey-light);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.type-modal-card:hover {
  border-color: var(--sh-black);
  background: var(--sh-grey-light);
}
.type-modal-card strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--sh-black);
}
.type-modal-card span {
  font-size: 13px;
  color: var(--sh-grey);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .type-modal-cards { grid-template-columns: 1fr; }
  .type-modal-box { padding: var(--space-6) var(--space-5); }
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  [data-hero-layout="split"] .hero-inner { grid-template-columns: 1fr; }
  [data-hero-layout="split"] .hero-aside { justify-self: center; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .problema-inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .cred-inner, .contacto-inner, .faq-inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 640px) {
  :root { --space-10: 80px; --space-9: 64px; }
  .nav-links { display: none; }
  .nav { gap: var(--space-3); }
  .nav-right .btn-secondary { display: none; }
  .hero-metrics { gap: var(--space-5); justify-content: flex-start; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .quotes-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-2); }
  .footer-candidate { flex-direction: column; align-items: flex-start; }
  .timeline-step { grid-template-columns: 44px 1fr; gap: var(--space-4); padding: var(--space-4); }
  .timeline-mark { width: 44px; height: 44px; font-size: 14px; }
  .timeline::before { left: 22px; }
  .cred-stats { grid-template-columns: 1fr 1fr 1fr; gap: var(--space-3); }
  .cred-stats dt { font-size: 24px; }
  .contact-form { padding: var(--space-4); }
}
