/* =================================================================
   RYSU BOOSTING — v2
   Real brand palette (black/gold/Impact), no CDNs, self-contained.
================================================================= */

@font-face {
  font-family: 'Impact1';
  src: url('../assets/fuentes/impact.ttf');
  font-display: swap;
}

:root {
  --ink: #080808;
  --ink2: #101010;
  --panel: #141414;
  --panel2: #1c1c1c;
  --panel-blue: #181818;
  --line: rgba(255,255,255,0.08);
  --gold: #FFD700;
  --golddim: #a8890a;
  --ice: #F2D571;
  --white: #ffffff;
  --mist: #a3a3a3;
  --font-display: 'Impact1', 'Arial Narrow', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}
/* ONE single fixed, blurred background layer for the entire site.
   Everything else (nav, sections, footer) sits on top as a flat
   semi-transparent tint — no per-section backdrop-filter, so there's
   no seam where one blurred region meets the next. */
body::after {
  content: '';
  position: fixed;
  inset: -30px;
  z-index: -2;
  background: url('../assets/imagenes/RYSU-BACKGROUND-v2.jpg') center center / cover no-repeat;
  filter: blur(5px);
  transform: scale(1.05);
}
/* Shop sub-pages use a different background per game mode */
/* Shop page: same fixed background regardless of active tab.
   Only --page-accent (set by JS on <body> when switching tabs) changes. */
body.shop-page::after { background-image: url('../assets/imagenes/FondoGameplayStaticNegro.png'); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

/* film grain, subtle */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =================== NAV =================== */
/* =================== NAV =================== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(8,8,8,0.85);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
}
.nav-logo { justify-self: start; }
.nav-logo img { height: 38px; }
.nav-links {
  display: none;
  justify-self: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a { display: flex; align-items: center; gap: 6px; color: var(--white); }
.nav-links a:hover { color: var(--gold); }
.nav-social { display: none; justify-self: end; gap: 14px; align-items: center; }
.nav-social img { width: 18px; height: 18px; opacity: .85; }
.nav-social img:hover { opacity: 1; }
.nav-cta {
  background: var(--gold); color: var(--ink); font-weight: 800; font-size: 13px;
  padding: 9px 16px; clip-path: polygon(0 0, 100% 0, 100% 70%, calc(100% - 10px) 100%, 0 100%);
  transition: box-shadow .25s ease, filter .25s ease;
}
.nav-cta:hover { filter: brightness(1.12); box-shadow: 0 6px 18px rgba(255,215,0,0.3); }
.nav-burger {
  display: flex; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-cta-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 800; font-size: 13px;
  padding: 9px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, calc(100% - 10px) 100%, 0 100%);
  transition: border-color .25s ease, background .25s ease;
}
.nav-cta-ghost:hover {
  border-color: var(--gold);
  background: rgba(255,215,0,0.08);
}
.nav-burger img { width: 24px; height: 24px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(8,8,8,0.9);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
  gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-weight: 600; padding: 6px 0; }

@media (min-width: 1024px) {
  .nav-links, .nav-social { display: flex; }
  .nav-burger { display: none; }
}
/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 68px;
  overflow: hidden;
  /* Antes tenia su propia imagen nitida + un velo propio, distinta del
     fondo compartido de body::after. Ahora no pinta nada: se ve el
     mismo fondo (foto desenfocada + degradado oscuro) que el resto de
     la pagina, sin ningun corte al pasar del header a las secciones. */
  background: transparent;
}
.hero::before { display: none; }
.hero-floodlight {
  position: absolute; top: -25%; left: 50%; width: 1100px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.18) 0%, rgba(255,215,0,0.05) 35%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; text-align: center; margin: 0 auto; padding: 48px 20px;
}
.hero-eyebrow {
  font-weight: 700; font-size: 13px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 1px;
  margin: 0 0 20px;
  color: var(--white);
}
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero h1 .word span {
  display: inline-block; transform: translateY(110%);
  animation: word-in .7s cubic-bezier(.22,1,.36,1) forwards;
}
.hero h1 .gold { color: var(--gold); }
@keyframes word-in { to { transform: translateY(0); } }

.hero p.sub {
  font-size: 18px; color: var(--mist); max-width: 520px; margin: 0 auto 32px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 15px; padding: 14px 30px; border: none; cursor: pointer;
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease, filter .25s ease;
}
.btn-gold {
  background: var(--gold); color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 70%, calc(100% - 14px) 100%, 0 100%);
  box-shadow: 0 0 0 rgba(255,215,0,0);
}
.btn-gold:hover {
  filter: brightness(1.12);
  box-shadow: 0 10px 28px rgba(255,215,0,0.35);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3); color: var(--white); background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(255,215,0,0.08);
  box-shadow: 0 6px 20px rgba(255,215,0,0.12);
}
[data-magnetic] { transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, filter .25s ease, background .25s ease, border-color .25s ease; }

/* =================== LOYALTY BAR (static, premium) =================== */
.loyalty-bar {
  background: rgba(255, 215, 0, 0.18);
  padding: 22px 24px;
  text-align: center;
}

.loyalty-bar p {
  margin: 0; font-size: 14px; color: var(--white);
}
.loyalty-bar strong { color: var(--gold); font-weight: 800; }

/* =================== PROBLEM SECTION =================== */
.eyebrow-ice {
  font-weight: 700; font-size: 13px; letter-spacing: 3px; color: var(--gold);
  text-transform: uppercase; text-align: center; margin-bottom: 16px;
}
.problem-body {
  max-width: 640px; margin: 0 auto 44px; text-align: center; color: var(--mist);
}
.problem-body p { margin: 0 0 16px; font-size: 16.5px; line-height: 1.7; }
.problem-cards { display: grid; gap: 22px; }
@media (min-width: 800px) { .problem-cards { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  background:
    radial-gradient(circle at top right, rgba(255,215,0,0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    var(--panel-blue);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 24px 24px 22px;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.problem-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(255,215,0,0));
  opacity: 0.9;
}
.problem-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 19px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.problem-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.problem-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.08; }
.problem-card p { margin: 0; color: var(--mist); font-size: 14px; line-height: 1.75; }
.problem-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,215,0,0.24);
  box-shadow: 0 20px 38px rgba(0,0,0,0.24);
}
@media (max-width: 799px) {
  .problem-card { padding: 22px 20px 20px; border-radius: 14px; }
  .problem-card h3 { font-size: 20px; }
  .problem-icon { width: 38px; height: 38px; font-size: 17px; margin-bottom: 12px; }
}

/* =================== SECTION SHELLS =================== */
section { position: relative; }
.section {
  padding: 90px 0;   /* antes: 110px */
  /* Antes cada seccion sumaba su propio velo negro (rgba(8,8,8,0.6))
     encima del fondo compartido — por eso se veia mas oscuro segun
     bajabas. Ahora no pinta nada propio: es el mismo fondo, siempre,
     igual que en el header. */
  background: transparent;
}
@media (min-width: 900px) {
  .section { padding: 160px 0; }   /* antes: 200px */
  /* Tramo intermedio (Services, How it works, Why Rysu, Reviews):
     con 4 secciones seguidas al mismo 160px la pagina pierde ritmo —
     se aprietan un poco para que el scroll no se sienta repetitivo.
     El gancho de apertura y el FAQ/CTA final se quedan en 160px. */
  .section.section-compact { padding: 130px 0; }
}
.section.alt { background: transparent; }
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center; margin: 0 0 20px;
}
.section-sub { text-align: center; color: var(--mist); max-width: 560px; margin: 0 auto 64px; }

/* reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* corner ticks, shared motif */
.corner-marked { position: relative; }
.corner-marked::before, .corner-marked::after {
  content: ''; position: absolute; width: 10px; height: 10px; top: 10px;
  border-top: 1.5px solid rgba(255,215,0,0.6);
}
.corner-marked::before { left: 10px; border-left: 1.5px solid rgba(255,215,0,0.6); }
.corner-marked::after { right: 10px; border-right: 1.5px solid rgba(255,215,0,0.6); }

/* =================== SERVICES =================== */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.service-card {
  position: relative; border-radius: 10px; overflow: hidden; height: 260px;
  border: 1px solid var(--line);
}
@media (min-width: 900px) { .service-card { height: 400px; } }
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,0.88);
  color: var(--white); text-align: center;
  padding: 12px 10px 14px; letter-spacing: .5px;
}
.service-label .title { display: block; font-weight: 800; font-size: 14px; }
.service-label .benefit { display: block; font-weight: 400; font-size: 11.5px; color: var(--mist); margin-top: 4px; line-height: 1.4; }
.service-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 800;
  padding: 5px 9px; border-radius: 4px;
}

/* =================== HOW IT WORKS =================== */
.steps { display: grid; gap: 26px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 30px 26px; position: relative; overflow: hidden;
}
.step-num-bg {
  position: absolute; top: -6px; right: 12px;
  font-family: var(--font-display); font-size: 84px; color: rgba(255,255,255,0.05);
  line-height: 1; pointer-events: none;
}
.step-num {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--golddim);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-weight: 800; margin-bottom: 18px; position: relative;
}
.step h3 { font-size: 17px; margin: 0 0 8px; letter-spacing: .3px; }
.step p { color: var(--mist); font-size: 14px; margin: 0; }

/* =================== WHY RYSU =================== */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (min-width: 800px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 26px 18px; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 400; font-size: 34px; color: var(--gold);
}
.stat-label { color: var(--mist); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* =================== REVIEWS =================== */
.reviews-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
.review-card .review-img-wrap {
  background: #fff; aspect-ratio: 300 / 253; display: flex; align-items: center; justify-content: center;
}
.review-card img { width: 100%; height: 100%; object-fit: contain; }
.review-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; font-size: 12px; color: var(--mist);
}
.review-meta .verified { color: var(--gold); font-weight: 700; }
.reviews-trustpilot {
  text-align: center; margin-top: 28px;
}
.reviews-trustpilot p { color: var(--mist); font-size: 13px; margin-bottom: 14px; }

/* =================== FAQ =================== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--gold); transition: transform .2s ease; font-size: 20px; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { color: var(--mist); font-size: 14.5px; margin: 12px 0 0; line-height: 1.7; }
.faq-item p a { color: var(--gold); font-weight: 700; }

/* =================== SAFETY =================== */
.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (min-width: 800px) { .safety-grid { grid-template-columns: repeat(4, 1fr); } }
.safety-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 24px 20px;
}
.safety-card .icon {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--golddim);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  margin-bottom: 14px; font-size: 16px;
}
.safety-card h3 { font-size: 15px; margin: 0 0 6px; }
.safety-card p { color: var(--mist); font-size: 13.5px; margin: 0; line-height: 1.6; }
.safety-note {
  max-width: 720px; margin: 36px auto 0; text-align: center;
  color: var(--mist); font-size: 13.5px; line-height: 1.7;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.safety-note a { color: var(--gold); font-weight: 600; }

/* =================== CONTACT FORM (end of FAQ) =================== */
.contact-form-wrap { max-width: 560px; margin: 56px auto 0; }
.contact-form-wrap h3 { text-align: center; font-size: 20px; margin: 0 0 8px; }
.contact-form-wrap .sub { text-align: center; color: var(--mist); font-size: 13.5px; margin: 0 0 24px; }
.contact-form {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.contact-form label { font-size: 12.5px; color: var(--mist); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: 6px;
  padding: 11px 12px; color: var(--white); font-family: var(--font-body); font-size: 14px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { align-self: center; margin-top: 4px; }
.final-cta {
  background: url('../assets/imagenes/FinalCtaBackground.jpg') center / cover no-repeat;
  border: 1px solid var(--golddim); border-radius: 14px;
  text-align: center; padding: 60px 30px;
}
.final-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 12px; }
.final-cta p { color: var(--mist); max-width: 460px; margin: 0 auto 28px; }

/* =================== FOOTER =================== */
footer {
  background: var(--ink);
  padding: 56px 0 36px;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 26px; align-items: center; text-align: center;
}
@media (min-width: 800px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start; gap: 28px; }
}
.footer-social, .footer-payments, .footer-legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px;
}
.footer-payments { gap: 14px 18px; max-width: 280px; }
.footer-legal { gap: 10px 18px; }
@media (min-width: 800px) {
  .footer-social, .footer-payments, .footer-legal { justify-content: flex-end; max-width: none; }
}
.footer-social img { height: 19px; opacity: .85; }
.footer-payments img { height: 17px; width: auto; max-width: 34px; object-fit: contain; opacity: .85; }
.footer-social img:hover, .footer-payments img:hover { opacity: 1; }
.footer-legal a { font-size: 12px; color: var(--mist); white-space: nowrap; }
.footer-legal a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--mist); line-height: 1.7; }
.footer-logo { height: 34px; margin: 0 auto 12px; display: block; }
@media (min-width: 800px) { .footer-logo { margin: 0 0 12px; } }

/* Right-hand footer column: stack social / payments / legal with a subtle
   divider between each group instead of everything crammed together */
.footer-col-right { display: flex; flex-direction: column; align-items: center; gap: 22px; width: 100%; }
@media (min-width: 800px) { .footer-col-right { align-items: flex-end; width: auto; } }
.footer-col-right > div + div { padding-top: 22px; border-top: 1px solid var(--line); width: 100%; }
@media (min-width: 800px) { .footer-col-right > div + div { border-top: none; padding-top: 0; width: auto; } }

/* =================== PER-PAGE ACCENT THEMES (shop sub-pages) =================== */
body.theme-yellow { --page-accent: var(--gold); --page-accent-ink: var(--ink); --page-accent-dim: var(--golddim); --page-accent-soft: rgba(255,215,0,0.08); }
body.theme-blue    { --page-accent: #4FA8FF; --page-accent-ink: #071B2E; --page-accent-dim: #1E4A73; --page-accent-soft: rgba(79,168,255,0.10); }
body.theme-green   { --page-accent: #3ECF6E; --page-accent-ink: #05270F; --page-accent-dim: #1E5B36; --page-accent-soft: rgba(62,207,110,0.10); }
body.theme-purple  { --page-accent: #B388FF; --page-accent-ink: #1D0F33; --page-accent-dim: #5A3E8A; --page-accent-soft: rgba(179,136,255,0.10); }

/* =================== ABOUT (about/index.html) =================== */
.about-body { max-width: 720px; margin: 0 auto; padding: 140px 24px 90px; color: var(--mist); }
.about-body h1 { font-family: var(--font-display); font-weight: 400; font-size: 2.6rem; color: var(--white); margin-bottom: 24px; }
.about-body p { margin-bottom: 18px; line-height: 1.8; }

/* =================== LEGAL PAGES =================== */
.legal-body { max-width: 760px; margin: 0 auto; padding: 150px 24px 100px; }
.legal-body h1 { font-family: var(--font-display); font-weight: 400; font-size: 2.6rem; color: var(--white); margin-bottom: 6px; }
.legal-body .updated { color: var(--mist); font-size: 13px; margin-bottom: 40px; }
.legal-body h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--gold); margin: 40px 0 12px; }
.legal-body p { color: var(--mist); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.legal-body ul { color: var(--mist); line-height: 1.8; margin: 0 0 14px; padding-left: 20px; font-size: 15px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--gold); font-weight: 600; }
.legal-body strong { color: var(--white); }

/* =================== CONTACT PAGE =================== */
.contact-hero { max-width: 640px; margin: 0 auto; text-align: center; padding: 150px 24px 10px; }
.contact-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3rem); margin: 10px 0 14px; }
.contact-hero p { color: var(--mist); font-size: 16px; }
.contact-socials {
  max-width: 900px; margin: 50px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (min-width: 700px) { .contact-socials { grid-template-columns: repeat(3, 1fr); } }
.social-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 18px; font-weight: 700; font-size: 14px; color: var(--white);
  transition: border-color .2s ease, transform .15s ease;
  min-width: 0;
}
.social-btn span {
  min-width: 0; overflow-wrap: anywhere; word-break: break-word;
}
.social-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.social-btn svg, .social-btn img { width: 20px; height: 20px; flex-shrink: 0; }
.contact-form-page { max-width: 560px; margin: 70px auto 0; padding: 0 24px 100px; }
.contact-form-page h2 { text-align: center; font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; margin: 0 0 8px; }
.contact-form-page .sub { text-align: center; color: var(--mist); font-size: 13.5px; margin: 0 0 26px; }

/* =================== RESPONSIVE: mobile / tablet tone-down =================== */
@media (max-width: 899px) {
  /* Services: hide the benefit line on mobile, keep just the title */
  .service-label .benefit { display: none; }
  .service-label .title { font-size: 13px; }

  /* Tone down body copy so headings stay the visual focus */
  .hero p.sub { font-size: 15px; }
  .hero-eyebrow { font-size: 11px; }
  .section-sub { font-size: 14px; }
  .problem-body p { font-size: 14.5px; }
  .problem-card p { font-size: 13px; }
  .step p, .safety-card p { font-size: 13px; }
  .safety-note { font-size: 12.5px; }
  .stat-label { font-size: 11px; }
  .review-meta { font-size: 11px; }
  .faq-item p { font-size: 13.5px; }
  .faq-item summary { font-size: 14px; }
  .final-cta p { font-size: 14px; }
  .loyalty-bar p { font-size: 13px; }
  .footer-copy, .footer-legal a { font-size: 11px; }
  .contact-hero p { font-size: 14px; }
  .social-btn { font-size: 12.5px; padding: 14px 12px; gap: 8px; }
  .social-btn svg, .social-btn img { width: 17px; height: 17px; }
}

/* =================================================================
   HOME PAGE — fondo mas oscuro (el de la web holding) + titulos mas
   compactos y en mayusculas. Solo afecta a index.html: el resto de
   paginas (shop, contact, links, legal) mantienen su tratamiento.
================================================================= */

/* Antes la foto de fondo se veia a su brillo real, sin ningun velo:
   competia con el texto. Se le añaden dos capas oscuras encima,
   dentro del mismo pseudo-elemento (varios fondos en una propiedad),
   igual que en la pagina "volvemos pronto". */
body.home-page::after {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(8,8,8,0.55), rgba(8,8,8,0.9) 70%),
    linear-gradient(180deg, rgba(8,8,8,0.6), rgba(8,8,8,0.94)),
    url('../assets/imagenes/RYSU-BACKGROUND-v2.jpg') center center / cover no-repeat;
}

/* Titulos en mayuscula y con las letras mas juntas — el look que
   gustaba de la pagina "volvemos pronto". Impact es mayuscula-caps
   por diseño, asi que MAYUSCULAS + tracking corto es lo que lo hace
   leer "mas bold" sin cambiar de fuente ni de peso. Se aplica a TODA
   la web (a diferencia del fondo oscuro, que es solo de la home):
   cualquier titulo en Impact, en cualquier pagina. Los numeros
   (precios, contadores, el "01/02/03" de los pasos) se dejan fuera
   a proposito — poner un numero en mayuscula no hace nada, y
   apretarle el tracking puede desalinear las cifras. */
.hero h1,
.shop-header h1,
.contact-hero h1,
.legal-body h1,
.about-body h1,
.links-hero h1,
.sc-title {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title,
.final-cta h2,
.legal-body h2,
.contact-form-page h2,
.link-cta .cta-title {
  text-transform: uppercase;
  letter-spacing: 0.3px;
}


/* Compact trust cards: the title now carries the message, especially on mobile. */
.safety-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 20px 22px;
}
.safety-card .icon { margin: 0; flex: 0 0 38px; }
.safety-card h3 { margin: 0; line-height: 1.25; }
@media (max-width: 640px) {
  .safety-card { min-height: 66px; padding: 14px 16px; gap: 12px; }
  .safety-card .icon { width: 34px; height: 34px; flex-basis: 34px; }
}
