/* ==========================================================================
   VirtualProperty — Tour público
   ========================================================================== */
:root {
  --tour-primary: #0f766e;
  --tour-secondary: #0f172a;
  --ink: #0b1120;
  --ink-2: #475569;
  --ink-3: #94a3b8;
  --line: #e6ebf2;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(11, 17, 32, .06);
  --shadow: 0 12px 32px rgba(11, 17, 32, .10);
  --shadow-lg: 0 24px 64px rgba(11, 17, 32, .22);
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.tour-body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--surface);
  line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0 0 .5rem; letter-spacing: -.022em; line-height: 1.15; font-weight: 650; }
.muted { color: var(--ink-2); margin: 0; }
:focus-visible { outline: 3px solid var(--tour-primary); outline-offset: 2px; border-radius: 6px; }

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

/* ---------------- Portada ---------------- */
.tour-cover {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: flex-end; color: #fff; overflow: hidden; padding: 0 0 clamp(64px, 12vh, 120px);
}
.tour-cover__bg {
  position: absolute; inset: -3%; background-size: cover; background-position: center;
  transform: scale(1.06); animation: coverIn 1.6s var(--ease) both;
}
@keyframes coverIn { from { transform: scale(1.14); opacity: .4; } to { transform: scale(1.06); opacity: 1; } }
.tour-cover__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(3, 7, 18, .92) 0%, rgba(3, 7, 18, .58) 42%, rgba(3, 7, 18, .22) 72%, rgba(3, 7, 18, .55) 100%);
}
.tour-cover__top {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: clamp(18px, 3vw, 32px) clamp(20px, 5vw, 64px);
  position: absolute; top: 0; left: 0; right: 0;
}
.brand { display: flex; align-items: center; gap: .7rem; min-width: 0; }
.brand__logo { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; background: rgba(255,255,255,.92); padding: 4px; }
.brand__name { font-weight: 650; letter-spacing: .02em; font-size: .98rem; }
.pill {
  display: inline-flex; align-items: center; padding: .3rem .7rem; border-radius: 999px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  font-size: .76rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; backdrop-filter: blur(8px);
}
.pill--warn { background: #fef3c7; color: #92400e; border-color: #fcd34d; }

.tour-cover__content {
  position: relative; z-index: 2; padding: 0 clamp(20px, 5vw, 64px); max-width: 780px;
  animation: riseIn .9s var(--ease) .15s both;
}
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.tour-cover__eyebrow {
  margin: 0 0 .6rem; font-size: .82rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.78);
}
.tour-cover__title { font-size: clamp(2rem, 5.6vw, 3.6rem); font-weight: 700; margin: 0 0 .5rem; text-wrap: balance; }
.tour-cover__subtitle { margin: 0 0 .8rem; font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.85); }
.tour-cover__price { margin: .6rem 0 .2rem; font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700; letter-spacing: -.02em; }
.tour-cover__location { display: flex; align-items: center; gap: .4rem; margin: 0 0 1.2rem; color: rgba(255,255,255,.86); font-size: 1rem; }
.tour-cover__specs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.8rem; }
.tour-cover__specs span {
  padding: .42rem .85rem; border-radius: 999px; font-size: .88rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(10px);
}
.tour-cover__specs strong { font-weight: 700; }
.tour-cover__hint { margin: .85rem 0 0; font-size: .85rem; color: rgba(255,255,255,.66); }

.btn-hero {
  display: inline-flex; align-items: center; gap: .6rem; border: 0; border-radius: 999px;
  padding: 1rem 2rem; font-size: 1.02rem; font-weight: 650; color: #fff;
  background: var(--tour-primary); box-shadow: 0 12px 32px rgba(0,0,0,.32);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), filter .2s;
}
.btn-hero:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 18px 40px rgba(0,0,0,.38); }
.btn-hero:active { transform: translateY(0); }
.btn-hero--sm { padding: .7rem 1.3rem; font-size: .92rem; }

.tour-cover__scroll {
  position: absolute; z-index: 2; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center;
  backdrop-filter: blur(8px); animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ---------------- Visor ---------------- */
.viewer {
  position: fixed; inset: 0; z-index: 90; background: #05070d; color: #fff;
  animation: fadeIn .32s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.viewer[hidden] { display: none; }
.viewer__stage { position: absolute; inset: 0; overflow: hidden; touch-action: pan-y; }
.viewer__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity var(--tms, 700ms) var(--ease), transform var(--tms, 700ms) var(--ease);
  will-change: opacity, transform;
}
.viewer__img.is-active { opacity: 1; }
.viewer__img.fx-zoom { transform: scale(1.08); }
.viewer__img.fx-zoom.is-active { transform: scale(1); }
.viewer__img.fx-slide { transform: translateX(6%); }
.viewer__img.fx-slide.is-active { transform: none; }
.viewer__img.fx-pan { transform: scale(1.12) translateX(-2%); }
.viewer__img.fx-pan.is-active { transform: scale(1.04) translateX(1%); transition-duration: calc(var(--tms, 700ms) * 4); }
.viewer__img.fx-cinematic { transform: scale(1.14) translateY(2%); filter: brightness(.7); }
.viewer__img.fx-cinematic.is-active { transform: scale(1.02); filter: brightness(1); transition-duration: calc(var(--tms, 700ms) * 2); }

.viewer__hotspots { position: absolute; inset: 0; pointer-events: none; }
.hotspot {
  position: absolute; transform: translate(-50%, -50%); pointer-events: auto;
  display: flex; align-items: center; gap: .45rem; padding: .5rem .9rem .5rem .55rem;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.34); color: #fff;
  background: rgba(9, 14, 26, .52); backdrop-filter: blur(12px);
  font-size: .88rem; font-weight: 600; white-space: nowrap;
  animation: hsIn .5s var(--ease) both;
  transition: transform .2s var(--ease), background .2s;
}
.hotspot:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--tour-primary); }
.hotspot__dot {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: var(--tour-primary); box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.45); } 70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
@keyframes hsIn { from { opacity: 0; transform: translate(-50%, -35%) scale(.85); } to { opacity: 1; } }
.hotspot--info .hotspot__dot { background: #f59e0b; }

.viewer__loader { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(5,7,13,.55); }
.spinner {
  width: 34px; height: 34px; border-radius: 50%; display: block;
  border: 3px solid rgba(255,255,255,.22); border-top-color: #fff; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.viewer__chrome { position: absolute; inset: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.viewer__chrome > * { pointer-events: auto; }
.viewer.is-immersive .viewer__chrome { opacity: 0; }
.viewer.is-immersive .viewer__chrome:focus-within { opacity: 1; }

.viewer__top {
  position: absolute; top: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem clamp(14px, 3vw, 28px);
  background: linear-gradient(to bottom, rgba(3,7,18,.78), transparent);
}
.brand--sm .brand__logo { width: 32px; height: 32px; }
.brand__meta { display: flex; flex-direction: column; min-width: 0; }
.brand__title { font-weight: 650; font-size: .96rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 46vw; }
.brand__sub { font-size: .8rem; color: rgba(255,255,255,.72); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 46vw; }
.viewer__actions { display: flex; gap: .4rem; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none;
  border: 1px solid rgba(255,255,255,.2); background: rgba(9,14,26,.48); color: #fff;
  backdrop-filter: blur(10px); transition: background .18s, transform .18s var(--ease);
}
.icon-btn:hover { background: var(--tour-primary); transform: translateY(-1px); }
.icon-btn--close:hover { background: #dc2626; }

.nav-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2); background: rgba(9,14,26,.42); color: #fff;
  backdrop-filter: blur(10px); transition: background .18s, transform .2s var(--ease); opacity: .9;
}
.nav-arrow:hover { background: var(--tour-primary); }
.nav-arrow--prev { left: clamp(10px, 2vw, 26px); }
.nav-arrow--next { right: clamp(10px, 2vw, 26px); }
.nav-arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.nav-arrow--next:hover { transform: translateY(-50%) translateX(3px); }

.viewer__bottom {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem clamp(14px, 3vw, 28px) 1.1rem;
  background: linear-gradient(to top, rgba(3,7,18,.88), transparent);
  display: flex; flex-direction: column; gap: .8rem;
}
.scene-info { display: flex; align-items: baseline; gap: .6rem; }
.scene-info__room { font-size: 1.05rem; font-weight: 650; }
.scene-info__count { font-size: .82rem; color: rgba(255,255,255,.66); }

.room-map { display: flex; gap: .45rem; overflow-x: auto; padding-bottom: .3rem; scrollbar-width: none; }
.room-map::-webkit-scrollbar { display: none; }
.room-chip {
  display: inline-flex; align-items: center; gap: .4rem; padding: .48rem .9rem; border-radius: 999px; flex: none;
  border: 1px solid rgba(255,255,255,.2); background: rgba(9,14,26,.46); color: #fff;
  font-size: .86rem; font-weight: 550; backdrop-filter: blur(10px);
  transition: background .18s, border-color .18s, transform .18s var(--ease);
}
.room-chip:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.42); }
.room-chip.is-active { background: var(--tour-primary); border-color: transparent; }
.room-chip__count { font-size: .74rem; opacity: .7; }

.viewer__controls { display: flex; align-items: center; justify-content: space-between; gap: .7rem; }
.cta-group { display: flex; gap: .5rem; }
.cta {
  display: inline-flex; align-items: center; gap: .45rem; padding: .62rem 1.15rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(9,14,26,.5); color: #fff;
  font-size: .9rem; font-weight: 620; backdrop-filter: blur(10px);
  transition: transform .18s var(--ease), filter .18s;
}
.cta:hover { transform: translateY(-2px); filter: brightness(1.1); }
.cta--wa { background: #25d366; border-color: transparent; color: #04310f; }
.cta--primary { background: var(--tour-primary); border-color: transparent; }

.side-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); z-index: 5;
  background: rgba(8, 12, 22, .92); backdrop-filter: blur(22px); color: #fff;
  padding: 4.4rem 1.6rem 1.6rem; overflow-y: auto; border-left: 1px solid rgba(255,255,255,.1);
  animation: slideIn .35s var(--ease);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
.side-panel[hidden] { display: none; }
.side-panel__close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; }
.side-panel__price { font-size: 1.5rem; font-weight: 700; margin: .2rem 0 .4rem; color: #fff; }
.side-panel .muted { color: rgba(255,255,255,.66); }
.side-panel__specs { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .1rem; }
.side-panel__specs li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .92rem; }
.side-panel__specs span { color: rgba(255,255,255,.62); }

/* ---------------- Detalles ---------------- */
.details { padding: clamp(48px, 8vw, 96px) 0 120px; background: var(--surface); }
.wrap { width: min(1120px, 92vw); margin-inline: auto; }
.details__head { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: flex-start; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.details__head .pill { background: var(--surface-2); border-color: var(--line); color: var(--tour-primary); backdrop-filter: none; }
.details__head h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin: .7rem 0 .3rem; }
.details__price { text-align: right; }
.details__price strong { display: block; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: -.02em; }
.details__price span { font-size: .86rem; color: var(--ink-2); }

.specs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: .8rem; margin: 2.2rem 0; }
.spec { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-2); }
.spec span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); margin-bottom: .25rem; }
.spec strong { font-size: 1.1rem; font-weight: 650; }

.features { margin: 2.6rem 0; }
.features h3, .prose h3, .gallery h3, .map-section h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.features ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .6rem; }
.features li { display: flex; align-items: center; gap: .55rem; padding: .7rem .9rem; border-radius: var(--radius-sm); background: var(--surface-2); border: 1px solid var(--line); font-size: .92rem; }

.prose { margin: 2.6rem 0; max-width: 74ch; }
.prose p { margin: 0 0 1rem; color: var(--ink-2); }
.prose ul, .prose ol { color: var(--ink-2); padding-left: 1.2rem; }
.prose strong { color: var(--ink); }

.gallery { margin: 2.6rem 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; }
.gallery__item {
  position: relative; padding: 0; border: 0; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; background: var(--surface-2); box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item span {
  position: absolute; left: .6rem; bottom: .6rem; padding: .3rem .7rem; border-radius: 999px;
  background: rgba(6,10,20,.62); color: #fff; font-size: .78rem; font-weight: 600; backdrop-filter: blur(8px);
}

.map-section { margin: 2.6rem 0; }
.map-frame { width: 100%; height: 380px; border: 1px solid var(--line); border-radius: var(--radius); margin-top: .8rem; }

.agent-card {
  margin: 3rem 0 0; display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: 2rem;
  padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2);
}
.agent-card__profile { display: flex; gap: 1rem; align-items: flex-start; }
.agent-card__profile img, .agent-card__avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex: none; }
.agent-card__avatar { display: grid; place-items: center; background: var(--tour-primary); color: #fff; font-size: 1.6rem; font-weight: 700; }
.agent-card__profile strong { display: block; font-size: 1.05rem; }
.agent-card__profile span { display: block; font-size: .88rem; color: var(--ink-2); }
.agent-card__links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.agent-card__links a { padding: .42rem .85rem; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: .84rem; font-weight: 600; transition: border-color .18s, color .18s; }
.agent-card__links a:hover { border-color: var(--tour-primary); color: var(--tour-primary); }

.lead-form { display: grid; gap: .8rem; }
.lead-form h3 { margin-bottom: .2rem; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.lead-form label { display: grid; gap: .3rem; font-size: .84rem; font-weight: 600; color: var(--ink-2); }
.lead-form input, .lead-form select, .lead-form textarea {
  padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  font-size: .94rem; font-weight: 400; color: var(--ink); transition: border-color .18s, box-shadow .18s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--tour-primary); box-shadow: 0 0 0 3px rgba(15,118,110,.14);
}
.lead-form textarea { resize: vertical; }
.form-msg { margin: 0; font-size: .88rem; min-height: 1.2em; }
.form-msg.is-ok { color: #15803d; }
.form-msg.is-error { color: #dc2626; }

.tour-footer { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .86rem; color: var(--ink-2); }
.tour-footer__social { display: flex; gap: 1rem; }
.tour-footer__social a:hover { color: var(--tour-primary); }

/* ---------------- Barra móvil ---------------- */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; gap: .5rem;
    padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line);
  }
  .mobile-bar__btn {
    flex: 1; text-align: center; padding: .8rem .4rem; border-radius: 12px; border: 1px solid var(--line);
    font-size: .9rem; font-weight: 650; background: var(--surface);
  }
  .mobile-bar__btn--main { background: var(--tour-primary); color: #fff; border-color: transparent; }
  .mobile-bar__btn--wa { background: #25d366; color: #04310f; border-color: transparent; }
  .details { padding-bottom: 140px; }
  .agent-card { grid-template-columns: 1fr; }
  .lead-form__row { grid-template-columns: 1fr; }
  .details__price { text-align: left; }
  .nav-arrow { width: 46px; height: 46px; }
  .viewer__bottom { padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .brand__title, .brand__sub { max-width: 40vw; }
}

/* ---------------- Modal compartir ---------------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1.2rem;
  background: rgba(5, 8, 16, .68); backdrop-filter: blur(6px); animation: fadeIn .22s var(--ease);
}
.modal-backdrop[hidden] { display: none; }
.modal {
  position: relative; width: min(440px, 100%); background: var(--surface); color: var(--ink);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-lg);
  animation: modalIn .3s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: .9rem; right: .9rem; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface-2); }
.share-url { display: flex; gap: .5rem; margin: 1rem 0; }
.share-url input { flex: 1; min-width: 0; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-2); font-size: .88rem; }
.share-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.share-btn { padding: .7rem; border-radius: 10px; border: 1px solid var(--line); background: var(--surface-2); font-size: .88rem; font-weight: 620; text-align: center; transition: border-color .18s, color .18s, transform .18s var(--ease); }
.share-btn:hover { border-color: var(--tour-primary); color: var(--tour-primary); transform: translateY(-2px); }
.share-qr { margin-top: 1.2rem; text-align: center; }
.share-qr img { margin-inline: auto; border-radius: 12px; border: 1px solid var(--line); }
.share-qr p { margin: .6rem 0 0; font-size: .84rem; color: var(--ink-2); }

/* ---------------- Toasts ---------------- */
.toasts { position: fixed; z-index: 200; bottom: 1.2rem; left: 50%; transform: translateX(-50%); display: grid; gap: .5rem; pointer-events: none; }
.toast {
  padding: .7rem 1.1rem; border-radius: 999px; background: rgba(11,17,32,.94); color: #fff;
  font-size: .88rem; font-weight: 600; box-shadow: var(--shadow); animation: toastIn .3s var(--ease);
}
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.toast--ok { background: #15803d; }
.toast--error { background: #b91c1c; }
