/* BracketDesk — editorial system */

:root {
  --onyx: #0b0b0b;
  --graphite: #212121;
  --charcoal: #353535;
  --canvas: #ffffff;
  --frost: #ededed;
  --ash: #d6d6d6;
  --smoke: #b9b9b9;
  --mid: #5f5f5f;
  --steel: #4a4a4a;
  --ember: #ff4100;
  --signal: #0052ef;
  --signal-light: #85aaff;

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

  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-96: 96px;

  --r-pill: 99999px;
  --r-card: 12px;
  --r-img: 3px;

  --page: 1280px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 68px;

  --text: var(--onyx);
  --text-muted: var(--mid);
  --rule: var(--ash);
  --focus: var(--signal);
}

/* ---------- base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; border-radius: var(--r-img); }

a { color: var(--signal); text-underline-offset: 3px; }
a:hover { text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; }

p { margin: 0 0 var(--sp-16); }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ember);
  color: var(--onyx);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-img) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- layout primitives ---------- */

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

.section { padding-block: clamp(60px, 8.5vw, 112px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section--light { background: var(--canvas); color: var(--onyx); }
.section--frost { background: var(--frost); color: var(--onyx); }
.section--dark {
  background: var(--onyx);
  color: var(--canvas);
  --text-muted: var(--smoke);
  --rule: #262626;
  --focus: var(--signal-light);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0 0 var(--sp-16);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow__num { color: var(--onyx); }
.section--dark .eyebrow__num,
.hero .eyebrow__num,
.page-hero .eyebrow__num { color: var(--ember); }
.section--dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow { color: var(--smoke); }

.section__head {
  max-width: 44ch;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section__head--wide { max-width: 62ch; }

.h-display {
  font-size: clamp(36px, 6.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.h-section {
  font-size: clamp(29px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.033em;
  font-weight: 500;
}
.h-sub {
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.accent { color: var(--ember); }

.lead {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: var(--sp-24);
}

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r-pill);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn__icon { width: 16px; height: 16px; flex: none; }

.btn--primary { background: var(--ember); color: var(--onyx); }
.btn--primary:hover { background: #ff5c22; }

.btn--ghost {
  background: transparent;
  color: var(--ghost-fg, var(--onyx));
  border-color: var(--ghost-bd, var(--onyx));
}
.btn--ghost:hover {
  background: var(--ghost-fg, var(--onyx));
  color: var(--ghost-inv, var(--canvas));
  border-color: var(--ghost-fg, var(--onyx));
}

.section--dark,
.hero,
.page-hero,
.header__inner,
.model,
.cookie,
.footer {
  --ghost-fg: var(--canvas);
  --ghost-bd: rgba(255, 255, 255, .55);
  --ghost-inv: var(--onyx);
}

.btn--link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--signal);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
}
.section--dark .btn--link { color: var(--signal-light); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  margin-top: var(--sp-32);
}

.tag {
  display: inline-block;
  border-radius: var(--r-pill);
  border: 1px solid var(--smoke);
  padding: 3px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.section--dark .tag { border-color: #3a3a3a; color: var(--smoke); }
.tag--ember { border-color: var(--ember); color: var(--onyx); }

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .2s ease, border-color .2s ease;
}
.header.is-stuck {
  background: var(--onyx);
  border-bottom-color: var(--graphite);
}
.header.is-open { background: var(--onyx); }

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-24);
  min-height: var(--header-h);
  --focus: var(--signal-light);
}

.logo {
  font-family: var(--font-mono);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--canvas);
  white-space: nowrap;
  flex: none;
}
.logo__mark { color: var(--ember); }

.header__nav { margin-left: auto; }

.header__list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
}
.header__link {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 8px 0;
  display: inline-block;
}
.header__link:hover { color: var(--canvas); }

.header__cta { flex: none; padding: 10px 20px; font-size: 14px; }

.header__burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--r-pill);
  color: var(--canvas);
  cursor: pointer;
}
.header__burger svg { width: 18px; height: 18px; }
.header__burger .icon-close { display: none; }
.header.is-open .header__burger .icon-close { display: block; }
.header.is-open .header__burger .icon-menu { display: none; }

@media (max-width: 1023px) {
  .header__burger { display: inline-flex; }
  .header__nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--onyx);
    border-bottom: 1px solid var(--graphite);
    padding: var(--sp-24) var(--gutter) var(--sp-32);
    display: none;
    margin-left: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .header.is-open .header__nav { display: block; }
  .header__list { flex-direction: column; align-items: stretch; gap: 0; }
  .header__item { border-bottom: 1px solid var(--graphite); }
  .header__link { display: block; padding: 14px 0; font-size: 17px; }
  .header__cta { margin-top: var(--sp-24); }
}

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

.hero {
  position: relative;
  background: var(--onyx);
  color: var(--canvas);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 88vh;
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 104px));
  padding-bottom: clamp(56px, 8vw, 104px);
  --text-muted: var(--smoke);
  --rule: #262626;
  --focus: var(--signal-light);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 0;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, .78);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .eyebrow { justify-content: center; }
.hero .eyebrow__num { color: var(--canvas); }
.hero .btn-row { justify-content: center; }

.hero__title { max-width: 20ch; margin-inline: auto; }
.hero__lead { max-width: 62ch; margin-inline: auto; }

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-16) clamp(24px, 4vw, 56px);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: var(--sp-24);
  border-top: 1px solid #2c2c2c;
  max-width: 820px;
  width: 100%;
}
.hero__metric { display: flex; align-items: baseline; gap: 10px; }
.hero__metric-v {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--canvas);
}
.hero__metric-k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ---------- catalog ---------- */

.catalog__banner {
  display: grid;
  border: 1px solid var(--ash);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--canvas);
  margin-bottom: var(--sp-24);
}
@media (min-width: 900px) {
  .catalog__banner { grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); }
}
.catalog__banner-media { margin: 0; position: relative; background: var(--frost); }
.catalog__banner-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}
.catalog__banner-flag {
  position: absolute;
  top: var(--sp-16);
  left: var(--sp-16);
  background: var(--ember);
  color: var(--onyx);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.catalog__banner-body { padding: clamp(24px, 3.2vw, 44px); }

.catalog__grid { display: block; }
.catalog__grid > .gcard { margin-bottom: var(--sp-24); }
@media (min-width: 860px) {
  .catalog__grid { columns: 2; column-gap: var(--sp-24); }
  .catalog__grid > .gcard { break-inside: avoid; page-break-inside: avoid; }
}

.gcard {
  border: 1px solid var(--ash);
  border-radius: var(--r-card);
  background: var(--canvas);
  overflow: hidden;
  transition: border-color .18s ease;
}
.gcard:hover { border-color: var(--steel); }
.gcard__media { margin: 0; background: var(--frost); }
.gcard__body { padding: clamp(20px, 2.2vw, 28px); }

.gcard--vertical .gcard__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}
.gcard--horizontal { display: grid; grid-template-columns: 132px minmax(0, 1fr); }
.gcard--horizontal .gcard__media { height: 100%; }
.gcard--horizontal .gcard__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
}
@media (min-width: 480px) {
  .gcard--horizontal { grid-template-columns: 168px minmax(0, 1fr); }
}

.gtitle { display: flex; align-items: center; gap: var(--sp-12); }
.gtitle__icon { width: 44px; height: 44px; border-radius: 10px; flex: none; }
.gtitle--lg .gtitle__icon { width: 56px; height: 56px; border-radius: 12px; }
.gtitle__name { font-size: 19px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 600; }
.gtitle--lg .gtitle__name { font-size: clamp(23px, 2.2vw, 30px); letter-spacing: -0.028em; }
.gtitle__dev {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 3px;
}

.gcard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-8) var(--sp-12);
  margin-top: var(--sp-16);
}
.gcard__note { font-family: var(--font-mono); font-size: 11px; color: var(--mid); letter-spacing: 0.04em; }
.gcard__text { margin-top: var(--sp-16); font-size: 15.5px; line-height: 1.6; color: var(--steel); }
.section--dark .gcard__text { color: var(--smoke); }
.gcard__foot { margin-top: var(--sp-24); display: flex; flex-wrap: wrap; gap: var(--sp-12); align-items: center; }

.gcard__specs {
  margin-top: var(--sp-24);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
}
@media (min-width: 620px) {
  .gcard__specs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.gcard__spec { background: var(--canvas); padding: var(--sp-16) var(--sp-12) 0 0; }
.gcard__spec-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.gcard__spec-v { font-size: 15px; font-weight: 600; margin-top: 2px; }
.section--dark .gtitle__dev { color: var(--smoke); }
.section--dark .gcard__spec-k { color: var(--smoke); }


/* stars (opiniões dos leitores) */

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

.stars { position: relative; display: inline-block; width: max-content; align-self: start; line-height: 0; flex: none; }
.stars__row { display: flex; gap: 2px; width: max-content; }
.stars__row svg { width: 15px; height: 15px; flex: none; }
.stars__base { color: var(--ash); }
.stars__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--ember);
}
.stars__fill--80 { width: 80%; }
.stars__fill--100 { width: 100%; }

/* ---------- deep dive ---------- */

.deep__item { border-top: 1px solid var(--rule); padding-top: clamp(36px, 4.5vw, 64px); margin-top: clamp(36px, 4.5vw, 64px); }
.deep__item:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }

.deep__grid { display: grid; gap: clamp(28px, 3.5vw, 48px); }
@media (min-width: 1024px) {
  .deep__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: start; }
  .deep__item--flip .deep__media { order: -1; }
}

.deep__index {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ember);
  margin-bottom: var(--sp-16);
}
.deep__facts { margin-top: var(--sp-24); display: grid; gap: var(--sp-12); }
.deep__fact { display: flex; gap: var(--sp-12); align-items: flex-start; font-size: 15.5px; line-height: 1.55; }
.deep__fact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--ember); }
.deep__verdict {
  margin-top: var(--sp-24);
  border-left: 2px solid var(--ember);
  padding-left: var(--sp-16);
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--canvas);
}
.deep__media { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(8px, 1.2vw, 14px); }
.deep__media figure { margin: 0; }
.deep__media img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid #2a2a2a;
}
.deep__media--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 16px); }
.deep__media--wide figure:first-child { grid-column: 1 / -1; }
.deep__media--wide img { aspect-ratio: 16 / 9; }
.deep__media figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 8px;
}

/* ---------- steps ---------- */

.steps { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.step {
  display: grid;
  gap: var(--sp-12);
  padding-block: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 860px) {
  .step { grid-template-columns: 96px minmax(0, 1fr) minmax(0, 1.25fr); gap: var(--sp-32); align-items: start; }
}
.step__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; color: var(--onyx); padding-top: 4px; }
.step__title { font-size: clamp(19px, 1.9vw, 23px); letter-spacing: -0.02em; font-weight: 600; }
.step__text { color: var(--steel); font-size: 16px; }
.step__icon { width: 20px; height: 20px; color: var(--mid); margin-bottom: 8px; }

/* ---------- trust ---------- */

.trust__grid { display: grid; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 1024px) {
  .trust__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: start; }
}
.checks { display: grid; gap: var(--sp-16); }
.check {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: var(--sp-16);
  align-items: start;
  border-top: 1px solid var(--ash);
  padding-top: var(--sp-16);
}
.check__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ash);
  display: grid;
  place-items: center;
  color: var(--onyx);
  background: var(--canvas);
}
.check__icon svg { width: 16px; height: 16px; }
.check__title { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.check__text { font-size: 15.5px; color: var(--steel); margin-top: 4px; }

.model {
  background: var(--onyx);
  color: var(--canvas);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 36px);
  --text-muted: var(--smoke);
  --focus: var(--signal-light);
}
.model__title { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.025em; font-weight: 500; }
.model__list-intro { margin-top: var(--sp-12); font-size: 16px; }
.model__list { margin-top: var(--sp-24); display: grid; gap: var(--sp-16); }
.model__item { border-top: 1px solid #262626; padding-top: var(--sp-16); font-size: 15.5px; color: var(--smoke); }
.model__item b { color: var(--canvas); font-weight: 600; }
.model__media { margin: var(--sp-24) 0 0; }
.model__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid #2a2a2a; }

/* ---------- reviews ---------- */

.reviews__grid { display: grid; gap: var(--sp-24); }
@media (min-width: 860px) { .reviews__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.review {
  border: 1px solid var(--ash);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  background: var(--canvas);
}
.review__quote { font-size: 16.5px; line-height: 1.6; margin: 0; }
.review__author { display: flex; align-items: center; gap: var(--sp-12); margin-top: auto; }
.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  background: var(--onyx);
  color: var(--canvas);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex: none;
}
.review__name { font-size: 15px; font-weight: 600; }
.review__role { font-size: 13px; color: var(--mid); }

/* ---------- numbers ---------- */

.numbers { position: relative; overflow: hidden; }
.numbers__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; z-index: 0; }
.numbers__scrim { position: absolute; inset: 0; background: rgba(11, 11, 11, .86); z-index: 1; }
.numbers__inner { position: relative; z-index: 2; }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: var(--r-card);
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 48px);
}
@media (min-width: 900px) { .numbers__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stat { background: var(--onyx); padding: clamp(22px, 2.6vw, 32px); }
.stat__value {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.stat__unit { font-size: 0.44em; letter-spacing: -0.01em; color: var(--ember); margin-left: 4px; }
.stat__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke); margin-top: var(--sp-12); }
.stat__note { font-size: 14px; color: var(--smoke); margin-top: 8px; line-height: 1.45; }

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

.faq__list { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item h3 { margin: 0; font-weight: inherit; }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  background: none;
  border: 0;
  padding: clamp(18px, 2.2vw, 26px) 0;
  text-align: left;
  cursor: pointer;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.faq__sign { width: 20px; height: 20px; flex: none; color: var(--ember); transition: transform .2s ease; }
.faq__item.is-open .faq__sign { transform: rotate(45deg); }
.faq__panel { display: none; padding-bottom: clamp(18px, 2.2vw, 26px); max-width: 78ch; color: var(--steel); font-size: 16px; }
.faq__item.is-open .faq__panel { display: block; }

/* ---------- subscribe ---------- */

.cta { position: relative; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; z-index: 0; }
.cta__scrim { position: absolute; inset: 0; background: rgba(11, 11, 11, .9); z-index: 1; }
.cta__inner { position: relative; z-index: 2; }
.cta__grid { display: grid; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 1024px) { .cta__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; } }

.form { display: grid; gap: var(--sp-16); }
.form__row { display: grid; gap: var(--sp-16); }
@media (min-width: 620px) { .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: grid; gap: 6px; }
.field__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke); }
.field__input {
  width: 100%;
  background: var(--graphite);
  border: 1px solid var(--charcoal);
  border-radius: var(--r-img);
  color: var(--canvas);
  padding: 13px 15px;
  font: inherit;
  font-size: 16px;
}
.field__input::placeholder { color: #6f6f6f; }
.field__input:focus-visible { outline: 2px solid var(--signal-light); outline-offset: 1px; }

.consent { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: var(--sp-12); align-items: start; margin-top: var(--sp-8); }
.consent__box { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--ember); }
.consent__text { font-size: 14px; line-height: 1.5; color: var(--smoke); }
.consent__text a { color: var(--signal-light); }

.form__submit { justify-self: start; margin-top: var(--sp-8); }
.form__note { font-size: 13px; color: var(--smoke); }

.success {
  display: none;
  margin-top: var(--sp-16);
  border: 1px solid var(--ember);
  border-radius: var(--r-img);
  padding: var(--sp-16);
  font-size: 15px;
  color: var(--canvas);
  background: rgba(255, 65, 0, .1);
}
.success.is-visible { display: block; }

.cta__points { display: grid; gap: var(--sp-16); margin-top: var(--sp-32); }
.cta__point { display: flex; gap: var(--sp-12); align-items: flex-start; font-size: 15.5px; color: var(--smoke); }
.cta__point svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--ember); }

/* ---------- footer ---------- */

.footer {
  background: var(--onyx);
  color: var(--canvas);
  padding-block: clamp(48px, 6vw, 80px) var(--sp-32);
  --focus: var(--signal-light);
}
.footer__grid { display: grid; gap: clamp(28px, 3.5vw, 48px); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.footer__brand-text { color: var(--smoke); font-size: 15px; margin-top: var(--sp-16); max-width: 34ch; }
.footer__title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke); margin-bottom: var(--sp-16); }
.footer__list { display: grid; gap: 10px; }
.footer__link { color: rgba(255, 255, 255, .85); text-decoration: none; font-size: 15px; }
.footer__link:hover { color: var(--ember); }
.footer__contact { font-size: 15px; color: var(--smoke); }
.footer__contact a { color: var(--canvas); }
.footer__bottom {
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: var(--sp-24);
  border-top: 1px solid var(--graphite);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12) var(--sp-24);
  justify-content: space-between;
  font-size: 13px;
  color: var(--smoke);
}

/* ---------- floating ---------- */

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: var(--r-pill);
  background: var(--ember);
  color: var(--onyx);
  border: 0;
  display: none;
  place-items: center;
  cursor: pointer;
}
.to-top.is-visible { display: grid; }
.to-top svg { width: 18px; height: 18px; }

.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  background: var(--graphite);
  border: 1px solid var(--charcoal);
  border-radius: var(--r-card);
  padding: var(--sp-24);
  color: var(--canvas);
  display: none;
  gap: var(--sp-16);
  --focus: var(--signal-light);
}
.cookie.is-visible { display: grid; }
@media (min-width: 860px) {
  .cookie { left: auto; right: 20px; bottom: 20px; max-width: 460px; }
}
.cookie__text { font-size: 14.5px; line-height: 1.5; color: var(--smoke); }
.cookie__text a { color: var(--signal-light); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: var(--sp-12); }
.cookie__actions .btn { padding: 10px 20px; font-size: 14px; }

/* ---------- legal pages ---------- */

.page-hero {
  background: var(--onyx);
  color: var(--canvas);
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + clamp(48px, 6vw, 84px));
  padding-bottom: clamp(40px, 5vw, 64px);
  --text-muted: var(--smoke);
  --focus: var(--signal-light);
}
.page-hero__meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke); margin-top: var(--sp-24); }

.legal { max-width: 78ch; }
.legal h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.025em;
  margin: clamp(36px, 4vw, 56px) 0 var(--sp-16);
}
.legal h3 { font-size: 18px; letter-spacing: -0.015em; margin: var(--sp-24) 0 var(--sp-8); }
.legal p { color: var(--steel); }
.legal ul { display: grid; gap: 10px; margin: var(--sp-16) 0; }
.legal li { position: relative; padding-left: 20px; color: var(--steel); }
.legal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--ember);
  border-radius: var(--r-pill);
}
.legal table { width: 100%; border-collapse: collapse; margin: var(--sp-16) 0; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 12px; border: 1px solid var(--ash); vertical-align: top; }
.legal th { background: var(--frost); font-weight: 600; }
@media (max-width: 560px) {
  .legal table { display: block; overflow-x: auto; }
  .legal th, .legal td { padding: 10px; overflow-wrap: anywhere; }
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__frame:nth-child(2) { transform: none; }
}
