/* Tech premium — negro + verde neón, mobile-first */
:root {
  --bg: #000000;
  --bg-elevated: #080808;
  --surface: rgba(0, 255, 136, 0.04);
  --surface-hover: rgba(0, 255, 136, 0.08);
  --border: rgba(0, 255, 136, 0.12);
  --border-strong: rgba(0, 255, 136, 0.28);
  --text: #f0fff8;
  --muted: #8a9a92;
  --muted-2: #5c6b64;
  --green: #00ff88;
  --green-dim: #00cc6a;
  --green-dark: #00994d;
  --green-glow: rgba(0, 255, 136, 0.45);
  --green-soft: rgba(0, 255, 136, 0.15);
  --gold: var(--green);
  --gold-dim: var(--green-dim);
  --gold-glow: var(--green-glow);
  --emerald: var(--green);
  --emerald-dim: var(--green-dim);
  --danger-bg: rgba(255, 60, 60, 0.1);
  --danger-text: #ff8a8a;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-card: 0 0 0 1px var(--border), 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 48px var(--green-glow), 0 0 120px rgba(0, 255, 136, 0.12);
  --space-section: clamp(3rem, 8vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
.mono { font-family: var(--font-mono); font-size: 0.9em; letter-spacing: 0.04em; color: var(--green); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    radial-gradient(ellipse 70% 45% at 50% -15%, rgba(0, 255, 136, 0.18), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 80%, rgba(0, 255, 136, 0.06), transparent 50%);
  background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 0;
}
a { color: var(--gold); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--emerald); }
img { max-width: 100%; height: auto; display: block; }

.site-shell { position: relative; z-index: 1; min-height: 100dvh; display: flex; flex-direction: column; }
.wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem) calc(7rem + env(safe-area-inset-bottom));
}
.page-checkout .wrap,
.page-thankyou .wrap {
  padding-bottom: 2.5rem;
  max-width: 920px;
}
.page-checkout .site-footer,
.page-thankyou .site-footer { padding-bottom: 2rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem clamp(1.25rem, 5vw, 2rem);
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-checkout .site-header__inner,
.page-thankyou .site-header__inner {
  max-width: 920px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--green); font-family: var(--font-mono); font-weight: 500; }
.header-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.header-cta:hover {
  background: var(--surface-hover);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Typography */
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35em;
  line-height: 1.15;
}
.section-lead { color: var(--muted); font-size: 1rem; margin: 0 0 1.75rem; max-width: 36ch; }

/* Hero */
.hero {
  padding: clamp(2rem, 6vw, 3.5rem) 0 clamp(2.5rem, 5vw, 3rem);
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border-radius: 4px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s var(--ease) both;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
  animation: pulse 2s ease infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.7s 0.08s var(--ease) both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--green) 0%, #fff 60%, var(--green-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px var(--green-glow);
}
.hero .sub {
  font-size: clamp(1rem, 3.5vw, 1.125rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 38ch;
  margin: 0 auto 1rem;
  animation: fadeUp 0.7s 0.16s var(--ease) both;
}
.hero__hook {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-strong);
  background: rgba(0, 255, 136, 0.04);
  animation: fadeUp 0.7s 0.2s var(--ease) both;
}
.hero__hook strong { color: var(--text); font-weight: 500; }
.hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s 0.24s var(--ease) both;
}
.stat { text-align: center; }
.stat__val {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  letter-spacing: -0.02em;
}
.stat__lbl { font-size: 0.75rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }

.price-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(0,255,136,0.08) 0%, rgba(0,0,0,0.6) 100%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: fadeUp 0.7s 0.32s var(--ease) both;
  position: relative;
}
.price-card::before {
  content: "PRECIO LANZAMIENTO";
  position: absolute;
  top: -10px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--green);
  background: var(--bg);
  padding: 0 8px;
}
.price-card__eur {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
}
.price-card__mxn { font-size: 0.875rem; color: var(--muted); }
.price-card__note { font-size: 0.75rem; color: var(--muted-2); margin-top: 0.25rem; }

.hero__cta-wrap { animation: fadeUp 0.7s 0.4s var(--ease) both; }
.hero__cta-desktop { display: none; }

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s 0.2s var(--ease) both;
}
.hero__proof-avatars {
  display: flex;
}
.hero__proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-left: -10px;
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.3);
}
.hero__proof-avatar:first-child { margin-left: 0; }
.hero__proof-text {
  font-size: 0.8125rem;
  color: var(--muted);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--muted-2);
  animation: fadeUp 0.7s 0.48s var(--ease) both;
}
.trust-row span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-row svg { width: 16px; height: 16px; opacity: 0.7; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.75rem;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  width: 100%;
  max-width: 360px;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  color: #000;
  box-shadow: 0 0 24px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  box-shadow: 0 0 40px var(--green-glow), 0 0 80px rgba(0,255,136,0.2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-lg { min-height: 56px; font-size: 1.0625rem; }

/* Sections */
.section {
  padding: var(--space-section) 0;
  border-top: 1px solid var(--border);
}
.section--flush-top { border-top: none; padding-top: 0; }

.value-grid {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.value-item:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}
.value-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232,196,122,0.15), rgba(94,233,168,0.08));
  border: 1px solid var(--border);
  color: var(--gold);
}
.value-item__icon svg { width: 22px; height: 22px; }
.value-item strong { display: block; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.value-item span { font-size: 0.875rem; color: var(--muted); line-height: 1.45; }

/* Cards */
.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem 1.5rem;
  margin-bottom: 0.875rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.card--testimonial { position: relative; padding-top: 1.75rem; }
.card__stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}
.card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
}
.card .who { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.1rem; }
.card .loc { color: var(--muted-2); font-size: 0.8125rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.9375rem; line-height: 1.55; }

.module-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.25rem 1.375rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.module-card__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(232, 196, 122, 0.1);
  border: 1px solid rgba(232, 196, 122, 0.25);
}
.module-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.module-card p { margin: 0; font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.module-card--lp .module-card__num {
  color: var(--green);
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.25);
}

/* Landing — hook section */
.lp-hook { border-top: none; padding-top: 0; }
.lp-hook__card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.lp-hook__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--text);
}
.lp-hook__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 44ch;
  margin-inline: auto;
}
.lp-hook__text strong { color: var(--green); font-weight: 600; }

/* Landing — package cards */
.lp-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 520px) { .lp-packages { grid-template-columns: repeat(3, 1fr); } }
.lp-pkg {
  position: relative;
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.lp-pkg:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.lp-pkg--premium {
  border-color: rgba(0, 255, 136, 0.35);
  background: linear-gradient(160deg, rgba(0, 255, 136, 0.06) 0%, var(--bg-elevated) 100%);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.08);
}
.lp-pkg--vip { border-color: rgba(232, 196, 122, 0.25); }
.lp-pkg__badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--bg);
  padding: 0 8px;
  white-space: nowrap;
}
.lp-pkg__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.lp-pkg__cost {
  font-size: 0.75rem;
  color: var(--muted-2);
}
.lp-pkg__sell {
  font-size: 0.8125rem;
  color: var(--muted);
}
.lp-pkg__margin {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
  margin-top: 0.25rem;
}

/* Landing — mid CTA */
.lp-mid-cta {
  text-align: center;
  padding: clamp(2rem, 5vw, 2.5rem) 0;
  border-top: none;
}
.lp-mid-cta .btn { margin: 0 auto; }
.lp-mid-cta__sub {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted-2);
}

/* Landing — final CTA trust row */
.lp-final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted-2);
}
.lp-final-cta__trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.lp-final-cta__trust svg { width: 16px; height: 16px; opacity: 0.7; }

/* Landing — client segmentation */
.lp-clients { border-top: none; }
.lp-client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 520px) { .lp-client-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-client-card {
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.lp-client-card--featured {
  border-color: rgba(0, 255, 136, 0.35);
  background: linear-gradient(160deg, rgba(0, 255, 136, 0.06) 0%, var(--bg-elevated) 100%);
}
.lp-client-card__tier {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.lp-client-card__tier--eco { color: var(--green); }
.lp-client-card__tier--premium { color: #7ec8ff; }
.lp-client-card__tier--vip { color: #ffc850; }
.lp-client-card strong { font-size: 0.9375rem; }
.lp-client-card span { font-size: 0.8125rem; color: var(--muted); line-height: 1.4; }

/* Landing — problem section */
.lp-problem { border-top-color: rgba(255, 60, 60, 0.15); }

/* Landing — conversión sin spoilear el método */
.lp-compare {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .lp-compare { grid-template-columns: 1fr 1fr; } }
.lp-compare__col {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.lp-compare__col--bad { background: rgba(255, 60, 60, 0.04); border-color: rgba(255, 100, 100, 0.2); }
.lp-compare__col--good {
  background: rgba(0, 255, 136, 0.05);
  border-color: rgba(0, 255, 136, 0.25);
}
.lp-compare__col h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-compare__col--bad h3 { color: var(--danger-text); }
.lp-compare__col--good h3 { color: var(--green); }
.lp-compare__col ul { margin: 0; padding-left: 1.1rem; font-size: 0.875rem; color: var(--muted); }

.lp-outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.lp-outcome {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.lp-outcome__icon {
  flex-shrink: 0;
  color: var(--green);
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
}
.lp-outcome__icon svg { width: 20px; height: 20px; }
.lp-outcome strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.lp-outcome span { font-size: 0.8125rem; color: var(--muted-2); line-height: 1.4; }

.lp-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.lp-preview-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text);
}
.lp-preview-item--locked {
  background: rgba(0, 0, 0, 0.35);
  color: var(--muted);
}
.lp-preview-item__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green);
}
.lp-preview-item--locked .lp-preview-item__icon { color: var(--muted-2); }
.lp-preview-item__icon svg { width: 18px; height: 18px; }
.lp-preview-item__tag {
  margin-left: auto;
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  color: var(--green);
  flex-shrink: 0;
}

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.lp-steps li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.lp-steps__num {
  color: var(--green);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.lp-steps strong { display: block; margin-bottom: 0.25rem; }
.lp-steps p { margin: 0; font-size: 0.875rem; color: var(--muted); }

.lp-math-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(0, 255, 136, 0.06) 0%, rgba(0, 0, 0, 0.5) 100%);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.lp-math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.lp-math-row:last-child { border-bottom: none; }
.lp-math-row--profit {
  border-bottom: none;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--green);
}
.lp-math-label { font-size: 0.9rem; color: var(--muted); }
.lp-math-value { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.lp-math-value--cost { color: var(--muted-2); }
.lp-math-value--sell { color: var(--text); }
.lp-math-value--profit { color: var(--green); font-size: 1.125rem; text-shadow: 0 0 20px var(--green-glow); }
.lp-math-note {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
  font-style: italic;
}

.lp-final-cta__card {
  text-align: center;
  padding: 2rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  box-shadow: var(--shadow-glow);
}
.lp-final-cta__card .btn { margin: 0 auto; }
.lp-final-cta__urgency {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--danger-text);
  font-weight: 500;
  animation: pulse 2s ease infinite;
}

.fit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
.fit-box {
  padding: 1.375rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.fit-box--yes {
  background: linear-gradient(160deg, rgba(94, 233, 168, 0.08), transparent);
  border-color: rgba(94, 233, 168, 0.2);
}
.fit-box--no {
  background: var(--surface);
}
.fit-box h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.fit-box--yes h3 { color: var(--emerald); }
.fit-box--no h3 { color: var(--muted-2); }
.fit-box ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.9rem; }
.fit-box li { margin-bottom: 0.35rem; }

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 1.125rem 1.375rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 0;
  padding: 0 1.375rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Guarantee */
.guarantee {
  text-align: center;
  padding: clamp(2rem, 5vw, 2.75rem) 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(232,196,122,0.08) 0%, rgba(94,233,168,0.04) 50%, transparent 100%);
  border: 1px solid rgba(232, 196, 122, 0.2);
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse, var(--gold-glow), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.guarantee__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 196, 122, 0.12);
  border: 1px solid rgba(232, 196, 122, 0.3);
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.guarantee h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}
.guarantee p { color: var(--muted); margin: 0; position: relative; z-index: 1; max-width: 32ch; margin-inline: auto; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem clamp(1rem, 4vw, 1.5rem) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
}
.sticky-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sticky-cta__price {
  flex-shrink: 0;
  text-align: left;
}
.sticky-cta__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.sticky-cta__price small { font-size: 0.7rem; color: var(--muted-2); }
.sticky-cta .btn { flex: 1; max-width: none; min-height: 48px; font-size: 0.9375rem; }

/* Footer */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 5vw, 2rem) calc(6rem + env(safe-area-inset-bottom));
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}
.site-footer a {
  font-size: 0.8125rem;
  color: var(--muted);
}
.site-footer a:hover { color: var(--gold); }
.site-footer__copy { font-size: 0.75rem; color: var(--muted-2); margin: 0; }

/* Alert (global) */
.alert,
.co-alert {
  padding: 1rem 1.125rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  background: var(--danger-bg);
  color: var(--danger-text);
  border: 1px solid rgba(239, 68, 68, 0.25);
  font-size: 0.9rem;
}
.co-alert--info {
  background: rgba(0, 255, 136, 0.08);
  color: var(--muted);
  border-color: rgba(0, 255, 136, 0.25);
}
.btn-block { width: 100%; max-width: none; display: flex; }

/* ——— Checkout ——— */
.co { padding-top: 0.5rem; }

.co-head {
  margin-bottom: 1.75rem;
  position: relative;
}
.co-head__back {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.co-head__back:hover { color: var(--green); }
.co-head__steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.co-head__step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted-2);
  background: var(--bg-elevated);
}
.co-head__step.is-done {
  border-color: rgba(0, 255, 136, 0.35);
  color: var(--green);
  background: rgba(0, 255, 136, 0.08);
}
.co-head__step.is-active {
  border-color: var(--green);
  color: #000;
  background: var(--green);
  box-shadow: 0 0 24px var(--green-glow);
}
.co-head__line {
  flex: 0 0 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.5), var(--border));
}
.co-head__label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--green);
}
.co-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}
.co-head__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 42ch;
}

.co-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.co-summary__card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(0, 255, 136, 0.07) 0%, rgba(0, 0, 0, 0.6) 55%);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
}
.co-summary__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.co-summary__tag {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.co-summary__badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid var(--border);
  color: var(--green);
}
.co-summary__name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.co-summary__price { margin-bottom: 1rem; }
.co-summary__eur {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
}
.co-summary__mxn {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--muted-2);
}
.co-summary__list {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.5rem;
}
.co-summary__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.co-summary__check {
  color: var(--green);
  font-size: 0.75rem;
}
.co-summary__trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted-2);
}
.co-summary__trust svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

.co-panel {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.co-panel__title {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.co-panel__hint {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: var(--muted-2);
  line-height: 1.4;
}
.co-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.co-panel--legal { background: transparent; border-style: dashed; padding: 1rem 1.25rem; }
.co-field { margin-bottom: 0.85rem; }
.co-field:last-child { margin-bottom: 0; }
.co-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
}
.co-optional { color: var(--muted-2); font-weight: 400; }
.co-field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: #0a0a0a;
  color: var(--text);
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.co-field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

/* Métodos de pago: 3 columnas en línea (móvil y escritorio) */
.co-pay-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}
.co-pay-note {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  text-align: center;
}
.co-pay {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
  min-width: 0;
}
.co-pay__input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}
.co-pay__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 88px;
  padding: 0.75rem 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  pointer-events: none;
  text-align: center;
}
.co-pay__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid var(--border);
  color: var(--green);
}
.co-pay__icon svg { width: 20px; height: 20px; }
.co-pay__icon--paypal { color: #7ec8ff; background: rgba(126, 200, 255, 0.08); }
.co-pay__icon--oxxo { color: #ff8a7a; background: rgba(255, 138, 122, 0.08); }
.co-pay__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.co-pay:has(input:checked) .co-pay__cell {
  border-color: var(--green);
  background: rgba(0, 255, 136, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.12);
}
.co-pay:has(input:checked) .co-pay__icon {
  border-color: rgba(0, 255, 136, 0.45);
}
.co-pay:has(input:checked) .co-pay__label {
  color: var(--green);
}

.co-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  cursor: pointer;
}
.co-check:last-child { margin-bottom: 0; }
.co-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }

.co-submit {
  width: 100%;
  margin-top: 0.5rem;
  min-height: 54px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.co-below-btn {
  margin-top: 1rem;
  text-align: center;
}
.co-below-btn p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  color: var(--muted-2);
}
.co-below-btn svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.co-summary__urgency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 60, 60, 0.08);
  border: 1px solid rgba(255, 100, 100, 0.2);
  font-size: 0.75rem;
  color: var(--danger-text);
  font-weight: 500;
}
.co-summary__urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--danger-text);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .co-layout {
    grid-template-columns: minmax(260px, 300px) 1fr;
    gap: 2rem;
  }
  .co-summary { position: sticky; top: 5.5rem; }
  .co-head__sub { max-width: none; }
}

/* ——— Thank you ——— */
.ty { padding-top: 0.75rem; }

.ty-layout {
  max-width: 520px;
  margin: 0 auto;
  animation: fadeUp 0.45s var(--ease) both;
  position: relative;
}
.ty-layout--paid {
  padding-top: 0.25rem;
}
.ty-confetti {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.35), transparent 55%),
    radial-gradient(circle at 70% 50%, rgba(0, 255, 136, 0.2), transparent 50%);
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.8;
}

.ty-status {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  text-align: left;
}
.ty-status__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-status__icon svg { width: 26px; height: 26px; }
.ty-status--ok .ty-status__icon {
  color: var(--green);
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.35);
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.2);
}
.ty-status--wait .ty-status__icon {
  color: #ffc850;
  background: rgba(255, 200, 80, 0.1);
  border: 1px solid rgba(255, 200, 80, 0.35);
}
.ty-status--err .ty-status__icon {
  color: var(--danger-text);
  background: var(--danger-bg);
  border: 1px solid rgba(239, 68, 68, 0.35);
}
.ty-status__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--green);
}
.ty-status--wait .ty-status__label { color: #ffc850; }
.ty-status--err .ty-status__label { color: var(--danger-text); }
.ty-status__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  line-height: 1.15;
}
.ty-status__sub {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}
.ty-status__sub strong { color: var(--text); font-weight: 500; }

.ty-dl { margin-bottom: 1.5rem; }
.ty-dl__card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.75rem 1.35rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
  box-shadow: var(--shadow-card), 0 0 60px rgba(0, 255, 136, 0.08);
}
.ty-dl__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.25), transparent 70%);
  pointer-events: none;
}
.ty-dl__card > *:not(.ty-dl__glow) { position: relative; z-index: 1; }
.ty-dl__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  color: var(--green);
}
.ty-dl__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.ty-dl__meta {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted-2);
}
.ty-dl__btn {
  width: 100%;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ty-dl__btn svg { width: 20px; height: 20px; }
.ty-dl__email {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.ty-dl__email strong { color: var(--text); }
.ty-dl--email-only {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border-strong);
  background: rgba(0, 255, 136, 0.04);
  text-align: center;
}
.ty-dl--email-only .ty-dl__email { margin: 0; font-size: 0.9rem; line-height: 1.5; }

.ty-receipt {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.ty-receipt__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.ty-receipt__row:last-child { border-bottom: none; }
.ty-receipt__key { color: var(--muted-2); font-size: 0.8125rem; }
.ty-receipt__val { font-weight: 600; color: var(--text); text-align: right; }
.ty-receipt__val--accent { color: var(--green); }
.ty-receipt__val--wait { color: #ffc850; }

.ty-steps__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.ty-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.ty-steps__list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 255, 136, 0.03);
}
.ty-steps__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.ty-steps__list strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.2rem;
}
.ty-steps__list p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.ty-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted-2);
}
.ty-guarantee svg { color: var(--green); }

.ty-reload {
  text-align: center;
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.ty-reload a { color: var(--green); font-weight: 500; }

@media (min-width: 768px) {
  .page-thankyou .ty-layout { max-width: 480px; }
}

/* Info / 404 */
.prose { color: var(--muted); line-height: 1.65; }
.prose h1 { font-family: var(--font-display); color: var(--text); }
.prose a { color: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@media (min-width: 768px) {
  .wrap { padding-bottom: 4rem; }
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 3rem; }
  .hero__cta-desktop { display: block; }
}
@media (max-width: 767px) {
  .hero .btn-primary:not(.sticky-cta .btn) { width: 100%; max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
