/* PlayoffLens — folha de estilos principal */

:root {
  --white: #ffffff;
  --graphite: #1a1a1a;
  --black: #000000;
  --hairline: #e6e6e6;
  --fog: #f2f2f2;
  --cream: #f2ede9;
  --muted: #949494;
  --dim: #757575;
  --disabled: #cccccc;
  --accent: #fdf313;
  --on-dark-soft: #f0f0f0;
  --on-dark-dim: #d8d8d8;

  --font-ui: "Helvetica Neue", Helvetica, Inter, "Segoe UI", Roboto, system-ui, -apple-system, Arial, sans-serif;
  --font-mark: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --text-caption: 1rem;
  --text-subheading: 1.25rem;
  --text-heading-sm: clamp(1.5rem, 3.2vw, 2rem);
  --text-heading: clamp(1.85rem, 4.4vw, 2.625rem);
  --text-display: clamp(2.15rem, 6.4vw, 3.4375rem);

  --s-8: 8px;
  --s-16: 16px;
  --s-24: 24px;
  --s-32: 32px;
  --s-48: 48px;
  --s-64: 64px;
  --s-80: 80px;
  --s-128: 128px;
  --s-192: 192px;

  --page: 1440px;
  --gutter: 24px;

  --r-nav: 4px;
  --r-card: 8px;
  --r-pill: 9999px;

  --header-h: 68px;
  --section-y: clamp(64px, 9vw, 128px);
}

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

[hidden] { display: none !important; }

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

body {
  margin: 0;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--font-ui);
  font-size: var(--text-caption);
  line-height: 1.5;
  letter-spacing: 0.004em;
  overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

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

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  background: var(--accent);
  color: var(--graphite);
  padding: 12px 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 var(--r-card) 0;
}
.skip:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- tipografia editorial ---------- */

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: var(--s-24);
}

.sec-head { max-width: 62ch; margin-bottom: var(--s-64); }
.sec-head--tight { margin-bottom: var(--s-48); }

.sec-head__title {
  font-size: var(--text-heading);
  line-height: 1.12;
  letter-spacing: -0.017em;
  font-weight: 400;
  max-width: 20ch;
}

.sec-head__lead {
  margin-top: var(--s-24);
  color: var(--dim);
  max-width: 58ch;
}

.mark {
  background: var(--accent);
  color: var(--graphite);
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- logo ---------- */

.logo {
  font-family: var(--font-mark);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.logo__last {
  background: var(--accent);
  color: var(--graphite);
  padding: 2px 5px 3px;
  margin-left: 3px;
}

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

/* ---------- cabecalho ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}

.header__inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
}

.burger {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: var(--r-nav);
  cursor: pointer;
}

.burger__bar {
  display: block;
  height: 1.5px;
  background: var(--graphite);
}

.nav { display: none; }

.nav__list { display: flex; flex-wrap: wrap; gap: var(--s-24); }

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav__link:hover { color: var(--muted); }
.nav__link.is-current { border-bottom-color: var(--accent); }

.nav.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-16) var(--gutter) var(--s-32);
}
.nav.is-open .nav__list { flex-direction: column; gap: 0; }
.nav.is-open .nav__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 1.0625rem;
}

/* ---------- botoes e ligacoes ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: var(--r-card);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn--outline { border-color: var(--graphite); background: transparent; color: var(--graphite); }
.btn--outline:hover { background: var(--graphite); color: var(--white); }

.btn--solid { background: var(--fog); color: var(--graphite); }
.btn--solid:hover { background: var(--graphite); color: var(--white); }

.btn--dark { background: var(--graphite); color: var(--white); }
.btn--dark:hover { background: var(--black); }

.btn--accent { background: var(--accent); color: var(--graphite); }
.btn--accent:hover { background: var(--white); color: var(--graphite); }

.btn--sm { padding: 10px 16px; font-size: 0.9375rem; }
.btn--block { width: 100%; }

.link {
  font-weight: 500;
  color: var(--graphite);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.link:hover { color: var(--muted); }

.link--ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 15px 0;
}
.link--ghost:hover { text-decoration: underline; }
.link__arrow { width: 20px; height: 20px; flex: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(520px, 84vh, 820px);
  padding-block: clamp(48px, 9vw, 120px);
  background-color: var(--graphite);
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 46%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.70) 0%, rgba(14, 14, 14, 0.60) 50%, rgba(14, 14, 14, 0.76) 100%),
    rgba(14, 14, 14, 0.30);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__eyebrow { color: var(--on-dark-dim); }

.hero__title {
  font-size: var(--text-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 28ch;
  text-wrap: balance;
}

.hero__lead {
  margin-top: var(--s-32);
  max-width: 52ch;
  font-size: 1.0625rem;
  color: var(--on-dark-soft);
}

.hero__actions {
  margin-top: var(--s-32);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-24);
}

.hero__credit {
  margin-top: var(--s-24);
  font-size: 0.8125rem;
  color: var(--on-dark-dim);
}

.hero .link { color: var(--white); }
.hero .link:hover { color: var(--accent); }
.hero :focus-visible { outline-color: var(--accent); }

.tags {
  margin-top: var(--s-32);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-8);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: var(--s-24);
}

.tags__item {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-dark-soft);
}

/* ---------- blocos de imagem a sangrar ---------- */

.bleed { width: 100%; }
.bleed img { width: 100%; height: auto; }

.bleed__caption {
  max-width: var(--page);
  margin: 0 auto;
  padding: 12px var(--gutter) 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.bleed--divider { margin: var(--section-y) 0; }
.bleed--band { margin-bottom: var(--section-y); }

/* ---------- em foco ---------- */

.focus { padding-block: var(--section-y); }

.focus__item { padding-block: clamp(32px, 5vw, 64px); border-top: 1px solid var(--hairline); }
.focus__item:first-of-type { border-top: 0; }

.focus__grid { display: grid; gap: var(--s-32); }

.focus__media img { border-radius: var(--r-card); width: 100%; }

.focus__num {
  font-family: var(--font-mark);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--s-16);
}

.focus__title {
  font-size: var(--text-heading-sm);
  line-height: 1.14;
  letter-spacing: -0.014em;
  font-weight: 500;
}

.focus__meta { margin-top: 6px; color: var(--dim); font-size: 0.9375rem; }

.focus__text { margin-top: var(--s-16); max-width: 54ch; }

.facts {
  margin-top: var(--s-24);
  border-top: 1px solid var(--hairline);
}

.facts__item {
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0 12px 22px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--dim);
}
.facts__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 10px;
  height: 1.5px;
  background: var(--graphite);
}

.focus__body .btn { margin-top: var(--s-24); }

/* ---------- estrelas das opinioes ---------- */

.rating { display: flex; align-items: center; gap: 10px; }

.stars { width: 100px; height: 20px; flex: none; }

/* ---------- numeros ---------- */

.stats {
  padding-block: var(--section-y);
  background: var(--fog);
}

.stats__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--disabled);
}

.stats__item {
  border-bottom: 1px solid var(--disabled);
  padding: var(--s-24) 0;
  display: grid;
  gap: 6px;
}

.stats__num {
  font-size: clamp(2.5rem, 7vw, 3.4375rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.stats__label { color: var(--dim); max-width: 40ch; }

.stats__note { margin-top: var(--s-32); color: var(--dim); font-size: 0.875rem; max-width: 70ch; }

/* ---------- catalogo (linhas) ---------- */

.catalog { padding-block: var(--section-y); }

.catalog__list { border-top: 1px solid var(--graphite); }

.row {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-areas:
    "thumb body"
    "act   act";
  gap: var(--s-16);
  align-items: start;
  padding: var(--s-24) var(--s-16);
  margin-inline: calc(var(--s-16) * -1);
  border-bottom: 1px solid var(--hairline);
  transition: background-color .18s ease;
}
.row:hover { background: var(--fog); }
.row:last-child { border-bottom: 1px solid var(--graphite); }

.row__thumb { grid-area: thumb; display: block; }
.row__thumb img { width: 64px; height: 64px; border-radius: var(--r-card); }

.row__body { grid-area: body; }

.row__title {
  font-size: var(--text-subheading);
  line-height: 1.3;
  letter-spacing: -0.014em;
  font-weight: 500;
}

.row__meta { color: var(--muted); font-size: 0.875rem; margin-top: 2px; }
.row__text { margin-top: 10px; color: var(--dim); font-size: 0.9375rem; max-width: 62ch; }

.row__action {
  grid-area: act;
  display: flex;
  align-items: center;
}

/* ---------- galeria ---------- */

.gallery { padding-block: var(--section-y); }

.gallery__grid { display: grid; gap: var(--s-24); }

.shot { display: grid; gap: 10px; }
.shot img { width: 100%; border-radius: var(--r-card); background: var(--fog); }
.shot--tall img { max-width: 320px; }
.shot__cap { font-size: 0.8125rem; color: var(--muted); }

/* ---------- sobre ---------- */

.about { padding-block: var(--section-y); }

.about__grid { display: grid; gap: var(--s-48); }

.about__head { margin-bottom: 0; }

.about__sub {
  font-size: var(--text-subheading);
  font-weight: 500;
  letter-spacing: -0.014em;
  margin-top: var(--s-32);
}
.about__col > .about__sub:first-child { margin-top: 0; }

.about__text { margin-top: 12px; color: var(--dim); max-width: 60ch; }

.check {
  margin-top: var(--s-16);
  background: var(--cream);
  border-radius: var(--r-card);
  padding: var(--s-24);
  display: grid;
  gap: 14px;
}

.check__item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9375rem; }
.check__icon { width: 20px; height: 20px; flex: none; margin-top: 2px; }

.about__note { margin-top: var(--s-16); font-size: 0.8125rem; color: var(--muted); }

/* ---------- passos ---------- */

.steps { padding-block: var(--section-y); }

.steps__list { display: grid; gap: 0; border-top: 1px solid var(--hairline); }

.steps__item {
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-32) 0;
  display: grid;
  gap: 10px;
}

.steps__num {
  font-family: var(--font-mark);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.steps__title {
  font-size: var(--text-subheading);
  font-weight: 500;
  letter-spacing: -0.014em;
}

.steps__text { color: var(--dim); max-width: 62ch; }

/* ---------- opinioes ---------- */

.voices { padding-block: var(--section-y); }

.voices__list { display: grid; gap: var(--s-24); }

.voices__card {
  background: var(--fog);
  border-radius: var(--r-card);
  padding: var(--s-24);
  display: grid;
  gap: var(--s-16);
  align-content: start;
}
.voices__card:nth-child(2) { background: var(--cream); }

.voices__quote { font-size: 1.0625rem; line-height: 1.5; }

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

.voices__avatar {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--hairline);
  font-family: var(--font-mark);
  font-size: 0.875rem;
  font-weight: 700;
}

.voices__name { font-weight: 500; font-size: 0.9375rem; display: grid; }
.voices__role { font-weight: 400; color: var(--muted); font-size: 0.8125rem; }

/* ---------- subscricao ---------- */

.signup { padding-bottom: var(--section-y); }

.signup__grid { display: grid; gap: var(--s-48); }

.signup__lead { margin-top: var(--s-24); color: var(--dim); max-width: 56ch; }
.signup__small { margin-top: var(--s-16); font-size: 0.8125rem; color: var(--muted); max-width: 56ch; }

.signup__panel {
  background: var(--cream);
  border-radius: var(--r-card);
  padding: var(--s-24);
}

.form { display: grid; gap: var(--s-16); }

.form__field { display: grid; gap: 6px; }

.form__label { font-size: 0.875rem; font-weight: 500; }
.form__opt { color: var(--muted); font-weight: 400; }

.form__input {
  font: inherit;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: 12px 16px;
  width: 100%;
}
.form__input::placeholder { color: var(--muted); }
.form__input:focus { border-color: var(--graphite); outline: none; }
.form__input:focus-visible { outline: 2px solid var(--graphite); outline-offset: 2px; }

.form__check { display: flex; gap: 12px; align-items: flex-start; }

.form__box {
  width: 20px;
  height: 20px;
  flex: none;
  margin: 2px 0 0;
  accent-color: var(--graphite);
}

.form__consent { font-size: 0.875rem; color: var(--dim); }

.form__legal { margin-top: -8px; padding-left: 32px; font-size: 0.8125rem; color: var(--muted); }

.form__error { font-size: 0.875rem; color: var(--graphite); border-left: 3px solid var(--graphite); padding-left: 12px; }

.form__ok {
  background: var(--accent);
  border-radius: var(--r-card);
  padding: var(--s-16);
  font-size: 0.9375rem;
  display: grid;
  gap: 4px;
}
.form__ok-title { font-weight: 700; }

/* ---------- faq ---------- */

.faq { padding-block: var(--section-y); }

.faq__list { border-top: 1px solid var(--graphite); }

.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item:last-child { border-bottom: 1px solid var(--graphite); }

.faq__head { margin: 0; font-size: inherit; font-weight: 400; }

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-16);
  background: none;
  border: 0;
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: inherit;
  text-align: left;
  padding: var(--s-24) 0;
  cursor: pointer;
}
.faq__btn:hover { color: var(--muted); }

.faq__icon { width: 22px; height: 22px; flex: none; transition: transform .2s ease; }
.faq__btn[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__panel { padding-bottom: var(--s-24); color: var(--dim); max-width: 68ch; }

/* ---------- rodape ---------- */

.footer {
  border-top: 1px solid var(--hairline);
  background: var(--fog);
  padding-top: clamp(56px, 8vw, 128px);
  padding-bottom: var(--s-48);
}

.footer__grid { display: grid; gap: var(--s-48); }

.footer__tag { margin-top: var(--s-16); color: var(--dim); font-size: 0.9375rem; max-width: 42ch; }

.footer__title {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: var(--s-16);
}

.footer__list { display: grid; gap: 10px; }

.footer__link { font-size: 0.9375rem; font-weight: 500; text-decoration: none; }
.footer__link:hover { color: var(--muted); text-decoration: underline; }

.footer__mail a { font-weight: 500; text-underline-offset: 4px; }
.footer__small { margin-top: 12px; font-size: 0.8125rem; color: var(--muted); max-width: 34ch; }

.footer__bottom {
  margin-top: var(--s-64);
  padding-top: var(--s-24);
  border-top: 1px solid var(--disabled);
  display: grid;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ---------- utilitarios flutuantes ---------- */

.totop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--graphite);
  border: 1px solid var(--graphite);
  border-radius: var(--r-card);
  cursor: pointer;
}
.totop svg { width: 22px; height: 22px; }
.totop:hover { background: var(--graphite); color: var(--white); }

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--accent);
  color: var(--graphite);
  border-top: 1px solid var(--graphite);
}

.cookie__inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  gap: 12px;
}

.cookie__text { font-size: 0.9375rem; }
.cookie__link { font-weight: 500; }

.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn--outline:hover { background: var(--graphite); color: var(--accent); }

/* ---------- paginas legais ---------- */

.legal { padding-block: var(--section-y); }

.legal__head { max-width: 60ch; }

.legal__title {
  font-size: var(--text-heading);
  line-height: 1.12;
  letter-spacing: -0.017em;
  font-weight: 400;
}

.legal__date { margin-top: var(--s-16); color: var(--muted); font-size: 0.875rem; }

.legal__back { margin-top: var(--s-24); }

.legal__body { margin-top: var(--s-48); max-width: 72ch; }

.legal__body h2 {
  font-size: var(--text-heading-sm);
  line-height: 1.18;
  letter-spacing: -0.014em;
  font-weight: 500;
  margin-top: var(--s-48);
  padding-top: var(--s-24);
  border-top: 1px solid var(--hairline);
}
.legal__body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }

.legal__body h3 {
  font-size: var(--text-subheading);
  font-weight: 500;
  letter-spacing: -0.014em;
  margin-top: var(--s-32);
}

.legal__body p { margin-top: var(--s-16); color: var(--dim); }

.legal__body ul { margin-top: var(--s-16); display: grid; gap: 10px; }

.legal__body li {
  position: relative;
  padding-left: 22px;
  color: var(--dim);
}
.legal__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1.5px;
  background: var(--graphite);
}

.legal__table {
  margin-top: var(--s-24);
  border-top: 1px solid var(--graphite);
}
.legal__row {
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-16) 0;
  display: grid;
  gap: 4px;
}
.legal__row dt { font-weight: 500; }
.legal__row dd { margin: 0; color: var(--dim); font-size: 0.9375rem; }

/* ---------- pontos de rutura ---------- */

@media (min-width: 600px) {
  :root { --gutter: 32px; }

  .stats__list { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-48); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .cookie__inner { grid-template-columns: 1fr auto; align-items: center; gap: var(--s-24); }
  .footer__bottom { grid-template-columns: auto 1fr; align-items: baseline; column-gap: var(--s-32); }
  .row {
    grid-template-columns: 88px 1fr;
    grid-template-areas:
      "thumb body"
      "thumb act";
    column-gap: var(--s-24);
  }
  .row__thumb img { width: 88px; height: 88px; }
  .row__action { justify-content: flex-start; margin-top: var(--s-16); }
}

@media (min-width: 900px) {
  .focus__grid { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--s-48); }
  .focus__item--flip .focus__media { order: 2; }

  .row {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    grid-template-areas: "thumb body act";
    align-items: center;
    column-gap: var(--s-32);
  }
  .row__action { justify-content: flex-end; margin-top: 0; }

  .about__grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-64); }
  .about__head { grid-column: 1 / -1; }

  .voices__list { grid-template-columns: repeat(3, 1fr); }
  .steps__list { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-64); }
  .signup__grid { grid-template-columns: 1fr 1fr; column-gap: var(--s-64); align-items: start; }
  .signup__panel { padding: var(--s-32); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; column-gap: var(--s-48); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

@media (min-width: 1100px) {
  :root { --gutter: 48px; --header-h: 84px; }

  .burger { display: none; }
  .nav { display: block; }
  .nav.is-open { position: static; border: 0; padding: 0; }
  .nav.is-open .nav__list { flex-direction: row; gap: var(--s-24); }
  .nav.is-open .nav__link { padding: 4px 0; border-bottom: 1.5px solid transparent; font-size: 0.9375rem; }

  .stats__list { grid-template-columns: repeat(4, 1fr); column-gap: var(--s-32); }
  .stats__item { padding: var(--s-32) 0 var(--s-48); }
  .totop { right: 32px; bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
