@font-face {
  font-family: "Anton";
  src: url("../fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --stone: #0c0a09;
  --stone-2: #15110f;
  --stone-3: #1d1815;
  --steel: #8a8580;
  --steel-light: #cfc8c1;
  --ash: #efe9e2;
  --ember: #ff6a1a;
  --ember-bright: #ff8a3a;
  --ember-deep: #c84a0c;
  --ember-glow: rgba(255, 106, 26, 0.28);
  --line: rgba(255, 106, 26, 0.22);
  --line-steel: rgba(207, 200, 193, 0.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1320px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --radius: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--steel-light);
  background: var(--stone);
  background-image:
    radial-gradient(1100px 620px at 78% -8%, rgba(255, 106, 26, 0.16), transparent 60%),
    radial-gradient(900px 700px at 0% 105%, rgba(200, 74, 12, 0.12), transparent 62%);
  background-attachment: fixed;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}
p {
  margin: 0 0 1rem;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.relayer {
  position: relative;
  z-index: 1;
}
.spark {
  color: var(--ember);
  font-size: 0.7em;
  vertical-align: 0.18em;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ember);
}
.tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--ember);
  box-shadow: 0 0 10px var(--ember-glow);
}

.btn {
  --bg: var(--ember);
  --fg: #170a02;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.92rem 1.7rem;
  border: 2px solid var(--ember);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.25s ease, transform 0.18s ease;
}
.btn:hover {
  box-shadow: 0 0 0 1px var(--ember), 0 14px 38px rgba(255, 106, 26, 0.32);
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid var(--ember-bright);
  outline-offset: 3px;
}
.btn--ghost {
  --bg: transparent;
  --fg: var(--ash);
}
.btn--ghost:hover {
  --bg: rgba(255, 106, 26, 0.12);
  --fg: #fff;
}

.iglow {
  color: var(--ember-bright);
  background-image: linear-gradient(var(--ember), var(--ember));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease;
}
.iglow:hover,
.iglow:focus-visible {
  background-size: 100% 1px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-steel);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__mark {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px var(--ember-glow));
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ash);
}
.brand__name em {
  color: var(--ember);
  font-style: normal;
}
.nav__desktop {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--steel-light);
  padding: 0.3rem 0;
  transition: color 0.18s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: #fff;
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav__cta {
  margin-left: 0.4rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 106, 26, 0.06);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ember);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(86vw, 360px);
  height: 100dvh;
  background: var(--stone-2);
  border-left: 2px solid var(--ember);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.4rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.open {
  transform: translateX(0);
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-steel);
}
.drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ember);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  margin-top: 0.6rem;
}
.drawer__nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ash);
  border-bottom: 1px solid var(--line-steel);
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.drawer__nav a span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ember);
}
.drawer__nav a:hover,
.drawer__nav a:focus-visible {
  color: var(--ember);
  padding-left: 0.7rem;
}
.drawer__foot {
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--steel);
}
.drawer__foot a { color: var(--ember-bright); }
.scrim {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(4, 3, 2, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scrim.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.94) 0%, rgba(12, 10, 9, 0.74) 46%, rgba(12, 10, 9, 0.42) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.95), rgba(12, 10, 9, 0.2) 55%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 9vh, 7rem);
}
.hero__copy { max-width: 40rem; }
.hero__title {
  font-size: clamp(3.1rem, 8.4vw, 6.6rem);
  margin: 1.1rem 0 1.3rem;
  color: var(--ash);
}
.hero__title em {
  font-style: normal;
  color: var(--ember);
  text-shadow: 0 0 38px rgba(255, 106, 26, 0.5);
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--steel-light);
  max-width: 36rem;
  margin-bottom: 1.8rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--ember);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.subcard {
  background: linear-gradient(180deg, rgba(29, 24, 21, 0.92), rgba(15, 17, 15, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 30px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.subcard__head {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.4rem;
}
.subcard__sub {
  font-size: 0.92rem;
  color: var(--steel);
  margin-bottom: 1.2rem;
}

.field {
  margin-bottom: 0.9rem;
}
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.4rem;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ash);
  background: rgba(12, 10, 9, 0.7);
  border: 1px solid var(--line-steel);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #6f6962; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.18);
}
.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.6rem 0 1.1rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--steel);
}
.consent input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--ember);
  flex: 0 0 auto;
}
.consent a { color: var(--ember-bright); text-decoration: underline; }
.form__submit { width: 100%; }
.success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ember);
  border-radius: var(--radius);
  background: rgba(255, 106, 26, 0.12);
  color: var(--ash);
  font-size: 0.92rem;
}
.success.show { display: block; }

.sec {
  position: relative;
  padding-block: clamp(3.6rem, 8vw, 6.4rem);
}
.sec--tight { padding-block: clamp(2.6rem, 5vw, 4rem); }
.sec__head {
  max-width: 50rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.sec__title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: var(--ash);
  margin: 0.9rem 0 0.7rem;
}
.sec__title em { font-style: normal; color: var(--ember); }
.sec__lede {
  font-size: 1.08rem;
  color: var(--steel-light);
  max-width: 42rem;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.statstrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-steel);
  border-block: 1px solid var(--line);
}
.statstrip__cell {
  background: var(--stone);
  padding: 1.8rem clamp(1rem, 2.5vw, 1.8rem);
}
.statstrip__cell b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ember);
  line-height: 1;
}
.statstrip__cell span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}
.review {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--stone-3), var(--stone-2));
  border: 1px solid var(--line-steel);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.review:hover {
  border-color: var(--ember);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.review__top {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.2rem 0.9rem;
}
.review__icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 1px solid var(--line-steel);
  flex: 0 0 auto;
}
.review__id { min-width: 0; }
.review__name {
  font-family: var(--font-display);
  font-size: 1.32rem;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1.02;
}
.review__cat {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 0.35rem;
}
.review__rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: var(--steel-light);
}
.stars {
  --pct: 0%;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #4a443f;
}
.stars::before {
  content: "★★★★★";
}
.stars::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--pct);
  overflow: hidden;
  color: var(--ember);
}
.review__body {
  padding: 0 1.2rem 1.1rem;
  font-size: 0.95rem;
  color: var(--steel-light);
}
.review__verdict {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.2rem 1.1rem;
}
.chip {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  border: 1px solid var(--line-steel);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}
.chip--hot {
  color: var(--ember);
  border-color: var(--line);
}
.review__foot {
  margin-top: auto;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line-steel);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review__score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ember);
}
.review__score small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--steel);
  letter-spacing: 0.1em;
}
.review__link {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.18s ease, color 0.18s ease;
}
.review__link:hover { color: var(--ember); gap: 0.6rem; }

.band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-block: 1px solid var(--line);
}
.band--flip .band__media { order: 2; }
.band__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.25), rgba(12, 10, 9, 0.55));
  mix-blend-mode: multiply;
}
.band__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 5vw, 4.2rem) clamp(1.4rem, 5vw, 4rem);
  background:
    radial-gradient(700px 400px at 110% 0%, rgba(255, 106, 26, 0.1), transparent 60%),
    var(--stone);
}
.band__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--ash);
  margin: 0.9rem 0 1rem;
}
.band__title em { font-style: normal; color: var(--ember); }
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.6rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.step__no {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ember);
  line-height: 1;
  padding-top: 0.1rem;
}
.step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  font-size: 1.05rem;
  color: var(--ash);
  letter-spacing: 0;
  margin-bottom: 0.2rem;
}
.step p { font-size: 0.95rem; color: var(--steel-light); margin: 0; }

.genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.genre {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1 1 200px;
  border: 1px solid var(--line-steel);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  background: var(--stone-2);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.genre:hover {
  border-color: var(--ember);
  background: rgba(255, 106, 26, 0.06);
}
.genre b {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--ash);
}
.genre span { font-size: 0.86rem; color: var(--steel); }

.voices {
  columns: 3 300px;
  column-gap: 1.2rem;
}
.voice {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  background: var(--stone-2);
  border: 1px solid var(--line-steel);
  border-left: 3px solid var(--ember);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.1rem;
}
.voice__quote {
  font-size: 0.98rem;
  color: var(--ash);
  margin-bottom: 0.9rem;
}
.voice__who {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.voice__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #170a02;
  background: var(--ember);
  flex: 0 0 auto;
}
.voice__name { font-weight: 700; font-size: 0.9rem; color: var(--ash); }
.voice__meta { font-size: 0.78rem; color: var(--steel); }
.voice__stars { margin-bottom: 0.7rem; }

.faq {
  display: grid;
  gap: 0.7rem;
  max-width: 52rem;
  margin-inline: auto;
}

#faq .sec__head {
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
}
#faq .tag { justify-content: center; }
.faq__item {
  border: 1px solid var(--line-steel);
  border-radius: var(--radius);
  background: var(--stone-2);
  overflow: hidden;
}
.faq__item[open] {
  border-color: var(--line);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ash);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ember);
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 1.3rem 1.2rem;
  color: var(--steel-light);
  font-size: 0.98rem;
}

.ctaband {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.ctaband__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ctaband::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(12, 10, 9, 0.95), rgba(12, 10, 9, 0.7));
}
.ctaband__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.ctaband__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--ash);
  margin-bottom: 1rem;
}
.ctaband__title em { font-style: normal; color: var(--ember); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
.infocard {
  background: var(--stone-2);
  border: 1px solid var(--line-steel);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.infocard + .infocard { margin-top: 1.2rem; }
.infocard h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  color: var(--ember);
  margin-bottom: 0.7rem;
}
.infocard p { color: var(--ash); margin: 0; }
.infocard a { color: var(--ember-bright); }
.infolist {
  display: grid;
  gap: 1.1rem;
}
.infolist__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}
.infolist__ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ember);
  flex: 0 0 auto;
}
.infolist__row b { display: block; color: var(--ash); }
.infolist__row span { font-size: 0.92rem; color: var(--steel-light); }

.pagehead {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(255, 106, 26, 0.16), transparent 60%),
    var(--stone);
}
.pagehead h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--ash);
}
.pagehead p { color: var(--steel-light); margin-top: 0.8rem; max-width: 46rem; }
.prose {
  max-width: 56rem;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ember);
  margin: 2.4rem 0 0.9rem;
}
.prose h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.1rem;
  color: var(--ash);
  margin: 1.6rem 0 0.6rem;
}
.prose p, .prose li { color: var(--steel-light); }
.prose ul { list-style: none; margin: 0 0 1rem; }
.prose ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}
.prose ul li::before {
  content: "\25C6";
  position: absolute;
  left: 0;
  color: var(--ember);
  font-size: 0.7rem;
  top: 0.35rem;
}
.prose a { color: var(--ember-bright); text-decoration: underline; }
.prose strong { color: var(--ash); }
.lastup {
  font-size: 0.85rem;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nf {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 4rem;
}
.nf__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 15rem);
  line-height: 0.85;
  color: var(--ember);
  text-shadow: 0 0 60px rgba(255, 106, 26, 0.45);
}
.nf h1 { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--ash); margin: 0.6rem 0 1rem; }
.nf p { color: var(--steel-light); max-width: 36rem; margin-inline: auto; }

.footer {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 12% 120%, rgba(255, 106, 26, 0.1), transparent 60%),
    var(--stone-2);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.6rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.footer__brand .brand { margin-bottom: 1rem; }
.footer__blurb { font-size: 0.94rem; color: var(--steel-light); max-width: 28rem; }
.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 1rem;
}
.footer__links { display: grid; gap: 0.6rem; }
.footer__links a {
  font-size: 0.95rem;
  color: var(--steel-light);
  transition: color 0.16s ease, padding-left 0.16s ease;
}
.footer__links a:hover { color: var(--ember); padding-left: 0.25rem; }
.footer__contact { font-size: 0.95rem; color: var(--steel-light); }
.footer__contact a { color: var(--ember-bright); }
.footer__contact p { margin-bottom: 0.6rem; }
.footer__bar {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-steel);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--steel);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer__bar a:hover { color: var(--ember); }

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 760px;
  margin-inline: auto;
  background: var(--stone-3);
  border: 1px solid var(--ember);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  padding: 0.75rem 0.9rem;
  display: none;
  gap: 0.6rem 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie.show { display: flex; }

body.menu-open .cookie { display: none !important; }
.cookie__txt { flex: 1 1 320px; margin: 0; font-size: 0.84rem; line-height: 1.4; color: var(--steel-light); }
.cookie__txt a { color: var(--ember-bright); text-decoration: underline; }
.cookie__btns { display: flex; gap: 0.5rem; flex-wrap: nowrap; flex: 1 1 auto; }
.cookie__btns .btn { flex: 1 1 0; }
.cookie .btn { padding: 0.5rem 0.9rem; font-size: 0.8rem; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--ember);
  color: #170a02;
  padding: 0.7rem 1rem;
  font-weight: 700;
  border-radius: var(--radius);
}
.skip:focus { left: 1rem; top: 1rem; }

@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .voices { columns: 2 300px; }
}

@media (max-width: 900px) {
  .nav__desktop { display: none; }
  .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .band { grid-template-columns: 1fr; }
  .band--flip .band__media { order: 0; }
  .band__media { min-height: 280px; }
  .ctaband__inner { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .statstrip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .voices { columns: 1; }
  .hero { min-height: auto; }
  .hero__stat b { font-size: 1.8rem; }
  .review__top { flex-direction: row; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
  .cookie { left: 0.6rem; right: 0.6rem; bottom: 0.6rem; }
}

@media (max-width: 400px) {
  .statstrip { grid-template-columns: 1fr; }
  .brand__name { font-size: 1.25rem; }
}

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