:root {
  --c-canvas: #2e2e30;
  --c-surface: #18181b;
  --c-text: #ffffff;
  --c-muted: #adadad;
  --c-accent: #eef0b1;
  --c-ink: #18181b;
  --c-line: rgba(255, 255, 255, 0.16);
  --c-line-strong: rgba(255, 255, 255, 0.34);

  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  --font-brand: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;

  --r-icon: 9px;
  --r-card: 12px;
  --r-panel: 40px;
  --r-pill: 9999px;

  --sp-6: 6px;
  --sp-10: 10px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-59: 59px;

  --gap-section: clamp(56px, 7vw, 100px);
  --shell: 1400px;
  --pad-inline: clamp(18px, 4vw, 48px);
  --head-offset: 96px;
}

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

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

body {
  margin: 0;
  background: var(--c-canvas);
  color: var(--c-text);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
img { max-width: 100%; }
button { font-family: inherit; }

[id] { scroll-margin-top: var(--head-offset); }

a { color: inherit; }

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

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--c-text);
  color: var(--c-ink);
  padding: 10px 18px;
  border-radius: var(--r-card);
  text-decoration: none;
}

.link {
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--c-accent);
}

.link:hover { color: var(--c-accent); }

/* Brand */
.brand {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  color: var(--c-text);
  white-space: nowrap;
  line-height: 1;
}

.brand__second { color: var(--c-accent); }

.brand--footer { font-size: 1.375rem; }

/* Masthead */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-block: 12px;
  transition: background-color 0.25s ease;
}

.masthead.is-scrolled { background: var(--c-canvas); }

.masthead__bar {
  position: relative;
  width: min(var(--shell), calc(100% - 2 * var(--pad-inline)));
  margin-inline: auto;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: 10px 12px 10px 22px;
}

.masthead__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-pill);
  color: var(--c-text);
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.masthead__toggle:hover { border-color: var(--c-text); }

.masthead__ico--close { display: none; }
.masthead__toggle[aria-expanded="true"] .masthead__ico--open { display: none; }
.masthead__toggle[aria-expanded="true"] .masthead__ico--close { display: inline; }

.nav {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 12px;
}

.nav.is-open { display: block; }

.nav__list { list-style: none; display: grid; gap: 2px; }

.nav__link {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r-pill);
  color: var(--c-text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
}

.nav__link:hover { background: rgba(255, 255, 255, 0.09); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-card);
  border: 1px solid transparent;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--solid {
  background: var(--c-text);
  color: var(--c-ink);
  border-color: var(--c-text);
}

.btn--solid:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-line-strong);
}

.btn--ghost:hover {
  border-color: var(--c-text);
  background: rgba(255, 255, 255, 0.08);
}

.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--full { width: 100%; justify-content: center; }
.btn__ico { flex: none; }

/* Section shell */
.section { padding-block: var(--gap-section); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.eyebrow--dark { color: #4a4a26; }

.section__head { max-width: 820px; margin-bottom: clamp(32px, 5vw, 64px); }
.section__head--tight { margin-bottom: clamp(28px, 4vw, 48px); }

.section__title {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section__lead {
  color: var(--c-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 64ch;
}

/* Hero */
.hero { padding-top: clamp(28px, 4vw, 48px); padding-bottom: var(--gap-section); }

.hero__title {
  font-size: clamp(2.35rem, 8.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 19ch;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.hero__accent { color: var(--c-accent); }

.hero__grid {
  display: grid;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
}

.hero__lead {
  color: var(--c-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 60ch;
}

.hero__facts { list-style: none; display: grid; gap: 16px; }

.hero__fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}

.hero__fact-num {
  font-family: var(--font-brand);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--c-accent);
  min-width: 1.4em;
}

.hero__fact-txt { font-size: 0.9375rem; color: var(--c-muted); line-height: 1.45; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 40px);
}

.hero__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: clamp(36px, 5vw, 64px);
}

.frame { margin: 0; }
.frame--a { grid-column: 1 / -1; }

.frame__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-card);
  background: var(--c-surface);
}

.frame__cap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.frame__icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--r-icon);
  border: 1px solid var(--c-line);
}

.frame__meta { display: flex; flex-direction: column; min-width: 0; }
.frame__name { font-size: 15px; font-weight: 700; line-height: 1.2; }
.frame__genre { font-size: 12px; color: var(--c-muted); line-height: 1.3; }

/* Editors spreads */
.spread {
  display: grid;
  gap: 28px;
  padding-block: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--c-line);
}

.spread:first-of-type { border-top: 0; padding-top: 0; }

.spread__media { min-width: 0; }

.shot { margin: 0; }

.shot__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r-card);
  background: var(--c-surface);
}

.strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.strip__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r-icon);
  background: var(--c-surface);
}

.spread__index {
  font-family: var(--font-brand);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.spread__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.spread__dev { color: var(--c-muted); font-size: 15px; margin-top: 6px; }

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.tag {
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.spread__text { color: var(--c-muted); line-height: 1.7; margin-bottom: 14px; }

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

.checks__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
}

.checks__ico { color: var(--c-accent); margin-top: 3px; }

/* Genres — inverted band */
.genres {
  background: var(--c-accent);
  color: var(--c-ink);
  padding-block: clamp(52px, 7vw, 92px);
}

.genres__head { max-width: 780px; }

.genres__title {
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.genres__lead {
  color: #4a4a26;
  margin-top: 16px;
  line-height: 1.65;
  max-width: 60ch;
}

.genres__list {
  list-style: none;
  display: grid;
  gap: 1px;
  margin-top: clamp(32px, 4vw, 52px);
  background: rgba(24, 24, 27, 0.3);
  border: 1px solid rgba(24, 24, 27, 0.3);
  border-radius: var(--r-card);
  overflow: hidden;
}

.genres__item { display: flex; }

.genres__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 20px;
  background: var(--c-accent);
  color: var(--c-ink);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.genres__link:hover { background: #e3e5a2; }

.genres__num {
  font-family: var(--font-brand);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #4a4a26;
}

.genres__name { font-size: 1.0625rem; font-weight: 700; line-height: 1.25; }
.genres__game { font-size: 13px; color: #4a4a26; }

/* Catalog */
.catalog__grid { display: grid; gap: 20px; }

.tile {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tile__media { display: block; }

.tile__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tile__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tile__head { display: flex; gap: 12px; align-items: center; }

.tile__icon {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: var(--r-icon);
  border: 1px solid var(--c-line);
}

.tile__ident { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tile__title { font-size: 1.0625rem; line-height: 1.2; }
.tile__dev { font-size: 13px; color: var(--c-muted); }

.tile__genre {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.tile__text { color: var(--c-muted); font-size: 0.9375rem; line-height: 1.65; flex: 1; }
.tile .btn { align-self: flex-start; }

.wide {
  margin-top: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: grid;
}

.wide__media { aspect-ratio: 16 / 9; }

.wide__img { display: block; width: 100%; height: 100%; object-fit: cover; }

.wide__body {
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wide__head { display: flex; gap: 14px; align-items: center; }

.wide__icon {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: var(--r-icon);
  border: 1px solid var(--c-line);
}

.wide__ident { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.wide__title { font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.2; }
.wide__dev { font-size: 13px; color: var(--c-muted); }
.wide__text { color: var(--c-muted); font-size: 0.9375rem; line-height: 1.7; }
.wide .btn { align-self: flex-start; margin-top: 4px; }

/* Method */
.method__inner { display: grid; gap: 40px; }

.method__figure { margin-top: 32px; }

.method__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--r-card);
  background: var(--c-surface);
}

.method__cap { font-size: 12px; color: var(--c-muted); margin-top: 10px; line-height: 1.5; }

.steps { list-style: none; display: grid; }

.steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  padding-block: 24px;
  border-top: 1px solid var(--c-line);
}

.steps__item:last-child { border-bottom: 1px solid var(--c-line); }

.steps__num {
  grid-row: 1 / span 2;
  font-family: var(--font-brand);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--c-accent);
}

.steps__title { font-size: 1.125rem; line-height: 1.25; }
.steps__text { color: var(--c-muted); font-size: 0.9375rem; line-height: 1.7; }

/* Numbers */
.numbers__grid { display: grid; border-top: 1px solid var(--c-line); }

.numbers__cell {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
}

.numbers__value {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.numbers__label {
  color: var(--c-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-top: 14px;
  max-width: 34ch;
}

/* Voices */
.voices__list { list-style: none; display: grid; gap: 20px; }

.voices__card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voices__card::before {
  content: "«";
  font-family: var(--font-brand);
  font-size: 2.5rem;
  line-height: 0.6;
  color: var(--c-accent);
}

.voices__quote { font-size: 1rem; line-height: 1.65; flex: 1; }

.voices__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
}

.voices__avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--r-icon);
  border: 1px solid var(--c-line-strong);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-accent);
}

.voices__ident { display: flex; flex-direction: column; min-width: 0; }
.voices__name { font-size: 15px; font-weight: 700; line-height: 1.3; }
.voices__role { font-size: 13px; color: var(--c-muted); line-height: 1.3; }

/* Subscribe */
.subscribe__panel {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-panel);
  padding: clamp(26px, 5vw, 56px);
  display: grid;
  gap: 40px;
}

.subscribe__lead { color: var(--c-muted); line-height: 1.7; margin-top: 20px; }

.subscribe__points { list-style: none; display: grid; gap: 10px; margin-top: 24px; }

.subscribe__point {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.subscribe__point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-accent);
}

.form { display: grid; gap: 16px; align-content: start; }

.form__label {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form__hint, .form__req { font-size: 11px; letter-spacing: 0.06em; }
.form__hint { color: var(--c-muted); }
.form__req { color: var(--c-accent); }

.form__input {
  width: 100%;
  background: var(--c-canvas);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-card);
  padding: 13px 16px;
  color: var(--c-text);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.3;
}

.form__input::placeholder { color: #9a9a9a; }
.form__input:hover { border-color: var(--c-text); }

.form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 4px;
}

.form__check {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--c-accent);
}

.form__consent-label { font-size: 0.875rem; line-height: 1.55; color: var(--c-muted); }
.form__note { font-size: 12px; color: var(--c-muted); line-height: 1.55; }

.form__success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-card);
  padding: 14px 16px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--c-accent);
}

.form__success[hidden] { display: none; }
.form__success-ico { flex: none; margin-top: 2px; }

/* Transparency */
.transparency__figure { margin-bottom: clamp(30px, 4vw, 52px); }

.transparency__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--r-card);
  background: var(--c-surface);
}

.transparency__cap { font-size: 12px; color: var(--c-muted); margin-top: 10px; line-height: 1.5; }

.pillars { list-style: none; display: grid; gap: 20px; }

.pillars__item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 26px;
}

.pillars__ico { display: block; color: var(--c-accent); margin-bottom: 16px; }
.pillars__title { font-size: 1.0625rem; margin-bottom: 10px; line-height: 1.25; }
.pillars__text { color: var(--c-muted); font-size: 0.9375rem; line-height: 1.7; }

/* FAQ */
.faq__list { border-top: 1px solid var(--c-line); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__head { font-size: inherit; }

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  color: var(--c-text);
  padding: 22px 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq__q { flex: 1; }
.faq__chev { flex: none; color: var(--c-accent); transition: transform 0.25s ease; }
.faq__item--open .faq__chev { transform: rotate(180deg); }
.faq__panel { padding-bottom: 22px; max-width: 76ch; }
.faq__panel[hidden] { display: none; }
.faq__panel p { color: var(--c-muted); line-height: 1.75; }

/* Footer */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
  padding-top: clamp(44px, 6vw, 72px);
}

.footer__inner { display: grid; gap: 34px; }

.footer__title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__tagline {
  color: var(--c-muted);
  margin-top: 16px;
  line-height: 1.65;
  font-size: 0.9375rem;
  max-width: 44ch;
}

.footer__list { list-style: none; display: grid; gap: 10px; }

.footer__link {
  color: var(--c-muted);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer__link:hover { color: var(--c-text); }
.footer__text { color: var(--c-muted); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 14px; }

.footer__mail {
  color: var(--c-text);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 2px;
  word-break: break-word;
}

.footer__mail:hover { color: var(--c-accent); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 32px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 24px;
  padding-bottom: 88px;
  border-top: 1px solid var(--c-line);
}

.footer__copy, .footer__note { font-size: 12px; color: var(--c-muted); line-height: 1.5; }
.footer__note { max-width: 62ch; }

/* Back to top */
.totop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-text);
  color: var(--c-ink);
  border: 0;
  border-radius: var(--r-pill);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.totop[hidden] { display: none; }
.totop:hover { background: var(--c-accent); }
.totop__label { display: none; }
body.is-cookie .totop { bottom: 132px; }

/* Cookie bar */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line-strong);
  padding-block: 16px;
}

.cookie[hidden] { display: none; }

.cookie__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie__text { font-size: 13px; color: var(--c-muted); line-height: 1.55; max-width: 72ch; }
.cookie__actions { display: flex; gap: 10px; flex: none; }

/* Legal pages */
.legal { padding-block: clamp(40px, 6vw, 88px); }

.legal__title {
  font-size: clamp(1.9rem, 5.4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 20ch;
}

.legal__meta { color: var(--c-muted); font-size: 14px; margin-top: 18px; }

.legal__body {
  max-width: 78ch;
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--c-line);
}

.legal__body h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.25;
  margin: 40px 0 14px;
}

.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.0625rem; line-height: 1.3; margin: 26px 0 10px; }
.legal__body p { color: var(--c-muted); line-height: 1.75; margin-bottom: 14px; }
.legal__body ul, .legal__body ol { display: grid; gap: 8px; margin: 0 0 18px 20px; padding-left: 4px; }
.legal__body li { color: var(--c-muted); line-height: 1.7; }
.legal__body a { color: var(--c-text); text-decoration-color: var(--c-accent); text-underline-offset: 3px; }
.legal__actions { margin-top: 36px; }

.legal__scroll { overflow-x: auto; margin-bottom: 20px; }

.legal__table { width: 100%; border-collapse: collapse; min-width: 520px; }

.legal__table th, .legal__table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--c-line);
  font-size: 0.9375rem;
  line-height: 1.55;
  vertical-align: top;
}

.legal__table th { color: var(--c-text); font-weight: 700; }
.legal__table td { color: var(--c-muted); }

/* Responsive */
@media (min-width: 600px) {
  .totop { right: 24px; bottom: 24px; padding: 12px 18px; }
  .totop__label { display: inline; }
}

@media (min-width: 700px) {
  .genres__list { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__cell { padding-inline: 0 24px; }
}

@media (min-width: 760px) {
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 820px) {
  .voices__list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.5fr 1fr; gap: 48px; }
  .hero__stage { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
  .frame--a { grid-column: auto; }
  .frame--b { transform: translateY(32px); }
  .frame--c { transform: translateY(64px); }
  .wide { grid-template-columns: 5fr 7fr; }
  .wide__media { aspect-ratio: auto; height: 100%; }
}

@media (min-width: 960px) {
  .spread { grid-template-columns: repeat(12, 1fr); gap: 44px; align-items: start; }
  .spread--a .spread__media { grid-column: 1 / span 7; }
  .spread--a .spread__body { grid-column: 8 / span 5; }
  .spread--b .spread__body { grid-column: 1 / span 5; }
  .spread--b .spread__media { grid-column: 6 / span 7; }
  .method__inner { grid-template-columns: 5fr 6fr; gap: 56px; align-items: start; }
  .method__figure { margin-top: 36px; }
  .subscribe__panel { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
}

@media (min-width: 1080px) {
  .numbers__grid { grid-template-columns: repeat(4, 1fr); }
  .numbers__cell { border-left: 1px solid var(--c-line); padding-inline: 24px; }
  .numbers__cell:first-child { border-left: 0; padding-left: 0; }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
}

@media (min-width: 1100px) {
  .genres__list { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1240px) {
  .masthead__toggle { display: none; }
  .nav {
    display: block;
    position: static;
    background: none;
    border: 0;
    padding: 0;
    border-radius: 0;
  }
  .nav__list { display: flex; gap: 2px; }
  .nav__link { padding: 8px 11px; font-size: 13px; color: var(--c-muted); }
  .nav__link:hover { color: var(--c-text); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .frame--b, .frame--c { transform: none; }
}
