/* ==========================================================================
   Apple-style Innovations
   1. Spotlight command palette  (#spotlight + .spotlight-*)
   2. Dynamic Island context pill (#dynamic-island + .dynamic-island-*)
   3. Journey map section         (.journey-section)
   4. Activity Rings dashboard    (.rings-section)
   ========================================================================== */

/* ---------- 1. Spotlight trigger in the header ---------- */
.spotlight-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px 0 10px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}
.site-header.scrolled .spotlight-trigger {
  background: var(--header-control-bg);
}
.spotlight-trigger:hover {
  background: rgba(255, 255, 255, 0.22);
}
.site-header.scrolled .spotlight-trigger:hover {
  background: var(--header-control-hover);
}
.spotlight-trigger:active {
  transform: scale(0.96);
}
.spotlight-trigger-icon {
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='7' cy='7' r='5' fill='none' stroke='black' stroke-width='1.5'/><line x1='11' y1='11' x2='14' y2='14' stroke='black' stroke-width='1.5' stroke-linecap='round'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='7' cy='7' r='5' fill='none' stroke='black' stroke-width='1.5'/><line x1='11' y1='11' x2='14' y2='14' stroke='black' stroke-width='1.5' stroke-linecap='round'/></svg>") center / contain no-repeat;
  opacity: 0.85;
}
.spotlight-trigger-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  min-width: 30px;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
}
.site-header.scrolled .spotlight-trigger-kbd {
  background: var(--header-control-hover);
}
@media (max-width: 820px) {
  .spotlight-trigger-kbd { display: none; }
  .spotlight-trigger { padding: 0 10px; }
}

/* ---------- 1b. Spotlight modal overlay ---------- */
.spotlight {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 16px 16px;
  pointer-events: none;
}
.spotlight[hidden] { display: none; }
.spotlight-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: var(--glass-filter-sm);
  -webkit-backdrop-filter: var(--glass-filter-sm);
  opacity: 0;
  transition: opacity 220ms var(--ease);
  pointer-events: auto;
}
.spotlight.is-open .spotlight-scrim { opacity: 1; }
html[data-theme="dark"] .spotlight-scrim { background: rgba(0, 0, 0, 0.6); }

.spotlight-window {
  position: relative;
  width: min(640px, 100%);
  max-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.22);
  border: var(--glass-border-light);
  box-shadow:
    var(--glass-inner-glow),
    0 28px 80px rgba(0, 0, 0, 0.28),
    0 6px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.97) translateY(-6px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  pointer-events: auto;
  color: var(--ink);
}
.spotlight-window::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 50%;
  border-radius: inherit;
  background: var(--glass-highlight-gradient);
  pointer-events: none;
}
@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .spotlight-window {
    backdrop-filter: var(--glass-filter-modal);
    -webkit-backdrop-filter: var(--glass-filter-modal);
  }
}
.spotlight.is-open .spotlight-window {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.spotlight-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--menu-divider);
}
.spotlight-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  opacity: 0.55;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='7' cy='7' r='5' fill='none' stroke='black' stroke-width='1.5'/><line x1='11' y1='11' x2='14' y2='14' stroke='black' stroke-width='1.5' stroke-linecap='round'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='7' cy='7' r='5' fill='none' stroke='black' stroke-width='1.5'/><line x1='11' y1='11' x2='14' y2='14' stroke='black' stroke-width='1.5' stroke-linecap='round'/></svg>") center / contain no-repeat;
}
.spotlight-input {
  flex: 1;
  min-width: 0;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  outline: none;
}
.spotlight-input::placeholder { color: var(--muted); }
.spotlight-kbd kbd,
.spotlight-foot kbd,
.dynamic-island-shortcut kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 6px;
  background: var(--pill-surface);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.spotlight-results {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  scroll-behavior: smooth;
}
.spotlight-results::-webkit-scrollbar { width: 8px; }
.spotlight-results::-webkit-scrollbar-thumb {
  background: rgba(125, 125, 125, 0.3);
  border-radius: 4px;
}

.spotlight-group {
  padding: 10px 12px 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.spotlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 2px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 140ms var(--ease), transform 140ms var(--ease);
}
.spotlight-item.is-active,
.spotlight-item:focus-visible {
  background: var(--blue-soft);
  outline: none;
}
.spotlight-item.is-active .spotlight-item-arrow { opacity: 1; }
.spotlight-item:active { transform: scale(0.985); }

.spotlight-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--pill-surface);
  color: var(--ink);
  position: relative;
}
.spotlight-item-icon::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.spotlight-icon-video::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1.5' y='3.5' width='10' height='9' rx='2' fill='none' stroke='black' stroke-width='1.5'/><path d='M11.5 7 14 5v6l-2.5-2z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1.5' y='3.5' width='10' height='9' rx='2' fill='none' stroke='black' stroke-width='1.5'/><path d='M11.5 7 14 5v6l-2.5-2z' fill='black'/></svg>");
}
.spotlight-icon-section::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='2' y='2.5' width='12' height='2.5' rx='1' fill='black'/><rect x='2' y='6.75' width='12' height='2.5' rx='1' fill='black' opacity='0.6'/><rect x='2' y='11' width='8' height='2.5' rx='1' fill='black' opacity='0.35'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='2' y='2.5' width='12' height='2.5' rx='1' fill='black'/><rect x='2' y='6.75' width='12' height='2.5' rx='1' fill='black' opacity='0.6'/><rect x='2' y='11' width='8' height='2.5' rx='1' fill='black' opacity='0.35'/></svg>");
}
.spotlight-icon-action::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1 9.5 5.5 14 7l-4.5 1.5L8 13 6.5 8.5 2 7l4.5-1.5z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1 9.5 5.5 14 7l-4.5 1.5L8 13 6.5 8.5 2 7l4.5-1.5z' fill='black'/></svg>");
}
.spotlight-icon-channel::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='6' fill='none' stroke='black' stroke-width='1.5'/><path d='M2 8h12M8 2c2 2 2 10 0 12M8 2c-2 2-2 10 0 12' fill='none' stroke='black' stroke-width='1.2'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='6' fill='none' stroke='black' stroke-width='1.5'/><path d='M2 8h12M8 2c2 2 2 10 0 12M8 2c-2 2-2 10 0 12' fill='none' stroke='black' stroke-width='1.2'/></svg>");
}

.spotlight-item-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.spotlight-item-title {
  font-size: 14.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spotlight-item-title mark {
  background: transparent;
  color: var(--blue);
  font-weight: 600;
}
.spotlight-item-sub {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.spotlight-item-arrow {
  font-size: 12px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 160ms ease;
}

.spotlight-empty {
  padding: 28px 20px;
  text-align: center;
}
.spotlight-empty p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}
.spotlight-empty span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.spotlight-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  border-top: 1px solid var(--menu-divider);
  font-size: 11.5px;
  color: var(--muted);
}
.spotlight-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- 2. Dynamic Island ---------- */
.dynamic-island {
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease), transform 320ms var(--ease-spring);
}
.dynamic-island[hidden] { display: none; }
.dynamic-island[data-state="visible"],
.dynamic-island[data-state="flash"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dynamic-island[data-state="flash"] .dynamic-island-inner {
  border-color: color-mix(in srgb, var(--island-accent) 38%, var(--island-line));
  box-shadow: 0 0 0 3px var(--island-accent-soft);
}

.dynamic-island-inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 36px;
  max-width: calc(100vw - 32px);
  padding: 3px 7px 3px 9px;
  border: var(--glass-border-medium);
  border-radius: 999px;
  background: var(--glass-bg-medium);
  color: var(--island-text);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--glass-inner-glow), var(--island-shadow);
  transition: transform 220ms var(--ease-spring), border-color 220ms ease, box-shadow 260ms var(--ease), background 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

@supports (backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px)) {
  .dynamic-island-inner {
    backdrop-filter: var(--glass-filter-lg);
    -webkit-backdrop-filter: var(--glass-filter-lg);
  }
}

.dynamic-island-inner::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: var(--glass-highlight-gradient);
  opacity: 0.72;
  pointer-events: none;
}

.dynamic-island-inner::after {
  content: none;
}
.dynamic-island-inner:hover {
  border-color: color-mix(in srgb, var(--island-accent) 24%, var(--island-line));
  transform: scale(1.02);
  box-shadow: var(--island-shadow);
}
.dynamic-island-inner:active {
  transform: scale(0.98);
}
.dynamic-island[data-state="flash"] .dynamic-island-inner::after {
  content: none;
}

.dynamic-island-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--island-accent-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--island-accent) 24%, transparent);
  flex-shrink: 0;
}
.dynamic-island-dot::before,
.dynamic-island-dot::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}
.dynamic-island-dot::before {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--island-accent), #34c759);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--island-accent) 12%, transparent);
}
.dynamic-island-dot::after {
  inset: 3px;
  border: 1px solid color-mix(in srgb, var(--island-accent) 42%, transparent);
  animation: islandPulse 2.4s ease-in-out infinite;
}
.dynamic-island[data-state="flash"] .dynamic-island-dot {
  background: color-mix(in srgb, var(--island-accent) 22%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--island-accent) 45%, transparent), 0 0 0 5px var(--island-accent-soft);
}
@keyframes islandPulse {
  0%, 100% { transform: scale(0.82); opacity: 0.56; }
  50% { transform: scale(1.22); opacity: 0.18; }
}

.dynamic-island-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 108px;
  max-width: min(44vw, 218px);
  min-height: 26px;
  line-height: 1.12;
  text-align: left;
}
.dynamic-island-eyebrow {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--island-muted);
}
.dynamic-island-title {
  margin-top: 1px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--island-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dynamic-island-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  align-self: stretch;
  padding: 3px;
  margin-left: 0;
  border-radius: 999px;
  background: var(--island-key-bg);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--island-line) 72%, transparent);
}
.dynamic-island-shortcut kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--island-surface) 72%, var(--island-key-bg));
  color: var(--island-muted);
  font-family: inherit;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--island-line) 78%, transparent);
}
@media (max-width: 600px) {
  .dynamic-island {
    top: 8px;
    max-width: calc(100vw - 112px);
  }
  .dynamic-island-inner {
    width: auto;
    max-width: 100%;
    height: 32px;
    gap: 6px;
    padding: 3px 8px;
  }
  .dynamic-island-dot {
    width: 14px;
    height: 14px;
  }
  .dynamic-island-content {
    min-width: 0;
    max-width: min(42vw, 132px);
    min-height: auto;
  }
  .dynamic-island-eyebrow {
    display: none;
  }
  .dynamic-island-title {
    margin-top: 0;
    font-size: 12px;
  }
  .dynamic-island-inner::after {
    right: 14px;
  }
  .dynamic-island-shortcut {
    display: none;
  }
}

@media (max-width: 380px) {
  .dynamic-island {
    max-width: calc(100vw - 96px);
  }

  .dynamic-island-content {
    max-width: 112px;
  }
}

/* ---------- 3. Journey Map section ---------- */
.journey-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 88px 32px 64px;
  background: var(--surface-alt);
  box-shadow: 0 0 0 100vmax var(--surface-alt);
  clip-path: inset(0 -100vmax);
}
.journey-copy {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}
.journey-copy h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: -0.028em;
}
.journey-copy p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* Country switcher — Singapore / Kuala Lumpur / Japan */
.journey-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 5px;
  border-radius: 999px;
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 24px var(--card-shadow);
}
.journey-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.journey-tab:hover { color: var(--ink); }
.journey-tab.is-active {
  background: var(--blue);
  color: #fff;
}
.journey-tab-flag { font-size: 16px; line-height: 1; }
@media (max-width: 560px) {
  .journey-tabs { width: 100%; }
  .journey-tab { flex: 1; justify-content: center; padding: 9px 8px; font-size: 14px; }
}

.journey-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .journey-canvas {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.journey-map {
  position: relative;
  border-radius: 22px;
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  overflow: hidden;
  aspect-ratio: 720 / 480;
  min-height: 360px;
  box-shadow: 0 18px 44px var(--card-shadow);
  color: var(--ink);
  isolation: isolate;
}
html[data-theme="dark"] .journey-map {
  background: #14161c;
}

/* Real Leaflet map container */
.journey-leaflet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--card-surface);
}
.journey-leaflet .leaflet-tile-pane {
  filter: saturate(102%) contrast(98%);
}
html[data-theme="dark"] .journey-leaflet .leaflet-tile-pane {
  filter: saturate(95%) contrast(95%) brightness(95%);
}

/* Apple-style attribution chip in the bottom-left */
.journey-map-attribution {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.02em;
  backdrop-filter: var(--liquid-glass-map-filter);
  -webkit-backdrop-filter: var(--liquid-glass-map-filter);
  border: var(--glass-border-medium);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow-sm);
  pointer-events: none;
}
html[data-theme="dark"] .journey-map-attribution {
  background: rgba(28, 28, 30, 0.34);
}

/* Tiny one-time hint badge over the map */
.journey-map-hint {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.02em;
  backdrop-filter: var(--liquid-glass-map-filter);
  -webkit-backdrop-filter: var(--liquid-glass-map-filter);
  border: var(--glass-border-dark);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow-sm);
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.journey-map-hint.is-dismissed {
  opacity: 0;
  transform: translateY(-4px);
}

/* Leaflet zoom controls — restyled as Apple-style stack */
.journey-leaflet .leaflet-control-zoom {
  border: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16), 0 1px 3px rgba(0, 0, 0, 0.08);
  margin: 0 12px 12px 0 !important;
}
.journey-leaflet .leaflet-control-zoom a {
  width: 32px !important;
  height: 32px !important;
  line-height: 30px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--ink) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  backdrop-filter: var(--liquid-glass-map-filter);
  -webkit-backdrop-filter: var(--liquid-glass-map-filter);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: background 160ms ease, transform 120ms var(--ease);
}
.journey-leaflet .leaflet-control-zoom a:hover {
  background: #ffffff !important;
}
.journey-leaflet .leaflet-control-zoom a:active {
  transform: scale(0.95);
}
.journey-leaflet .leaflet-control-zoom a:last-child {
  border-bottom: 0 !important;
}
html[data-theme="dark"] .journey-leaflet .leaflet-control-zoom a {
  background: rgba(28, 28, 30, 0.86) !important;
  color: #f5f5f7 !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
html[data-theme="dark"] .journey-leaflet .leaflet-control-zoom a:hover {
  background: rgba(40, 40, 44, 0.95) !important;
}

/* Real Leaflet drop-pin (Apple Maps style) */
.journey-leaflet-pin {
  position: relative;
  cursor: pointer;
  transition: transform 240ms var(--ease-spring);
}
.journey-leaflet-pin:hover { transform: translateY(-3px); }
.journey-leaflet-pin.is-active { transform: translateY(-4px); z-index: 800 !important; }

.leaflet-pin-shadow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 6px;
  margin-left: -9px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.72;
}
.leaflet-pin-stem {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 2px;
  height: 12px;
  margin-left: -1px;
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.95), rgba(180, 30, 22, 1));
  border-radius: 1px;
}
.leaflet-pin-body {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ff7a70 0%, #ff3b30 55%, #c41a14 100%);
  box-shadow:
    0 0 0 2px #ffffff,
    0 3px 8px rgba(0, 0, 0, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, box-shadow 240ms var(--ease), transform 240ms var(--ease-spring);
}
.leaflet-pin-core {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.journey-leaflet-pin:hover .leaflet-pin-body,
.journey-leaflet-pin.is-active .leaflet-pin-body {
  transform: scale(1.12);
}
.journey-leaflet-pin.is-active .leaflet-pin-body {
  background: radial-gradient(circle at 32% 30%, #64d2ff 0%, #0a84ff 55%, #0058c0 100%);
  box-shadow:
    0 0 0 2px #ffffff,
    0 3px 10px rgba(10, 132, 255, 0.45),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}
.journey-leaflet-pin.is-active .leaflet-pin-stem {
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.95), rgba(0, 88, 192, 1));
}
html[data-theme="dark"] .leaflet-pin-body {
  box-shadow:
    0 0 0 2px rgba(28, 28, 30, 0.92),
    0 3px 10px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.32);
}
html[data-theme="dark"] .journey-leaflet-pin.is-active .leaflet-pin-body {
  box-shadow:
    0 0 0 2px rgba(28, 28, 30, 0.92),
    0 4px 14px rgba(10, 132, 255, 0.55),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.leaflet-pin-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 2px);
  transform: translateX(-50%) translateY(4px) scale(0.96);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease-spring);
  border: var(--glass-border-dark);
  box-shadow: var(--glass-inner-glow), var(--glass-shadow-sm);
  backdrop-filter: var(--glass-filter-sm);
  -webkit-backdrop-filter: var(--glass-filter-sm);
}
.journey-leaflet-pin:hover .leaflet-pin-label,
.journey-leaflet-pin.is-active .leaflet-pin-label,
.journey-leaflet-pin:focus-visible .leaflet-pin-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Animate the dashed route line so it feels alive */
.journey-route-line {
  stroke-dasharray: 2 8 !important;
  animation: journeyDashFlow 18s linear infinite;
}
@keyframes journeyDashFlow {
  to { stroke-dashoffset: -200; }
}

/* Map detail card */
.journey-detail {
  position: relative;
  display: flex;
}
.journey-detail-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  background: var(--card-surface);
  border: 1px solid var(--card-border);
  color: var(--ink);
  box-shadow: 0 18px 44px var(--card-shadow);
  overflow: hidden;
}
.journey-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(0, 113, 227, 0.12), transparent 60%);
  pointer-events: none;
}
.journey-detail-card.is-swap {
  animation: detailSwap 380ms var(--ease);
}
@keyframes detailSwap {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}
.journey-detail-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.journey-detail-flag {
  font-size: 18px;
  line-height: 1;
}
.journey-detail-kicker {
  font-weight: 600;
}
.journey-detail-head { display: flex; }
.journey-detail-step {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.journey-step-btn {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  background: var(--card-surface);
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease);
}
.journey-step-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}
.journey-step-pos {
  min-width: 44px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.journey-detail-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.journey-detail-meta {
  font-size: 13px;
  color: var(--muted);
}
.journey-detail-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.journey-detail-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--menu-divider);
}
.journey-detail-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.journey-detail-stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.journey-detail-stat strong {
  font-size: 14px;
  color: var(--ink);
}
.journey-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  transition: transform 200ms var(--ease-spring), background 200ms ease;
}
.journey-detail-link:hover {
  transform: translateY(-1px);
  background: var(--blue-hover);
}

/* ---------- 4. Production Timeline section ---------- */
.rings-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 96px 32px 112px;
  background: var(--surface);
  box-shadow: 0 0 0 100vmax var(--surface);
  clip-path: inset(0 -100vmax);
}
.rings-copy {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}
.rings-copy h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.rings-copy p {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* Series episode list (Apple TV+ style) */
.series-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1080px;
}

.series-ep {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--card-border);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}
.series-ep.is-revealed {
  opacity: 1;
  transform: none;
}
.series-ep:last-of-type {
  border-bottom: 1px solid var(--card-border);
}

.series-ep-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: var(--card-surface);
  box-shadow: 0 14px 32px var(--card-shadow);
  transition: transform 280ms var(--ease-spring), box-shadow 220ms var(--ease);
}
.series-ep-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.series-ep-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px var(--card-shadow);
}
.series-ep-thumb:hover img {
  transform: scale(1.05);
}

.series-ep-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.series-ep-kicker {
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.series-ep-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.22;
  color: var(--ink);
}
.series-ep-title .sub-en { color: var(--muted-2); }

.series-ep-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
}
.series-ep-desc .sub-en { color: var(--muted-2); }

.series-ep-link {
  align-self: flex-start;
  margin-top: 4px;
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms var(--ease-spring);
}
.series-ep-link:hover {
  opacity: 0.78;
  transform: translateX(2px);
}

/* Soft "next chapter" line — no dates, no pressure */
.series-next {
  margin: 44px auto 0;
  max-width: 1080px;
  padding-top: 28px;
  border-top: 1px dashed var(--card-border);
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
}
.series-next .sub-en {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

/* Series stat footer strip — descriptive, no count comparisons */
.series-stats {
  list-style: none;
  margin: 56px auto 0;
  max-width: 1080px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.series-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.series-stat-label {
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.series-stat-value {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}

@media (max-width: 720px) {
  .journey-copy h2,
  .rings-copy h2 {
    font-size: 38px;
  }
  .journey-section, .rings-section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .journey-pin-label { font-size: 10px; padding: 4px 8px; }
  .journey-pin-dot { width: 12px; height: 12px; }
  .series-ep {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .series-ep-title { font-size: 20px; }
  .series-stats { grid-template-columns: 1fr; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .journey-route-line { animation: none !important; }
  .dynamic-island-dot { animation: none !important; }
  .journey-detail-card.is-swap { animation: none !important; }
  .series-ep {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .series-ep-thumb { transition: none !important; }
  .series-ep-thumb img { transition: none !important; }
}

.dorm-scan-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  min-height: calc(88svh - 52px);
  padding: clamp(68px, 8vw, 106px) clamp(20px, 5vw, 72px) clamp(42px, 5vw, 70px);
  overflow: hidden;
  color: #f5f7fb;
  background:
    linear-gradient(120deg, rgba(8, 8, 6, 0.99) 0%, rgba(19, 18, 11, 0.98) 54%, rgba(6, 9, 12, 0.98) 100%),
    #080806;
  isolation: isolate;
}

.dorm-scan-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(102, 224, 255, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(246, 212, 107, 0.11) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.46;
}

.dorm-scan-entry::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
}

.dorm-scan-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  max-width: 680px;
}

.dorm-scan-entry .section-kicker {
  color: #f6d46b;
}

.dorm-scan-copy h1 {
  margin: 0;
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(44px, 7vw, 94px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.dorm-scan-copy h1 span {
  color: #f6d46b;
  text-shadow: 0 0 24px rgba(246, 212, 107, 0.2);
}

.dorm-scan-copy p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(245, 247, 251, 0.76);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.62;
}

.dorm-scan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.dorm-scan-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #f5f7fb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dorm-scan-link:hover,
.dorm-scan-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.dorm-scan-link-primary {
  border-color: transparent;
  background: #f5f7fb;
  color: #07090d;
}

.dorm-scan-link-primary:hover,
.dorm-scan-link-primary:focus-visible {
  background: #ffffff;
  color: #07090d;
}

.dorm-scan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.dorm-scan-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(245, 247, 251, 0.68);
  font-size: 12px;
  font-weight: 650;
}

.dorm-scan-visual {
  position: relative;
  min-height: clamp(320px, 42vw, 540px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 212, 107, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(246, 212, 107, 0.14), rgba(191, 220, 96, 0.07) 45%, rgba(102, 224, 255, 0.07)),
    #0d0f0b;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.dorm-scan-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 34px);
  opacity: 0.52;
}

.dorm-scan-stage {
  position: absolute;
  inset: 12% 8% 8%;
  transform: perspective(900px) rotateX(62deg) rotateZ(-8deg);
  transform-style: preserve-3d;
}

.scan-axis,
.scan-wall,
.scan-ceiling,
.scan-surface,
.scan-point,
.scan-sweep {
  position: absolute;
  display: block;
}

.scan-axis {
  background: rgba(255, 255, 255, 0.2);
}

.scan-axis-x {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.scan-axis-y {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.scan-wall {
  border: 1px solid rgba(246, 212, 107, 0.5);
  background:
    repeating-linear-gradient(90deg, rgba(246, 212, 107, 0.1) 0 1px, transparent 1px 22px),
    rgba(246, 212, 107, 0.065);
}

.scan-wall-left {
  inset: 3% auto 14% 8%;
  width: 24%;
}

.scan-wall-right {
  inset: 7% 12% 9% auto;
  width: 30%;
}

.scan-ceiling {
  height: 4px;
  border-radius: 4px;
  background: #d9f36a;
  box-shadow: 0 0 24px rgba(217, 243, 106, 0.55), 0 0 70px rgba(246, 212, 107, 0.18);
  transform: translateZ(82px);
}

.scan-ceiling-left {
  left: 18%;
  top: 8%;
  width: 24%;
}

.scan-ceiling-right {
  right: 17%;
  top: 12%;
  width: 34%;
}

.scan-surface {
  border: 1px solid rgba(102, 224, 255, 0.5);
  border-radius: 6px;
  background: rgba(102, 224, 255, 0.08);
  box-shadow: 0 0 28px rgba(102, 224, 255, 0.08);
}

.scan-bed {
  left: 18%;
  top: 18%;
  width: 34%;
  height: 30%;
}

.scan-desk {
  right: 16%;
  bottom: 16%;
  width: 29%;
  height: 24%;
}

.scan-door {
  left: 18%;
  bottom: 13%;
  width: 16%;
  height: 18%;
  border-color: rgba(255, 107, 122, 0.56);
  background: rgba(255, 107, 122, 0.1);
}

.scan-point {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #66e0ff;
  box-shadow: 0 0 16px rgba(102, 224, 255, 0.9);
}

.scan-point.p1 { left: 10%; top: 20%; }
.scan-point.p2 { left: 38%; top: 12%; background: #f6d46b; box-shadow: 0 0 16px rgba(246, 212, 107, 0.82); }
.scan-point.p3 { right: 22%; top: 26%; }
.scan-point.p4 { left: 28%; bottom: 19%; background: #ff6b7a; box-shadow: 0 0 16px rgba(255, 107, 122, 0.74); }
.scan-point.p5 { right: 12%; bottom: 26%; }
.scan-point.p6 { left: 58%; bottom: 13%; background: #f6d46b; box-shadow: 0 0 16px rgba(246, 212, 107, 0.82); }

.scan-sweep {
  inset: 0;
  border-left: 2px solid rgba(102, 224, 255, 0.82);
  background: linear-gradient(90deg, rgba(102, 224, 255, 0.2), transparent 22%);
  animation: scanSweep 4.8s ease-in-out infinite;
}

@keyframes scanSweep {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.28;
  }

  50% {
    transform: translateX(76%);
    opacity: 0.72;
  }
}

@media (max-width: 860px) {
  .dorm-scan-entry {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
    padding: 64px 18px 28px;
  }

  .dorm-scan-copy {
    gap: 16px;
  }

  .dorm-scan-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .dorm-scan-copy p:not(.section-kicker) {
    font-size: 15px;
  }

  .dorm-scan-visual {
    min-height: 230px;
  }
}

@media (max-width: 460px) {
  .dorm-scan-actions {
    display: grid;
  }

  .dorm-scan-link {
    width: 100%;
  }

  .dorm-scan-meta span {
    flex: 1 1 130px;
    justify-content: center;
  }

  .dorm-scan-visual {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scan-sweep {
    animation: none;
    transform: translateX(38%);
    opacity: 0.48;
  }
}

.site-header.scrolled .header-socials .nav-special-events {
  width: 34px;
  min-width: 34px;
  padding: 0;
  color: transparent;
  font-size: 0;
  justify-content: center;
}

.site-header.scrolled .header-socials .nav-special-events::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  color: var(--ink);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2.5'/%3E%3Cpath d='M8.5 11V7.5a3.5 3.5 0 0 1 7 0V11'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2.5'/%3E%3Cpath d='M8.5 11V7.5a3.5 3.5 0 0 1 7 0V11'/%3E%3C/svg%3E") center / contain no-repeat;
}
