@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&display=swap");

:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Sora", "Inter", ui-sans-serif, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --color-ink: #060a14;
  --color-surface: #0d1424;
  --color-surface-2: #131c30;
  --color-line: #1d2a44;

  --color-text: #e8f0fb;
  --color-text-muted: #8b9bb4;

  --color-brand: #059669;
  --color-brand-2: #38bdf8;
  --color-on-brand: #041019;
  --color-brand-soft: #0f2531;

  --color-tier-cheap: #059669;
  --color-tier-mid: #ffb454;
  --color-tier-expensive: #ff7a76;
  --color-lime: #a3e635;
}

@media (prefers-color-scheme: light) {
  :root {
    --color-ink: #eef3f9;
    --color-surface: #ffffff;
    --color-surface-2: #e4ecf5;
    --color-line: #d7e0ec;
    --color-text: #101726;
    --color-text-muted: #5a6a82;
    --color-brand-2: #0284c7;
    --color-on-brand: #ffffff;
    --color-brand-soft: #d9efe9;
  }
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-ink);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--color-brand);
  color: var(--color-on-brand);
}

a {
  color: inherit;
}

.wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* ---------- Ambient animated background (parallax-driven by JS + CSS drift) ---------- */

.orb-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}

.orb-a {
  width: 640px;
  height: 640px;
  top: -220px;
  right: -160px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-brand) 60%, transparent), transparent 70%);
  animation: drift-a 18s ease-in-out infinite;
}

.orb-b {
  width: 540px;
  height: 540px;
  top: 30vh;
  left: -220px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-brand-2) 50%, transparent), transparent 70%);
  animation: drift-b 22s ease-in-out infinite;
}

.orb-c {
  width: 480px;
  height: 480px;
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-lime) 28%, transparent), transparent 70%);
  animation: drift-c 25s ease-in-out infinite;
}

@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 80px) scale(1.12); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -60px) scale(1.08); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -70px) scale(1.15); }
}

.cursor-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    520px circle at var(--x, 50%) var(--y, 20%),
    color-mix(in srgb, var(--color-brand) 10%, transparent),
    transparent 60%
  );
  transition: background 0.15s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .orb, .btn-primary, .price-figure { animation: none !important; }
  .cursor-glow, .icon-field { display: none; }
}

/* ---------- Floating icons ---------- */

.icon-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

@media (max-width: 30rem) {
  /* Desktop-tuned percentage positions sit right on top of the text at
     mobile widths, so drop them there rather than fight the layout. */
  .icon-field { display: none; }
}

.float-icon {
  position: absolute;
  will-change: transform;
}

.float-icon .spin {
  display: block;
  animation: bob 5.5s ease-in-out infinite, spin-slow 14s linear infinite;
  color: var(--color-brand);
  opacity: 0.3;
}
.float-icon .bob-only {
  display: block;
  animation: bob 4.5s ease-in-out infinite;
  color: var(--color-brand-2);
  opacity: 0.28;
}
.float-icon.slow .spin,
.float-icon.slow .bob-only { animation-duration: 8s, 20s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .float-icon .spin, .float-icon .bob-only { animation: none; }
}

/* ---------- Layout ---------- */

/* PREVIEW: full-screen logo intro */
.intro-spacer {
  height: 75vh;
}

.intro-overlay {
  position: fixed;
  top: -8vh;
  right: -8vw;
  bottom: -8vh;
  left: -8vw;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: var(--color-ink);
  will-change: transform, filter, opacity;
}

.intro-icon-field {
  position: absolute;
  inset: 0;
  color: var(--color-brand);
  opacity: 0.55;
}

.intro-logo {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 13vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.intro-tagline {
  position: relative;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(0.72rem, 2vw, 0.9rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.8;
  /* Was a fixed -7.5rem pull-up, tuned only for the logo's desktop size —
     .intro-logo's font-size scales with viewport (clamp), so a fixed
     margin overshot badly at phone widths, dragging this into the logo.
     Tightening the logo's line-height instead lets the flex column's own
     `gap` (see .intro-overlay) provide correct, viewport-proportional
     spacing at every size, no magic number needed. */
  margin: 0;
}

.intro-logo .accent {
  background: linear-gradient(92deg, var(--color-brand), var(--color-brand-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-scroll {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.scroll-ring-wrap {
  position: absolute;
  inset: 0;
  will-change: transform, filter, opacity;
}

.scroll-ring {
  width: 100%;
  height: 100%;
  color: var(--color-brand);
  transform-origin: 50% 50%;
  animation: scroll-ring-spin 12s linear infinite;
}
.scroll-ring text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  fill: currentColor;
  text-transform: uppercase;
}
@keyframes scroll-ring-spin {
  to { transform: rotate(360deg); }
}

.scroll-arrow {
  position: relative;
  color: var(--color-brand);
  animation: scroll-arrow-bounce 2.8s ease-in-out infinite;
  will-change: opacity;
}
@keyframes scroll-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-ring, .scroll-arrow { animation: none; }
}

header.site {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17rem 1.5rem 0;
  max-width: 42rem;
  margin: 0 auto;
}

/* ---------- Language toggle ---------- */
/* Absolute, not fixed: it only needs to be reachable while the intro/hero
   is on screen, and scrolling it away with the page avoids it sitting on
   top of the long-form copy further down (porque-emph, price section). */
.lang-toggle {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-surface) 65%, transparent);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.lang-toggle:hover {
  border-color: var(--color-brand);
  transform: translateY(-1px);
}
.lang-toggle .flag {
  font-size: 0.9rem;
  line-height: 1;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.025em;
}

.logo .accent {
  background: linear-gradient(92deg, var(--color-brand), var(--color-brand-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  overflow: hidden;
}

#por-que {
  padding-top: 2.75rem;
  padding-bottom: 1rem;
}

section.divider {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: color-mix(in srgb, var(--color-surface) 40%, transparent);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-brand);
  background: var(--color-brand-soft);
  border: 1px solid color-mix(in srgb, var(--color-brand) 40%, transparent);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 2rem;
}
.kicker-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-size: clamp(2.1rem, 6.5vw, 3.4rem);
  margin: 0 auto;
  max-width: 36rem;
  text-wrap: balance;
}

.hero h1 .hl {
  background: linear-gradient(92deg, var(--color-brand), var(--color-brand-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .sub {
  margin: 1.4rem auto 0;
  max-width: 30rem;
  color: var(--color-text-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.cta-group {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.btn-primary {
  position: relative;
  display: inline-block;
  background: var(--color-brand);
  color: var(--color-on-brand);
  border-radius: 0.5rem;
  padding: 1.1rem 2.1rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.3s ease, filter 0.15s ease;
  animation: glow-pulse 3.2s ease-in-out infinite;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 3.2s ease-in-out infinite;
}
.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:active {
  transform: scale(0.97);
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px 0 color-mix(in srgb, var(--color-brand) 40%, transparent); }
  50% { box-shadow: 0 0 36px 8px color-mix(in srgb, var(--color-brand) 55%, transparent); }
}
@keyframes shine-sweep {
  0% { left: -60%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
  .btn-primary::before { display: none; }
}

.link-quiet {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}
.link-quiet:hover {
  color: var(--color-brand);
  border-color: currentColor;
  transform: translateY(2px);
}

/* ---------- Price ticker marquee ---------- */

.marquee {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: color-mix(in srgb, var(--color-surface) 55%, transparent);
  overflow: hidden;
  padding: 0.65rem 0;
  mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 15s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

.marquee-item {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 0 1.75rem;
  color: var(--color-text-muted);
  border-right: 1px solid var(--color-line);
}
.marquee-item .price {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.marquee-item.down .price { color: var(--color-tier-cheap); }
.marquee-item.up .price { color: var(--color-tier-expensive); }
.marquee-item.flat .price { color: var(--color-tier-mid); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Kicker / body copy ---------- */

.kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand);
  margin: 0 0 1rem;
}

.porque-lead {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
  color: var(--color-text-muted);
  margin: 0 0 4.125rem;
}

.porque-emph {
  position: relative;
  z-index: 0;
  max-width: 42rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-align: center;
  margin: 4.125rem auto 0;
}

.porque-emph::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-brand) 30%, transparent), transparent 70%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
  animation: porque-light-drift 2.4s ease-in-out infinite;
}

@keyframes porque-light-drift {
  0%, 100% { transform: translate(-54%, -54%); }
  50% { transform: translate(-46%, -46%); }
}

@media (prefers-reduced-motion: reduce) {
  .porque-emph::before { animation: none; }
}

.mechanism-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}

.mechanism-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 9rem;
  text-align: center;
}

.mechanism-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--color-brand-soft);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 30rem) {
  .mechanism-icon {
    width: 6.5rem;
    height: 6.5rem;
  }
  .mechanism-icon svg {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.mechanism-step p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.mechanism-step p span {
  display: block;
  margin-top: 0.2rem;
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

@media (max-width: 30rem) {
  .porque-emph {
    font-size: clamp(2.3rem, 10vw, 2.9rem);
  }
  .mechanism-row {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .mechanism-step {
    width: 100%;
    max-width: 18rem;
    gap: 1.1rem;
  }
  .mechanism-icon {
    width: 7rem;
    height: 7rem;
  }
  .mechanism-icon svg {
    width: 2.75rem;
    height: 2.75rem;
  }
  .mechanism-step p {
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }
  .mechanism-step p span {
    font-size: 1.05rem;
    margin-top: 0.35rem;
    text-transform: none;
  }
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  text-wrap: balance;
  margin: 0 0 1.25rem;
}

/* ---------- Agitación ---------- */

.agitacion-copy p {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.5;
  text-wrap: balance;
  margin: 0 0 1rem;
  font-weight: 600;
}
.agitacion-copy p:first-child { color: var(--color-text); }
.agitacion-copy p:last-child { color: var(--color-text-muted); margin-bottom: 0; font-weight: 400; }

.pin-card {
  margin-top: 2rem;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.pin-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.92);
}
.pin-dot.cheap {
  background: var(--color-tier-cheap);
  box-shadow: 0 0 14px 2px color-mix(in srgb, var(--color-tier-cheap) 55%, transparent);
  width: 22px;
  height: 22px;
  animation: pin-breathe 2.2s ease-in-out infinite;
}
.pin-dot.mid { background: var(--color-tier-mid); }
.pin-dot.expensive { background: var(--color-tier-expensive); }

@keyframes pin-breathe {
  0%, 100% { box-shadow: 0 0 14px 2px color-mix(in srgb, var(--color-tier-cheap) 45%, transparent); }
  50% { box-shadow: 0 0 30px 9px color-mix(in srgb, var(--color-tier-cheap) 75%, transparent); }
}
@media (prefers-reduced-motion: reduce) {
  .pin-dot.cheap { animation: none; }
}

.pin-item .pin-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}
.pin-item:has(.pin-dot.cheap) .pin-price { color: var(--color-brand); font-weight: 700; }
.pin-item:has(.pin-dot.mid) .pin-price { color: var(--color-tier-mid); }
.pin-item:has(.pin-dot.expensive) .pin-price { color: var(--color-tier-expensive); }

/* ---------- Mechanism list ---------- */

section:has(.mech-list) {
  padding-top: 1rem;
}

.mech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mech-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 10.5rem;
  min-width: 10.5rem;
  gap: 0.5rem;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.mech-item:hover {
  border-color: color-mix(in srgb, var(--color-brand) 45%, var(--color-line));
  transform: translateY(-3px) scale(1.01);
  background: var(--color-surface-2);
}

.mech-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--color-brand);
}

.mech-text {
  color: var(--color-text);
}
.mech-text .title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}
.mech-text .body {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ---------- Big price showcase ---------- */

.price-hero {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.price-figure {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 17vw, 8rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-shadow: 0 0 40px color-mix(in srgb, var(--color-brand) 30%, transparent);
  transform-style: preserve-3d;
  will-change: transform;
}
.price-figure.reveal {
  transform: translateY(28px) scale(0.8);
}
.price-figure.reveal.in {
  transform: translateY(0) scale(1);
  transition: opacity 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.price-figure.tilting {
  transition: transform 0.1s ease-out;
}

.price-figure .cents {
  background: linear-gradient(92deg, var(--color-brand), var(--color-brand-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--color-text);
}

.price-punch {
  margin-top: 0.6rem;
  font-size: 1.05rem;
  color: var(--color-brand);
  font-weight: 600;
}

.price-sub {
  margin: 1.75rem auto 0;
  max-width: 28rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.price-sub-second {
  margin-top: 0.85rem;
}

/* ---------- Final CTA ---------- */

.cierre {
  text-align: center;
  padding-bottom: 1rem;
}

.car-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-icon {
  flex-shrink: 0;
  width: clamp(16rem, 34vw, 23rem);
  height: auto;
  position: relative;
  z-index: 1;
  margin-right: -7rem;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

.btn-primary.btn-small {
  position: relative;
  z-index: 2;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.cierre .fineprint {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0.5rem 1.5rem 1.5rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
footer p {
  margin: 0;
}

.footer-trust {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  color: var(--color-brand);
  margin-bottom: 1.5rem;
}

@media (min-width: 30rem) {
  .footer-break {
    display: none;
  }
}

/* ---------- Legal pages (privacidad / cookies) ---------- */

.legal-header {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem 0;
  max-width: 42rem;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.legal-back:hover {
  color: var(--color-brand);
}

.legal {
  position: relative;
  z-index: 2;
  padding: 2rem 0 5rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin: 0 0 0.5rem;
}

.legal .updated {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin: 0 0 2.5rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 2.5rem 0 0.75rem;
}

.legal p,
.legal li {
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
  color: var(--color-text-muted);
}

.legal p {
  margin: 0 0 1rem;
}

.legal strong {
  color: var(--color-text);
  font-weight: 700;
}

.legal a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal li {
  padding-left: 0.25rem;
}
