/* =========================================================================
   UKnow — bold colourful grid (Klarna-structure, UKnow palette)
   Desktop-first. Ground stays paper/ink; colour lives in the cards.
   ========================================================================= */

/* ---------- 1. Fonts ----------------------------------------------------- */

@font-face {
  font-family: 'Bricolage';
  src: url('../fonts/bricolage-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
  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: 'Bricolage';
  src: url('../fonts/bricolage-latinext.woff2') format('woff2');
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument';
  src: url('../fonts/instrumentserif-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument';
  src: url('../fonts/instrumentserif-italic-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Mono';
  src: url('../fonts/spacemono-700-latin.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Mono';
  src: url('../fonts/spacemono-400-latin.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}


/* Bricolage and Space Mono have no Cyrillic. These fill only the Cyrillic
   range inside the same family names, so the UA pages keep real webfonts
   instead of falling back to a system face. */
@font-face {
  font-family: 'Bricolage';
  src: url('../fonts/onest-400-cyr.woff2') format('woff2');
  font-weight: 200 500;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Bricolage';
  src: url('../fonts/onest-600-cyr.woff2') format('woff2');
  font-weight: 501 690;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Bricolage';
  src: url('../fonts/onest-800-cyr.woff2') format('woff2');
  font-weight: 691 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Mono';
  src: url('../fonts/jetbrainsmono-400-cyr.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Mono';
  src: url('../fonts/jetbrainsmono-700-cyr.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* Onest runs a touch wider and lighter than Bricolage at display sizes */
:lang(uk) .d1 { font-size: clamp(2.7rem, 7.4vw, 8.2rem); letter-spacing: -.038em; }
:lang(uk) .d2 { font-size: clamp(2rem, 4.1vw, 3.9rem); letter-spacing: -.032em; }
:lang(uk) .wm, :lang(uk) .card__t, :lang(uk) .now__t { letter-spacing: -.03em; }

/* ---------- 2. Tokens ---------------------------------------------------- */

:root {
  --ink: #0c0c0e;
  --paper: #efeee7;
  --bone: #e3dfd1;
  --coral: #ff4a2e;
  --volt: #c6f135;
  --muted: #6c6f76;

  --r: 20px;
  --r-l: 28px;
  --r-pill: 999px;

  --pad: 40px;
  --gap: 18px;
  --max: 1560px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Bricolage', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--volt); color: var(--ink); }

/* display rules on .menu, .map__key ul etc. must never outrank the attribute */
[hidden] { display: none !important; }

/* ---------- 3. Primitives ------------------------------------------------ */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.grid12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
/* grid children must be allowed to shrink below their content width */
.grid12 > *,
.cards > *,
.stats > *,
.vals > *,
.doors > *,
.ft__grid > * { min-width: 0; }

/* display type — always ink or paper, never an accent colour */
.d1 {
  font-size: clamp(3rem, 8.2vw, 9.2rem);
  font-weight: 800;
  font-stretch: 88%;
  line-height: .86;
  letter-spacing: -.045em;
  margin: 0;
}
.d2 {
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
  font-weight: 800;
  font-stretch: 90%;
  line-height: .94;
  letter-spacing: -.038em;
  margin: 0;
}
.d3 {
  font-size: clamp(1.35rem, 1.9vw, 1.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.028em;
  margin: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0;
  max-width: 34ch;
}

.body { font-size: 1rem; line-height: 1.55; color: var(--muted); margin: 0; }
.body strong { color: var(--ink); font-weight: 600; }

.mono {
  font-family: 'Mono', ui-monospace, monospace;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* pills ------------------------------------------------------------------ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  background: var(--ink);
  color: var(--paper);
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.pill:hover { transform: translateY(-2px); }
.pill--coral { background: var(--coral); color: var(--ink); }
.pill--volt { background: var(--volt); color: var(--ink); }
.pill--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(12, 12, 14, .22);
}
.pill--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.pill--sm { height: 42px; padding: 0 20px; font-size: .9375rem; }

/* tag = the small floating label on a card (Klarna's badge) */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  height: 30px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--ink);
  font-family: 'Mono', monospace;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tag--ink { background: var(--ink); color: var(--paper); }
.tag--volt { background: var(--volt); color: var(--ink); }
.tag--coral { background: var(--coral); color: var(--ink); }
.tag--glass {
  background: rgba(239, 238, 231, .82);
  backdrop-filter: blur(8px);
}

/* section rhythm --------------------------------------------------------- */

.sec { padding-block: clamp(72px, 8vw, 132px); }
.sec--tight { padding-block: clamp(48px, 5vw, 84px); }
.sec--pull { padding-top: clamp(44px, 4.4vw, 76px); }
.sec--ink { background: var(--ink); color: var(--paper); }
.sec--ink .body { color: rgba(239, 238, 231, .62); }
.sec--ink .lead { color: var(--paper); }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(28px, 3.4vw, 52px);
}
.sec-head p { max-width: 42ch; }
.eyebrow { color: var(--muted); margin: 0 0 18px; display: block; }
.sec--ink .eyebrow { color: rgba(239, 238, 231, .5); }

/* ---------- 4. Header ---------------------------------------------------- */

.hd {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-block: 16px;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: box-shadow .4s var(--ease);
}
.hd.is-stuck { box-shadow: 0 1px 0 rgba(12, 12, 14, .1); }
.hd__in {
  display: flex;
  align-items: center;
  gap: 40px;
}
.wm {
  font-size: 1.5rem;
  font-weight: 800;
  font-stretch: 88%;
  letter-spacing: -.045em;
  line-height: 1;
}
.wm sup { font-size: .42em; font-weight: 600; vertical-align: super; letter-spacing: 0; }
.nav { display: flex; gap: 30px; margin-left: 8px; }
.nav a {
  font-size: .96875rem;
  font-weight: 500;
  letter-spacing: -.012em;
  padding-block: 4px;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--ink);
  transition: right .4s var(--ease);
}
.nav a:hover::after { right: 0; }
.hd__end { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* ---------- 5. Hero ------------------------------------------------------ */

.hero { padding-top: clamp(28px, 3vw, 52px); padding-bottom: 0; }
.hero__grid { align-items: end; }
.hero__copy { grid-column: 1 / 8; }
.hero__d { margin-bottom: 30px; }
.hero__d em {
  font-family: 'Bricolage', sans-serif;
  font-style: normal;
  color: var(--coral);
}
.hero__row { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__card {
  grid-column: 8 / 13;
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  aspect-ratio: 4 / 4.15;
  background: var(--bone);
}
.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero__card:hover img { transform: scale(1.06); }
.hero__card .tag { position: absolute; left: 16px; bottom: 16px; }

/* the "now" slot — newest live project, not decoration */
.now {
  grid-column: 8 / 13;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-l);
  background: var(--ink);
  color: var(--paper);
  padding: 26px 28px 28px;
  min-height: 400px;
  transition: transform .5s var(--ease);
}
.now:hover { transform: translateY(-5px); }
.now__top { display: flex; gap: 8px; margin-bottom: auto; }
.tag--glass-d { background: rgba(239, 238, 231, .12); color: var(--paper); }
.now__t {
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: -.035em;
  line-height: .98;
  margin: 34px 0 12px;
}
.now__s {
  font-size: .9375rem;
  line-height: 1.45;
  margin: 0;
  color: rgba(239, 238, 231, .6);
  max-width: 34ch;
}
.now__facts {
  display: flex;
  gap: 30px;
  margin: 26px 0 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(239, 238, 231, .14);
}
.now__facts dt {
  font-size: 1.75rem;
  font-weight: 800;
  font-stretch: 88%;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--volt);
}
.now__facts dd {
  margin: 6px 0 0;
  font-size: .8125rem;
  line-height: 1.25;
  color: rgba(239, 238, 231, .55);
  max-width: 11ch;
}
.now__go { align-self: flex-start; }

/* ---------- 6. Card grid (the four doors) -------------------------------- */

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-l);
  overflow: hidden;
  min-height: 460px;
  padding: 22px;
  color: var(--ink);
  isolation: isolate;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.card:hover { transform: translateY(-6px); }
.card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--c, var(--bone));
}
.card__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card__img { transform: scale(1.045); }
.card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.card__foot { margin-top: auto; padding-top: 30px; }
.card__t {
  font-size: clamp(1.5rem, 2.05vw, 2.15rem);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: -.035em;
  line-height: .98;
  margin: 0 0 8px;
}
.card__s { font-size: .9375rem; line-height: 1.4; margin: 0; opacity: .74; max-width: 26ch; }
.card__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.card__go span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--r-pill);
  background: currentColor;
  transition: transform .4s var(--ease);
}
.card__go span svg { width: 11px; height: 11px; }
.card:hover .card__go span { transform: translateX(4px); }

/* colour skins */
.card--coral { --c: var(--coral); color: var(--ink); }
.card--volt { --c: var(--volt); }
.card--ink { --c: var(--ink); color: var(--paper); }
.card--bone { --c: var(--bone); }
.card--ink .card__go span svg path { stroke: var(--c); }
.card--coral .card__go span svg path { stroke: var(--coral); }
.card--volt .card__go span svg path,
.card--bone .card__go span svg path { stroke: var(--c); }

.card--photo .card__go span svg path { stroke: var(--ink); }

/* photo cards get a readable floor */
.card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(12, 12, 14, .74) 0%, rgba(12, 12, 14, .38) 26%, rgba(12, 12, 14, .06) 52%, transparent 74%);
}
.card--photo { color: var(--paper); }

/* ---------- 7. Reach ----------------------------------------------------- */

.reach__map {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  margin-top: 34px;
}
.reach__map img { width: 100%; height: auto; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: var(--gap);
}
.stat {
  border-radius: var(--r);
  padding: 24px 22px 22px;
  background: rgba(239, 238, 231, .07);
}
.stat b {
  display: block;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  font-stretch: 88%;
  letter-spacing: -.04em;
  line-height: .92;
  margin-bottom: 10px;
}
.stat--coral b { color: var(--coral); }
.stat--volt b { color: var(--volt); }
.stat p { font-size: .9375rem; line-height: 1.35; margin: 0; color: rgba(239, 238, 231, .6); }

/* ---------- 8b. Story cards ---------------------------------------------- */

.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap) clamp(18px, 2vw, 30px); row-gap: clamp(34px, 4vw, 56px); }
.stories > * { min-width: 0; }

.story { display: flex; flex-direction: column; }
.story__img {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--bone);
  margin-bottom: 20px;
}
.story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.story:hover .story__img img { transform: scale(1.05); }
.story__img .tag { position: absolute; left: 14px; bottom: 14px; }
.story__t {
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.14;
  margin: 0 0 10px;
  text-wrap: balance;
}
.story__s { font-size: .9375rem; line-height: 1.45; color: var(--muted); margin: 0; }
.story__go {
  margin-top: 16px;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.01em;
  border-bottom: 1.5px solid rgba(12, 12, 14, .25);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: border-color .3s var(--ease);
}
.story:hover .story__go { border-color: var(--ink); }

.stories__more {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(30px, 3.4vw, 48px);
  flex-wrap: wrap;
}
.stories__more .body { max-width: 46ch; }

/* ---------- 9. Idea block ------------------------------------------------ */

.idea {
  border-radius: var(--r-l);
  background: var(--coral);
  color: var(--ink);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}
.idea__copy { padding: clamp(38px, 4.4vw, 74px); }
.idea__copy .body { color: rgba(12, 12, 14, .74); max-width: 40ch; }
.idea__img { align-self: stretch; }
.idea__img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }

/* ---------- 10. Values --------------------------------------------------- */

.vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 40px; }
.val {
  border-radius: var(--r);
  padding: 26px 24px 28px;
  background: rgba(239, 238, 231, .06);
  transition: background .4s var(--ease);
}
.val:hover { background: rgba(239, 238, 231, .1); }
.val h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.06;
  margin: 16px 0 10px;
}
.val p { font-size: .9375rem; line-height: 1.45; margin: 0; color: rgba(239, 238, 231, .58); }
.val .mono { color: var(--volt); }

/* ---------- 11. Doors (join) --------------------------------------------- */

.doors { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.door {
  border-radius: var(--r-l);
  padding: clamp(30px, 3.4vw, 52px);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease);
}
.door:hover { transform: translateY(-6px); }
.door--volt { background: var(--volt); }
.door--bone { background: var(--bone); }
.door p { max-width: 32ch; }
.door .pill { margin-top: auto; align-self: flex-start; }

/* ---------- 12. Footer --------------------------------------------------- */

.ft { padding-block: 64px 40px; border-top: 1px solid rgba(12, 12, 14, .12); }
.ft__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: var(--gap); }
.ft h4 { margin: 0 0 16px; font-size: .9375rem; font-weight: 700; letter-spacing: -.02em; }
.ft ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ft li a { font-size: .9375rem; color: var(--muted); transition: color .3s var(--ease); }
.ft li a:hover { color: var(--ink); }
.ft__note {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(12, 12, 14, .12);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted);
}
.ft .wm { font-size: 2.6rem; display: inline-block; margin-bottom: 14px; }

/* ---------- 13. Motion --------------------------------------------------- */

[data-rise] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-rise].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-rise] { opacity: 1; transform: none; }
}

/* ---------- 14. Down to smaller screens ---------------------------------- */

@media (max-width: 1180px) {
  :root { --pad: 28px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .stories { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .vals { grid-template-columns: repeat(2, 1fr); }
  .hero__copy { grid-column: 1 / 13; }
  .hero__card { grid-column: 1 / 13; aspect-ratio: 16 / 9; margin-top: 30px; }
  .now { grid-column: 1 / 13; margin-top: 30px; min-height: 0; }
  .now__t { margin-top: 26px; }
  .nav { display: none; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; --gap: 12px; }
  body { font-size: 16px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .grid12 { grid-template-columns: 1fr; }
  .hero__copy, .hero__card, .now { grid-column: 1 / -1; }
  .now__facts { gap: 20px; }
  .hero__card { aspect-ratio: 4 / 3.6; }
  .card__top { flex-wrap: wrap; }
  .cards, .stories { grid-template-columns: 1fr; }
  .card { min-height: 400px; }
  .stats, .vals, .doors, .ft__grid { grid-template-columns: 1fr; }
  .idea { grid-template-columns: 1fr; }
  .idea__img { order: -1; aspect-ratio: 4 / 3; }
  .hd__end .pill { display: none; }
  .hd__end .pill--menu { display: inline-flex; }
}

/* =========================================================================
   17. Additions — hierarchy, product plates, legend, subpages, i18n
   ========================================================================= */

/* --- card grid with a flagship ------------------------------------------ */

.cards { grid-template-columns: repeat(3, 1fr); }
.card--lead { grid-column: span 2; min-height: 520px; }
.card--wide { grid-column: span 2; }
.card--lead .card__t { font-size: clamp(1.9rem, 3vw, 3rem); }
.card--lead .card__s { font-size: 1.0625rem; max-width: 32ch; }

/* --- product plates: stand-ins for real product photography ------------- */

.plate {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-content: center;
  text-align: center;
  overflow: hidden;
}
.plate span {
  display: block;
  font-weight: 800;
  font-stretch: 78%;
  letter-spacing: -.02em;
  line-height: .84;
  opacity: .92;
}
.plate--tee span:first-child { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
.plate--tee span:last-child {
  font-family: 'Mono', monospace;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .34em;
  margin-top: 14px;
  opacity: .55;
}
.plate--tee { transform: translateY(-14%) rotate(-4deg) scale(1.02); }
.card--lead .plate--tee { transform: translateY(-8%) rotate(-4deg); }

/* podcast cover artwork (typographic, until a real cover exists) */
.cover {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: min(46%, 340px);
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(6deg);
  transition: transform .6s var(--ease);
  box-shadow: 0 24px 60px rgba(12, 12, 14, .28);
}
.card:hover .cover { transform: rotate(3deg) translateY(-6px); }
.cover b {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 800;
  font-stretch: 86%;
  letter-spacing: -.04em;
  line-height: .92;
}
.cover i { font-style: normal; color: var(--volt); }
.cover .mono { opacity: .6; }

/* story quotes get the serif — a second voice, not a second font family */
.story__t {
  font-family: 'Instrument', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  line-height: 1.06;
  letter-spacing: -.014em;
}

/* --- map legend: the real five countries over the illustration ---------- */

.reach__map { position: relative; }
.legend {
  position: absolute;
  right: clamp(16px, 2vw, 32px);
  bottom: clamp(16px, 2vw, 32px);
  z-index: 2;
  background: rgba(12, 12, 14, .58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(239, 238, 231, .16);
  border-radius: var(--r);
  padding: 18px 20px;
  min-width: 250px;
}
.legend h4 {
  margin: 0 0 14px;
  color: rgba(239, 238, 231, .55);
}
.legend ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.legend li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: .9375rem;
  color: var(--paper);
}
.legend li b { margin-left: auto; font-weight: 700; }
.legend li i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  flex: 0 0 auto;
  transform: translateY(-2px);
}
.legend li:nth-child(2) i { background: var(--volt); }

/* --- language switch ----------------------------------------------------- */

.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1.5px rgba(12, 12, 14, .16);
}
.lang a {
  padding: 6px 11px;
  border-radius: var(--r-pill);
  font-family: 'Mono', monospace;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang a[aria-current] { background: var(--ink); color: var(--paper); }

/* --- subpage components -------------------------------------------------- */

.phero { padding-top: clamp(40px, 4.6vw, 84px); padding-bottom: clamp(30px, 3.4vw, 56px); }
.phero__grid { align-items: end; }
.phero__copy { grid-column: 1 / 9; }
.phero__side { grid-column: 9 / 13; }
.phero h1 { margin-bottom: 26px; }
.phero .lead { max-width: 40ch; }

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  border-top: 1px solid rgba(12, 12, 14, .14);
  padding-top: 26px;
}
.facts > * { min-width: 0; }
.facts dt {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 800;
  font-stretch: 88%;
  letter-spacing: -.04em;
  line-height: 1;
}
.facts dd { margin: 8px 0 0; font-size: .9375rem; line-height: 1.35; color: var(--muted); max-width: 22ch; }

.rows { border-top: 1.5px solid rgba(12, 12, 14, .16); }
.row {
  display: grid;
  grid-template-columns: 1.1fr 2fr auto;
  gap: 30px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1.5px solid rgba(12, 12, 14, .16);
  transition: padding-left .4s var(--ease);
}
.row:hover { padding-left: 10px; }
.row h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.06;
}
.row p { margin: 0; }
.row .mono { color: var(--muted); white-space: nowrap; }

.band-cta {
  border-radius: var(--r-l);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(34px, 4vw, 66px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.band-cta p { color: rgba(239, 238, 231, .62); max-width: 44ch; margin: 16px 0 0; }
.band-cta .d2 { max-width: 18ch; }

@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card--lead, .card--wide { grid-column: span 2; }
  .card--lead { min-height: 460px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .phero__copy, .phero__side { grid-column: 1 / 13; }
  .phero__side { margin-top: 30px; }
  .cover { width: min(40%, 260px); }
}

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  .card--lead, .card--wide { grid-column: span 1; }
  .facts { grid-template-columns: 1fr; gap: 22px; }
  .row { grid-template-columns: 1fr; gap: 10px; }
  .legend { position: static; margin: 0; border-radius: 0; min-width: 0; backdrop-filter: none; }
  .cover { width: 46%; right: -4%; }
}

/* subpage refinements */
.phero h1 { line-height: .9; }
.phero__side .now { min-height: 0; }
.phero__side .now__t { margin-top: 22px; }
.phero + .sec--tight { padding-block: clamp(20px, 2.4vw, 40px) clamp(8px, 1vw, 16px); }

/* =========================================================================
   18. Mascot, data map, hero CTA, partners, social
   ========================================================================= */

/* --- mascot: one character, many moods ---------------------------------- */

.mc { display: block; width: 100%; height: auto; color: inherit; }
.mc__eye { transform-box: fill-box; transform-origin: center; animation: blink 7s infinite; }
.mc:nth-of-type(2n) .mc__eye { animation-delay: 1.6s; }
.mc__bulb { animation: bulb 3.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes blink {
  0%, 91%, 100% { transform: scaleY(1); }
  94% { transform: scaleY(.08); }
}
@keyframes bulb { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

.mc--tiny { width: 26px; display: inline-block; vertical-align: -4px; margin-left: 10px; }
.mc--side { width: 34px; margin-left: auto; color: var(--volt); }
.mc--big { width: min(230px, 54%); }

/* --- hero CTA panel: the one job of this site --------------------------- */

.hcta {
  margin-top: 34px;
  background: var(--coral);
  color: var(--ink);
  border-radius: var(--r-l);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hcta__mc { flex: 0 0 auto; width: 66px; color: var(--ink); }
.hcta__copy { flex: 1 1 240px; }
.hcta__copy h2 { margin: 0 0 6px; }
.hcta__copy p { margin: 0; font-size: .9375rem; line-height: 1.4; color: rgba(12, 12, 14, .72); max-width: 36ch; }
.hcta__btns { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }
.pill--line {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(12, 12, 14, .38);
}
.pill--line:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* --- the map is data, not a picture ------------------------------------- */

.map {
  display: grid;
  grid-template-columns: 1fr clamp(230px, 20vw, 290px);
  gap: clamp(20px, 3vw, 46px);
  align-items: center;
  margin-top: clamp(24px, 3vw, 44px);
}
.map__svg { width: 100%; height: auto; overflow: visible; }
.map__land {
  fill: rgba(239, 238, 231, .05);
  stroke: rgba(239, 238, 231, .28);
  stroke-width: 1.6;
  stroke-linejoin: round;
}
.pin__halo { fill: url(#glow); transition: opacity .4s var(--ease); }
.pin__ring { fill: none; stroke: var(--coral); stroke-width: 2; opacity: .45; }
.pin__dot { fill: var(--coral); }
.pin__n {
  font-family: 'Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  text-anchor: middle;
  fill: var(--ink);
}
.pin.is-lead .pin__dot { fill: var(--volt); }
.pin.is-lead .pin__ring { stroke: var(--volt); }
.pin.is-lead .pin__halo { fill: url(#glowV); }
.pin.is-lead { animation: beat 3.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes beat { 0%, 100% { opacity: 1; } 50% { opacity: .74; } }
.pin.is-hot .pin__dot { transform: scale(1.12); transform-box: fill-box; transform-origin: center; }

.map__key h4 { margin: 0 0 16px; color: rgba(239, 238, 231, .5); }
.map__key ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.map__key li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .9375rem;
  color: var(--paper);
  cursor: default;
  transition: background .3s var(--ease);
}
.map__key li:hover { background: rgba(239, 238, 231, .08); }
.map__key li b { margin-left: auto; font-weight: 700; }
.map__key li i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex: 0 0 auto;
  transform: translateY(-1px);
}
.map__key li:first-child i { background: var(--volt); }
.map__stamp { margin: 18px 0 0; color: rgba(239, 238, 231, .4); }

/* --- idea stage: mascot instead of a generated illustration ------------- */

.idea__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(320px, 32vw, 440px);
  padding: 40px;
  color: var(--ink);
}
.orbit {
  position: absolute;
  background: var(--ink);
  color: var(--paper);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.orbit--1 { top: 12%; left: 4%; transform: rotate(-6deg); }
.orbit--2 { top: 24%; right: 3%; transform: rotate(5deg); animation-delay: .8s; }
.orbit--3 { bottom: 26%; left: 2%; transform: rotate(4deg); animation-delay: 1.6s; }
.orbit--4 { bottom: 12%; right: 6%; transform: rotate(-4deg); animation-delay: 2.4s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

/* --- partners ------------------------------------------------------------ */

.plates { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.plates > * { min-width: 0; }
.plate-p {
  border-radius: var(--r);
  background: var(--bone);
  padding: 24px 22px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: transform .4s var(--ease);
}
.plate-p:hover { transform: translateY(-4px); }
.plate-p__n {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.06;
}
.plate-p .mono { color: var(--muted); }
.plate-p--soon {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(12, 12, 14, .18);
}
.plate-p--soon .plate-p__n { font-size: 2rem; line-height: 1; color: var(--muted); }

/* --- social band --------------------------------------------------------- */

.social {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 3.4vw, 64px);
  align-items: center;
}
.social__copy .body { margin-top: 18px; max-width: 34ch; }
.social__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.soc {
  border-radius: var(--r-l);
  padding: 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .45s var(--ease);
}
.soc:hover { transform: translateY(-6px); }
.soc--coral { background: var(--coral); color: var(--ink); }
.soc--ink { background: var(--ink); color: var(--paper); }
.soc--volt { background: var(--volt); color: var(--ink); }
.soc__h {
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: -.035em;
  margin-top: 20px;
}
.soc__go { font-size: .875rem; font-weight: 600; opacity: .72; margin-top: 8px; }

.ft__soc {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 12, 14, .14);
}
.ft__soc a { display: flex; gap: 8px; }
.ft__soc a span { color: var(--ink); }

@media (max-width: 1180px) {
  .map { grid-template-columns: 1fr; }
  .map__key ul { grid-template-columns: repeat(2, 1fr); display: grid; }
  .plates { grid-template-columns: repeat(2, 1fr); }
  .social { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hcta { padding: 20px; }
  .hcta__btns { margin-left: 0; width: 100%; }
  .hcta__btns .pill { flex: 1 1 auto; justify-content: center; }
  .plates { grid-template-columns: 1fr 1fr; }
  .social__grid { grid-template-columns: 1fr; }
  .soc { min-height: 150px; }
  .idea__stage { min-height: 300px; padding: 26px; }
  .orbit { font-size: .5625rem; padding: 7px 11px; }
  .map__key ul { grid-template-columns: 1fr; }
}

/* --- mobile menu --------------------------------------------------------- */

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.burger span:first-child { top: 18px; }
.burger span:last-child { top: 25px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--paper);
  padding: 96px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu__nav { display: grid; gap: 4px; }
.menu__nav a {
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 800;
  font-stretch: 88%;
  letter-spacing: -.04em;
  line-height: 1.06;
  padding: 6px 0;
  border-bottom: 1px solid rgba(12, 12, 14, .12);
}
.menu__end { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.menu__end .pill { flex: 1 1 auto; justify-content: center; }
body.menu-open { overflow: hidden; }

@media (max-width: 1180px) {
  .burger { display: block; }
  .hd__end .pill--ghost { display: none; }
}
@media (max-width: 620px) {
  .hd__end .pill--coral { display: none; }
}

/* =========================================================================
   19. Stories, blog, team, process log, ways to work
   ========================================================================= */

.rule-top { border-top: 1.5px solid rgba(12, 12, 14, .16); }

/* --- long-form text ------------------------------------------------------ */

.prose { max-width: 62ch; margin-inline: auto; }
.prose p {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: -.011em;
  margin: 0 0 1.15em;
}
.prose p:first-child::first-letter {
  font-family: 'Instrument', Georgia, serif;
  font-size: 3.2em;
  line-height: .82;
  float: left;
  padding: .06em .12em 0 0;
}

.story-q {
  font-family: 'Instrument', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}
:lang(uk) .story-q { font-size: clamp(1.9rem, 4vw, 4rem); }
.story-hero { position: relative; border-radius: var(--r-l); overflow: hidden; }
.story-hero img { width: 100%; height: auto; }
.story-hero figcaption { position: absolute; left: 16px; bottom: 16px; }

.want {
  max-width: 62ch;
  margin: clamp(30px, 4vw, 52px) auto 0;
  padding: 26px 28px;
  border-radius: var(--r-l);
  background: var(--volt);
}
.want .mono { color: rgba(12, 12, 14, .6); }
.want p { margin: 10px 0 0; }
.stories__note { margin-top: 34px; max-width: 52ch; }

.phero--post { max-width: 900px; }
.phero--post .lead { max-width: 56ch; }
.post-h { max-width: 20ch; }

/* --- blog cards ---------------------------------------------------------- */

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.posts > * { min-width: 0; }
.post {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-l);
  padding: 24px;
  min-height: 340px;
  transition: transform .45s var(--ease);
}
.post:hover { transform: translateY(-6px); }
.post--coral { background: var(--coral); color: var(--ink); }
.post--volt { background: var(--volt); color: var(--ink); }
.post--ink { background: var(--ink); color: var(--paper); }
.post--ink .tag { background: var(--paper); color: var(--ink); }
.post__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.post__top .mono { opacity: .6; }
.post__t {
  margin: auto 0 12px;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: -.035em;
  line-height: 1.02;
  padding-top: 40px;
}
.post__s { margin: 0; font-size: .9375rem; line-height: 1.45; opacity: .78; }
.post__go {
  margin-top: 18px;
  font-size: .9375rem;
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  align-self: flex-start;
  padding-bottom: 2px;
}

/* --- team ---------------------------------------------------------------- */

.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.people > * { min-width: 0; }
.person__plate {
  aspect-ratio: 4 / 4.4;
  border-radius: var(--r-l);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.person__plate span {
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  font-weight: 800;
  font-stretch: 84%;
  letter-spacing: -.05em;
}
.person--coral .person__plate { background: var(--coral); color: var(--ink); }
.person--volt .person__plate { background: var(--volt); color: var(--ink); }
.person--ink .person__plate { background: var(--ink); color: var(--paper); }
.person--bone .person__plate { background: var(--bone); color: var(--ink); }
.person__n {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.person__r { display: block; color: var(--muted); margin-bottom: 12px; }

/* --- process log --------------------------------------------------------- */

.logs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}
.log { display: flex; flex-direction: column; }
.log__shot {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: var(--bone);
  margin-bottom: 18px;
}
.log__shot img { width: 100%; height: 100%; object-fit: cover; }
.log__shot--empty {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(12, 12, 14, .05) 0 9px, transparent 9px 18px),
    var(--bone);
}
.log__shot--empty .mono { color: rgba(12, 12, 14, .38); }
.log__copy h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.06;
}
.log__copy .mono { color: var(--coral); }
.log__copy .body { font-size: .9375rem; }

/* --- ways to work (partners) --------------------------------------------- */

.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.ways > * { min-width: 0; }
.way {
  border-radius: var(--r-l);
  padding: 26px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.way--coral { background: var(--coral); color: var(--ink); }
.way--volt { background: var(--volt); color: var(--ink); }
.way--bone { background: var(--bone); color: var(--ink); }
.way__t {
  margin: auto 0 10px;
  padding-top: 40px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: -.035em;
  line-height: 1;
}
.way .body { color: rgba(12, 12, 14, .74); }
.way__n { margin-top: 18px; color: rgba(12, 12, 14, .55); }

/* --- map detail panel ----------------------------------------------------- */

.pin { cursor: pointer; transition: opacity .35s var(--ease); }
.pin:focus { outline: none; }
.pin:focus-visible .pin__ring { stroke-width: 5; opacity: 1; }
.pin.is-dim { opacity: .3; }
.map__detail h5 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--paper);
}
.map__note { color: rgba(239, 238, 231, .62); }
.map__back {
  color: var(--volt);
  padding: 0;
  cursor: pointer;
}
.map__key li[role="button"] { cursor: pointer; }

@media (max-width: 1180px) {
  .posts, .ways { grid-template-columns: repeat(2, 1fr); }
  .people { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .posts, .ways, .people { grid-template-columns: 1fr; }
  .prose p:first-child::first-letter { font-size: 2.6em; }
}

/* story hero: keep the portrait from towering over the quote */
.story-hero img { aspect-ratio: 4 / 4.2; object-fit: cover; object-position: 50% 22%; }
.phero--post { margin-inline: auto; }

.way > .tag, .card__foot .tag { align-self: flex-start; }

/* --- 404 ------------------------------------------------------------------ */
.nf { text-align: center; padding-block: clamp(60px, 9vw, 150px); }
.nf .lead, .nf .hero__row { margin-inline: auto; justify-content: center; }
.nf .lead { max-width: 40ch; margin-top: 26px; }
.nf__mc { width: clamp(70px, 8vw, 110px); margin: 0 auto 30px; color: var(--coral); }

/* --- story slider --------------------------------------------------------- */

.slider { position: relative; }
.slider__vp { overflow: hidden; }
.slider__track {
  display: flex;
  gap: clamp(18px, 2vw, 30px);
  transition: transform .65s var(--ease);
  will-change: transform;
  touch-action: pan-y;          /* vertical scrolling stays with the page */
  cursor: grab;
}
.slider.is-drag .slider__track { cursor: grabbing; transition: none; }
.slider__track > .story { flex: 0 0 calc((100% - 2 * clamp(18px, 2vw, 30px)) / 3); }
.slider__track > .story img { pointer-events: none; }

.slider__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(26px, 3vw, 40px);
}
.slider__nav { display: flex; gap: 10px; }
.slider__dots { display: flex; gap: 8px; }
.dot {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: rgba(12, 12, 14, .16);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.dot:hover { background: rgba(12, 12, 14, .34); }
.dot[aria-current="true"] { background: var(--coral); width: 48px; }

@media (max-width: 1180px) {
  .slider__track > .story { flex: 0 0 calc((100% - clamp(18px, 2vw, 30px)) / 2); }
}
@media (max-width: 760px) {
  .slider__track > .story { flex: 0 0 100%; }
  .slider__bar { flex-direction: row-reverse; }
}

.slider__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1.5px rgba(12, 12, 14, .2);
  transition: background .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.slider__btn:hover { background: var(--ink); color: var(--paper); }
.slider__btn svg { width: 15px; height: 15px; }
.slider__btn[disabled] { opacity: .28; pointer-events: none; }
