/* Ring Tiendas — landing clara (colores del logo Ring) */

body.ring-landing {
  /* Logo: R cyan #00C2D8 / app tokens #0891B2 */
  --rl-bg: #f4fafc;
  --rl-surface: #ffffff;
  --rl-surface-2: #ffffff;
  --rl-line: rgba(8, 145, 178, 0.14);
  --rl-text: #0b1220;
  --rl-muted: #475569;
  --rl-cyan: #00bcd4;
  --rl-cyan-deep: #0891b2;
  --rl-cyan-dark: #0e7490;
  --rl-cyan-soft: #7dd3e8;
  --rl-ink: #041018;
  --rl-coral: #00bcd4; /* alias de marca: CTAs usan cyan del logo */
  --rl-lime: #26c6a8;
  --rl-amber: #22d3ee;
  --rl-radius: 22px;
  --rl-font: Inter, Arial, sans-serif;
  --rl-display: Inter, Arial, sans-serif;
  --rl-shadow: 0 12px 40px rgba(8, 145, 178, 0.1);
  margin: 0;
  background: var(--rl-bg);
  color: var(--rl-text);
  font-family: var(--rl-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.ring-landing a { color: inherit; text-decoration: none; }
body.ring-landing a.rl-store-badge--play,
body.ring-landing a.rl-store-badge--play:hover,
body.ring-landing a.rl-store-badge--play:visited {
  color: #fff;
}
body.ring-landing a.rl-store-badge--apple,
body.ring-landing a.rl-store-badge--apple:hover,
body.ring-landing a.rl-store-badge--apple:visited {
  color: #0f172a;
}
body.ring-landing img { max-width: 100%; display: block; }

html:has(body.ring-landing) {
  overflow-x: clip;
  max-width: 100%;
}

body.ring-landing main {
  overflow-x: clip;
  max-width: 100%;
}

.rl-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  box-sizing: border-box;
}

/* —— Nav —— */
.rl-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  /* panel desplegable */
  isolation: isolate;
}

body.rl-scrolled .rl-nav {
  border-bottom-color: var(--rl-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(18, 24, 38, 0.06);
}

body.rl-nav-open {
  overflow: hidden;
}

.rl-nav-bar {
  padding: 0.7rem 0;
}

.rl-nav-inner {
  width: min(1180px, calc(100% - 1.25rem));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  box-sizing: border-box;
}

.rl-nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  line-height: 0;
}

.rl-nav-brand img {
  height: 34px;
  width: auto;
  max-width: min(148px, 42vw);
}

.rl-nav-menu--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}

.rl-nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.rl-nav-cta--desktop {
  white-space: nowrap;
  padding-inline: 1rem;
  font-size: 0.88rem;
}

.rl-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--rl-line);
  background: #fff;
  color: var(--rl-text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.rl-nav-toggle .material-icons-round {
  font-size: 1.35rem;
}

.rl-nav-toggle-close {
  display: none;
}

.rl-nav.is-open .rl-nav-toggle-open {
  display: none;
}

.rl-nav.is-open .rl-nav-toggle-close {
  display: block;
}

.rl-nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--rl-line);
  box-shadow: 0 18px 40px rgba(18, 24, 38, 0.12);
  backdrop-filter: blur(12px);
}

.rl-nav-panel[hidden],
.rl-nav-backdrop[hidden] {
  display: none !important;
}

.rl-nav-panel-inner {
  width: min(1180px, calc(100% - 1.25rem));
  margin-inline: auto;
  padding: 0.65rem 0 1rem;
}

.rl-nav-panel-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rl-nav-panel-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rl-text);
  text-align: left;
  text-decoration: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.rl-nav-panel-link:hover,
.rl-nav-panel-link:focus-visible {
  background: rgba(0, 184, 212, 0.1);
  color: var(--rl-cyan-deep);
}

.rl-nav-panel-foot {
  margin-top: 0.65rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rl-line);
}

.rl-nav-panel-cta {
  width: 100%;
}

.rl-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(18, 24, 38, 0.38);
}

/* Legacy nav helpers (auth pages, older markup) */
.rl-nav-inner--center {
  width: min(1180px, calc(100% - 1.25rem));
  margin-inline: auto;
}

.rl-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rl-logo--text {
  gap: 0.45rem;
}

.rl-logo-word {
  font-family: var(--rl-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--rl-cyan-deep);
}

.rl-logo {  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 0;
}

.rl-logo img {
  height: 36px;
  width: auto;
}

.rl-footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 0.85rem;
}

.rl-logo-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--rl-cyan);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  border: 0;
}

.rl-link {
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--rl-muted);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.rl-link:hover { color: var(--rl-cyan-deep); background: rgba(0, 188, 212, 0.1); }

.rl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.rl-btn:hover { transform: translateY(-1px); }
.rl-btn:active { transform: translateY(0); }

.rl-btn-primary {
  background: var(--rl-cyan);
  color: #041018;
  box-shadow: 0 10px 28px rgba(0, 188, 212, 0.28);
}

.rl-btn-primary:hover {
  background: var(--rl-cyan-deep);
  box-shadow: 0 14px 34px rgba(8, 145, 178, 0.36);
}

.rl-btn-ghost {
  background: #fff;
  color: var(--rl-cyan-deep);
  border: 1.5px solid rgba(0, 188, 212, 0.35);
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.06);
}

.rl-btn-ghost:hover {
  background: rgba(0, 188, 212, 0.08);
  border-color: var(--rl-cyan);
}

.rl-btn-coral {
  background: var(--rl-cyan);
  color: #041018;
  box-shadow: 0 10px 28px rgba(0, 188, 212, 0.28);
}

.rl-btn-coral:hover {
  background: var(--rl-cyan-deep);
  box-shadow: 0 14px 34px rgba(8, 145, 178, 0.36);
}

/* —— Hero —— */
.rl-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  place-items: center;
  padding: 2.5rem 0 3.5rem;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.rl-hero-bg {
  position: absolute;
  inset: -10% -5% auto;
  height: 120%;
  z-index: -2;
  background: #e8f7fb;
}

.rl-hero-grid {
  display: none;
}

.rl-hero-content {
  text-align: center;
  max-width: 820px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.rl-hero-brand {
  margin: 0 auto 1.15rem;
  max-width: min(78vw, 320px);
  animation: rlFadeUp 0.8s ease both;
}

.rl-hero-brand img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 28px rgba(15, 60, 110, 0.12));
}

.rl-hero h1 {
  font-family: var(--rl-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 4.2vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--rl-text);
  animation: rlFadeUp 0.8s 0.08s ease both;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.rl-hero-lead {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: var(--rl-muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  animation: rlFadeUp 0.8s 0.16s ease both;
}

.rl-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: rlFadeUp 0.8s 0.24s ease both;
}

/* Hero search + filters */
.rl-search {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  animation: rlFadeUp 0.8s 0.32s ease both;
}

.rl-search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 145, 178, 0.14);
  border-radius: 18px;
  padding: 0.4rem 0.45rem 0.4rem 0.4rem;
  box-shadow:
    0 10px 28px rgba(8, 145, 178, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rl-search-field:focus-within {
  border-color: rgba(0, 188, 212, 0.45);
  box-shadow:
    0 14px 34px rgba(0, 188, 212, 0.14),
    0 0 0 4px rgba(0, 188, 212, 0.1);
  transform: translateY(-1px);
}

.rl-search-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 188, 212, 0.16), rgba(8, 145, 178, 0.08));
  color: var(--rl-cyan-deep);
}

.rl-search-icon .material-icons-round {
  font-size: 1.35rem;
}

.rl-search-field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--rl-text);
  min-width: 0;
  padding: 0.55rem 0.25rem 0.55rem 0;
}

.rl-search-field input::placeholder {
  color: #8b98ac;
  font-weight: 400;
}

.rl-search-field input::-webkit-search-cancel-button,
.rl-search-field input::-webkit-search-decoration {
  display: none;
}

.rl-search-clear {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 0.15rem;
  border: 0;
  border-radius: 50%;
  background: #eef3f8;
  color: #5b6b82;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.rl-search-clear .material-icons-round {
  font-size: 1.05rem;
}

.rl-search-clear:hover {
  background: rgba(0, 188, 212, 0.12);
  color: var(--rl-cyan-deep);
}

.rl-search-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  max-width: 100%;
  min-width: 0;
}

.rl-filter-chip {
  border: 1px solid rgba(18, 24, 38, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #3a4a60;
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.rl-filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 188, 212, 0.45);
  color: var(--rl-cyan-deep);
}

.rl-filter-chip.is-active {
  background: var(--rl-cyan);
  border-color: var(--rl-cyan);
  color: #041018;
}

.rl-explore {
  padding-top: 1.5rem;
}

.rl-explore-head {
  margin-bottom: 1.25rem;
}

.rl-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.rl-explore-card {
  background: #fff;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 40, 70, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.rl-explore-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 40, 70, 0.1);
}

a.rl-explore-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 18px;
}

a.rl-explore-card-link:focus-visible {
  outline: 2px solid var(--rl-cyan);
  outline-offset: 3px;
}

a.rl-explore-card-link:has(.rl-explore-card.is-hidden) {
  display: none;
}

.rl-explore-card.is-hidden {
  display: none;
}

.rl-explore-cover {
  height: 118px;
  background: #e8f1f8 center/cover no-repeat;
  display: grid;
  place-items: center;
}

.rl-explore-fallback {
  font-size: 2rem;
  opacity: 0.7;
}

.rl-explore-body {
  padding: 0.85rem 0.95rem 1rem;
  display: grid;
  gap: 0.2rem;
}

.rl-explore-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.rl-explore-top strong {
  color: var(--rl-text);
  font-size: 0.98rem;
  line-height: 1.25;
}

.rl-explore-rating {
  color: #c47a00;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Calificación en arepas (como la app Ring) */
.rl-arepa-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}

.rl-arepa-row {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.rl-arepa-icon {
  position: relative;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.rl-arepa-icon img {
  display: block;
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.rl-arepa-empty {
  opacity: 0.22;
}

.rl-arepa-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.rl-arepa-fill img {
  max-width: none;
}

.rl-arepa-value {
  color: var(--rl-text);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.rl-explore-cat {
  color: var(--rl-cyan-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.rl-explore-addr {
  color: var(--rl-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.rl-explore-empty {
  text-align: center;
  color: var(--rl-muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--rl-line);
  border-radius: 16px;
  padding: 1.25rem;
}

/* —— Página pública de tienda —— */
.rl-store-page {
  background: var(--rl-bg);
}

.rl-store-hero {
  padding: 1.5rem 0 0.5rem;
}

.rl-store-hero-card {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--rl-shadow);
}

.rl-store-hero-cover {
  min-height: 180px;
  background: #e8f1f8 center/cover no-repeat;
  display: grid;
  place-items: center;
}

.rl-store-hero-body {
  padding: 1.25rem 1.25rem 1.25rem 0;
  display: grid;
  gap: 0.45rem;
  align-content: center;
}

.rl-store-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.rl-store-hero-top h1 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.15;
  color: var(--rl-text);
}

.rl-store-meta {
  margin: 0;
  color: var(--rl-muted);
  font-size: 0.9rem;
}

.rl-store-meta-icon {
  margin-right: 0.25rem;
}

.rl-store-desc {
  margin: 0.25rem 0 0;
  color: var(--rl-text);
  line-height: 1.45;
}

.rl-store-app-note {
  margin: 0.35rem 0 0;
  color: var(--rl-cyan-deep);
  font-size: 0.86rem;
  font-weight: 600;
}

.rl-store-products {
  padding-top: 1.5rem;
}

.rl-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}

.rl-product-card {
  background: #fff;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 40, 70, 0.05);
}

.rl-product-cover {
  height: 140px;
  background: #eef4f8 center/cover no-repeat;
  display: grid;
  place-items: center;
}

.rl-product-body {
  padding: 0.85rem 0.95rem 1rem;
  display: grid;
  gap: 0.25rem;
}

.rl-product-cat {
  color: var(--rl-cyan-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.rl-product-body strong {
  color: var(--rl-text);
  font-size: 0.95rem;
  line-height: 1.25;
}

.rl-product-desc {
  margin: 0;
  color: var(--rl-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.rl-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.rl-product-foot em {
  font-style: normal;
  color: var(--rl-text);
  font-weight: 800;
  font-size: 0.95rem;
}

.rl-product-stock {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rl-cyan-deep);
  background: rgba(0, 188, 212, 0.1);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

.rl-product-stock--out {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.1);
}

.rl-store-empty {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed var(--rl-line);
  border-radius: 16px;
}

.rl-store-empty p {
  margin: 0 0 1rem;
  color: var(--rl-muted);
}

@media (max-width: 720px) {
  .rl-store-hero-card {
    grid-template-columns: 1fr;
  }

  .rl-store-hero-cover {
    min-height: 160px;
  }

  .rl-store-hero-body {
    padding: 1rem 1rem 1.15rem;
  }
}

@media (max-width: 640px) {
  .rl-search-field {
    border-radius: 14px;
    padding: 0.35rem 0.4rem 0.35rem 0.35rem;
  }

  .rl-search-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .rl-search-field input {
    font-size: 0.9rem;
  }
  .rl-explore-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .rl-explore-cover {
    height: 92px;
  }
}

/* Floating category stickers */
.rl-stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.rl-sticker {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(64px, 9vw, 92px);
  height: clamp(64px, 9vw, 92px);
  border-radius: 28%;
  color: #fff;
  box-shadow:
    0 14px 30px rgba(18, 24, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: rlFloat 5.5s ease-in-out infinite;
  transform-origin: center;
}

.rl-sticker-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  padding: 0.15rem;
}

.rl-sticker-icon {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  line-height: 1;
}

.rl-sticker small {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 4.5rem;
  text-align: center;
}

.rl-sticker--1 { top: 38%; left: 4%; background: #00bcd4; color: #042430; animation-delay: 0s; }
.rl-sticker--2 { top: 42%; right: 4%; background: #22d3ee; color: #083344; animation-delay: -1.2s; }
.rl-sticker--3 { top: 68%; left: 6%; background: #14b8a6; color: #042f2e; animation-delay: -2.1s; }
.rl-sticker--4 { top: 72%; right: 6%; background: #0891b2; color: #fff; animation-delay: -0.7s; }
.rl-sticker--5 { top: 52%; left: 10%; background: #06b6d4; color: #083344; animation-delay: -1.8s; }
.rl-sticker--6 { top: 56%; right: 10%; background: #00b8d4; color: #042430; animation-delay: -2.8s; }
.rl-sticker--7 { bottom: 14%; left: 18%; background: #2dd4bf; color: #042f2e; animation-delay: -3.4s; }
.rl-sticker--8 { bottom: 18%; right: 16%; background: #0ea5e9; color: #041018; animation-delay: -0.4s; }

@media (max-width: 720px) {
  .rl-sticker { width: 58px; height: 58px; border-radius: 22%; }
  .rl-sticker small { display: none; }
}

/* —— Phone stage —— */
.rl-phones {
  position: relative;
  margin-top: -1rem;
  padding: 1rem 0 3rem;
  display: grid;
  place-items: center;
}

.rl-phone {
  width: min(280px, 72vw);
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  background: #0a0e1a;
  border: 3px solid #1c2438;
  box-shadow:
    0 30px 60px rgba(18, 24, 38, 0.22),
    0 0 0 10px #e8eef5;
  overflow: hidden;
  position: relative;
  animation: rlPhoneIn 1s 0.3s ease both;
}

.rl-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 18px;
  background: #05070f;
  border-radius: 999px;
  z-index: 3;
}

.rl-phone-screen {
  height: 100%;
  padding: 2.2rem 0.85rem 0.85rem;
  background: #eef6fa;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: var(--rl-text);
}

.rl-phone-search {
  background: #fff;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  font-size: 0.72rem;
  color: var(--rl-muted);
  box-shadow: 0 4px 12px rgba(18, 24, 38, 0.05);
}

.rl-phone-chips {
  display: flex;
  gap: 0.4rem;
  overflow: hidden;
}

.rl-phone-chip {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(0, 184, 212, 0.14);
  color: var(--rl-cyan-deep);
}

.rl-phone-card {
  background: #fff;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 16px;
  padding: 0.7rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.6rem;
  align-items: center;
  box-shadow: 0 6px 16px rgba(18, 24, 38, 0.06);
  animation: rlPulseSoft 3.5s ease-in-out infinite;
}

.rl-phone-card:nth-child(even) { animation-delay: -1.2s; }

.rl-phone-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rl-cyan);
  object-fit: cover;
}

.rl-phone-card strong {
  display: block;
  font-size: 0.72rem;
  margin-bottom: 0.15rem;
  color: var(--rl-text);
}

.rl-phone-card span {
  font-size: 0.62rem;
  color: var(--rl-muted);
}

.rl-notif {
  position: absolute;
  right: -8%;
  top: 18%;
  width: min(210px, 55vw);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--rl-line);
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 18px 40px rgba(18, 24, 38, 0.14);
  animation: rlNotif 4.5s ease-in-out infinite;
  backdrop-filter: blur(10px);
  color: var(--rl-text);
}

.rl-notif strong {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
}

.rl-notif span {
  font-size: 0.68rem;
  color: var(--rl-muted);
  line-height: 1.35;
}

/* —— Sections —— */
.rl-section {
  padding: 4.5rem 0;
  position: relative;
}

.rl-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.rl-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rl-cyan-deep);
}

.rl-section h2 {
  font-family: var(--rl-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--rl-text);
}

.rl-section-head p,
.rl-copy p {
  margin: 0;
  color: var(--rl-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.rl-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.rl-split--rev { direction: rtl; }
.rl-split--rev > * { direction: ltr; }

.rl-copy h2 { margin-bottom: 0.9rem; }
.rl-copy .rl-btn { margin-top: 1.4rem; }

.rl-feature-visual {
  position: relative;
  border-radius: calc(var(--rl-radius) + 8px);
  min-height: 320px;
  overflow: hidden;
  background: #eaf4f8;
  border: 1px solid var(--rl-line);
  box-shadow: var(--rl-shadow);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.rl-feature-visual::after {
  display: none;
}

.rl-feature-icon {
  width: min(220px, 70%);
  aspect-ratio: 1;
  border-radius: 36%;
  display: grid;
  place-items: center;
  font-size: 4.5rem;
  background: #ffffff;
  border: 1px solid rgba(18, 24, 38, 0.08);
  box-shadow: 0 18px 40px rgba(18, 24, 38, 0.1);
  animation: rlFloat 6s ease-in-out infinite;
}

.rl-feature-visual--photo {
  padding: 1.25rem;
  background: linear-gradient(160deg, #eaf4f8 0%, #f6fbfd 55%, #ffffff 100%);
}

.rl-feature-visual--app {
  padding: 1.25rem 0.75rem;
  overflow: visible;
  background: linear-gradient(165deg, #eaf4f8 0%, #f3f9fc 50%, #ffffff 100%);
}

.rl-feature-visual--app .rl-phones {
  margin-top: 0;
  padding: 0;
  width: 100%;
}

.rl-feature-visual--app .rl-phone {
  width: min(250px, 74%);
  margin: 0 auto;
}

.rl-feature-visual--app .rl-notif {
  right: -1%;
  top: 10%;
}

@media (max-width: 900px) {
  .rl-feature-visual--app .rl-notif {
    right: 2%;
    top: auto;
    bottom: 8%;
    width: min(190px, 62vw);
  }
}

.rl-feature-photo {
  width: min(100%, 420px);
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 32px rgba(18, 24, 38, 0.14));
  animation: rlFloat 6s ease-in-out infinite;
}

.rl-bullets {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.rl-bullets li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: #3d4a61;
  font-size: 0.98rem;
  line-height: 1.4;
}

.rl-bullets li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--rl-cyan);
  box-shadow: 0 0 0 4px rgba(0, 184, 212, 0.18);
}

/* —— Stats strip —— */
.rl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto;
  width: min(900px, 100%);
}

.rl-stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--rl-radius);
  background: #fff;
  border: 1px solid var(--rl-line);
  box-shadow: 0 8px 24px rgba(18, 24, 38, 0.05);
}

.rl-stat strong {
  display: block;
  font-family: var(--rl-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--rl-cyan-deep);
  letter-spacing: -0.03em;
}

.rl-stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--rl-muted);
  font-size: 0.9rem;
}

/* —— Roles —— */
.rl-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.rl-role {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--rl-radius) + 4px);
  border: 1px solid var(--rl-line);
  background: var(--rl-surface);
  padding: 1.6rem 1.4rem 1.4rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(18, 24, 38, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rl-role:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 212, 0.35);
  box-shadow: 0 16px 36px rgba(18, 24, 38, 0.1);
}

.rl-role::before {
  display: none;
}

.rl-role > * { position: relative; z-index: 1; }

.rl-role-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 22%;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: rgba(0, 184, 212, 0.12);
  color: var(--rl-cyan-deep);
}

.rl-role-icon .material-icons-round {
  font-size: 1.75rem;
  line-height: 1;
}

.rl-role--reparto .rl-role-icon {
  background: rgba(8, 145, 178, 0.12);
  color: #0e7490;
}

.rl-role--shopper .rl-role-icon {
  background: rgba(34, 211, 238, 0.14);
  color: #0e7490;
}

.rl-role h3 {
  font-family: var(--rl-display);
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
  color: var(--rl-text);
}

.rl-role p {
  margin: 0;
  color: var(--rl-muted);
  line-height: 1.5;
  flex: 1;
}

.rl-role .rl-btn { margin-top: 1.25rem; align-self: flex-start; }

.rl-role--aliado { --role-glow: rgba(0, 188, 212, 0.22); }
.rl-role--reparto { --role-glow: rgba(8, 145, 178, 0.18); }
.rl-role--shopper { --role-glow: rgba(34, 211, 238, 0.18); }

/* —— Marquee / carousel —— */
.rl-marquee-shell {
  overflow: hidden;
}

.rl-marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: rlMarquee 38s linear infinite;
}

.rl-marquee:hover { animation-play-state: paused; }

.rl-store-card,
.rl-product-card {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rl-line);
  box-shadow: 0 10px 24px rgba(18, 24, 38, 0.06);
}

.rl-store-cover,
.rl-product-cover {
  height: 120px;
  background: #d7eef5;
  background-size: cover;
  background-position: center;
}

.rl-store-body,
.rl-product-body {
  padding: 0.85rem 0.95rem 1rem;
}

.rl-store-body strong,
.rl-product-body strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--rl-text);
}

.rl-store-body span,
.rl-product-body span {
  color: var(--rl-muted);
  font-size: 0.78rem;
}

.rl-product-body em {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  font-weight: 800;
  color: var(--rl-cyan-deep);
  font-size: 0.95rem;
}

/* —— CTA band —— */
.rl-cta-band {
  margin: 1rem 0 2rem;
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.2rem);
  background: #ffffff;
  border: 1px solid var(--rl-line);
  box-shadow: var(--rl-shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.rl-cta-band h2 {
  font-family: var(--rl-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  color: var(--rl-text);
}

.rl-cta-band p {
  margin: 0 0 1.4rem;
  color: var(--rl-muted);
  max-width: 36rem;
  line-height: 1.5;
}

.rl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.rl-cta-visual {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.rl-cta-orb {
  width: 220px;
  height: 220px;
  border-radius: 40%;
  background: var(--rl-cyan);
  filter: blur(2px);
  opacity: 0.85;
  animation: rlSpinSlow 18s linear infinite;
}

.rl-cta-stores {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100%, 240px);
}

.rl-store-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.rl-store-badge-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.rl-store-badge-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

.rl-store-badge-text small {
  display: block;
  font-size: 0.68rem;
  line-height: 1.1;
  opacity: 0.85;
}

.rl-store-badge-text strong {
  display: block;
  font-family: var(--rl-display);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rl-store-badge--play {
  background: #0f172a;
  color: #fff;
}

.rl-store-badge--play:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
}

.rl-store-badge--apple {
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.rl-store-badge--apple:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 188, 212, 0.35);
  box-shadow: 0 14px 28px rgba(0, 188, 212, 0.14);
}

/* —— Footer —— */
.rl-footer {
  border-top: 1px solid var(--rl-line);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
  background: #fff;
}

.rl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.rl-footer p {
  margin: 0;
  color: var(--rl-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 22rem;
}

.rl-footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d4a61;
}

.rl-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.rl-footer a {
  color: var(--rl-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.rl-footer a:hover { color: var(--rl-cyan-deep); }

.rl-footer-copy {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rl-line);
  color: #7a869c;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

/* —— Reveal —— */
.rl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rl-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Auth pages (register, etc.) —— */
.rl-nav--auth {
  border-bottom-color: var(--rl-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(18, 24, 38, 0.06);
}

.rl-auth-page {
  min-height: calc(100vh - 72px);
  padding: 2.5rem 0 4rem;
  background: var(--rl-bg);
}

.rl-auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--rl-surface);
  border: 1px solid var(--rl-line);
  border-radius: 18px;
  padding: 1.75rem 1.85rem;
  box-shadow: var(--rl-shadow);
}

.rl-auth-card--wide {
  max-width: 720px;
}

.rl-auth-section {
  border: 0;
  margin: 0 0 1.35rem;
  padding: 0;
}

.rl-auth-section legend {
  display: block;
  width: 100%;
  margin-bottom: 0.85rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--rl-line);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rl-cyan-deep);
}

.rl-auth-form select,
.rl-auth-form textarea {
  width: 100%;
  background: #f7f9fc;
  border: 1px solid #d5dde8;
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: var(--rl-text);
}

.rl-auth-form select:focus,
.rl-auth-form textarea:focus {
  outline: none;
  border-color: rgba(0, 184, 212, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.12);
}

.rl-auth-form textarea {
  resize: vertical;
  min-height: 88px;
}

.rl-auth-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.25rem 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--rl-muted);
  cursor: pointer;
}

.rl-auth-check input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--rl-cyan);
}

.rl-reg-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 1.35rem;
  padding: 0;
}

.rl-reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  position: relative;
}

.rl-reg-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: calc(50% + 1.1rem);
  width: calc(100% - 2.2rem);
  height: 2px;
  background: #dbe4ee;
  z-index: 0;
}

.rl-reg-step.is-done:not(:last-child)::after,
.rl-reg-step.is-active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--rl-cyan) 0%, #dbe4ee 100%);
}

.rl-reg-step.is-done:not(:last-child)::after {
  background: var(--rl-cyan);
}

.rl-reg-step-num {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  background: #eef3f8;
  color: var(--rl-muted);
  border: 2px solid #dbe4ee;
}

.rl-reg-step.is-active .rl-reg-step-num,
.rl-reg-step.is-done .rl-reg-step-num {
  background: var(--rl-cyan);
  border-color: var(--rl-cyan);
  color: #fff;
}

.rl-reg-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rl-muted);
  line-height: 1.2;
}

.rl-reg-step.is-active .rl-reg-step-label {
  color: var(--rl-cyan-deep);
}

.rl-reg-panel-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--rl-text);
}

.rl-reg-panel-desc {
  margin: 0 0 1rem;
  color: var(--rl-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.rl-reg-step-meta {
  margin: 0.2rem 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rl-cyan-deep);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rl-reg-inline-error {
  margin: 0 0 0.85rem;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  background: #fff4f4;
  border: 1px solid #fecaca;
  color: #8a1f11;
  font-size: 0.88rem;
  line-height: 1.4;
}

.rl-reg-actions {
  flex-wrap: wrap;
}

.rl-reg-actions #reg-prev {
  margin-right: auto;
}

.rl-auth-form [hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  .rl-reg-step-label {
    font-size: 0.66rem;
  }

  .rl-reg-step:not(:last-child)::after {
    top: 0.92rem;
    left: calc(50% + 0.95rem);
    width: calc(100% - 1.9rem);
  }
}

.rl-auth-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rl-text);
}

.rl-auth-muted {
  margin: 0 0 1.25rem;
  color: var(--rl-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.rl-auth-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rl-muted);
}

.rl-auth-form input {
  width: 100%;
  background: #f7f9fc;
  border: 1px solid #d5dde8;
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: var(--rl-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rl-auth-form input:focus {
  outline: none;
  border-color: var(--rl-cyan);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.18);
}

.rl-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.rl-auth-field {
  margin-bottom: 0.85rem;
}

.rl-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.rl-alert {
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.rl-alert-ok {
  background: rgba(38, 198, 168, 0.12);
  border: 1px solid rgba(38, 198, 168, 0.35);
  color: #0f766e;
}

.rl-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #b91c1c;
}

@media (max-width: 560px) {
  .rl-auth-grid {
    grid-template-columns: 1fr;
  }

  .rl-auth-card {
    padding: 1.35rem 1.15rem;
  }
}

/* —— Login modal on light landing —— */
body.ring-landing #login-modal .login-modal-backdrop {
  background: rgba(11, 18, 32, 0.42);
  backdrop-filter: blur(8px);
}

body.ring-landing #login-modal .login-modal-panel {
  background: #fff;
  border: 1px solid rgba(8, 145, 178, 0.12);
  border-radius: 22px;
  box-shadow:
    0 28px 80px rgba(11, 18, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--rl-text);
  padding: 1.35rem 1.35rem 1.5rem;
  max-width: 440px;
  animation: rlModalIn 0.28s ease both;
}

body.ring-landing #login-modal.is-open .login-modal-panel {
  animation: rlModalIn 0.28s ease both;
}

body.ring-landing #login-modal .login-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

body.ring-landing #login-modal .login-modal-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

body.ring-landing #login-modal .login-modal-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 118px;
  flex-shrink: 0;
  object-fit: contain;
}

body.ring-landing #login-modal .login-modal-head h3 {
  margin: 0 0 0.25rem;
  font-family: var(--rl-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--rl-text);
}

body.ring-landing #login-modal .login-modal-sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--rl-muted);
}

body.ring-landing #login-modal .login-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

body.ring-landing #login-modal .login-modal-close .material-icons-round {
  font-size: 1.15rem;
}

body.ring-landing #login-modal .login-modal-close:hover {
  background: rgba(0, 188, 212, 0.12);
  color: var(--rl-cyan-deep);
}

body.ring-landing #login-modal .login-modal-alert {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

body.ring-landing #login-modal .login-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.ring-landing #login-modal .login-modal-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

body.ring-landing #login-modal .login-modal-input {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.85rem;
  background: #f8fafc;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.ring-landing #login-modal .login-modal-input .material-icons-round {
  font-size: 1.15rem;
  color: #94a3b8;
  flex-shrink: 0;
}

body.ring-landing #login-modal .login-modal-input:focus-within {
  background: #fff;
  border-color: rgba(0, 188, 212, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

body.ring-landing #login-modal .login-modal-input:focus-within .material-icons-round {
  color: var(--rl-cyan-deep);
}

body.ring-landing #login-modal .login-modal-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.82rem 0;
  font: inherit;
  font-size: 0.95rem;
  color: var(--rl-text);
}

body.ring-landing #login-modal .login-modal-input input::placeholder {
  color: #94a3b8;
}

body.ring-landing #login-modal .login-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

body.ring-landing #login-modal .login-modal-actions .rl-btn {
  flex: 1 1 140px;
  min-height: 46px;
}

body.ring-landing #login-modal a.rl-btn-ghost {
  color: var(--rl-cyan-deep);
}

@keyframes rlModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— Animations —— */
@keyframes rlFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes rlFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@keyframes rlPhoneIn {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes rlNotif {
  0%, 100% { transform: translateY(0); opacity: 0.95; }
  50% { transform: translateY(-10px); opacity: 1; }
}

@keyframes rlPulseSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

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

@keyframes rlSpinSlow {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  to { transform: rotate(360deg) scale(1); }
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .rl-nav-menu--desktop,
  .rl-nav-cta--desktop {
    display: none;
  }

  .rl-nav-toggle {
    display: inline-flex;
  }

  .rl-nav-inner {
    grid-template-columns: 1fr auto;
  }

  .rl-nav-menu--desktop {
    display: none;
  }

  .rl-split,
  .rl-split--rev,
  .rl-cta-band,
  .rl-footer-grid,
  .rl-roles {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .rl-cta-visual { order: -1; min-height: 180px; }
  .rl-cta-orb { width: 180px; height: 180px; }
  .rl-cta-stores {
    width: min(100%, 280px);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .rl-notif { display: none; }
  .rl-stickers { display: none; }
}

@media (max-width: 720px) {
  .rl-wrap,
  .rl-nav-inner,
  .rl-nav-panel-inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
  }

  .rl-nav {
    max-width: 100%;
  }

  .rl-nav-bar {
    padding: 0.55rem 0;
    max-width: 100%;
  }

  .rl-hero-bg {
    inset: 0;
    height: 100%;
  }

  .rl-nav-brand img {
    height: 30px;
    max-width: min(132px, 40vw);
  }

  .rl-hero {
    min-height: auto;
    padding: 1.25rem 0 2rem;
  }

  .rl-hero-brand {
    display: none;
  }

  .rl-hero h1 {
    font-size: clamp(1.28rem, 5.8vw, 1.75rem);
    line-height: 1.22;
    margin-bottom: 1rem;
  }

  .rl-search {
    max-width: 100%;
  }

  .rl-search-field {
    padding: 0.4rem 0.45rem 0.4rem 0.4rem;
    border-radius: 16px;
  }

  .rl-search-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
    margin-top: 0.7rem;
    max-width: 100%;
  }

  .rl-search-filters::-webkit-scrollbar {
    display: none;
  }

  .rl-filter-chip {
    flex: 0 0 auto;
  }

  .rl-auth-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rl-auth-actions .rl-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .rl-logo-tag { display: none; }
  .rl-stats { grid-template-columns: 1fr; }
  .rl-section { padding: 3.2rem 0; }

  body.ring-landing #login-modal {
    padding: 0.85rem;
  }

  body.ring-landing #login-modal .login-modal-panel {
    padding: 1.15rem 1.1rem 1.25rem;
    border-radius: 18px;
  }

  body.ring-landing #login-modal .login-modal-actions {
    flex-direction: column;
  }

  body.ring-landing #login-modal .login-modal-actions .rl-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .rl-nav-cta--desktop {
    display: none;
  }
}
