/* ==========================================================================
   sim.css — the Vebbl CONSUMER product surface, reproduced for marketing proof.
   --------------------------------------------------------------------------
   FIDELITY CONTRACT. Everything inside `.sim` follows the approved consumer UX
   (FCMA native implementation first, WCMA web second). Values below are the
   product's own tokens — do not "improve" them here. Marketing staging
   (device frame, spotlights, captions) lives OUTSIDE `.sim__screen`
   and is styled in the `.device` block at the bottom of this file.

   Demonstrated scope only: Feed → Tile → Expanded View → Smart Ratings.
   ========================================================================== */

.sim,
.vtokens {
  /* Product tokens (WCMA index.css / FCMA vebbl_palette.dart) */
  --v-base: #0f1620;
  --v-navy: #3e526a;
  --v-surf: #1a2432;
  --v-surf2: #232f3f;
  --v-surf3: #2b3a4d;
  --v-lite: #84afd0;
  --v-red: #d86455;
  --v-yellow: #fbd279;
  --v-cream: #fff4e6;
  --v-ink: #eaf0f6;
  --v-ink2: #b6c4d3;
  --v-muted: #7f92a6;
  --v-success: #1f8a5b;
  --v-line: rgba(255, 255, 255, 0.08);
  --v-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --v-radius-tile: 16px;
  --v-plate-pad: 2.5px;
  --v-plate-radius-inner: 13.5px;
  --v-plate-mount-fill: linear-gradient(150deg, #33455a 0%, #22303e 38%, #141d28 100%);
  --v-plate-shadow: 0 1px 2px rgba(4, 8, 14, 0.55), 0 14px 30px -12px rgba(4, 8, 14, 0.8);
  --v-plate-edge: inset 0 1.2px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  --v-plate-rim: inset 0 0 0 1px rgba(132, 175, 208, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  --ev-ground: #09101b;
  --ev-card: #111b27;
  --ev-hairline: #202c3c;
  --ev-accent: #45b3de;
  --ev-cream-ink: #1d2935;
  --sim-status-h: 44px;
}

.sim {
  position: relative;
  width: 390px;
  height: 844px;
  font-family: "GT Pressura", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--v-ink);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-align: left;
  letter-spacing: normal;
}
.sim *,
.sim *::before,
.sim *::after {
  box-sizing: border-box;
}
:where(.sim) button {
  /* zero-specificity reset so component rules below always win */
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sim img {
  display: block;
  max-width: none;
}
.sim svg {
  display: block;
  flex: none;
}

.sim__screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--v-base);
  isolation: isolate;
}

/* Device status bar (staging, not app UI) */
.sim__status {
  position: absolute;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  height: var(--sim-status-h);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 30px 8px 34px;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #fff;
  pointer-events: none;
}
.sim__status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sim--bare .sim__status {
  display: none;
}
.sim--bare {
  --sim-status-h: 12px;
}

/* ---------------- Feed ---------------- */
.sim-feed {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background-color: var(--v-base);
  background-image:
    linear-gradient(rgba(255, 244, 230, 0.03), rgba(255, 244, 230, 0.03)),
    radial-gradient(120% 60% at 25% 12%, rgba(132, 175, 208, 0.06), transparent 60%),
    radial-gradient(120% 55% at 85% 55%, rgba(216, 100, 85, 0.05), transparent 58%),
    radial-gradient(120% 60% at 50% 100%, rgba(251, 210, 121, 0.04), transparent 55%);
  background-attachment: local;
}
.sim-feed::-webkit-scrollbar {
  display: none;
}
.sim-feed__spacer {
  height: calc(var(--sim-status-h) + 118px);
}
.sim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 4px;
}
.sim-feed__end {
  height: 118px;
}

/* Top chrome: brand row + search pill */
.sim-top {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  padding-top: var(--sim-status-h);
  transition:
    transform 200ms cubic-bezier(0, 0, 0.2, 1),
    opacity 200ms cubic-bezier(0, 0, 0.2, 1),
    background 200ms ease;
}
.sim-top.is-scrolled {
  background: linear-gradient(180deg, rgba(33, 45, 60, 0.72), rgba(18, 26, 37, 0.72));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow:
    0 14px 34px -8px rgba(6, 10, 16, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.sim-top.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.sim-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 4px 0 16px;
}
.sim-brand img {
  height: 26px;
  width: auto;
}
.sim-bell {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v-ink);
  border-radius: 50%;
}
.sim-search {
  padding: 8px 12px;
}
.sim-search__pill {
  height: 46px;
  border-radius: 999px;
  padding: 0 6px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(43, 58, 77, 0.55), rgba(26, 36, 50, 0.55));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.sim-search__pill img {
  width: 22px;
  height: 22px;
}
.sim-search__ph {
  flex: 1;
  min-width: 0;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--v-muted);
  white-space: nowrap;
  overflow: hidden;
}
.sim-search__caret {
  display: inline-block;
  margin-left: 1px;
  animation: simCaret 1s step-end infinite;
}
@keyframes simCaret {
  50% {
    opacity: 0;
  }
}
.sim-search__mic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v-lite);
}

/* Bottom floating glass pill */
.sim-tabbar {
  position: absolute;
  z-index: 40;
  left: 14px;
  right: 14px;
  bottom: 28px;
  height: 62px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 6px;
  background: linear-gradient(180deg, rgba(33, 45, 60, 0.72), rgba(18, 26, 37, 0.72));
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow:
    0 14px 34px -8px rgba(6, 10, 16, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sim-tabbar.is-hidden {
  transform: translateY(calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
}
.sim-tab {
  width: 56px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--v-muted);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.02em;
  border-radius: 4px;
  cursor: default;
}
.sim-tab.is-active {
  color: var(--v-lite);
}
.sim-homebar {
  position: absolute;
  z-index: 70;
  left: 50%;
  bottom: 8px;
  width: 134px;
  height: 5px;
  margin-left: -67px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.85);
  pointer-events: none;
}
.sim--bare .sim-homebar {
  display: none;
}

/* ---------------- The Tile — Mounted Plate v3.1 ---------------- */
.vtile {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: var(--v-radius-tile);
  padding: var(--v-plate-pad);
  background: var(--v-plate-mount-fill);
  box-shadow: var(--v-plate-shadow), var(--v-plate-edge);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 420ms var(--v-ease),
    transform 420ms var(--v-ease),
    box-shadow 220ms var(--v-ease),
    filter 120ms ease-out;
  cursor: pointer;
  text-align: left;
  font-family: "GT Pressura", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--v-cream, #fff4e6);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.vtile.is-entered {
  opacity: 1;
  transform: translateY(0);
}
.vtile--small {
  grid-column: span 1;
  aspect-ratio: 2 / 3;
}
.vtile--medium {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}
.vtile--large {
  grid-column: span 2;
  aspect-ratio: 2 / 3;
}
.vtile.is-pressed {
  transform: scale(0.965);
  filter: brightness(0.93);
  transition:
    transform 120ms var(--v-ease),
    filter 120ms ease-out;
}
.vtile.is-activating {
  z-index: 1;
  transform: scale(1.02);
  filter: brightness(1.03) saturate(1.04);
  box-shadow:
    0 1px 2px rgba(4, 8, 14, 0.55),
    0 18px 40px -8px rgba(6, 10, 16, 0.72),
    var(--v-plate-edge),
    0 0 0 2px #84afd0,
    0 0 0 10px rgba(132, 175, 208, 0.22);
  transition:
    transform 140ms var(--v-ease),
    box-shadow 140ms var(--v-ease),
    filter 140ms ease-out;
}
.vtile:focus-visible {
  outline: none;
  box-shadow:
    var(--v-plate-shadow),
    var(--v-plate-edge),
    0 0 0 2px #84afd0,
    0 0 0 8px rgba(132, 175, 208, 0.28);
}
.vtile__plate {
  position: absolute;
  inset: var(--v-plate-pad);
  border-radius: var(--v-plate-radius-inner);
  overflow: hidden;
  background: #1a2432;
}
.vtile__plate::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: var(--v-plate-rim);
  pointer-events: none;
  z-index: 5;
}
.vtile__img {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  transform: translateY(-1px);
  opacity: 0;
  transition: opacity 1000ms ease-in-out;
  pointer-events: none;
  -webkit-user-drag: none;
}
.vtile__img.is-current {
  opacity: 1;
}
.vtile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 22, 0.9), rgba(10, 15, 22, 0.15) 52%, transparent 72%);
  pointer-events: none;
}
.vtile__settle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: linear-gradient(to top, rgba(19, 27, 38, 0.32), transparent);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.vtile__save {
  position: absolute;
  z-index: 6;
  top: 3px;
  right: 3px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.vtile__save i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 22, 32, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #fff4e6;
}
.vtile__save[aria-pressed="true"] i {
  background: rgba(15, 22, 32, 0.72);
  color: #84afd0;
}
.vtile__save[aria-pressed="true"] svg {
  fill: #84afd0;
}
.vtile__cap {
  position: absolute;
  z-index: 4;
  left: 12px;
  right: 12px;
  bottom: 11px;
  pointer-events: none;
}
.vtile__name {
  display: block;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #fff4e6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 1px;
}
.vtile__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.vtile__cat {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255, 244, 230, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.vtile__cluster {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}
.vtile__sig {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255, 244, 230, 0.86);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.vtile__sig[hidden] {
  display: none;
}
.vtile__sig img {
  width: 11px;
  height: 11px;
}
.vtile__dist {
  font-size: 11px;
  font-weight: 400;
  color: #fff4e6;
  background: rgba(15, 22, 32, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 3px 8px;
  box-shadow: inset 0 0 0 1px rgba(132, 175, 208, 0.24);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .vtile {
    opacity: 1;
    transform: none;
    transition: box-shadow 220ms ease;
  }
  .vtile.is-pressed,
  .vtile.is-activating {
    transform: none;
  }
  .vtile__img {
    transition: none;
  }
}

/* ---------------- Expanded View ---------------- */
.sim-ev {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: var(--ev-ground);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  overscroll-behavior: contain;
  opacity: 0;
  transform: scale(0.94);
  visibility: hidden;
  transition:
    opacity 300ms var(--v-ease),
    transform 300ms var(--v-ease),
    visibility 0s linear 300ms;
}
.sim-ev::-webkit-scrollbar {
  display: none;
}
.sim-ev.is-open {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition:
    opacity 300ms var(--v-ease),
    transform 300ms var(--v-ease);
}
@media (prefers-reduced-motion: reduce) {
  .sim-ev,
  .sim-ev.is-open {
    transition: none;
    transform: none;
  }
}
.ev-back {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 0;
  pointer-events: none;
}
.ev-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--sim-status-h) + 76px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.14) 55%, rgba(0, 0, 0, 0) 100%);
}
.ev-back button {
  position: absolute;
  top: calc(var(--sim-status-h) + 8px);
  left: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}
.ev-hero {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111b27;
}
.ev-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease-in-out;
}
.ev-hero img.is-current {
  opacity: 1;
}
.ev-hero__scrim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 86%;
  z-index: 5;
  background: linear-gradient(
    to top,
    #09101b 0%,
    #0c1522 14%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.14) 66%,
    rgba(0, 0, 0, 0) 100%
  );
}
.ev-hero__dots {
  position: absolute;
  z-index: 6;
  top: calc(var(--sim-status-h) + 12px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.ev-hero__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 200ms ease;
}
.ev-hero__dots i.is-on {
  width: 8px;
  height: 8px;
  background: #fff;
}
.ev-id {
  position: absolute;
  z-index: 6;
  left: 16px;
  right: 16px;
  bottom: 24px;
}
.ev-id h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ev-id p {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.ev-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  color: #fff;
}
.ev-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

/* Docked action shelf */
.ev-shelf {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 16px 8px 12px;
  background: linear-gradient(to bottom, #09101b 0%, #0d1521 100%);
  border-bottom: 1px solid var(--ev-hairline);
}
.ev-act {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 8px 2px 6px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  transition: transform 110ms var(--v-ease);
}
.ev-act:active {
  transform: scale(0.97);
}
.ev-act svg {
  transition: color 160ms ease, fill 160ms ease;
}
.ev-act__label {
  min-height: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.78);
}
.ev-act[aria-pressed="true"] {
  color: var(--ev-accent);
}
.ev-act[aria-pressed="true"] svg {
  fill: var(--ev-accent);
}
.ev-act[aria-pressed="true"] .ev-act__label {
  color: var(--ev-accent);
  font-weight: 400;
}
.ev-act--signal .ev-act__label {
  color: #fff;
  font-weight: 400;
  max-width: 72px;
}
.ev-signal {
  position: relative;
  width: 52px;
  height: 52px;
  transition: transform 180ms ease-out;
}
.ev-signal img {
  width: 52px;
  height: 52px;
}
.ev-signal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--v-lite);
  opacity: 0;
  animation: evPing 2.6s ease-out infinite;
}
.ev-act--signal[aria-pressed="true"] .ev-signal {
  transform: scale(1.04);
}
.ev-act--signal[aria-pressed="true"] .ev-signal::after {
  animation: none;
}
@keyframes evPing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ev-signal::after {
    animation: none;
  }
}

.ev-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 4px 28px;
}

/* Quick details — cream card */
.ev-quick {
  margin: 4px 10px 0;
  background: #fff4e6;
  color: var(--ev-cream-ink);
  border-radius: 20px;
  box-shadow: 0 10px 28px -12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.ev-row {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 15px;
  line-height: 1.35;
  color: var(--ev-cream-ink);
  text-align: left;
}
.sim .ev-row {
  color: var(--ev-cream-ink);
}
.ev-row:last-child {
  border-bottom: 0;
}
.ev-row:active {
  background: rgba(0, 0, 0, 0.04);
}
.ev-row > svg:first-child {
  color: rgba(29, 41, 53, 0.55);
}
.ev-row__txt {
  flex: 1;
  min-width: 0;
}
.ev-row__txt small {
  font-size: inherit;
  opacity: 0.85;
}
.ev-row__chev {
  color: rgba(29, 41, 53, 0.5);
  transition: transform 180ms ease-in-out;
}
.ev-row[aria-expanded="true"] .ev-row__chev {
  transform: rotate(90deg);
}
.ev-hours {
  display: none;
  padding: 0 20px 14px 54px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  color: var(--ev-cream-ink);
}
.ev-hours.is-open {
  display: block;
}
.ev-hours div {
  display: flex;
  justify-content: space-between;
  min-height: 28px;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid transparent;
  opacity: 0.85;
}
.ev-hours div.is-today {
  border-left-color: var(--ev-accent);
  opacity: 1;
}
.ev-hours div span:last-child {
  color: rgba(29, 41, 53, 0.78);
}
.ev-hours p {
  margin: 8px 0 0;
  font-size: 11px;
  color: rgba(29, 41, 53, 0.6);
}

/* Section cards */
.ev-card {
  background: var(--ev-card);
  border: 1px solid var(--ev-hairline);
  border-radius: 4px;
}
.ev-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 0;
}
.ev-h {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
}
.ev-posters {
  display: flex;
  gap: 12px;
  padding: 12px 16px 14px;
}
.ev-poster {
  flex: 0 0 calc((100% - 24px) / 3);
  padding: 2.5px;
  border-radius: 10px;
  background: linear-gradient(150deg, #33455a 0%, #22303e 38%, #141d28 100%);
  box-shadow:
    0 2px 5px rgba(4, 8, 14, 0.5),
    0 18px 36px -18px rgba(4, 8, 14, 0.86);
}
.ev-poster__win {
  position: relative;
  aspect-ratio: 5 / 7;
  border-radius: 7.5px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #09101b;
}

/* Accordion */
.ev-acc__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ev-acc__item:last-child {
  border-bottom: 0;
}
.ev-acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: left;
}
.sim .ev-acc__btn {
  color: #fff;
}
.ev-acc__btn svg {
  color: rgba(255, 255, 255, 0.6);
  transition: transform 200ms ease;
}
.ev-acc__btn[aria-expanded="true"] svg {
  transform: rotate(90deg);
}
.ev-acc__body {
  display: none;
  padding: 0 16px 16px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
}
.ev-acc__body.is-open {
  display: block;
}

/* Smart Ratings aggregate card */
.ev-sr {
  background: var(--v-surf);
  border: 1px solid var(--v-line);
  border-radius: 16px;
  padding: 16px;
}
.ev-sr__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}
.ev-sr__head svg {
  color: rgba(255, 255, 255, 0.7);
}
.ev-sr__sub {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.ev-sr__collect {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.ev-sr__score {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ev-sr__score b {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}
.ev-sr__score span {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}
.trophies {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.25);
}
.trophies .is-on {
  color: #84afd0;
  fill: #84afd0;
}
.ev-sr__ailabel {
  margin: 10px 0 4px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
}
.ev-sr__ai {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.ev-sr__dim {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}
.ev-sr__help {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ev-sr__help h4 {
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}
.ev-sr__help h4 svg {
  color: #84afd0;
}
.ev-sr__help p {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}
.ev-sr__help p.is-prog {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.ev-sr__cta {
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  background: #84afd0;
  color: #fff;
  box-shadow:
    0 8px 22px rgba(132, 175, 208, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.sim .ev-sr__cta {
  background: #84afd0;
  color: #fff;
}
.sim .ev-sr__cta.is-cooldown {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* Similar nearby */
.ev-sim {
  padding: 12px 0 14px;
}
.ev-sim .ev-h {
  padding: 0 16px 10px;
}
.ev-sim__row {
  display: flex;
  gap: 12px;
  padding: 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ev-sim__row::-webkit-scrollbar {
  display: none;
}
.ev-sim__card {
  flex: 0 0 120px;
}
.ev-sim__img {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(62, 82, 106, 0.08);
}
.ev-sim__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ev-sim__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 40, 55, 0.82), transparent 58%);
}
.ev-sim__img span {
  position: absolute;
  z-index: 1;
  left: 8px;
  right: 8px;
  bottom: 8px;
  font-size: 13px;
  line-height: 1.2;
  color: #fff;
}
.ev-sim__card small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------------- Scrim / celebration modal / rating sheet ---------------- */
.sim-scrim {
  position: absolute;
  inset: 0;
  z-index: 80;
  background: rgba(10, 15, 22, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 0s linear 200ms;
}
.sim-scrim.is-on {
  opacity: 1;
  visibility: visible;
  transition: opacity 200ms ease;
}
.sim-modal {
  position: absolute;
  z-index: 90;
  left: 50%;
  top: 46%;
  width: 328px;
  max-width: calc(100% - 32px);
  min-height: 200px;
  padding: 58px 32px 32px;
  border-radius: 20px;
  background: #fff4e6;
  color: var(--ev-cream-ink);
  text-align: center;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 4px 16px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.92) translateY(6px);
  transition:
    opacity 180ms var(--v-ease),
    transform 180ms var(--v-ease),
    visibility 0s linear 180ms;
}
.sim-modal.is-on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms var(--v-ease),
    transform 180ms var(--v-ease);
}
.sim-modal__icon {
  position: absolute;
  left: 50%;
  top: -44px;
  width: 84px;
  height: 84px;
  margin-left: -42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4e6;
  color: #3e526a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.sim-modal__icon img {
  width: 84px;
  height: 84px;
}
.sim-modal__icon.is-halo {
  box-shadow:
    0 0 0 8px rgba(132, 175, 208, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.35);
}
.sim-modal__burst {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(132, 175, 208, 0.72);
  opacity: 0;
  pointer-events: none;
}
.sim-modal.is-on .sim-modal__burst {
  animation: simBurst 900ms var(--v-ease) 120ms both;
}
.sim-modal.is-on .sim-modal__burst:nth-child(2) {
  animation-delay: 240ms;
  border-width: 2px;
}
.sim-modal.is-on .sim-modal__burst:nth-child(3) {
  animation-delay: 360ms;
  border-width: 1.5px;
}
@keyframes simBurst {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.sim-modal h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ev-cream-ink);
}
.sim-modal p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(29, 41, 53, 0.8);
}

.sim-sheet {
  position: absolute;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  background: #fff4e6;
  color: #0f1620;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -20px 50px -10px rgba(6, 10, 16, 0.6);
  transform: translateY(102%);
  visibility: hidden;
  transition:
    transform 380ms var(--v-ease),
    visibility 0s linear 380ms;
}
.sim-sheet.is-on {
  transform: none;
  visibility: visible;
  transition: transform 380ms var(--v-ease);
}
.sr-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 12px 12px 20px;
  border-bottom: 1px solid rgba(15, 22, 32, 0.08);
  color: #3e526a;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.sr-head__dots {
  margin-left: auto;
  display: flex;
  gap: 6px;
  align-items: center;
}
.sr-head__dots i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 22, 32, 0.14);
  transition: background 260ms ease;
}
.sr-head__dots i.is-done {
  background: #3e526a;
}
.sr-head__dots i.is-now {
  background: rgba(62, 82, 106, 0.45);
}
.sr-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.sim .sr-close {
  color: rgba(15, 22, 32, 0.62);
}
.sr-body {
  min-height: 260px;
  padding: 24px 20px;
  overflow-y: auto;
}
.sr-q {
  animation: srIn 260ms var(--v-ease) both;
}
@keyframes srIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}
.sr-q__eyebrow {
  margin: 0 0 6px 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 22, 32, 0.5);
}
.sr-q__ask {
  width: 86%;
  margin: 0 0 16px;
  padding: 11px 15px;
  border-radius: 18px 18px 18px 5px;
  background: rgba(62, 82, 106, 0.07);
  box-shadow: inset 0 0 0 1px rgba(15, 22, 32, 0.08);
  font-size: 16px;
  line-height: 1.35;
  color: #0f1620;
}
.sr-chips {
  display: flex;
  gap: 6px;
}
.sr-chip {
  flex: 1 1 0;
  min-width: 0;
  min-height: 62px;
  padding: 10px 4px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(15, 22, 32, 0.03);
  border: 1px solid rgba(15, 22, 32, 0.08);
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 120ms var(--v-ease), background 160ms ease, border-color 160ms ease;
}
.sim .sr-chip {
  color: rgba(15, 22, 32, 0.62);
  background: rgba(15, 22, 32, 0.03);
  border: 1px solid rgba(15, 22, 32, 0.08);
}
.sr-chip:active {
  transform: scale(0.95);
}
.sim .sr-chip[aria-checked="true"] {
  color: #0f1620;
  font-weight: 400;
  background: var(--tint);
  border-color: var(--ring);
}
.sr-done {
  text-align: center;
  animation: srIn 260ms var(--v-ease) both;
}
.sr-done__ring {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(132, 175, 208, 0.14);
  border: 2px solid rgba(132, 175, 208, 0.45);
}
.sr-done__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-size: 40px;
  line-height: 1;
  color: #0f1620;
}
.sr-done__score small {
  font-size: 15px;
  font-weight: 300;
  color: rgba(15, 22, 32, 0.5);
}
.sr-done h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #0f1620;
}
.sr-done p {
  margin: 0 0 20px;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(15, 22, 32, 0.62);
}
.sim .sr-done__btn {
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 8px;
  background: #84afd0;
  color: #0f1620;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(62, 82, 106, 0.18);
}
.sr-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px 16px;
  border-top: 1px solid rgba(15, 22, 32, 0.08);
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(15, 22, 32, 0.5);
}

/* Snackbar (FCMA: surface #1A2432, 14/400 ink, radius 12) */
.sim-snack {
  position: absolute;
  z-index: 95;
  left: 16px;
  right: 16px;
  bottom: 104px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #1a2432;
  color: #eaf0f6;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 12px 28px -6px rgba(6, 10, 16, 0.6);
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity 200ms ease,
    transform 300ms var(--v-ease),
    visibility 0s linear 300ms;
}
.sim-snack.is-on {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition:
    opacity 200ms ease,
    transform 300ms var(--v-ease);
}

/* Illustrative poster art (business-made content inside the product's poster frame) */
.pst {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 9% 8%;
  font-family: "GT Pressura", sans-serif;
  line-height: 1;
  overflow: hidden;
}
.pst b {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.pst small {
  font-size: 7.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pst i {
  font-style: normal;
  font-size: 8px;
  line-height: 1.25;
  font-weight: 300;
}

/* ==========================================================================
   MARKETING STAGING — device frame, scaling, spotlight. Not product UI.
   ========================================================================== */
.device {
  --device-scale: 1;
  position: relative;
  width: calc(414px * var(--device-scale));
  height: calc(868px * var(--device-scale));
  flex: none;
}
.device__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 414px;
  height: 868px;
  padding: 12px;
  border-radius: 64px;
  background: linear-gradient(145deg, #2a3648 0%, #0b111c 45%, #1b2535 100%);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.16),
    inset 0 0 0 5px #05080f,
    0 50px 90px -30px rgba(6, 11, 24, 0.75),
    0 30px 50px -30px rgba(6, 11, 24, 0.6);
  transform: scale(var(--device-scale));
  transform-origin: top left;
}
.device__body .sim {
  border-radius: 52px;
  overflow: hidden;
}
.device__body .sim__screen {
  border-radius: 52px;
}
.device__island {
  position: absolute;
  z-index: 100;
  top: 23px;
  left: 50%;
  width: 118px;
  height: 34px;
  margin-left: -59px;
  border-radius: 20px;
  background: #000;
  pointer-events: none;
}
.spot {
  position: absolute;
  z-index: 120;
  border-radius: 20px;
  pointer-events: none;
  box-shadow:
    0 0 0 2.5px var(--v-red, #d86455),
    0 0 0 9px rgba(216, 100, 85, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.spot.is-on {
  opacity: 1;
  animation: spotPulse 2.2s ease-in-out infinite;
}
@keyframes spotPulse {
  50% {
    box-shadow:
      0 0 0 2.5px #d86455,
      0 0 0 16px rgba(216, 100, 85, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .spot.is-on {
    animation: none;
  }
}
