/* =========================================================
   Doctor B Natural — stylesheet
   Brand red #ba0818 · white · charcoal ink
   ========================================================= */

:root {
  --red: #ba0818;
  --red-600: #a3060f;
  --red-700: #8a050d;
  --red-soft: #fdece1;
  --ink: #16181d;
  --ink-2: #3a3f49;
  --muted: #6b7280;
  --line: #e8eaee;
  --bg: #ffffff;
  --bg-soft: #faf7f6;
  --bg-cream: #fbf3f1;
  --white: #ffffff;

  /* logo sparkle accents */
  --c-yellow: #ffc629;
  --c-green: #2bb673;
  --c-blue: #29abe2;
  --c-navy: #2e3192;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(22, 24, 29, .06);
  --shadow: 0 18px 50px -18px rgba(22, 24, 29, .22);
  --shadow-red: 0 16px 36px -14px rgba(186, 8, 24, .45);

  --maxw: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* clip (not hidden) so it doesn't create a scroll container */
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }
.eyebrow--light { color: #ffd2d6; }

.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1; font-weight: 800; letter-spacing: -.02em; color: var(--ink);
}
.section__title--center { text-align: center; }
.section__title--light { color: #fff; }

.lead { font-size: 1.16rem; color: var(--ink-2); line-height: 1.7; }
.eyebrow + .section__title { margin-bottom: 18px; }

.section { padding: clamp(64px, 9vw, 120px) 0; scroll-margin-top: var(--header-h); }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section__sub { text-align: center; color: var(--muted); font-size: 1.1rem; margin-top: 14px; }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 12px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; font-weight: 700; font-size: .98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
}
.btn--lg { --pad-y: 15px; --pad-x: 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--solid { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--solid:hover { background: var(--red-600); transform: translateY(-2px); }
.btn--solid:active { transform: translateY(0); }
.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(186,8,24,.45); outline-offset: 3px;
}

/* ---------- topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--red-700), var(--red) 55%, var(--red-600));
  color: #fff; font-size: .84rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 9px 24px; flex-wrap: wrap; text-align: center; }
.topbar__text strong { font-weight: 700; }
.topbar__link { display: inline-flex; align-items: center; min-height: 34px; padding-block: 4px; font-weight: 700; white-space: nowrap; opacity: .95; }
.topbar__link:hover { text-decoration: underline; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 120; /* above the mobile menu backdrop (110) so the panel paints on top */
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 38px; width: auto; }
.brand__logo--dark { display: none; }

.header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); box-shadow: var(--shadow-sm); }
.header.scrolled .brand__logo--light { display: none; }
.header.scrolled .brand__logo--dark { display: block; }
.header.scrolled .nav > a { color: var(--ink); }
.header.scrolled .nav > a:hover { color: var(--red); }
.header.scrolled .hamburger span { background: var(--ink); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a { color: #fff; font-weight: 600; font-size: .96rem; position: relative; transition: color .2s; }
.nav > a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--red);
  transition: width .25s var(--ease);
}
.nav > a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { color: #fff !important; }

.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 10px; min-width: 44px; min-height: 44px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  margin-top: calc(-1 * var(--header-h));
  padding-top: calc(var(--header-h) + 40px); padding-bottom: 90px;
  color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,12,18,.82) 0%, rgba(10,12,18,.55) 42%, rgba(10,12,18,.2) 78%, rgba(10,12,18,.35) 100%),
    linear-gradient(180deg, rgba(12,14,20,.5) 0%, rgba(12,14,20,.3) 38%, rgba(12,14,20,.8) 100%),
    radial-gradient(120% 80% at 12% 28%, rgba(186,8,24,.3), transparent 60%);
}
.hero__content { position: relative; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 26px; backdrop-filter: blur(4px);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(186,8,24,.3); }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.05; font-weight: 800; letter-spacing: -.025em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__title .accent { color: #fff; background: linear-gradient(90deg, #ffd9dc, #fff); -webkit-background-clip: text; background-clip: text; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: rgba(255,255,255,.92); margin-top: 22px; max-width: 640px; }
.hero__lead strong { color: #fff; }
.hero__tagline {
  margin-top: 20px; font-size: 1.3rem; font-weight: 700; font-style: italic;
  color: #fff; letter-spacing: -.01em;
}
.hero__tagline::before { content: "“"; color: var(--red); font-weight: 800; }
.hero__tagline::after { content: "”"; color: var(--red); font-weight: 800; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin-top: 34px; }
.hero__chips li {
  font-size: .85rem; font-weight: 600; color: #fff;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(3px);
}
.hero__chips li::before { content: "✓ "; color: var(--c-green); font-weight: 800; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform: translateY(0);} 40%{opacity:1;} 80%{opacity:0; transform: translateY(12px);} 100%{opacity:0;} }

/* ---------- trust strip ---------- */
.trust { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: clamp(36px, 5vw, 56px) 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust__item { text-align: center; padding: 8px; }
.trust__item svg { width: 38px; height: 38px; fill: var(--red); margin: 0 auto 12px; }
.trust__item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.trust__item p { font-size: .92rem; color: var(--muted); line-height: 1.5; }

/* ---------- about ---------- */
.about__grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__text p + p { margin-top: 16px; }
.about__text .lead { margin-bottom: 18px; }
.about__text em { color: var(--red); font-style: italic; font-weight: 600; }
.ticklist { list-style: none; padding: 0; margin-top: 26px; display: grid; gap: 12px; }
.ticklist li { position: relative; padding-left: 36px; font-weight: 500; color: var(--ink-2); }
.ticklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 24px; height: 24px; border-radius: 50%; background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.stat::before { content:""; position:absolute; top:0; left:0; width:100%; height:4px; background: linear-gradient(90deg, var(--red), var(--c-yellow), var(--c-green), var(--c-blue)); }
.stat__num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--red); letter-spacing: -.03em; line-height: 1; }
.stat__label { display: block; margin-top: 8px; font-size: .9rem; color: var(--muted); font-weight: 500; }

/* ---------- quality ---------- */
.quality { background: var(--bg-soft); }
.quality__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.qcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.qcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #f0d6d9; }
.qcard__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--red-soft); margin-bottom: 18px;
}
.qcard__icon svg { width: 28px; height: 28px; fill: var(--red); }
.qcard h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.qcard p { font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* ---------- brand film ---------- */
.film__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.film__text p + p { margin-top: 16px; }
.film__player {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 1 / 1; background: #000;
}
.film__player video { width: 100%; height: 100%; object-fit: cover; }
.film__play {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%;
  background: var(--red); display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(186,8,24,.5); transition: transform .25s var(--ease), background .2s;
}
.film__play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }
.film__play:hover { transform: scale(1.08); background: var(--red-600); }
.film__play.is-hidden { opacity: 0; pointer-events: none; transform: scale(.6); }
.film__play::after {
  content:""; position:absolute; inset:-10px; border-radius:50%; border:2px solid rgba(186,8,24,.4);
  animation: pulsering 2s infinite;
}
@keyframes pulsering { 0%{transform:scale(.9);opacity:.8;} 100%{transform:scale(1.5);opacity:0;} }

/* ---------- where to buy ---------- */
.buy__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.store {
  display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.store:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.store__top { display: flex; flex-direction: column; gap: 10px; }
.store__badge {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-2); background: var(--bg-soft); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 999px;
}
.store__badge--gold { color: #fff; background: linear-gradient(90deg, var(--red), var(--red-600)); border: none; }
.store__name { font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; }
.store__desc { color: var(--muted); font-size: .96rem; flex-grow: 1; }
.store__cta { font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.store__cta em { font-style: normal; transition: transform .25s var(--ease); }
.store:hover .store__cta em { transform: translateX(5px); }
.store--featured { border-color: var(--red); box-shadow: var(--shadow-red); background: linear-gradient(180deg, #fff, #fff7f5); }

.buy__note {
  text-align: center; max-width: 760px; margin: 40px auto 0; color: var(--muted);
  font-size: .95rem; padding: 18px 22px; background: var(--bg-soft); border-radius: var(--radius-sm); border: 1px solid var(--line);
}

/* ---------- markets ---------- */
.markets {
  background:
    linear-gradient(120deg, rgba(20,12,14,.92), rgba(40,8,12,.82)),
    url("../media/poster-cleanroom.jpg") center/cover no-repeat;
  color: #fff; padding: clamp(64px, 9vw, 110px) 0;
}
.markets__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.markets__copy p { color: rgba(255,255,255,.85); }
.markets__copy strong { color: #fff; }
.markets__copy .section__title { margin-bottom: 16px; }
.markets__flags { display: grid; gap: 16px; }
.flagcard {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 18px 22px; backdrop-filter: blur(6px);
}
.flagcard__flag { font-size: 2rem; line-height: 1; }
.flagcard__name { font-weight: 700; font-size: 1.1rem; }
.flagcard__sub { color: rgba(255,255,255,.7); font-size: .88rem; margin-left: auto; text-align: right; }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.contact__intro .lead { margin-bottom: 28px; }
.contact__email, .contact__detail {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); margin-bottom: 16px;
}
.contact__email { align-items: center; }
.contact__email:hover { border-color: var(--red); }
.contact__email svg, .contact__detail svg { width: 26px; height: 26px; fill: var(--red); flex-shrink: 0; }
.contact__email span { display: flex; flex-direction: column; }
.contact__email small, .contact__detail small { color: var(--muted); font-size: .85rem; font-weight: 400; }
.contact__detail { align-items: flex-start; }
.contact__detail span { line-height: 1.55; }

.contact__form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(186,8,24,.1); outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field--invalid input, .field--invalid textarea { border-color: var(--red); background: #fff5f5; }
.field__error { display: block; color: var(--red); font-size: .82rem; font-weight: 600; margin-top: 6px; min-height: 1em; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact__formnote { margin-top: 14px; font-weight: 600; font-size: .95rem; }
.contact__formnote.ok { color: var(--c-green); }
.contact__formnote.err { color: var(--red); }

/* ---------- footer ---------- */
.footer { background: #121317; color: #c9cdd6; padding: clamp(50px, 7vw, 80px) 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer__tag { font-style: italic; color: #fff; font-weight: 600; margin-bottom: 16px; }
.footer__addr, .footer__small { font-size: .9rem; line-height: 1.7; color: #9197a3; }
.footer__col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer__col a, .footer__col p { display: block; font-size: .92rem; color: #9197a3; margin-bottom: 6px; transition: color .2s; }
.footer__col a { padding-block: 6px; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center;
}
.footer__bottom p { font-size: .82rem; color: #8a909c; }
.footer__disclaimer { max-width: 620px; line-height: 1.5; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span, .film__play::after { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .quality__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .film__grid, .markets__inner, .contact__grid { grid-template-columns: 1fr; }
  .about__stats { max-width: 520px; }
  .film__grid { gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  /* mobile nav */
  .hamburger { display: flex; z-index: 120; }
  .header.scrolled .hamburger span { background: var(--ink); }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px;
    background: #fff; padding: calc(var(--header-h) + 20px) 28px 40px;
    box-shadow: -20px 0 60px rgba(0,0,0,.2);
    transform: translateX(100%); visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s var(--ease);
  }
  .nav.open { transform: translateX(0); visibility: visible; }
  .nav > a { color: var(--ink); font-size: 1.1rem; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav > a:not(.nav__cta)::after { display: none; }
  .nav__cta { color: #fff !important; margin-top: 16px; border: none; }
  body.menu-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(10,12,16,.5); z-index: 110;
    opacity: 0; visibility: hidden; transition: opacity .3s;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .header.menu-active .hamburger span { background: var(--ink); }
  .header.menu-active .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header.menu-active .hamburger span:nth-child(2) { opacity: 0; }
  .header.menu-active .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .topbar__inner { font-size: .78rem; gap: 10px; }
  .hero { min-height: 92svh; text-align: left; }
  .hero__actions .btn { flex: 1 1 auto; }
  .buy__grid { grid-template-columns: 1fr; }
  .markets__flags { gap: 12px; }
  .flagcard__sub { margin-left: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .trust__grid { grid-template-columns: 1fr; }
  .quality__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__chips li { font-size: .8rem; padding: 7px 13px; }
}
