/* =============================================================================
   CargoCenter — warm light case study.
   Accent #E8402D, paper #FBF8F5. Shares the product-page controller
   (assets/js/product.js): reveals, count-ups, nav state, scroll affordance.
   ========================================================================== */

:root {
  /* CargoCenter's own brand orange, not Kaitech's. Deliberately independent of
     --kt-accent, which config.js sets inline on <html> for the site theme.
     Three roles, because one orange cannot carry all of them accessibly:
       --accent      #E8402D  decoration and large type (white on it 4.04:1)
       --accent-ink  #CC2E1C  small accent text on light grounds (4.58:1 on band)
       --accent-fill #D6301E  fills sitting behind small white text (4.88:1)   */
  --accent: #E8402D;
  --accent-ink: #CC2E1C;
  --accent-fill: #D6301E;
  --bg: #FBF8F5;
  --band: #F3EEE9;
  --card: #FFFFFF;
  --ink: #201A18;
  --mut: #6B605B;
  /* #94897F is 2.9:1 on paper — fine for the decorative micro-labels it was
     drawn for, short of AA for anything you actually have to read. Real copy
     uses --mut (5.6:1); --soft stays for aria-hidden ornament and large text. */
  --soft: #7C7168;
  --line: rgba(32, 26, 24, .1);
  --tint: color-mix(in oklab, var(--accent) 7%, #FFFFFF);
  --shadow: 0 8px 26px rgba(32, 26, 24, .05);
  --shadow-lift: 0 16px 40px rgba(32, 26, 24, .1);
  --pad-x: clamp(20px, 5vw, 72px);
  --head: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  --ok-bg: #E7F6EC;
  --ok-ink: #1B7F45;                      /* 4.6:1 on --ok-bg */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;                       /* clip, not hidden: keeps position:sticky viewport-bound */
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; }
a { color: var(--ink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
::selection { background: var(--accent); color: #FFF; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Chrome -------------------------------------------------------- */
.c-skip {
  position: fixed; top: 8px; left: 8px; z-index: 90;
  transform: translateY(-160%);
  padding: 11px 18px; border-radius: 8px;
  background: var(--ink); color: #FFF; font-weight: 700; font-size: 14px;
  transition: transform .2s;
}
.c-skip:focus { transform: translateY(0); color: #FFF; }

.c-progress {
  position: fixed; top: 0; left: 0; z-index: 70;
  height: 2px; width: 0;
  background: var(--accent);
}

.c-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px var(--pad-x);
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s;
}
.c-nav.is-on {
  background: rgba(251, 248, 245, .84);
  border-bottom-color: rgba(32, 26, 24, .09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.c-logo { display: inline-block; width: 104px; color: var(--ink); }
.c-logo svg { display: block; width: 100%; height: auto; fill: currentColor; }
.c-logo .kt-wordmark__kai { fill: var(--accent); }

.c-nav__right { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 34px); font-size: clamp(12px, 1.4vw, 13.5px); font-weight: 700; }
.c-nav__back { color: var(--mut); }
.c-pill {
  padding: 9px 18px; border-radius: 999px;
  background: var(--accent-fill); color: #FFF;
  transition: filter .25s, transform .25s;
}
.c-pill:hover { filter: brightness(1.08); transform: translateY(-1px); color: #FFF; }

/* ---------- Shared type --------------------------------------------------- */
.c-over {
  display: flex; align-items: center; gap: 14px;
  font-size: clamp(11px, 1.3vw, 13px); font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent-ink);
}
.c-over::before { content: ''; width: 30px; height: 2px; background: var(--accent); flex: none; }

.c-h2 {
  margin-top: clamp(16px, 2.8vh, 26px);
  font-family: var(--head);
  font-weight: 800; font-size: clamp(25px, 4.2vw, 50px);
  line-height: 1.15; letter-spacing: -.02em;
}
.c-h2 em { font-style: normal; color: var(--accent); }

.c-sec { position: relative; padding: clamp(70px, 11vh, 130px) var(--pad-x); }
.c-sec--band { background: var(--band); }
.c-wrap { max-width: 1160px; margin: 0 auto; }

.c-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow);
}

/* ---------- Hero ---------------------------------------------------------- */
.c-hero { padding: clamp(104px, 15vh, 160px) var(--pad-x) clamp(40px, 6vh, 70px); }
.c-hero__grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; gap: clamp(28px, 5vw, 60px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .c-hero__grid { grid-template-columns: 1.15fr .85fr; } }

.c-hero__badge {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; color: var(--mut);
  box-shadow: var(--shadow);
}
.c-hero__badge i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok-ink); flex: none;
  animation: c-blink 2.4s ease-in-out infinite;
}

.c-hero__logo { display: block; width: clamp(150px, 22vw, 210px); height: auto; margin-top: clamp(20px, 3.5vh, 32px); }

.c-h1 {
  margin-top: clamp(16px, 2.6vh, 24px);
  font-family: var(--head);
  font-weight: 800; font-size: clamp(30px, 5.4vw, 62px);
  line-height: 1.08; letter-spacing: -.03em;
}
.c-h1 em { font-style: normal; color: var(--accent); }
/* Masked line rise; the padding keeps descenders off the mask edge. */
.c-mask { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }

.c-lead {
  margin-top: clamp(16px, 2.6vh, 24px); max-width: 560px;
  color: var(--mut); font-size: clamp(14.5px, 1.7vw, 17px); line-height: 1.7;
}

.c-acts { margin-top: clamp(22px, 3.6vh, 34px); display: flex; flex-wrap: wrap; gap: 12px; }
.c-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-fill); color: #FFF;
  font-weight: 800; font-size: clamp(14px, 1.6vw, 16px);
  padding: 14px 27px; border-radius: 999px;
  box-shadow: 0 12px 34px color-mix(in oklab, var(--accent) 32%, transparent);
  transition: transform .25s, filter .25s;
}
.c-btn:hover { transform: translateY(-2px); filter: brightness(1.08); color: #FFF; }


.c-chips { margin-top: clamp(16px, 2.8vh, 24px); display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 12.5px; font-weight: 700; color: var(--mut); }
.c-chips span { display: inline-flex; align-items: center; gap: 7px; }
.c-chips span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* Phone frame — the same object at two sizes, hero and gallery. */
.c-phone {
  position: relative; border-radius: 38px;
  border: 9px solid #221C1A; background: #221C1A;
  box-shadow: 0 30px 80px rgba(32, 26, 24, .25);
  overflow: hidden;
}
.c-phone img { display: block; width: 100%; height: auto; border-radius: 29px; }

.c-hero__phone { position: relative; justify-self: center; width: min(100%, 340px); }
.c-hero__phone .c-phone { animation: c-drift 7s ease-in-out infinite; }

.c-toast {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 15px; font-size: 12px; font-weight: 700; color: var(--ink);
  box-shadow: 0 12px 32px rgba(32, 26, 24, .14);
  animation: c-drift 6s ease-in-out infinite;
}
.c-toast i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--tint); color: var(--accent-ink);
  font-size: 13px; font-style: normal; flex: none;
}
.c-toast--ok i { background: var(--ok-bg); color: var(--ok-ink); }
.c-toast b { display: block; font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--soft); }
.c-toast--gps { top: 6%; left: -8%; animation-delay: -2s; }
.c-toast--pay { bottom: 9%; right: -8%; animation-delay: -4s; }
/* At phone widths the toasts would hang off the screen edge. */
@media (max-width: 560px) {
  .c-toast--gps { left: -2%; }
  .c-toast--pay { right: -2%; }
}

/* ---------- Stats --------------------------------------------------------- */
.c-stats {
  max-width: 1160px; margin: clamp(40px, 7vh, 70px) auto 0;
  padding: clamp(20px, 3vh, 30px) clamp(20px, 3.5vw, 40px);
  box-shadow: 0 14px 44px rgba(32, 26, 24, .06);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 20px clamp(28px, 4.5vw, 64px);
}
.c-stat { min-width: 104px; }
.c-stat__n { font-family: var(--head); font-weight: 800; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -.02em; }
.c-stat__l { margin-top: 3px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--soft); }

/* ---------- Problems ------------------------------------------------------ */
.c-probs {
  margin-top: clamp(30px, 5vh, 50px);
  display: grid; gap: clamp(12px, 2vw, 18px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.c-prob {
  display: flex; align-items: center; gap: 14px;
  padding: clamp(16px, 2.2vw, 20px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
  font-size: clamp(13.5px, 1.5vw, 15px); font-weight: 700;
}
.c-prob i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--tint); color: var(--accent-ink); font-size: 16px; font-style: normal;
}

/* ---------- Components ---------------------------------------------------- */
.c-comps {
  margin-top: clamp(30px, 5vh, 50px);
  display: grid; gap: clamp(16px, 2.5vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.c-comp { padding: clamp(20px, 2.8vw, 28px); transition: transform .3s, box-shadow .3s; }
.c-comp:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.c-comp__top { display: flex; align-items: center; justify-content: space-between; }
.c-comp__ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--tint); color: var(--accent-ink); font-size: 17px; font-style: normal;
}
.c-comp__n { font-size: 12px; font-weight: 800; color: var(--soft); }
.c-comp h3 { margin-top: 14px; font-weight: 800; font-size: clamp(15.5px, 1.8vw, 18px); }
.c-comp p { margin-top: 7px; color: var(--mut); font-size: clamp(13.5px, 1.5vw, 15px); line-height: 1.65; }

/* ---------- Journey ------------------------------------------------------- */
.c-journey { margin-top: clamp(30px, 5vh, 46px); padding: clamp(20px, 3vw, 32px); position: relative; }
.c-journey__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.c-journey__head b { font-weight: 800; font-size: clamp(15px, 1.8vw, 18px); }
.c-journey__head span { font-size: 11.5px; font-weight: 700; color: var(--mut); }

/* Five stations need 640px; a phone shows about half. Same treatment as the
   factory line: fade the edge that still has content and cue the swipe. */
.c-journey__scroll {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: clamp(16px, 2.6vh, 24px);
}
.c-journey__scroll::-webkit-scrollbar { display: none; }
.c-journey__scroll[data-more~="end"] {
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 54px), transparent);
          mask-image: linear-gradient(90deg, #000 calc(100% - 54px), transparent);
}
.c-journey__scroll[data-more~="start"] {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 54px);
          mask-image: linear-gradient(90deg, transparent, #000 54px);
}
.c-journey__scroll[data-more~="start"][data-more~="end"] {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 54px, #000 calc(100% - 54px), transparent);
          mask-image: linear-gradient(90deg, transparent, #000 54px, #000 calc(100% - 54px), transparent);
}
.c-journey[data-more] .c-stops { padding-bottom: 34px; }   /* reserved strip for the cue */

.c-stops { display: grid; grid-template-columns: repeat(5, 1fr); min-width: 640px; }
.c-stop { position: relative; text-align: center; padding: 0 8px; }
.c-stop::before {
  content: ''; position: absolute; top: 11px; left: 50%;
  width: 100%; height: 2px;
  background: color-mix(in oklab, var(--accent) 30%, transparent);
}
.c-stop:last-child::before { display: none; }
.c-stop i {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #FFF;
  font-size: 11px; font-weight: 800; font-style: normal;
  animation: c-tick 10s linear infinite;
}
.c-stop:nth-child(2) i { animation-delay: 2s; }
.c-stop:nth-child(3) i { animation-delay: 4s; }
.c-stop:nth-child(4) i { animation-delay: 6s; }
.c-stop:nth-child(5) i { animation-delay: 8s; }
.c-stop b { display: block; margin-top: 9px; font-weight: 800; font-size: 12.5px; }
.c-stop span { display: block; margin-top: 3px; font-size: 11px; color: var(--mut); }

.c-journey__more {
  position: absolute; right: 20px; bottom: 20px;
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--card); color: var(--accent-ink);
  font-size: 13px; opacity: 0; transition: opacity .3s; pointer-events: none;
}
.c-journey[data-more~="end"] .c-journey__more { opacity: 1; animation: c-nudge 1.7s ease-in-out infinite; }

/* ---------- Advantages ---------------------------------------------------- */
.c-advs {
  margin-top: clamp(30px, 5vh, 50px);
  display: grid; gap: clamp(14px, 2.2vw, 20px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.c-adv {
  display: flex; gap: 13px;
  padding: clamp(18px, 2.4vw, 22px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.c-adv:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.c-adv i {
  display: grid; place-items: center; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ok-bg); color: var(--ok-ink);
  font-size: 13px; font-style: normal;
}
.c-adv b { display: block; font-weight: 800; font-size: clamp(14.5px, 1.7vw, 16px); }
.c-adv p { margin-top: 6px; color: var(--mut); font-size: clamp(13px, 1.5vw, 14.5px); line-height: 1.6; }

/* ---------- App gallery --------------------------------------------------- */
.c-shots {
  margin-top: clamp(30px, 5vh, 50px);
  display: grid; gap: clamp(20px, 3vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  align-items: start;
}
.c-shot { text-align: center; }
.c-shot .c-phone { border-width: 7px; border-radius: 30px; max-width: 300px; margin: 0 auto; box-shadow: 0 20px 50px rgba(32, 26, 24, .16); }
.c-shot .c-phone img { border-radius: 23px; }
.c-shot b { display: block; margin-top: 14px; font-weight: 800; font-size: clamp(14.5px, 1.7vw, 16px); }
.c-shot p { margin: 4px auto 0; max-width: 280px; font-size: 13px; color: var(--mut); line-height: 1.6; }

/* ---------- Pricing ------------------------------------------------------- */
.c-sub { margin-top: 12px; color: var(--mut); font-size: clamp(13.5px, 1.5vw, 15px); }
.c-plans {
  margin-top: clamp(30px, 5vh, 50px);
  display: grid; gap: clamp(18px, 2.6vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.c-plan {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow);
}
.c-plan--hot {
  background: linear-gradient(165deg, var(--tint), #FFFFFF 55%);
  border: 1.5px solid color-mix(in oklab, var(--accent) 45%, transparent);
  box-shadow: 0 18px 50px color-mix(in oklab, var(--accent) 14%, rgba(32, 26, 24, .07));
}
.c-plan__tag {
  position: absolute; top: -12px; right: 22px;
  background: var(--accent-fill); color: #FFF;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  border-radius: 999px; padding: 5px 14px;
}
.c-plan__kind { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--accent-ink); }
.c-plan__for { margin-top: 9px; color: var(--mut); font-size: 13px; line-height: 1.55; }
.c-plan__price {
  margin-top: 12px; font-family: var(--head);
  font-weight: 800; font-size: clamp(30px, 3.8vw, 44px); letter-spacing: -.02em;
}
.c-plan__price span { font-size: .4em; color: var(--mut); font-weight: 700; }
.c-plan__setup { margin-top: 10px; font-size: 13.5px; color: var(--mut); line-height: 1.6; }
.c-plan__setup b { color: var(--ink); }
.c-plan__setup em { font-style: normal; color: var(--accent-ink); font-weight: 700; }
.c-plan__list {
  margin-top: 16px; padding-top: 16px; flex: 1;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.c-plan--hot .c-plan__list { border-top-color: color-mix(in oklab, var(--accent) 30%, transparent); }
.c-plan__list li { display: flex; gap: 10px; font-size: 14px; color: #463C37; line-height: 1.6; }
.c-plan__list li::before { content: '✓'; flex: none; color: var(--accent-ink); font-weight: 800; }
.c-note { margin-top: 14px; font-size: 13px; color: var(--mut); }

/* ---------- CTA ----------------------------------------------------------- */
.c-cta { padding: clamp(30px, 5vh, 60px) var(--pad-x) clamp(70px, 10vh, 110px); }
.c-cta__panel {
  position: relative; overflow: hidden;
  max-width: 1160px; margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent-fill) 0%, color-mix(in oklab, var(--accent-fill) 72%, #4A0E07) 100%);
  padding: clamp(44px, 7vw, 76px) clamp(24px, 5vw, 64px);
  text-align: center; color: #FFF;
}
.c-cta__panel h2 {
  font-family: var(--head); font-weight: 800;
  font-size: clamp(25px, 4.2vw, 48px); line-height: 1.14; letter-spacing: -.02em;
  text-wrap: balance;
}
.c-cta__panel p { margin: clamp(14px, 2.4vh, 20px) auto 0; max-width: 620px; font-size: clamp(14px, 1.6vw, 16.5px); line-height: 1.7; color: #FFF; }
.c-cta__acts { margin-top: clamp(24px, 4vh, 36px); display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.c-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  background: #FFF; color: var(--accent-ink); font-weight: 800; font-size: clamp(14px, 1.6vw, 16px);
  transition: transform .25s;
}
.c-cta__btn:hover { transform: translateY(-2px); color: var(--accent-ink); }
/* A translucent white fill lightens the panel underneath it, which costs the
   button's own label more contrast than the fill is worth. Darken on hover
   instead — it reads as pressed and moves contrast the right way. */
.c-cta__btn--ghost { background: transparent; color: #FFF; border: 1px solid rgba(255, 255, 255, .55); }
.c-cta__btn--ghost:hover { background: rgba(0, 0, 0, .14); color: #FFF; }

/* ---------- Footer -------------------------------------------------------- */
.c-footer {
  border-top: 1px solid var(--line);
  padding: clamp(26px, 4vh, 40px) var(--pad-x);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 28px; color: var(--mut); font-size: 12px;
}
.c-footer__brand { display: flex; flex-direction: column; gap: 7px; }
.c-footer__brand span { font-size: 11px; letter-spacing: .05em; }
.c-footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 700; }

.c-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 55;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--card); color: var(--ink);
  box-shadow: var(--shadow); cursor: pointer;
  transition: transform .25s, opacity .25s;
}
.c-top:hover { transform: translateY(-3px); }
[hidden] { display: none !important; }

/* ---------- Motion -------------------------------------------------------- */
@keyframes c-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes c-drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes c-tick  { 0%, 12% { transform: scale(.4); opacity: 0; } 20%, 82% { transform: scale(1); opacity: 1; } 92%, 100% { transform: scale(.4); opacity: 0; } }
@keyframes c-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  /* Leave the journey showing every stop ticked rather than mid-cycle. */
  .c-stop i { transform: scale(1); opacity: 1; }
}
.kt-no-motion *, .kt-no-motion *::before, .kt-no-motion *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
.kt-no-motion .c-stop i { transform: scale(1); opacity: 1; }

@media (max-width: 519px) { .c-nav__back { display: none; } }

@media (pointer: coarse) {
  .c-nav__right a, .c-footer__links a, .c-logo { padding-block: 14px; margin-block: -14px; }
  .c-skip, .c-pill, .c-btn, .c-cta__btn { min-height: 44px; }
  /* Uppercase Cyrillic loses Ү and Ө first when type gets small. */
  .c-stat__l, .c-toast b { font-size: 11.5px; }
  .c-footer small { font-size: 11.5px; }
}
