/* ==========================================================================
   Replen.ai — shared site design layer
   Tokens + nav/dropdown/footer + page primitives. Consumed by every page.
   Tokens copied verbatim from index.html; light override from theme spec.
   ========================================================================== */

:root {
  --bg-deep: #0A0F1E;
  --veil-rgb: 10, 15, 30;
  --bg-surface: #111827;
  --bg-elevated: #162032;
  --border: #1E2D40;
  --border-light: #263a52;
  --accent: #00D4AA;
  --accent-dim: rgba(0, 212, 170, 0.15);
  --accent-glow: rgba(0, 212, 170, 0.3);
  --warning: #F59E0B;
  --danger: #EF4444;
  --text: #F1F5F9;
  --text-secondary: #64748B;
  --text-muted: #3e5068;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html[data-theme="light"] {
  --bg-deep: #F6F8FB;
  --bg-surface: #FFFFFF;
  --bg-elevated: #EEF2F7;
  --border: #D8E0EA;
  --border-light: #C3CEDC;
  --accent: #00B894;
  --accent-deep: #0FA88A;
  --accent-dim: rgba(0, 184, 148, 0.12);
  --accent-glow: rgba(0, 184, 148, 0.25);
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --veil-rgb: 246, 248, 251;
}

/* Base — only applied on standalone pages (Home keeps its own base rules). */
.site-page {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.site-page * { box-sizing: border-box; }
.site-page a { color: inherit; text-decoration: none; }
.site-page img { max-width: 100%; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px; transition: background 0.3s, backdrop-filter 0.3s;
}
.site-nav.scrolled {
  background: rgba(var(--veil-rgb), 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.site-nav__inner {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-logo { display: flex; align-items: center; gap: 10px; position: relative; z-index: 102; }
.site-logo img { height: 40px; width: auto; }

.site-nav__drawer { display: flex; align-items: center; gap: 32px; }
.site-menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-menu__item { position: relative; }
.site-menu__link {
  font-family: var(--font-display); font-size: 14px; font-weight: 400;
  color: var(--text-secondary); background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s;
}
.site-menu__link:hover,
.site-menu__item:hover > .site-menu__link,
.site-menu__link.active { color: var(--text); }
.site-menu__item.has-dropdown > .site-menu__link::after {
  content: ''; width: 6px; height: 6px; margin-top: -3px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.2s;
}
.site-menu__item.has-dropdown:hover > .site-menu__link::after { transform: rotate(-135deg); margin-top: 2px; }

/* hover bridge so the panel doesn't close in the gap */
.site-menu__item.has-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
}
.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 14px; min-width: 230px;
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; box-shadow: 0 16px 44px rgba(0,0,0,0.38);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s; list-style: none;
}
.site-menu__item.has-dropdown:hover .dropdown,
.site-menu__item.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown__link {
  display: block; padding: 10px 12px; border-radius: 8px; white-space: nowrap;
  font-size: 13.5px; color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}
.dropdown__link:hover { background: var(--bg-elevated); color: var(--accent); }
.dropdown__link small { display: block; font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }

.site-actions { display: flex; align-items: center; gap: 18px; }
.site-login { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; }
.site-login:hover { color: var(--text); }
.nav-cta {
  font-size: 13px; color: var(--accent); border: 1px solid var(--accent);
  padding: 8px 20px; border-radius: 6px; font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg-deep); }

/* theme toggle (identical to Home) */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px;
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 999px;
}
.theme-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  border: 1px solid transparent; border-radius: 999px; background: none;
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  color: var(--text-secondary); line-height: 1; cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.theme-btn svg { width: 14px; height: 14px; }
.theme-btn:hover { color: var(--text); }
.theme-btn.active { background: var(--bg-elevated); border-color: var(--border-light); color: var(--text); }

/* hamburger */
.site-nav__toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none; position: relative; z-index: 102;
}
.site-nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
}

@keyframes menuFade { from { opacity: 0; } to { opacity: 1; } }

/* phone-only nav elements (hidden on desktop) */
.dropdown__head, .site-menu__more, .site-nav__cta-m { display: none; }

@media (max-width: 900px) {
  .site-nav__toggle { display: flex; }
  /* a blurred/backdrop-filtered parent traps position:fixed children inside
     its own box (the 72px bar); drop the effect while the menu is open */
  .site-nav.open { background: var(--bg-surface); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; }
  /* dim the page below the sheet; tapping it closes the menu (see site.js) */
  .site-nav.open::after { content: ''; position: fixed; inset: 0; z-index: 0; background: rgba(0, 0, 0, 0.35); animation: menuFade 0.25s; }
  .site-nav__cta-m { position: relative; z-index: 102; margin-left: auto; margin-right: -8px; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--accent); border-radius: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
  .site-nav__cta-m::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .site-nav.open .site-nav__cta-m { display: inline-flex; }
  /* the menu: a sheet that drops down from the top; the page stays visible below */
  .site-nav__drawer {
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    max-height: 100vh; max-height: 100dvh;
    background: var(--bg-surface); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 76px 0 18px; overflow-x: hidden; overflow-y: auto;
    /* drops down from the top: the sheet unrolls from under the header */
    visibility: hidden; clip-path: inset(0 0 100% 0);
    transition: clip-path 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.38s;
  }
  .site-nav.open .site-nav__drawer { visibility: visible; clip-path: inset(0 0 0 0); transition: clip-path 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s; }
  .site-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .site-menu__item { width: 100%; position: static; display: flex; align-items: center; }
  .site-menu__link { flex: 1; min-width: 0; justify-content: flex-start; font-size: 19px; font-weight: 400; color: var(--text); padding: 15px 0 15px 36px; }
  .site-menu__link.active { color: var(--accent); }
  .site-menu__item.has-dropdown::before { display: none; }
  .site-menu__item.has-dropdown > .site-menu__link::after { display: none; }
  .site-menu__more { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 64px; align-self: stretch; margin-right: 18px; background: none; border: 0; cursor: pointer; color: var(--text-secondary); }
  .site-menu__more::before { content: ''; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(-45deg); }
  /* sub-pages slide in over the list, inside the sheet */
  .dropdown,
  .site-menu__item.has-dropdown:hover .dropdown,
  .site-menu__item.has-dropdown:focus-within .dropdown {
    position: absolute; inset: 0; z-index: 2; margin: 0; min-width: 0;
    padding: 76px 0 18px; border: 0; border-radius: 0; box-shadow: none;
    background: var(--bg-surface); opacity: 1; visibility: visible; overflow-y: auto;
    transform: none; transition: none; display: none;
  }
  /* closed sub-panels are display:none so they never widen the sheet's
     scroll area; the open one slides in from the right */
  .site-nav .site-menu__item.has-dropdown.open .dropdown { display: block; animation: navSubIn 0.28s cubic-bezier(0.4,0,0.2,1); }
  @keyframes navSubIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
  .dropdown__head { display: block; padding: 0 36px 6px; }
  .dropdown__back { display: inline-flex; align-items: center; gap: 12px; background: none; border: 0; padding: 8px 0; color: var(--text-secondary); font-family: var(--font-display); font-size: 15px; cursor: pointer; }
  .dropdown__back::before { content: ''; width: 8px; height: 8px; border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
  .dropdown__title { display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
  .dropdown__link { font-size: 19px; font-weight: 400; color: var(--text); padding: 15px 36px; border-radius: 0; white-space: normal; }
  .dropdown__link:hover { background: none; color: var(--accent); }
  @media (hover: none) { .dropdown__link:hover { color: var(--text); } }
  .site-actions { display: none; }
  body.menu-open { overflow: hidden; }
  .site-nav.open .site-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.open .site-nav__toggle span:nth-child(2) { opacity: 0; }
  .site-nav.open .site-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ==========================================================================
   PAGE PRIMITIVES (standalone pages)
   ========================================================================== */
.page-hero { padding: 180px 0 80px; }
.page-hero .eyebrow {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.03;
  letter-spacing: -0.03em; margin: 0 0 22px; max-width: 16ch;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero .lead { font-size: 19px; color: var(--text-secondary); max-width: 620px; line-height: 1.7; margin: 0; }

.section { padding: 64px 0; }
.section-label {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px;
}
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 20px; }
.section p.body { font-size: 17px; color: var(--text-secondary); line-height: 1.8; max-width: 680px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 36px; }
.card {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px; transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.card .card__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin-bottom: 14px; }
.card h3 { font-size: 19px; font-weight: 600; margin: 0 0 10px; }
.card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  border-radius: 8px; cursor: pointer; border: 1px solid transparent; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.btn--primary { background: var(--accent); color: var(--bg-deep); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-light); }
.btn--ghost:hover { border-color: var(--text-secondary); }

.stub {
  margin: 40px 0 0; padding: 48px 32px; text-align: center;
  background: var(--bg-surface); border: 1px dashed var(--border-light); border-radius: 16px;
}
.stub .stub__badge {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim); padding: 5px 12px; border-radius: 999px; display: inline-block; margin-bottom: 18px;
}
.stub h3 { font-size: 22px; font-weight: 600; margin: 0 0 10px; }
.stub p { color: var(--text-secondary); max-width: 520px; margin: 0 auto 24px; line-height: 1.7; }

.cta-band { margin-top: 24px; padding: 56px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin: 0 0 14px; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-secondary); font-size: 17px; margin: 0 0 28px; }

/* ==========================================================================
   CONTENT COMPONENTS (rich pages)
   ========================================================================== */
/* feature rows: number/label + title + copy */
.feature-list { display: grid; gap: 14px; margin-top: 36px; }
.feature {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 28px; transition: border-color 0.2s, transform 0.2s;
}
.feature:hover { border-color: var(--border-light); transform: translateY(-2px); }
.feature__idx { font-family: var(--font-mono); font-size: 15px; color: var(--accent); padding-top: 3px; }
.feature h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; }
.feature p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.feature p + p { margin-top: 10px; color: var(--text-muted); font-size: 14px; }

/* metric tiles */
.metric-row { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 32px; }
.metric .metric__n { font-family: var(--font-mono); font-size: clamp(30px, 5vw, 42px); font-weight: 500; color: var(--accent); line-height: 1; }
.metric .metric__l { font-size: 13px; color: var(--text-secondary); margin-top: 10px; max-width: 20ch; }

/* matched RFQ / demand cards */
.match-list { display: grid; gap: 12px; margin-top: 32px; }
.match {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 24px;
}
.match__score {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim); padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.match__item { font-size: 16px; font-weight: 600; }
.match__meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); margin-left: auto; }

/* pipeline / step flow */
.pipeline { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; margin-top: 36px; }
.pipeline__step {
  flex: 1 1 160px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px;
}
.pipeline__step .s { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 10px; }
.pipeline__step h4 { font-size: 16px; font-weight: 600; margin: 0 0 6px; }
.pipeline__step p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  font-family: var(--font-mono); font-size: 13px; color: var(--text-secondary);
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px;
}
.pill b { color: var(--text); font-weight: 500; }

/* checklist */
.check { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.check li { position: relative; padding-left: 30px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.6; }
.check li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent);
}
.check li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 6px; height: 3px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg); }

@media (max-width: 600px) {
  .feature { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .match__meta { margin-left: 0; width: 100%; }
}

/* component category tiles (shared by Home + For Suppliers) */
.browse-sub { color: var(--text-secondary); font-size: 16px; margin-top: 12px; max-width: 560px; }
.browse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.browse-tile { padding: 0; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; cursor: pointer; text-align: left; transition: border-color 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1); }
.browse-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.browse-tile img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.browse-tile span { display: block; padding: 14px 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); }
.browse-tile:hover span { color: var(--text); }
@media (max-width: 900px) { .browse-grid { grid-template-columns: repeat(2, 1fr); } }

/* platform teaser card (shared by Home + For Buyers) */
.platform-teaser { margin-top: 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 18px; padding: 40px; }
.platform-teaser__win { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--bg-elevated); }
.platform-teaser__bar { display: flex; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.platform-teaser__bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--border-light); }
.platform-teaser__body { padding: 22px; }
.platform-teaser__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.platform-teaser__q { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 16px; }
.platform-teaser__input { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-mono); font-size: 12.5px; color: var(--text-secondary); background: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.platform-teaser__input b { color: var(--accent); font-family: var(--font-display); font-weight: 600; }
@media (max-width: 760px) { .platform-teaser { grid-template-columns: 1fr; padding: 28px; } }
.platform-teaser__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 12px; color: var(--text); }
.platform-teaser__text { font-size: 17px; color: var(--text-secondary); line-height: 1.8; max-width: 52ch; margin: 0 0 24px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 40px; }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.site-footer__brand { max-width: 300px; }
.site-footer__brand img { height: 34px; width: auto; margin-bottom: 14px; }
.site-footer__brand p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin: 0; }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: 48px; }
.site-footer__col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin: 0 0 14px;
}
.site-footer__col a { display: block; color: var(--text-secondary); font-size: 14px; padding: 5px 0; transition: color 0.2s; }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__copy {
  width: 100%; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font-mono); font-size: 12px;
}
@media (max-width: 640px) {
  .page-hero { padding: 140px 0 56px; }
  .site-footer__cols { gap: 32px; }
}

/* ==========================================================================
   MOBILE POLISH: phones only, desktop untouched
   ========================================================================== */
@media (max-width: 640px) {
  .page-hero { padding: 120px 0 44px; }
  .page-hero .lead { font-size: 16.5px; }
  .section { padding: 44px 0; }
  .section h2 { font-size: 1.6rem; }
  .card-grid { gap: 12px; margin-top: 24px; }
  .card { padding: 20px; }
  .feature-list { gap: 10px; margin-top: 24px; }
  .cta-band { padding: 40px 0; }
  .btn { padding: 13px 22px; font-size: 14.5px; }
  .pill { font-size: 12px; padding: 7px 12px; }
  .stub { padding: 32px 20px; }
  .metric-row { gap: 24px; }
  .browse-grid { gap: 10px; margin-top: 28px; }
  .browse-tile { display: flex; flex-direction: column; justify-content: flex-start; }
  .browse-tile img { aspect-ratio: 4 / 3; }
  .browse-tile span { display: flex; align-items: center; min-height: 42px; padding: 8px 12px; font-size: 10px; letter-spacing: 0.08em; }
  .platform-teaser { padding: 22px; gap: 22px; margin-top: 24px; }
  .platform-teaser .btn { width: 100%; justify-content: center; }
  .platform-teaser__body { padding: 16px; }
  .platform-teaser__q { font-size: 17px; }
  .platform-teaser__input span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .platform-teaser__input b { white-space: nowrap; }
}
