/* ══════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Softcore';
  src: url('Type/Softcore/SoftcoreTRIAL-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Softcore';
  src: url('Type/Softcore/SoftcoreTRIAL-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Softcore';
  src: url('Type/Softcore/SoftcoreTRIAL-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Softcore';
  src: url('Type/Softcore/SoftcoreTRIAL-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Softcore';
  src: url('Type/Softcore/SoftcoreTRIAL-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Andale Mono Local';
  src: url('Type/Andale Mono/ANDALEMO.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #f5f4f0;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;   /* no scrolling on the main page */
  cursor: default;
}


/* ══════════════════════════════════════════════════════
   CANVAS  –  the surface everything floats on
   ══════════════════════════════════════════════════════ */
#canvas {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}


/* ══════════════════════════════════════════════════════
   SITE HEADER  –  title + nav share one alignment context
   ══════════════════════════════════════════════════════ */
.site-header {
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
}

body.fonts-ready .site-header {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION  (top right)
   ══════════════════════════════════════════════════════ */
.top-actions {
  position: static;
  top: auto;
  right: auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.nav,
.lang-toggle {
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a18;
  letter-spacing: -0.01em;
}
.nav {
  cursor: pointer;
  min-width: 52px;
  text-align: right;
}
.lang-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  min-width: 74px;
  text-align: left;
  display: inline-grid;
  grid-template-columns: 1.35em auto 1.35em;
  column-gap: 5px;
  align-items: baseline;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
body.panel-open .lang-toggle {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 8.5pt;
}
.lang-toggle [data-lang-option] {
  position: relative;
  display: inline-block;
  padding: 0;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}
.lang-separator {
  display: inline-block;
  font-weight: 400;
  text-align: center;
}
.lang-toggle [data-lang-option].active {
  font-weight: 700;
}


/* ══════════════════════════════════════════════════════
   PAGE TITLE  (top left, with rotating word)
   ══════════════════════════════════════════════════════ */
.group-title {
  position: static;
  top: auto;
  left: auto;
  font-family: 'Softcore', serif;
  font-size: 26px;
  line-height: 1;
  color: #1a1a18;
  pointer-events: none;
  letter-spacing: -0.02em;
  transition: filter 0.4s ease, opacity 0.4s ease;
  display: flex;
  align-items: baseline;
}

.title-theme {
  display: inline-flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.title-over {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  margin-right: 2px;
}

.title-paren {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.98em;
  line-height: 1;
  transform: translateY(-0.16em);
}

.rotating-word {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.32em;
  min-width: 0;
  margin: 0 2px;
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  vertical-align: baseline;
  transform: translateY(0.26em);
}

.rotating-word span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Softcore', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.07em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
}

.rotating-word span.current {
  transform: translateY(0);
  opacity: 1;
}

.rotating-word span.exit-up {
  transform: translateY(-100%);
  opacity: 0;
}

.rotating-word span.enter-down {
  transform: translateY(100%);
  opacity: 0;
}


/* ══════════════════════════════════════════════════════
   BUBBLES  –  floating image elements
   ══════════════════════════════════════════════════════ */
.bubble {
  position: absolute;
  display: block;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: none;
  transform: translate3d(var(--x, 0px), var(--y, 0px), 0) scale(var(--scale, 1));
  transition: filter 0.4s ease, opacity 0.4s ease;
  will-change: transform;
  user-select: none;
  z-index: 1;
}

/* Shapes */
.bubble.circle    { border-radius: 50%;  overflow: visible; }
.bubble.square,
.bubble.portrait,
.bubble.landscape,
.bubble.free { border-radius: 0; overflow: visible; }

/* Media inside the bubble */
.bubble img,
.bubble video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: blur(17px) saturate(1.25);
  opacity: 0.9;
  transform: scale(1.18);
  
  /* ULTRA SOFT MASK: Fades out completely before hitting the edges */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 5%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.1) 55%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 5%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.1) 55%, transparent 72%);
  
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease, -webkit-mask-image 0.28s ease, mask-image 0.28s ease;
}

/* Focused: sharp & enlarged */
.bubble.focused img,
.bubble.focused video {
  filter: blur(0) saturate(1);
  opacity: 1;
  transform: scale(1);
  -webkit-mask-image: none;
  mask-image: none;
}
.bubble.focused {
  --scale: 1.06;
  z-index: 10;
  filter: none !important;
  opacity: 1 !important;
}

/* Blurred: transparent only — filter:blur freezes GIF animations in most browsers */
.bubble.blurred {
  opacity: 0.25;
}


/* ══════════════════════════════════════════════════════
   PILLS  –  floating text labels
   ══════════════════════════════════════════════════════ */
.pill {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 100px;
  color: #1a1a18;
  font-family: 'Softcore', serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.98;
  white-space: normal;
  text-align: center;
  max-width: min(360px, 28vw);
  padding: 6px 26px;
  min-height: 46px;
  cursor: pointer;
  transform: translate3d(var(--x, 0px), var(--y, 0px), 0) scale(var(--scale, 1));
  transition: background 0.25s, color 0.25s, border-color 0.25s,
              filter 0.4s ease, opacity 0.4s ease;
  will-change: transform;
  user-select: none;
  z-index: 6;
}

.pill.focused {
  background: transparent;
  color: #1a1a18;
  --scale: 1.06;
  z-index: 12;
  filter: none !important;
  opacity: 1 !important;
}

/* Blurred */
.pill.blurred {
  filter: blur(4px);
  opacity: 0.35;
}


/* ══════════════════════════════════════════════════════
   BLUR CLASSES FOR NAV & TITLE
   ══════════════════════════════════════════════════════ */
.top-actions.blurred,
.group-title.blurred {
  filter: blur(4px);
  opacity: 0.35;
}


/* ══════════════════════════════════════════════════════
   PROJECT PANEL  –  slides in from the right (iPhone-style)
   ══════════════════════════════════════════════════════ */
#project-panel {
  position: fixed;
  top: 0;
  right: -78vw;                 /* hidden by default */
  width: 72vw;
  height: 100vh;
  background: #faf9f6;
  border-radius: 0;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 50;
  transition: right 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Show panel */
#project-panel.open { right: 0; }


/* ── Panel sub-elements ── */

.panel-drag-bar { display: none; }

.panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;               
  font-weight: 900;              
  line-height: 1;
  color: #1a1a18;
  transition: opacity 0.2s;
  z-index: 2;
}
.panel-close:hover { opacity: 0.55; }


/* Reading layout */
.panel-reading {
  display: grid;
  grid-template-columns: minmax(220px, 40fr) 48px minmax(0, 60fr);
  height: 100%;
  min-height: 0;
}
.about-reading {
  display: none;
  height: 100%;
  min-height: 0;
}
#project-panel.about-mode .panel-reading {
  display: none;
}
#project-panel.about-mode .about-reading {
  display: grid;
  grid-template-columns: minmax(260px, 35%) minmax(0, 65%);
}
.about-sidebar {
  height: 100%;
  overflow: hidden;
  background: #1a1a18;
  color: #f5f4f0;
  padding: 58px 32px 42px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10.5pt;
  line-height: 1.08;
}
.about-sidebar-block {
  margin-bottom: 24px;
}
.about-sidebar-block h3 {
  margin: 0 0 4px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 8.5pt;
  font-style: normal;
  font-weight: 400;
  line-height: 1.12;
}
.about-sidebar-block p {
  margin: 0;
  font-size: 11pt;
  line-height: 1.2;
}
.about-sidebar-link {
  display: inline;
  font-family: 'Andale Mono Local', 'Andale Mono', monospace;
  font-size: 9.5pt;
  font-weight: 400;
  line-height: 1.35;
  color: #f5f4f0;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.08em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.about-sidebar-link:hover {
  opacity: 0.55;
}
.about-text {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background: #faf9f6;
  padding: 50px 82px 72px 36px;
}
.about-text::-webkit-scrollbar {
  display: none;
}
.about-title {
  display: none;
  margin: 0 0 28px;
  font-family: 'Softcore', serif;
  font-size: clamp(32pt, 5vw, 60pt);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.about-body p {
  margin: 0 0 28px;
  font-family: 'Softcore', serif;
  font-size: clamp(17.5pt, 2.6vw, 31pt); 
  font-weight: 400;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: -0.006em;
  color: #1a1a18;
  text-wrap: pretty;
}
.about-body-title {
  font-weight: 400;
  font-style: italic;
}
.about-ordinal {
  font-size: 0.62em;
  line-height: 0;
  position: relative;
  top: -0.12em;
}

.panel-images,
.panel-text {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.panel-images::-webkit-scrollbar,
.panel-text::-webkit-scrollbar { display: none; }

.panel-images {
  background: #faf9f6;
  padding: 0;
  overflow-anchor: none;
  scroll-behavior: auto;
}

/* Base image styling forcing 800x600 ratio */
.panel-image-frame {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: transparent;
  width: 100%;
  aspect-ratio: 4 / 3; /* Forces an exact 800x600 horizontal ratio layout */
  overflow: hidden;
}
.panel-image {
  width: 100%;
  height: 100% !important;
  display: block;
  margin: 0 auto;
  /* object-fit: cover forces the image to perfectly fill the horizontal box, cutting the excess and leaving no white borders */
  object-fit: cover !important;
  background: transparent;
}

@media (min-width: 641px) {
  .panel-images.single-image .panel-image-frame {
    height: 100%;
    aspect-ratio: auto; /* Allow single images to fill vertical desktop space if intended, otherwise remove this line to force 4:3 */
  }
  .panel-images.single-image .panel-image {
    height: 100%;
    object-fit: cover !important; 
  }
}

.panel-keywords {
  position: relative;
  overflow: hidden;
  background: #1a1a18;
  color: #f5f4f0;
}
.panel-keywords::before,
.panel-keywords::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1;
  pointer-events: none;
}
.panel-keywords::before {
  top: 0;
  background: linear-gradient(#1a1a18, rgba(26,26,24,0));
}
.panel-keywords::after {
  bottom: 0;
  background: linear-gradient(rgba(26,26,24,0), #1a1a18);
}
.panel-ticker {
  position: absolute;
  left: 50%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  transform: translateX(-50%);
  animation: ticker-scroll-vertical 56s linear infinite;
}
.panel-ticker-item {
  display: block;
  font-family: 'Andale Mono Local', 'Andale Mono', monospace;
  font-size: 12pt;
  font-weight: 400;
  color: #f5f4f0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes ticker-scroll-vertical {
  from { transform: translate(-50%, -50%); }
  to   { transform: translate(-50%, 0); }
}

.panel-text {
  padding: 82px 48px 48px 28px;
}
.panel-meta {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
}
.panel-theme {
  display: none;
  font-size: 20px;
  line-height: 1.1;
  color: #aaa9a4;
  margin: 0;
  align-items: center;
  white-space: nowrap;
}
.theme-over,
.theme-paren {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
}
.theme-word {
  font-family: 'Softcore', serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  font-size: 1.07em;
  line-height: 1;
  margin: 0 2px;
  transform: translateY(0.405em);
}
.theme-paren {
  display: inline-block;
  font-size: 0.98em;
  transform: translateY(-0.16em);
}

.panel-visit {
  display: inline-block;
  font-family: 'Andale Mono Local', 'Andale Mono', monospace; 
  font-size: 10pt;
  font-weight: 400;
  color: #1a1a18;
  text-decoration: none;
  border-bottom: 1px solid currentColor; 
  padding-bottom: 2px;
  letter-spacing: 0.03em;
  margin-bottom: 46px;
  transition: opacity 0.2s ease;
  text-transform: uppercase;
}
.panel-visit:hover {
  opacity: 0.55;
}

.panel-title {
  font-family: 'Softcore', serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(28pt, 3.4vw, 42pt);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #1a1a18;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 92%; 
  overflow: hidden;
}
.shift-line {
  display: block;
  width: max-content;
  white-space: nowrap;           
  position: relative;
  transform: translate3d(var(--line-shift, 0px), 0, 0);
  transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.panel-subtitle-row {
  display: block;
  margin-bottom: 22px;
}
.panel-subtitle {
  font-family: 'Softcore', serif; 
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  color: #1a1a18;
  font-size: 17pt;
  line-height: 1.12;
  margin: 0;
  max-width: 90%;
}
.panel-quote {
  font-family: 'Softcore', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20pt;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #1a1a18;
  margin-bottom: 26px;
}
.panel-quote::before { content: '\201C'; }  
.panel-quote::after  { content: '\201D'; }  

.panel-quote-author {
  font-family: 'Andale Mono Local', 'Andale Mono', monospace;
  font-size: 11pt; 
  line-height: 1.5;
  color: #8c8984;
  margin-bottom: 34px;
}
.panel-quote-author .citation-title {
  font-style: italic;
}
.panel-synopsis {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12pt;
  font-weight: 400;
  line-height: 1.28;
  color: #1a1a18; 
  margin-bottom: 28px;
  white-space: pre-line;
}
.panel-synopsis .synopsis-italic {
  font-style: italic;
}
.panel-project-author {
  font-family: 'Andale Mono Local', 'Andale Mono', monospace;
  font-size: 11pt; 
  font-weight: 400;
  line-height: 1.65;
  color: #777470;
  margin-bottom: 16px;
}
.panel-project-author strong {
  color: #1a1a18;
  font-weight: 400;
}

@media (max-width: 900px) {
  #project-panel {
    width: calc(100vw - 16px);
    right: calc(-100vw - 24px);
  }
  #project-panel.open { right: 0; }
  .panel-reading {
    grid-template-columns: minmax(220px, 40fr) 36px minmax(0, 60fr);
  }
  .panel-text {
    padding: 32px 28px 44px 20px;
  }
  .panel-title {
    font-size: clamp(24pt, 3.2vw, 36pt);
    max-width: 96%;
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  #project-panel {
    top: 0;
    right: calc(-100vw - 24px);
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
  }
  #project-panel.open {
    right: 0;
  }
  .panel-close {
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    mix-blend-mode: difference;
  }
  .panel-reading {
    display: grid;
    grid-template-columns: 1fr;
    /* 75vw strictly enforces a 4:3 vertical height relationship based on mobile width */
    grid-template-rows: 75vw 36px minmax(0, 1fr);
    height: 100%;
  }
  #project-panel.about-mode .panel-reading {
    display: none;
  }
  #project-panel.about-mode .about-reading {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }
  #project-panel.about-mode .about-reading::-webkit-scrollbar {
    display: none;
  }
  .about-sidebar {
    order: 2;
    height: auto;
    overflow: visible;
    min-height: 100dvh;
    padding: 72px 24px 56px;
    font-size: 9.5pt;
  }
  .about-sidebar-block {
    margin-bottom: 18px;
  }
  .about-sidebar-block h3 {
    font-size: 8pt;
  }
  .about-sidebar-block p {
    font-size: 10.5pt;
  }
  .about-sidebar-link {
    font-size: 9pt;
  }
  .about-text {
    order: 1;
    height: auto;
    overflow: visible;
    padding: 72px 24px 56px;
  }
  .about-title {
    font-size: 30pt;
  }
  .about-body p {
    font-size: 17.5pt; 
    line-height: 1.24;
  }
  .panel-images {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    background: #faf9f6;
  }
  .panel-image-frame {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: block;
    scroll-snap-align: none;
    background: transparent;
  }
  .panel-image {
    width: 100%;
    height: 100% !important;
    max-width: none;
    object-fit: cover !important;
    background: transparent;
  }
  .panel-keywords {
    height: 36px;
  }
  .panel-keywords::before,
  .panel-keywords::after {
    width: 64px;
    height: auto;
    top: 0;
    bottom: 0;
  }
  .panel-keywords::before {
    right: auto;
    background: linear-gradient(90deg, #1a1a18, rgba(26,26,24,0));
  }
  .panel-keywords::after {
    left: auto;
    background: linear-gradient(90deg, rgba(26,26,24,0), #1a1a18);
  }
  .panel-ticker {
    left: 0;
    top: 50%;
    flex-direction: row;
    gap: 44px;
    transform: translateY(-50%);
    animation: ticker-scroll-mobile 56s linear infinite;
  }
  .panel-ticker-item {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 12pt;
    letter-spacing: 0.02em;
    text-transform: none;
  }
  @keyframes ticker-scroll-mobile {
    from { transform: translate(0, -50%); }
    to   { transform: translate(-50%, -50%); }
  }
  .panel-text {
    padding: 26px 24px 56px;
  }
  .panel-meta {
    display: none;
    margin-bottom: 0;
  }
  .panel-theme {
    font-size: 18px;
  }
  .panel-visit {
    font-size: 10pt;
  }
  
  .panel-title {
    font-size: clamp(22pt, 8vw, 32pt);
    line-height: 1.08;
    margin-bottom: 14px;
    max-width: 100%;
    padding-right: 20px;
    overflow: visible;
  }
  
  .shift-line {
    line-height: 1.08 !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }

  .panel-subtitle-row {
    margin-bottom: 22px;
  }
  .panel-subtitle {
    font-size: 15pt;
    line-height: 1.12;
    max-width: 92%;
  }
  .panel-quote {
    font-size: 20pt;
    line-height: 1.12;
  }
  .group-title,
  .nav,
  .lang-toggle {
    font-size: 15px;
  }
  .site-header {
    top: 18px;
    left: 18px;
    right: 18px;
  }
  .top-actions {
    gap: 8px;
  }
  .nav,
  .lang-toggle {
    min-width: auto;
    text-align: right;
  }
  
  .bubble {
    --scale: 0.5;
    transform-origin: center;
  }
  .bubble.focused {
    --scale: 0.6;
  }
  .pill {
    font-size: 18px;
    line-height: 1.12;
    max-width: min(280px, 58vw);
    min-height: 44px;
    padding: 4px 18px;
  }
  .pill.focused {
    --scale: 1.02;
  }
}