/* =========================================================================
   Luna · Astrología & Almas Gemelas
   Sistema de diseño — mobile-first
   Paleta: violeta profundo / negro · oro brillante · rosa suave
   Tipos: Cinzel (display celeste) · Cormorant (hero) · Manrope (UI)
   ========================================================================= */

:root {
  /* superficies */
  --bg-void:   #08050F;
  --bg-deep:   #110A20;
  --bg-card:   #1A1030;
  --bg-card-2: #241640;
  --bg-glass:  rgba(36, 22, 64, 0.55);

  /* acentos */
  --gold:      #E6B85C;
  --gold-bri:  #F4D285;
  --gold-soft: rgba(230, 184, 92, 0.14);
  --rose:      #EAA6C6;
  --rose-deep: #C77AA0;
  --lav:       #B9A7E0;
  --luna-name: #C7A03E;

  /* texto */
  --text:   #F4EFFA;
  --muted:  #9C8DC2;
  --faint:  #6E6092;

  /* líneas y sombras */
  --line:   rgba(230, 184, 92, 0.18);
  --line-2: rgba(185, 167, 224, 0.12);
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.8);
  --glow-gold: 0 0 28px rgba(230, 184, 92, 0.35);
  --glow-rose: 0 0 26px rgba(234, 166, 198, 0.30);

  /* métricas */
  --radius:   20px;
  --radius-s: 13px;
  --nav-h:    66px;
  --maxw:     520px;

  --ff-display: 'Cinzel', serif;
  --ff-serif:   'Cormorant Garamond', serif;
  --ff-body:    'Manrope', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg-void);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  /* Cielo estrellado sutil sobre el degradado */
  background-image:
    radial-gradient(1px 1px at 20% 18%, rgba(255,255,255,.55), transparent),
    radial-gradient(1px 1px at 72% 12%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.4px 1.4px at 42% 28%, rgba(244,210,133,.7), transparent),
    radial-gradient(1px 1px at 88% 36%, rgba(255,255,255,.4), transparent),
    radial-gradient(1px 1px at 12% 52%, rgba(234,166,198,.5), transparent),
    radial-gradient(1px 1px at 60% 64%, rgba(255,255,255,.35), transparent),
    radial-gradient(circle at 50% -10%, #2A1747 0%, #150C28 38%, #08050F 78%);
  background-attachment: fixed;
}

.app-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
  position: relative;
}

/* Cielo estrellado animado MUY ligero (sólo opacidad → no pesa) */
.sky-stars {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(1.4px 1.4px at 15% 22%, rgba(255,255,255,.9), transparent),
    radial-gradient(1.2px 1.2px at 78% 16%, rgba(244,210,133,.9), transparent),
    radial-gradient(1.3px 1.3px at 35% 60%, rgba(234,166,198,.8), transparent),
    radial-gradient(1.1px 1.1px at 62% 78%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.5px 1.5px at 88% 52%, rgba(244,210,133,.85), transparent),
    radial-gradient(1.1px 1.1px at 48% 38%, rgba(255,255,255,.7), transparent);
  animation: skyTwinkle 4.5s ease-in-out infinite;
}
@keyframes skyTwinkle { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.app-shell > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .sky-stars { animation: none; } }

/* ---------- Tipografía utilitaria ---------------------------------------- */
.eyebrow {
  font-family: var(--ff-body);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-title {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  letter-spacing: .04em;
  color: var(--text);
  font-weight: 600;
}
a { color: inherit; text-decoration: none; }

/* =========================================================================
   SPLASH SCREEN
   ========================================================================= */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  background: radial-gradient(circle at 50% 40%, #20133B 0%, #0C0719 70%);
  transition: opacity .6s ease, visibility .6s ease;
}
#splash.hide { opacity: 0; visibility: hidden; }
.splash-logo {
  width: 96px; height: 96px; border-radius: 24px; object-fit: cover;
  box-shadow: var(--glow-gold), 0 12px 30px -8px rgba(0,0,0,.6);
  animation: floaty 3.4s ease-in-out infinite;
}
.splash-word {
  font-family: var(--ff-display);
  font-size: 2.4rem; letter-spacing: .42em; text-indent: .42em;
  color: var(--luna-name);
  text-shadow: 0 0 22px rgba(199,160,62,.45);
}
.splash-tag { font-family: var(--ff-serif); font-style: italic; color: var(--lav); font-size: 1.05rem; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

/* Overlay de transición entre páginas (aparece al instante al tocar un link) */
#nav-loading {
  position: fixed; inset: 0; z-index: 9998;
  display: none; align-items: center; justify-content: center;
  background: rgba(8,5,15,.82); backdrop-filter: blur(3px);
  pointer-events: none;
}
#nav-loading.show { display: flex; }
.nav-moon {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid rgba(244,210,133,.25); border-top-color: var(--gold-bri);
  animation: navSpin .8s linear infinite;
}
@keyframes navSpin { to { transform: rotate(360deg); } }

/* Tirar para actualizar (iOS) — oculto por defecto, bien arriba */
#ptr-indicator {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -90px);
  z-index: 9997; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(20,12,38,.95); border: 1px solid var(--line);
  display: none; align-items: center; justify-content: center;
  transition: transform .15s ease; opacity: 0;
}
#ptr-indicator.visible { display: flex; opacity: 1; transform: translate(-50%, calc(env(safe-area-inset-top, 0px) + 16px)); }
.ptr-spin {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(244,210,133,.3); border-top-color: var(--gold-bri);
}
#ptr-indicator.spinning .ptr-spin { animation: navSpin .7s linear infinite; }

/* =========================================================================
   BANNER DE INSTALACIÓN (navegador, ya logueado)
   ========================================================================= */
#install-banner {
  position: sticky; top: 0; z-index: 90;
  display: none; align-items: center; gap: 12px;
  padding: 11px 16px;
  padding-top: calc(11px + env(safe-area-inset-top));
  background: linear-gradient(100deg, #2A1A48, #3A2160);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
#install-banner.show { display: flex; }
#install-banner .ib-ico {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center; font-size: 1.2rem;
  background: var(--gold-soft); border: 1px solid var(--line);
}
#install-banner .ib-ico-img {
  width: 40px; height: 40px; border-radius: 11px; flex: none; object-fit: cover;
  border: 1px solid var(--line);
}
#install-banner .ib-txt { flex: 1; min-width: 0; }
#install-banner .ib-txt strong { font-family: var(--ff-display); font-size: .92rem; display: block; }
#install-banner .ib-txt span { font-size: .76rem; color: var(--lav); }
#install-banner .ib-btn {
  flex: none; font-weight: 700; font-size: .82rem;
  padding: 9px 15px; border-radius: 11px; border: none; cursor: pointer;
  background: linear-gradient(100deg, var(--gold), var(--gold-bri));
  color: #2A1A06; box-shadow: var(--glow-gold);
}
#install-banner .ib-x { background: none; border: none; color: var(--lav); font-size: 1.3rem; cursor: pointer; padding: 4px; }

/* =========================================================================
   APP HEADER (sólo el ícono oficial) + SAFE AREAS iOS
   ========================================================================= */
.app-header {
  position: relative; z-index: 40;
  display: flex; align-items: center; gap: 11px;
  padding: 10px 16px 6px;
  padding-top: calc(10px + env(safe-area-inset-top));
}
.app-header .ah-icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none; object-fit: cover;
  border: 1px solid var(--line); box-shadow: 0 4px 16px -4px rgba(0,0,0,.6);
  display: block;
}
.app-header .ah-name {
  font-family: var(--ff-display); font-size: 1.18rem; letter-spacing: .06em;
  color: var(--luna-name); font-weight: 600;
}

/* =========================================================================
   HERO / BONUS  (banner elegante y robusto)
   ========================================================================= */
.hero {
  display: block; position: relative; margin: 6px 16px 4px;
  padding: 26px 22px 24px; min-height: 196px;
  border-radius: 22px; overflow: hidden; text-decoration: none;
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(124,77,196,.55), transparent 55%),
    radial-gradient(120% 120% at 0% 100%, rgba(234,166,198,.18), transparent 50%),
    linear-gradient(155deg, #2B1750 0%, #1A0F2E 58%, #120A22 100%);
  border: 1px solid rgba(244,210,133,.30);
  box-shadow: 0 18px 44px -22px rgba(124,77,196,.8), inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-stars {
  position: absolute; inset: 0; z-index: 0; opacity: .8;
  background-image:
    radial-gradient(1.4px 1.4px at 18% 30%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 70% 22%, rgba(255,255,255,.9), transparent),
    radial-gradient(1.6px 1.6px at 85% 60%, var(--gold-bri), transparent),
    radial-gradient(1.2px 1.2px at 40% 75%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.3px 1.3px at 58% 48%, rgba(234,166,198,.9), transparent);
}
.hero-moon {
  position: absolute; top: -22px; right: -10px; z-index: 0;
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #FBEBC4, var(--gold) 55%, transparent 72%);
  box-shadow: 0 0 40px 8px rgba(230,184,92,.45);
  opacity: .9;
}
.hero-moon::after { /* sombra que forma la luna creciente */
  content: ''; position: absolute; top: -6px; right: -16px;
  width: 110px; height: 110px; border-radius: 50%;
  background: #1A0F2E;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block; margin-bottom: 14px;
  padding: 6px 15px; border-radius: 999px;
  background: rgba(244,210,133,.14); border: 1px solid rgba(244,210,133,.4);
  font-family: var(--ff-display); letter-spacing: .14em; text-transform: uppercase;
  font-size: .66rem; color: var(--gold-bri);
}
.hero-title {
  font-family: var(--ff-serif); font-weight: 600;
  font-size: clamp(1.6rem, 7vw, 2.1rem); line-height: 1.14;
  color: #FBF4FF; text-shadow: 0 2px 18px rgba(124,77,196,.5);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px;
  padding: 13px 24px; border-radius: 14px; font-weight: 800; font-size: .92rem;
  background: linear-gradient(100deg, var(--gold), #F6DFA4);
  color: #2A1A06; box-shadow: 0 10px 24px -8px rgba(230,184,92,.7);
}
.hero-free { margin-top: 14px; font-size: .76rem; color: var(--lav); display: flex; align-items: center; gap: 7px; }

/* =========================================================================
   PRODUCTOS · carrusel + lista "Explora todo"
   ========================================================================= */
.block-head { display: flex; align-items: baseline; justify-content: space-between; padding: 24px 18px 12px; }

/* Carrusel: scroll horizontal con swipe/drag + autoplay por JS */
.carousel { overflow-x: auto; overflow-y: hidden; padding: 4px 0 12px;
  scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; cursor: grab; }
.carousel::-webkit-scrollbar { display: none; height: 0; }
.carousel.dragging { cursor: grabbing; }
.carousel-track {
  display: flex; flex-wrap: nowrap; gap: 13px; width: max-content; padding: 0 16px;
}
.carousel-track .p-card { flex: 0 0 230px; }
@media (prefers-reduced-motion: reduce) {
  .carousel { -webkit-overflow-scrolling: touch; }
}

.p-card {
  position: relative; text-decoration: none;
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(165deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line-2);
  min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s ease, border-color .25s ease;
}
.p-card:active { transform: scale(.975); }
.p-card .p-thumb {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .62;
}
.p-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(12,7,24,.5) 58%, rgba(12,7,24,.95));
}
.p-card .p-body { position: relative; padding: 14px; }
.p-card .p-eyebrow { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.p-card .p-title { font-family: var(--ff-display); font-size: 1rem; line-height: 1.2; margin-top: 5px; color: #fff; }

/* Candado GRANDE centrado sobre la imagen del producto */
.p-lock-big {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.9rem; background: rgba(8,5,15,.55); border: 1px solid rgba(244,210,133,.4);
  backdrop-filter: blur(3px); box-shadow: 0 6px 20px -6px rgba(0,0,0,.7);
}
/* Estrella/luz VERDE para material desbloqueado */
.p-open-star {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1rem; color: #093; background: rgba(180,255,200,.16);
  border: 1px solid rgba(120,255,170,.55); color: #6BFFA8;
  box-shadow: 0 0 14px rgba(80,255,150,.6), inset 0 0 8px rgba(120,255,170,.4);
}

/* Lista "Explora todo" con descripción */
.explora-list { display: flex; flex-direction: column; gap: 12px; padding: 4px 16px 8px; }
.ex-card {
  display: flex; gap: 14px; text-decoration: none;
  border-radius: 16px; overflow: hidden; padding: 12px;
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line-2); transition: border-color .2s, transform .2s;
}
.ex-card:active { transform: scale(.99); }
.ex-thumb {
  position: relative; flex: 0 0 92px; height: 92px; border-radius: 12px;
  background-size: cover; background-position: center; border: 1px solid var(--line);
}
.ex-lock-big {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.35rem; background: rgba(8,5,15,.5); border: 1px solid rgba(244,210,133,.4);
  backdrop-filter: blur(2px);
}
.ex-open-star {
  position: absolute; top: 6px; right: 6px; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-size: .8rem; color: #6BFFA8; background: rgba(120,255,170,.16);
  border: 1px solid rgba(120,255,170,.55); box-shadow: 0 0 10px rgba(80,255,150,.55);
}
.ex-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.ex-eyebrow { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.ex-title { font-family: var(--ff-display); font-size: 1rem; margin: 3px 0 4px; color: #fff; }
.ex-desc { font-size: .82rem; color: var(--lav); line-height: 1.35; margin: 0; }
.ex-cta { margin-top: 8px; font-size: .8rem; font-weight: 700; color: var(--gold-bri); }

/* =========================================================================
   PÁGINA DE PRODUCTO (bloqueado vs liberado)
   ========================================================================= */
.topbar {
  position: sticky; top: var(--banner-h, 0px); z-index: 50;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  padding-top: calc(14px + env(safe-area-inset-top));
  background: linear-gradient(180deg, rgba(17,10,32,.96), rgba(17,10,32,.72));
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-2);
}
.topbar .back { font-size: 1.3rem; color: var(--gold-bri); }
.topbar h1 { font-family: var(--ff-display); font-size: 1.02rem; font-weight: 600; }

.prod-hero {
  margin: 16px; height: 188px; border-radius: var(--radius);
  background-size: cover; background-position: center; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.prod-hero::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(8,5,15,.1), rgba(8,5,15,.85)); }
.prod-hero .ph-cap { position: absolute; left: 18px; bottom: 16px; z-index: 1; }
.prod-hero .ph-cap h2 { font-family: var(--ff-serif); font-size: 1.7rem; line-height: 1.1;
  background: linear-gradient(100deg,#fff,var(--rose) 75%,var(--gold-bri)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

.prose { padding: 4px 20px 30px; }
.prose p { color: #E5DDF2; margin-bottom: 14px; font-size: 1.02rem; }
.prose .drop::first-letter {
  font-family: var(--ff-display); font-size: 3.1rem; float: left; line-height: .8;
  padding: 6px 10px 0 0; color: var(--gold-bri);
}

/* candado / blur */
.locked-wrap { position: relative; padding: 4px 20px 0; }
.locked-text { filter: blur(6px); user-select: none; pointer-events: none; opacity: .8; max-height: 230px; overflow: hidden; }
.locked-text p { color: #E5DDF2; margin-bottom: 14px; }
.lock-overlay {
  position: relative; margin: -120px 20px 26px; z-index: 2;
  text-align: center; padding: 30px 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,12,38,.4), rgba(20,12,38,.96) 45%);
  border: 1px solid var(--line);
}
.lock-icon {
  width: 78px; height: 78px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem; color: #2A1A06;
  background: radial-gradient(circle at 34% 30%, var(--gold-bri), var(--gold) 60%, #8a6322);
  box-shadow: var(--glow-gold);
  animation: floaty 3.4s ease-in-out infinite;
}
.lock-overlay h3 { font-family: var(--ff-display); font-size: 1.25rem; margin-bottom: 8px; }
.lock-overlay p { color: var(--lav); font-size: .92rem; margin-bottom: 20px; max-width: 30ch; margin-inline: auto; }
.btn-buy {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 14px; font-weight: 800; font-size: 1rem;
  background: linear-gradient(100deg, var(--gold), var(--gold-bri)); color: #2A1A06;
  box-shadow: var(--glow-gold); letter-spacing: .01em;
}

/* =========================================================================
   FORMULARIOS (login, perfil)
   ========================================================================= */
.auth { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 30px 26px; padding-top: calc(30px + env(safe-area-inset-top)); }
.auth-brand { text-align: center; margin-bottom: 30px; }
.auth-logo {
  width: 84px; height: 84px; margin: 0 auto 16px; border-radius: 22px; object-fit: cover; display: block;
  box-shadow: var(--glow-gold), 0 10px 26px -8px rgba(0,0,0,.6);
}
.auth-brand h1 { font-family: var(--ff-display); font-size: 2.1rem; letter-spacing: .34em; text-indent: .34em; color: var(--luna-name); }
.auth-brand p { font-family: var(--ff-serif); font-style: italic; color: var(--lav); font-size: 1.05rem; margin-top: 4px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600; }
.field input {
  width: 100%; padding: 14px 16px; border-radius: 13px; font-size: 1rem;
  background: var(--bg-card); border: 1px solid var(--line-2); color: var(--text);
  font-family: var(--ff-body); transition: border-color .2s, box-shadow .2s;
}
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field input:disabled { opacity: .65; }

/* Campo de contraseña con ojo */
.pwd-wrap { position: relative; }
.pwd-wrap input { padding-right: 52px; }
.pwd-toggle {
  position: absolute; top: 0; right: 0; height: 100%;
  width: 48px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: var(--lav); padding: 0;
  z-index: 2;
}
.pwd-toggle svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pwd-toggle .eye-slash { opacity: 0; transition: opacity .15s; }
.pwd-toggle.on { color: var(--gold-bri); }
.pwd-toggle.on .eye-slash { opacity: 1; }
.pwd-toggle:active { color: var(--gold-bri); }

.btn-primary {
  width: 100%; padding: 15px; border: none; cursor: pointer; border-radius: 13px;
  font-family: var(--ff-body); font-weight: 800; font-size: 1.02rem;
  background: linear-gradient(100deg, var(--gold), var(--gold-bri)); color: #2A1A06;
  box-shadow: var(--glow-gold); margin-top: 6px;
}
.btn-ghost {
  width: 100%; padding: 14px; cursor: pointer; border-radius: 13px; margin-top: 12px;
  font-family: var(--ff-body); font-weight: 700; font-size: .96rem;
  background: transparent; color: var(--rose); border: 1px solid var(--line);
}
.auth-error {
  background: rgba(199,122,160,.12); border: 1px solid var(--rose-deep);
  color: var(--rose); padding: 11px 14px; border-radius: 11px; font-size: .88rem; margin-bottom: 16px; text-align: center;
}

/* =========================================================================
   BOTTOM NAVIGATION
   ========================================================================= */
.bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw); z-index: 70;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(20,12,38,.82), rgba(12,7,24,.97));
  backdrop-filter: blur(16px); border-top: 1px solid var(--line);
  padding-top: 9px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  color: var(--faint); font-size: .64rem; letter-spacing: .05em; font-weight: 600;
  position: relative; transition: color .2s;
  padding-top: 4px;
}
.bottom-nav a svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.bottom-nav a.active { color: var(--gold-bri); }
.bottom-nav a.active::before {
  content: ''; position: absolute; top: 0; width: 36px; height: 32px; border-radius: 50%;
  background: var(--gold-soft); filter: blur(3px);
}

/* =========================================================================
   WHATSAPP FLOTANTE + CHAT
   ========================================================================= */
.wa-fab {
  position: fixed; right: 16px; z-index: 75; cursor: pointer;
  bottom: calc(var(--nav-h) + 16px + env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(150deg, #25D366, #128C7E);
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  animation: floaty 4s ease-in-out infinite;
}
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
@media (min-width: 540px) { .wa-fab { right: calc(50% - var(--maxw)/2 + 16px); } }

.chat-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(6,4,12,.6); backdrop-filter: blur(4px);
  align-items: flex-end; justify-content: center;
}
.chat-modal.show { display: flex; }
.chat-box {
  width: 100%; max-width: var(--maxw); height: 82vh;
  background: linear-gradient(180deg, #160D2A, #0C0719);
  border-radius: 22px 22px 0 0; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.chat-head {
  display: flex; align-items: center; gap: 12px; padding: 15px 18px;
  border-bottom: 1px solid var(--line-2); background: rgba(37,211,102,.06);
}
.chat-head .ch-av { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: linear-gradient(150deg,#7C4DC4,#3A2160); display:grid; place-items:center; flex: none; }
.chat-head .ch-av img { width: 100%; height: 100%; object-fit: cover; }
.chat-head .ch-av svg { width: 22px; height: 22px; fill: #fff; }
.chat-head .ch-meta strong { font-family: var(--ff-display); font-size: .98rem; display: block; }
.chat-head .ch-meta span { font-size: .72rem; color: #25D366; }
.chat-head .ch-x { margin-left: auto; background: none; border: none; color: var(--lav); font-size: 1.5rem; cursor: pointer; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px 14px; display: flex; flex-direction: column; gap: 9px; }
.bubble { max-width: 80%; padding: 10px 13px; border-radius: 15px; font-size: .92rem; line-height: 1.4; word-wrap: break-word; }
.bubble.human { align-self: flex-end; background: linear-gradient(150deg,#1F6F4E,#128C7E); color: #EAFBF1; border-bottom-right-radius: 4px; }
.bubble.ai { align-self: flex-start; background: var(--bg-card-2); color: var(--text); border: 1px solid var(--line-2); border-bottom-left-radius: 4px; }
.chat-empty { margin: auto; text-align: center; color: var(--faint); font-size: .9rem; padding: 20px; }
.chat-foot { padding: 12px 16px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-2); }
.chat-foot a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px; border-radius: 13px; font-weight: 700;
  background: linear-gradient(150deg,#25D366,#128C7E); color: #fff;
}
.chat-foot a svg { width: 20px; height: 20px; fill: #fff; }

/* =========================================================================
   MODAL DE INSTALACIÓN iOS
   ========================================================================= */
.ios-modal {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(6,4,12,.72); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.ios-modal.show { display: flex; }
.ios-card {
  width: 100%; max-width: 360px; border-radius: 22px; padding: 28px 24px 24px; text-align: center;
  background: linear-gradient(180deg,#231541,#150C28); border: 1px solid var(--line); box-shadow: var(--shadow);
  position: relative;
}
.ios-card .ic-moon {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--gold-bri), var(--gold) 55%, #8a6322);
  box-shadow: var(--glow-gold);
}
.ios-card .ic-moon-img {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px; object-fit: cover; display: block;
  box-shadow: var(--glow-gold);
}
.ios-card h3 { font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: 6px; }
.ios-card > p { color: var(--lav); font-size: .9rem; margin-bottom: 22px; }
.ios-step { display: flex; align-items: center; gap: 13px; text-align: left; margin-bottom: 14px; }
.ios-step .num {
  width: 30px; height: 30px; flex: none; border-radius: 9px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid var(--line); color: var(--gold-bri); font-weight: 800; font-size: .9rem;
}
.ios-step .st-txt { font-size: .9rem; color: var(--text); }
.ios-step .st-txt b { color: var(--gold-bri); }
.ios-share-ic { display: inline-grid; place-items: center; width: 22px; height: 22px; vertical-align: -5px; }
.ios-share-ic svg { width: 18px; height: 18px; fill: var(--rose); }
.ios-card .ic-close { margin-top: 16px; background: none; border: 1px solid var(--line); color: var(--lav); padding: 11px; width: 100%; border-radius: 12px; cursor: pointer; font-weight: 700; }
.ios-gif {
  display: block; width: 100%; max-width: 260px; margin: 18px auto 4px;
  border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.7); background: #0C0719;
}
.ios-bounce { display: inline-block; animation: bounceArrow 1.4s ease-in-out infinite; }
@keyframes bounceArrow { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(6px) } }

/* =========================================================================
   COMUNIDAD (testimonios) · PERFIL · MATERIAS
   ========================================================================= */
.page-head { padding: 22px 20px 6px; }
.page-head .eyebrow { margin-bottom: 6px; }
.page-head h1 { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 600;
  background: linear-gradient(100deg,#fff,var(--rose) 80%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.page-head .sub { color: var(--lav); font-size: .92rem; margin-top: 4px; }

.testi { margin: 14px 18px; padding: 18px; border-radius: var(--radius-s);
  background: linear-gradient(165deg,var(--bg-card-2),var(--bg-card)); border: 1px solid var(--line-2); }
.testi .t-top { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.testi .t-av { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--ff-display); color: #2A1A06; font-weight: 700;
  background: radial-gradient(circle at 34% 30%, var(--gold-bri), var(--rose-deep)); }
.testi .t-name { font-family: var(--ff-display); font-size: .98rem; }
.testi .t-stars { color: var(--gold-bri); font-size: .82rem; letter-spacing: .12em; }
.testi p { color: #E5DDF2; font-size: .94rem; font-style: italic; }

.empty-state { text-align: center; padding: 60px 30px; color: var(--faint); }
.empty-state .es-moon { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; opacity: .5;
  background: radial-gradient(circle at 32% 30%, var(--gold-bri), var(--gold) 55%, transparent 75%); }
.empty-state h3 { font-family: var(--ff-display); color: var(--lav); font-size: 1.15rem; margin-bottom: 8px; }
.empty-state p { font-size: .9rem; }

.profile-card { margin: 16px; padding: 22px; border-radius: var(--radius);
  background: linear-gradient(165deg,var(--bg-card-2),var(--bg-card)); border: 1px solid var(--line); }
.profile-av { width: 80px; height: 80px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 1.8rem; color: #2A1A06; font-weight: 700;
  background: radial-gradient(circle at 34% 30%, var(--gold-bri), var(--rose-deep)); box-shadow: var(--glow-gold); }
.field input[readonly] { background: rgba(12,7,24,.5); color: var(--muted); }
.hint { font-size: .72rem; color: var(--faint); margin-top: 6px; }
.ok-msg { background: rgba(120,200,140,.12); border: 1px solid #4caf72; color: #8fe0a8;
  padding: 11px 14px; border-radius: 11px; font-size: .88rem; margin-bottom: 16px; text-align: center; }

/* materia desbloqueada (lista) */
.mat-item { display: flex; align-items: stretch; gap: 14px; margin: 12px 16px; padding: 12px;
  border-radius: 16px; background: linear-gradient(165deg,var(--bg-card-2),var(--bg-card));
  border: 1px solid var(--line-2); text-decoration: none; transition: border-color .2s, transform .2s; }
.mat-item:active { transform: scale(.99); }
.mat-item.locked { opacity: .96; }
.mat-item .mi-thumb { position: relative; width: 92px; height: 92px; border-radius: 13px; flex: none;
  background-size: cover; background-position: center; border: 1px solid var(--line); }
.mat-item.locked .mi-thumb { filter: saturate(.7) brightness(.72); }
.mat-item .mi-lock { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 1.35rem;
  background: rgba(8,5,15,.5); border: 1px solid rgba(244,210,133,.4); backdrop-filter: blur(2px); }
.mat-item .mi-star { position: absolute; top: 6px; right: 6px; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; color: #6BFFA8;
  background: rgba(120,255,170,.16); border: 1px solid rgba(120,255,170,.55);
  box-shadow: 0 0 10px rgba(80,255,150,.55); }
.mat-item .mi-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.mat-item .mi-body .mi-eye { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.mat-item .mi-body h3 { font-family: var(--ff-display); font-size: 1rem; margin: 3px 0 4px; color: #fff; }
.mat-item .mi-desc { font-size: .8rem; color: var(--lav); line-height: 1.32; margin: 0; }
.mat-item .mi-cta { margin-top: 7px; font-size: .8rem; font-weight: 700; color: var(--gold-bri); }
.mat-item .mi-cta.open { color: #6BFFA8; }

/* Botón actualizar materiales */
.btn-refresh {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  padding: 9px 16px; border-radius: 11px; font-size: .82rem; font-weight: 700;
  color: var(--gold-bri); background: var(--gold-soft); border: 1px solid var(--line);
}
.btn-refresh:active { transform: scale(.97); }

/* divisor estelar */
.star-rule { display: flex; align-items: center; gap: 12px; padding: 0 20px; margin: 6px 0; }
.star-rule::before, .star-rule::after { content: ''; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.star-rule span { color: var(--gold); font-size: .7rem; }

.fade-up { animation: fadeUp .5s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================================
   RETRATO DE ALMA GEMELA · MAPA · TEASER PERSUASIVO
   ========================================================================= */
.retrato-frame {
  margin: 18px 16px; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 0 26px rgba(230,184,92,.18), var(--shadow);
}
.retrato-frame img { width: 100%; height: auto; display: block; filter: contrast(1.04) brightness(.97); }
.retrato-frame .rf-glow { position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(0,0,0,.5); pointer-events: none; }
.retrato-save {
  display: block; width: fit-content; margin: 0 auto 6px; padding: 12px 26px;
  border: 1px solid var(--gold); border-radius: 12px; color: var(--gold-bri);
  font-weight: 700; letter-spacing: .04em; background: var(--gold-soft);
}

.reading-card {
  margin: 14px 16px; padding: 22px 20px; border-radius: var(--radius-s);
  background: linear-gradient(165deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line-2);
}
.reading-card h2 {
  font-family: var(--ff-display); font-size: 1.22rem; color: var(--gold-bri);
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.reading-card h3 { font-family: var(--ff-display); font-size: 1.02rem; color: #fff; margin: 14px 0 5px; }
.reading-card p { color: #E0D7F0; margin-bottom: 12px; font-size: 1rem; }
.reading-card p:last-child { margin-bottom: 0; }
.reading-card b, .reading-card strong { color: var(--gold-bri); font-weight: 600; }

.quote-line {
  font-family: var(--ff-serif); font-style: italic; font-size: 1.22rem; color: var(--gold-bri);
  text-align: center; margin: 22px 16px; padding: 16px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.trait {
  margin: 12px 0; padding-left: 16px; border-left: 2px solid var(--gold);
}
.trait h3 { margin: 0 0 4px; color: #fff; font-size: 1rem; }
.trait p { color: #C9BCE4; font-size: .94rem; margin: 0; }

.ritual { display: flex; gap: 16px; margin: 16px 0; }
.ritual .rn { font-family: var(--ff-display); font-size: 2rem; color: var(--gold); opacity: .7; line-height: 1; }
.ritual .rc h3 { margin: 0 0 4px; }
.ritual .rc p { margin: 0; color: #C9BCE4; font-size: .94rem; }

.moon-phase { margin: 12px 0; padding-left: 14px; border-left: 1px solid var(--gold); }
.moon-phase h4 { color: #fff; font-size: .98rem; margin-bottom: 4px; font-family: var(--ff-display); }
.moon-phase p { color: #C9BCE4; font-size: .92rem; margin-bottom: 0; }

/* Mapa de Google embebido */
.map-embed {
  margin: 16px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  position: relative; aspect-ratio: 16 / 11; background: #0C0719;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9) brightness(.92); }
.map-cap { font-size: .8rem; color: var(--lav); text-align: center; margin: -6px 16px 6px; }

/* Teaser persuasivo (antes del candado) */
.teaser-hook {
  margin: 4px 20px 0; font-family: var(--ff-serif); font-style: italic;
  color: var(--gold-bri); font-size: 1.2rem; line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================================
   NOTIFICACIONES · modal de permiso + switch en perfil
   ========================================================================= */
.push-modal {
  position: fixed; inset: 0; z-index: 9996; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(8,5,15,.72); backdrop-filter: blur(4px);
}
.push-modal.show { display: flex; }
.push-card {
  width: 100%; max-width: 360px; max-height: 90vh; overflow-y: auto;
  background: linear-gradient(165deg, #211443, #160C2A);
  border: 1px solid var(--line); border-radius: 22px; padding: 24px 22px;
  text-align: center; box-shadow: var(--shadow);
}
.push-logo { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; margin: 0 auto 12px; display: block; box-shadow: var(--glow-gold); }
.push-card h3 { font-family: var(--ff-display); font-size: 1.25rem; color: var(--gold-bri); margin-bottom: 8px; }
.push-card p { color: var(--lav); font-size: .9rem; margin-bottom: 16px; }
.push-howto { width: 100%; max-width: 280px; border-radius: 14px; border: 1px solid var(--line); margin: 0 auto 18px; display: block; }
.push-activar {
  width: 100%; padding: 13px; border: none; border-radius: 13px; cursor: pointer;
  font-weight: 800; font-size: .95rem; color: #2A1A06;
  background: linear-gradient(100deg, var(--gold), var(--gold-bri)); box-shadow: var(--glow-gold);
}
.push-cerrar { width: 100%; margin-top: 10px; padding: 11px; background: none; border: 1px solid var(--line); border-radius: 13px; color: var(--lav); cursor: pointer; font-weight: 700; }

/* Switch */
.push-row { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 18px; padding: 14px 4px; border-top: 1px solid var(--line-2); }
.push-row-txt { display: flex; flex-direction: column; }
.push-row-txt strong { color: #fff; font-size: .96rem; }
.push-row-txt span { color: var(--lav); font-size: .78rem; }
.switch { width: 52px; height: 30px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.08); position: relative; cursor: pointer; flex: none; transition: background .2s; padding: 0; }
.switch .switch-dot { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lav); transition: transform .2s, background .2s; }
.switch.on { background: linear-gradient(100deg, var(--gold), var(--gold-bri)); border-color: transparent; }
.switch.on .switch-dot { transform: translateX(22px); background: #2A1A06; }
.switch:disabled { opacity: .5; }

/* =========================================================================
   RESPONSIVE · modo paisagem (landscape) y pantallas anchas
   ========================================================================= */
@media (orientation: landscape) and (max-height: 520px) {
  .hero { min-height: 0; padding: 18px 20px; }
  .hero-title { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .hero-moon { width: 80px; height: 80px; }
  .splash-logo { width: 64px; height: 64px; }
  .carousel-track .p-card { flex: 0 0 200px; }
  .p-card, .carousel-track .p-card { min-height: 170px; }
  .chat-box { height: 100%; max-height: 100vh; }
  .ios-card, .push-card { max-height: 86vh; overflow-y: auto; }
  .bottom-nav { height: calc(56px + env(safe-area-inset-bottom)); }
}
/* En pantallas anchas (tablet/desktop) la app permanece centrada y legible */
@media (min-width: 560px) {
  .app-shell { box-shadow: 0 0 60px rgba(0,0,0,.5); }
}

/* =========================================================================
   v7 · Pestañas de Materias + responsividad integral + botón "Abrir app"
   ========================================================================= */

/* ---- Pestañas / filtros de Materias ------------------------------------- */
.mat-tabs {
  display: flex; gap: 8px; margin: 14px 16px 4px; padding: 5px;
  background: var(--bg-glass); border: 1px solid var(--line-2);
  border-radius: 14px; backdrop-filter: blur(8px);
}
.mat-tab {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 8px; border: none; cursor: pointer; border-radius: 10px;
  background: transparent; color: var(--muted); font-family: var(--ff-body);
  font-weight: 700; font-size: .9rem; letter-spacing: .01em;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.mat-tab .mt-count {
  font-size: .72rem; font-weight: 800; min-width: 20px; padding: 1px 7px;
  border-radius: 999px; background: rgba(185,167,224,.16); color: var(--lav);
}
.mat-tab.active {
  color: var(--bg-void);
  background: linear-gradient(135deg, var(--gold-bri), var(--gold));
  box-shadow: var(--glow-gold);
}
.mat-tab.active .mt-count { background: rgba(8,5,15,.22); color: var(--bg-void); }
.mat-tab:not(.active):active { background: rgba(185,167,224,.08); }

.mat-group[hidden] { display: none; }
.mat-empty {
  margin: 26px 18px; padding: 22px; text-align: center; color: var(--lav);
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-glass);
  font-size: .92rem;
}

/* ---- Botón "Abrir la aplicación" en el login ---------------------------- */
#open-app-login { margin-top: 10px; }

/* =========================================================================
   RESPONSIVIDAD INTEGRAL (web + PWA, de móvil pequeño a desktop)
   ========================================================================= */

/* Móviles muy estrechos (<=360px): compacta paddings y tipografías */
@media (max-width: 360px) {
  .auth { padding-left: 18px; padding-right: 18px; }
  .auth-brand h1 { font-size: 1.8rem; }
  .hero-title { font-size: clamp(1.25rem, 6.5vw, 1.6rem); }
  .mat-item { margin-left: 12px; margin-right: 12px; gap: 11px; }
  .mat-item .mi-thumb { width: 78px; height: 78px; }
  .mat-tab { font-size: .82rem; padding: 9px 6px; }
  .ex-card { margin-left: 12px; margin-right: 12px; }
  .carousel-track > .p-card { flex-basis: 200px !important; }
}

/* La media queda fluida en cualquier contenedor */
.retrato-frame img, .map-embed iframe, .prod-hero, .hero { max-width: 100%; }
.map-embed { position: relative; width: auto; margin: 14px 16px; border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 260px; border: 0; }
img, svg, video, iframe { max-width: 100%; }

/* Tablet / desktop: la app se mantiene centrada y enmarcada, sin romperse.
   Subimos el ancho útil y damos respiración a hero y tarjetas. */
@media (min-width: 760px) {
  :root { --maxw: 620px; }
  .app-shell {
    max-width: var(--maxw);
    margin: 18px auto; min-height: calc(100vh - 36px);
    border: 1px solid var(--line-2); border-radius: 26px; overflow: hidden;
    box-shadow: 0 30px 90px -30px rgba(0,0,0,.85);
  }
  .bottom-nav { max-width: var(--maxw); left: 50%; transform: translateX(-50%); border-radius: 0 0 26px 26px; }
  .wa-fab { right: calc(50% - var(--maxw)/2 + 18px); }
  .hero { min-height: 260px; }
  .map-embed iframe { height: 320px; }
}

/* Pantallas anchas reales (desktop): centramos y oscurecemos el lienzo */
@media (min-width: 1024px) {
  body { background-attachment: fixed; }
  .app-shell { margin: 28px auto; }
  /* "Explora todo": en desktop, dos columnas para aprovechar el ancho */
  .explora-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; }
  .explora-list .ex-card { margin-left: 16px; margin-right: 0; }
  .explora-list .ex-card:nth-child(even) { margin-left: 0; margin-right: 16px; }
}

/* Modales: nunca exceder el viewport (scroll interno si hace falta) */
.chat-box, .ios-card, .push-card { max-height: 92vh; }
.chat-modal .chat-box { width: min(100%, var(--maxw)); margin: 0 auto; }

/* Landscape en móvil: que el login y los modales no se corten */
@media (orientation: landscape) and (max-height: 480px) {
  .auth { min-height: auto; padding-top: calc(18px + env(safe-area-inset-top)); padding-bottom: 18px; }
  .ios-card, .push-card { max-height: 90vh; overflow-y: auto; }
  .map-embed iframe { height: 200px; }
}

/* =========================================================================
   v8 · Saludo personalizado en el header
   ========================================================================= */
.app-header .ah-txt { display: flex; flex-direction: column; min-width: 0; line-height: 1.15; }
.app-header .ah-hello {
  font-family: var(--ff-body); font-size: .82rem; font-weight: 600;
  color: var(--lav); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
