/* Fonts: the app's own Literata + Golos Text, self-hosted (latin + cyrillic subsets). */

@font-face {
  font-family: 'Golos Text';
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/GolosText-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Golos Text';
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/GolosText-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Literata';
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/Literata-Roman-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Literata';
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/Literata-Roman-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Literata';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Literata-Italic-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Literata';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Literata-Italic-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Tokens: the app's palette (design_handoff_vatra_redesign/README.md → «Токени»). The site is dark, like the app. */

:root {
  color-scheme: dark;
  --bg: #16110c;
  --surface: #211a13;
  --surface-2: #2c231a;
  --surface-3: #372c21;
  --line: #3a2f24;
  --text: #f1e6d6;
  --text-2: #b9a78f;
  --text-3: #82725e;
  --ember: #e0873a;
  --ember-deep: #b8642a;
  --ember-soft: rgba(224, 135, 58, 0.14);
  --ember-line: rgba(224, 135, 58, 0.18);
  --on-ember: #1a120b;
  --ok: #9db77a;
  --night: #0a0705;
  --night-text: #bf6a2e;
  --radius: 28px;
  --serif: 'Literata', Georgia, serif;
  --sans: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(ellipse 60rem 40rem at 78% -6%, rgba(224, 135, 58, 0.16), transparent 70%),
    radial-gradient(ellipse 40rem 30rem at 0% 40%, rgba(184, 100, 42, 0.07), transparent 70%),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--on-ember);
  background: var(--ember);
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.flame {
  flex: none;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Nav */

.nav {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  margin-top: 16px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ember);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.brand .flame {
  width: 22px;
  height: 22px;
}

.app-icon {
  width: 38px;
  height: 38px;
  border-radius: 22.5%;
  box-shadow: 0 0 0 1px var(--line);
}

.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface-2);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

.langs {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.langs a {
  min-width: 40px;
  padding: 7px 8px;
  border-radius: 10px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.langs a[aria-current] {
  color: var(--text);
  background: var(--surface-3);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 12px;
  color: var(--on-ember);
  background: var(--ember);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  background: #e8944b;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 6vw, 80px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 9px 14px 9px 12px;
  border: 1px solid var(--ember-line);
  border-radius: 999px;
  color: var(--ember);
  background: var(--ember-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow .flame {
  width: 16px;
  height: 16px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 6.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}

.intro {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--text-2);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 34px;
  scroll-margin-top: 120px;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 156px;
  min-height: 56px;
  padding: 8px 18px;
  border-radius: 14px;
  color: var(--on-ember);
  background: var(--ember);
  text-decoration: none;
  line-height: 1.15;
}

.store small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
}

.store b {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.store.soon {
  color: var(--text);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.store.soon small {
  color: var(--ember);
  opacity: 1;
}

.devices {
  color: var(--text-3);
  font-size: 15px;
  font-weight: 500;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}

.chips li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.4l2.8 2.8 6.2-6.4' fill='none' stroke='%239DB77A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 16px no-repeat;
}

/* Phones */

.phone {
  --pw: 280px;
  position: relative;
  flex: none;
  width: var(--pw);
  margin: 0;
  padding: calc(var(--pw) * 0.03);
  border-radius: calc(var(--pw) * 0.165);
  background: #050403;
  box-shadow:
    inset 0 0 0 1.5px #3a322a,
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 40px 80px -20px rgba(0, 0, 0, 0.75);
}

.phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 644 / 1400;
  border-radius: calc(var(--pw) * 0.138);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 135, 58, 0.34), rgba(224, 135, 58, 0) 66%);
}

.hero-visual .phone {
  --pw: 276px;
}

.hero-visual .front {
  z-index: 2;
  transform: translateX(-17%) rotate(-3deg);
}

.hero-visual .back {
  position: absolute;
  z-index: 1;
  --pw: 240px;
  transform: translate(36%, 5%) rotate(5deg);
  filter: brightness(0.8);
}

/* Sections */

section {
  scroll-margin-top: 96px;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ember);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.62;
  text-wrap: pretty;
}

.section-head p {
  margin: 16px 0 0;
  font-size: clamp(17px, 1.8vw, 20px);
}

.card {
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 28px 26px 26px;
}

.step-n {
  display: block;
  margin-bottom: 22px;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.steps h3 {
  font-size: clamp(22px, 2.2vw, 26px);
}

.steps p {
  margin: 12px 0 0;
  font-size: 16px;
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats li {
  padding: 26px 24px 24px;
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(46px, 5.6vw, 68px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stats li:first-child strong {
  color: var(--ember);
}

.stats span {
  display: block;
  margin-top: 12px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.45;
}

/* Feature rows */

.rows {
  display: grid;
  gap: 18px;
}

.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
}

.row-copy {
  padding: clamp(28px, 5vw, 64px);
}

.row-copy p {
  max-width: 460px;
  margin: 18px 0 0;
  font-size: 18px;
}

.stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
  padding: 56px 24px 0;
  min-height: 480px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(224, 135, 58, 0.26), transparent 62%),
    var(--surface-2);
}

.stage .phone {
  --pw: 280px;
  margin-bottom: -170px;
}

.row:nth-child(even) .stage {
  order: -1;
}

/* Night row: the dark screen, and the same screen dimmed to an ember. */

.row-night {
  background: var(--night);
}

.row-night h3 {
  color: var(--night-text);
}

.row-night .kicker {
  color: var(--ember-deep);
}

.row-night p {
  color: #8a6a50;
}

.row-night .stage {
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 100, 42, 0.12), transparent 60%),
    #050302;
}

.night-phone .dim {
  position: absolute;
  inset: calc(var(--pw) * 0.03);
  width: calc(100% - var(--pw) * 0.06);
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .night-phone .dim {
    animation: dim 11s ease-in-out infinite;
  }

  @keyframes dim {
    0%, 30% { opacity: 0; }
    50%, 88% { opacity: 1; }
    100% { opacity: 0; }
  }
}

/* Two cards */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.duo .card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.duo .row-copy {
  padding-bottom: 0;
}

.duo h3 {
  font-size: clamp(24px, 2.6vw, 30px);
}

.duo .stage {
  flex: 1;
  margin-top: 32px;
  min-height: 380px;
  background: transparent;
}

.duo .stage::before {
  content: '';
  position: absolute;
  inset: 16% 8% auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 135, 58, 0.26), transparent 66%);
}

.duo .phone {
  --pw: 250px;
  margin-bottom: -220px;
}

/* Privacy */

.dark-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 135, 58, 0.16), transparent 30rem),
    linear-gradient(160deg, var(--surface-3), var(--surface) 70%);
  box-shadow: inset 0 0 0 1px var(--ember-line);
}

.dark-card p {
  margin: 18px 0 0;
  font-size: 18px;
}

.checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(10, 7, 5, 0.35);
  box-shadow: inset 0 0 0 1px var(--line);
  font-weight: 500;
  line-height: 1.35;
}

.checks li::before {
  content: '';
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ember-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%23E0873A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 22px no-repeat;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  color: var(--ember);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.faq {
  padding: 8px clamp(20px, 3vw, 32px);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '';
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5v9M3.5 8h9' fill='none' stroke='%23E0873A' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 16px no-repeat;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin: -6px 0 22px;
  max-width: 620px;
}

.faq a,
.contact p a {
  color: var(--ember);
  text-underline-offset: 3px;
}

.contact {
  position: sticky;
  top: 96px;
  padding: clamp(24px, 3vw, 32px);
  background: linear-gradient(160deg, var(--surface-3), var(--surface) 80%);
  box-shadow: inset 0 0 0 1px var(--ember-line);
}

.contact h3 {
  font-size: 26px;
}

.contact p {
  margin: 12px 0 22px;
}

.contact .button {
  width: 100%;
}

/* CTA */

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(56px, 8vw, 104px);
  padding: clamp(48px, 7vw, 88px) 24px;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(224, 135, 58, 0.3), transparent 70%),
    var(--night);
  box-shadow: inset 0 0 0 1px var(--line);
}

.cta .app-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  box-shadow: 0 16px 50px rgba(224, 135, 58, 0.28);
}

.cta p {
  margin: 14px 0 28px;
  font-size: 19px;
}

.cta .stores {
  justify-content: center;
}

/* Footer */

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  margin-top: 28px;
  padding: 28px 4px 40px;
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.6;
}

footer p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  max-width: 560px;
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
  color: var(--ember);
  font-weight: 600;
  letter-spacing: 0.14em;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: flex-end;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Document pages (privacy, 404) */

.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 88px) 0 0;
}

.doc .meta {
  margin: 0 0 12px;
  color: var(--text-3);
  font-size: 14px;
}

.doc h1 {
  font-size: clamp(40px, 6vw, 60px);
}

.doc .lead {
  margin: 18px 0 32px;
  font-size: 20px;
}

.doc h2 {
  margin: 40px 0 0;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.doc p,
.doc li {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.65;
}

.doc ul {
  padding-inline-start: 22px;
}

.doc li + li {
  margin-top: 6px;
}

.doc a {
  color: var(--ember);
  text-underline-offset: 3px;
}

.back {
  display: inline-flex;
  margin-bottom: 28px;
  gap: 6px;
  color: var(--text-2) !important;
  font-weight: 500;
  text-decoration: none;
}

/* Reveal on scroll */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .js .reveal.in {
    opacity: 1;
    transform: none;
  }

  .hero-visual::before {
    animation: breathe 6s ease-in-out infinite;
  }

  @keyframes breathe {
    0%, 100% { opacity: 0.75; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.03); }
  }

  .hero-visual .front {
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateX(-17%) rotate(-3deg) translateY(0); }
    50% { transform: translateX(-17%) rotate(-3deg) translateY(-10px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Responsive */

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    position: static;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 0;
    padding: 12px 0 8px;
  }

  .hero-visual .phone {
    --pw: min(62vw, 250px);
  }

  .hero-visual .back {
    --pw: min(54vw, 220px);
  }

  .steps,
  .row,
  .dark-card,
  .duo {
    grid-template-columns: 1fr;
  }

  .row:nth-child(even) .stage {
    order: 0;
  }

  .stage {
    min-height: 400px;
  }

  .stage .phone {
    --pw: min(68vw, 270px);
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page {
    width: calc(100% - 32px);
  }

  .nav {
    padding: 8px 8px 8px 12px;
  }

  .nav .button {
    display: none;
  }

  .langs a {
    min-width: 36px;
    padding: 7px 6px;
  }

  .store {
    min-width: 0;
    flex: 1;
  }

  .stores {
    width: 100%;
  }

  .eyebrow-more {
    display: none;
  }

  .stats li {
    padding: 20px 18px;
  }

  .stats span {
    font-size: 14px;
  }
}
