/* La Timba — Homepage (usa design-tokens.css) */

a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header (oscuro, igual al logo) ── */
.home-header {
  background: var(--home-header-bg);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-header__inner {
  width: min(var(--home-max), 94%);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}

.home-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}
.home-logo:hover { text-decoration: none; opacity: 0.92; }
.home-logo__brand {
  height: 72px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.home-logo__brand--footer {
  height: 48px;
  max-width: none;
}

@media (min-width: 900px) {
  .home-logo__brand { height: 82px; }
  .home-logo__brand--footer { height: 48px; }
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.home-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.45rem 0.4rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.home-nav a:hover,
.home-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.home-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--home-brand);
  border-radius: 6px 6px 0 0;
}

.home-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  transition: filter var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.home-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.home-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
}
.home-btn--primary {
  background: var(--home-brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(111, 189, 136, 0.35);
}
.home-btn--primary:hover {
  background: var(--home-brand-hover);
  filter: none;
  text-decoration: none;
  color: #fff;
}
.home-btn--block { width: 100%; padding: 0.85rem; }

.home-search-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.45rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.home-search-btn .ph-thin {
  font-size: 1.4rem;
}
.home-search-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ── Layout ── */
.home-wrap {
  width: min(var(--home-max), 94%);
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

.home-main {
  min-width: 0;
  width: 100%;
}

/* ── Hero ── */
.home-hero {
  background: transparent;
  box-shadow: none;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.home-hero__content {
  background: var(--home-card);
  border-radius: 20px;
  box-shadow: var(--home-shadow);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  max-width: none;
}
.home-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: var(--secondary);
}
.home-hero__sub {
  margin: 0 0 1.5rem;
  color: #64748B;
  font-size: clamp(1rem, 2vw, 1.35rem);
  max-width: 42rem;
}
.home-hero__visual {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
}
.home-hero__photo {
  max-width: min(440px, 100%);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 24px 40px rgba(15, 28, 51, 0.08));
}
.home-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.home-hero__feat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--home-muted);
  font-weight: 500;
}
.home-hero__feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--home-brand-soft);
  color: var(--home-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-hero__feat-icon .ph-thin {
  font-size: 1.25rem;
  line-height: 1;
}

.home-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.home-btn--outline {
  background: transparent;
  color: var(--home-brand-link);
  border: 2px solid var(--home-brand);
}
.home-btn--outline:hover {
  background: var(--home-brand-soft);
  color: var(--home-brand-hover);
}
.home-btn--lg {
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
}
.home-btn--block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.85rem;
}
.home-btn--lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--home-brand-soft);
  color: var(--home-navy);
  border: 1px dashed rgba(10, 40, 24, 0.25);
  font-weight: 600;
}
.home-btn--lock .ph-thin {
  font-size: 1.05rem;
  line-height: 1;
  color: var(--home-brand);
}
.home-col-card__note {
  margin: -0.35rem 0 0.65rem;
  font-size: 0.72rem;
  color: var(--home-muted);
}
.home-chart--blur {
  position: relative;
  filter: blur(3px);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.home-premium {
  position: relative;
  background: linear-gradient(135deg, #052E2B, #0A4E45);
  color: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--home-shadow);
  overflow: hidden;
}
.home-premium::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(140px);
  opacity: 0.18;
  top: -120px;
  right: -80px;
  pointer-events: none;
}
.home-premium__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}
.home-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-bright);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.home-premium__eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(111, 189, 136, 0.22);
  color: var(--primary-bright);
  line-height: 1;
}
.home-premium__eyebrow-icon .ph-thin {
  font-size: 1.05rem;
}
.home-premium h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  line-height: 1.15;
  font-weight: 800;
}
.home-premium__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.88rem;
}
.home-premium__benefits li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.home-premium__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-bright);
  flex-shrink: 0;
}
.home-premium__benefit-icon .ph-thin {
  font-size: 1rem;
  line-height: 1;
}
.home-premium__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 100%;
}
.home-premium__price {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-bright);
}
.home-premium__includes {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  opacity: 0.85;
}
.home-premium__aside {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  font-size: 0.84rem;
  line-height: 1.55;
}
.home-premium__aside p { margin: 0 0 0.75rem; }
.home-premium__aside p:last-child { margin-bottom: 0; }
.home-premium__cta-block {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.35rem 1.4rem;
}
.home-premium__cta-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.home-hero__stats-card {
  background: var(--secondary);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  min-width: 180px;
  font-size: 0.78rem;
}
.home-hero__stats-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.home-hero__stats-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-hero__stats-card li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.home-hero__stats-card li:last-child { border-bottom: none; }
.home-hero__stats-num { font-weight: 700; color: var(--home-brand-bright); }

.home-phone {
  width: 130px;
  background: #111;
  border-radius: 22px;
  padding: 8px 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.home-phone__screen {
  background: var(--home-navy-light);
  border-radius: 16px;
  padding: 10px 8px;
  min-height: 200px;
  color: #fff;
  font-size: 0.65rem;
}
.home-phone__screen strong { display: block; font-size: 1.4rem; margin: 4px 0; color: var(--home-brand-bright); }
.home-phone__bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 48px;
  margin-top: 8px;
}
.home-phone__bars span {
  flex: 1;
  background: var(--home-brand);
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
}

/* ── Sidebar ── */
.home-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.home-card {
  background: var(--home-card);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
  padding: 1.25rem;
}
.home-card--dark {
  background: var(--secondary);
  color: #fff;
}
.home-card__title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.home-card--dark .home-card__title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

.home-app-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-app-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.home-app-btn:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: #fff; }
.home-app-btn .ph-thin {
  font-size: 1.1rem;
  line-height: 1;
}

.home-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--home-muted);
  margin-bottom: 0.25rem;
}
.home-form input[type="email"],
.home-form input[type="password"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-family: inherit;
}
.home-form input:focus {
  outline: none;
  border-color: var(--home-brand);
  box-shadow: 0 0 0 3px rgba(111, 189, 136, 0.28);
}
.home-form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}
.home-form__row label { display: flex; align-items: center; gap: 0.35rem; margin: 0; font-weight: 500; }
.home-form__link { font-size: 0.78rem; }

/* ── Section headers ── */
.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.home-section-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--home-navy);
}
.home-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.home-badge-live::before {
  content: '';
  width: 7px; height: 7px;
  background: #dc2626;
  border-radius: 50%;
  animation: home-pulse 1.5s infinite;
}
@keyframes home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Results carousel ── */
.home-results {
  margin-bottom: 1.5rem;
}
.home-results__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.home-results__viewport::before,
.home-results__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0.5rem;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}
.home-results__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--home-bg, #f1f5f9) 0%, transparent 100%);
}
.home-results__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--home-bg, #f1f5f9) 0%, transparent 100%);
}
.home-results__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  padding-bottom: 0.5rem;
  will-change: transform;
}
.home-results__track--marquee {
  animation: home-results-marquee var(--home-results-marquee-ms, 70000ms) linear infinite;
}
.home-results__track--marquee.is-paused {
  animation-play-state: paused;
}
@keyframes home-results-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .home-results__track {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    animation: none !important;
    transform: none !important;
  }
}
.home-results__track::-webkit-scrollbar { height: 6px; }
.home-results__track::-webkit-scrollbar-thumb { background: var(--home-border); border-radius: 3px; }

.home-result-card {
  flex: 0 0 248px;
  scroll-snap-align: start;
  background: var(--home-card);
  border-radius: 20px;
  box-shadow: var(--home-shadow);
  padding: 1.25rem;
  border: 1px solid var(--home-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.home-result-card:hover {
  transform: translateY(-4px);
}
.home-result-card__game {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--home-muted);
  margin-bottom: 0.35rem;
}
.home-result-card__time {
  font-size: 0.75rem;
  color: var(--home-muted);
  margin-bottom: 0.5rem;
}
.home-result-card__main {
  font-size: 2.625rem;
  font-weight: 800;
  color: var(--home-navy);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.home-result-card__subs {
  font-size: 0.78rem;
  color: var(--home-muted);
  margin-bottom: 0.75rem;
}
.home-result-card__balls {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.28rem;
  margin-bottom: 0.75rem;
  min-width: 0;
}
.home-result-card__balls--5 {
  gap: 0.35rem;
}
.home-result-card__balls--8 {
  gap: 0.22rem;
}
.home-result-card__balls--8 .home-ball {
  width: 24px;
  height: 24px;
  font-size: 0.62rem;
}
.home-ball {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.home-ball--q { background: linear-gradient(145deg, var(--primary-bright) 0%, var(--primary) 100%); }
.home-ball--l { background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%); }
.home-ball--b { background: linear-gradient(145deg, #3dd9a8 0%, var(--primary) 100%); }
.home-ball--l5 { background: linear-gradient(145deg, #57a872 0%, #2d8a55 100%); }
.home-ball--qp { background: linear-gradient(145deg, #7dd3a8 0%, var(--primary-dark) 100%); }
.home-ball--p { background: linear-gradient(145deg, #5ec99a 0%, #2a7a52 100%); }
.home-ball--p5 { background: linear-gradient(145deg, #72c896 0%, #3d9468 100%); }

.home-result-card__jackpot {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--home-brand-link);
  margin-bottom: 0.75rem;
}
.home-result-card__link {
  font-size: 0.78rem;
  font-weight: 600;
}
.home-result-card--loading {
  opacity: 0.6;
  min-height: 160px;
}

/* ── Three columns ── */
.home-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.home-col-card {
  background: var(--home-card);
  border-radius: 20px;
  box-shadow: var(--home-shadow);
  padding: 1.25rem;
  border: 1px solid var(--home-border);
  transition: transform var(--transition);
}
.home-col-card:hover {
  transform: translateY(-4px);
}
.home-col-card h3 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--home-navy);
}

.home-atrasados-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-atrasados-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--home-border);
  font-size: 0.88rem;
}
.home-atrasados-list li:last-child { border-bottom: none; }
.home-atrasados-list .num {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--home-navy);
  min-width: 2.5rem;
}
.home-atrasados-list .delay { color: var(--home-muted); font-size: 0.8rem; }

.home-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.home-stat-box {
  background: var(--home-bg);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
}
.home-stat-box__label { font-size: 0.68rem; color: var(--home-muted); margin-bottom: 0.15rem; }
.home-stat-box__value { font-size: 1rem; font-weight: 800; color: var(--home-navy); }

.home-chart {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  height: 100px;
  margin-top: 0.5rem;
}
.home-chart__bar {
  flex: 1;
  background: var(--home-brand);
  border-radius: 2px 2px 0 0;
  min-height: 2px;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.home-chart__bar:hover { opacity: 1; }
.home-chart-caption {
  font-size: 0.68rem;
  color: var(--home-muted);
  text-align: center;
  margin-top: 0.35rem;
}

.home-articles { list-style: none; margin: 0; padding: 0; }
.home-articles li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--home-border);
}
.home-articles li:last-child { border-bottom: none; }
.home-articles a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--home-navy);
  display: block;
  margin-bottom: 0.2rem;
}
.home-articles p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--home-muted);
}

.home-articles__intro {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
}

.home-articles__intro a {
  font-weight: 600;
  color: var(--home-brand-link);
}

.home-articles__loading,
.home-articles__empty {
  font-size: 0.82rem;
  color: var(--home-muted);
}

.home-articles__empty a {
  font-weight: 600;
  color: var(--home-brand-link);
}

/* ── Trust bar ── */
.home-trust {
  background: var(--home-card);
  border-radius: 20px;
  box-shadow: var(--home-shadow);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
}
.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.home-trust__item {
  text-align: center;
  padding: 0.35rem 0.5rem;
}
.home-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.85rem;
  border-radius: 18px;
  background: var(--home-brand-soft);
  color: var(--home-brand);
}
.home-trust__icon .ph-thin {
  font-size: 2.35rem;
  line-height: 1;
}
.home-trust__icon--premium {
  background: linear-gradient(145deg, rgba(111, 189, 136, 0.22), rgba(111, 189, 136, 0.08));
  color: var(--home-brand-hover);
}
.home-trust__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--home-navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.home-trust__desc {
  font-size: 0.72rem;
  color: var(--home-muted);
  line-height: 1.45;
}

/* ── Footer (oscuro, igual al header) ── */
.home-footer {
  margin-top: 4rem;
  background: var(--home-header-bg);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 1.25rem;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.home-footer__inner {
  width: min(var(--home-max), 94%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.home-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-decoration: none;
}
.home-footer a:hover {
  color: var(--home-brand-bright);
  text-decoration: none;
}
.home-footer__logo img {
  height: 56px;
  width: auto;
  opacity: 1;
  display: block;
}
.home-footer__logo p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.55);
}
.home-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.home-footer__play {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: var(--home-brand);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(111, 189, 136, 0.3);
}
.home-footer__play:hover {
  background: var(--home-brand-hover);
  color: #fff !important;
}
.home-footer__play .ph-thin {
  font-size: 1.15rem;
  line-height: 1;
}

/* ── Responsive (desktop-first; mobile Android redirects to Play Store) ── */
@media (max-width: 1100px) {
  .home-cols { grid-template-columns: repeat(2, 1fr); }
  .home-trust__grid { grid-template-columns: repeat(3, 1fr); }
  .home-trust__icon {
    width: 64px;
    height: 64px;
  }
  .home-trust__icon .ph-thin { font-size: 2rem; }
  .home-hero { grid-template-columns: 1fr; }
  .home-hero__title { font-size: clamp(2rem, 6vw, 3rem); }
}
@media (max-width: 768px) {
  .home-nav { display: none; }
  .home-hero { padding: 3rem 1.25rem; grid-template-columns: 1fr; }
  .home-hero__title { font-size: 2.375rem; }
  .home-hero__visual { justify-content: center; }
  .home-hero__photo { width: 320px; max-width: 100%; margin: 0 auto; display: block; }
  .home-cols { grid-template-columns: 1fr; }
  .home-trust__grid { grid-template-columns: 1fr 1fr; }
  .home-trust__icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }
  .home-trust__icon .ph-thin { font-size: 1.85rem; }
  .home-premium__inner { grid-template-columns: 1fr; }
  .home-premium__side { min-height: 0; }
  .home-premium__cta-block { margin-top: 0.25rem; }
}
