@charset "UTF-8";

:root {
  --ink: #f8f1e7;
  --ink-soft: #d9c9bc;
  --ink-muted: #aa9690;
  --page: #090708;
  --surface: #130d0f;
  --surface-2: #1a1114;
  --surface-3: #211519;
  --wine: #4d151b;
  --wine-bright: #7f2026;
  --ember: #f05a22;
  --ember-soft: #ff8a3d;
  --gold: #d7a64a;
  --gold-soft: #f1cd7a;
  --line: rgba(240, 90, 34, 0.22);
  --line-soft: rgba(255, 255, 255, 0.09);
  --success: #8ccf8a;
  --warning: #f1bd67;
  --header-h: 75px;
  --radius: 6px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  overflow-x: clip;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 0;
  padding-top: var(--header-h);
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(91, 20, 24, 0.11), transparent 360px),
    var(--page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

p,
ul,
ol,
figure,
table,
h1,
h2,
h3 {
  margin: 0;
}

p,
li,
td,
th,
summary {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: #1a0d08;
  background: var(--gold-soft);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(9, 7, 8, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  min-width: 0;
  color: var(--ink);
}

.brand__logo {
  display: block;
  width: 104px;
  height: 40px;
  flex: 0 0 104px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link {
  position: relative;
  padding: 12px 13px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-nav__link::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__link.is-active {
  color: var(--ink);
}

.menu-toggle,
.menu-scrim {
  display: none;
}

.cta {
  --cta-bg: linear-gradient(135deg, #f2be58, #f05a22);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  max-width: 100%;
  padding: 10px 16px;
  overflow: hidden;
  color: #1d0d08;
  background: var(--cta-bg);
  border: 1px solid rgba(255, 216, 139, 0.58);
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(240, 90, 34, 0.18);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: transform 150ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta::before {
  position: absolute;
  z-index: -1;
  width: 12px;
  height: 12px;
  content: "";
  background: radial-gradient(circle, rgba(255, 232, 170, 0.95), rgba(240, 90, 34, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.2);
  pointer-events: none;
}

.cta:hover,
.cta:focus-visible {
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgba(240, 90, 34, 0.28);
  transform: translateY(-1px);
}

.cta.is-ember-pressed {
  transform: translateY(2px) scale(0.985);
}

.cta.is-ember-pressed::before {
  opacity: 1;
  animation: ember-ping 260ms ease-out forwards;
}

.cta--bonus {
  --cta-bg: linear-gradient(135deg, #ffd674, #ea6823);
}

.cta--ghost,
.cta--soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(240, 90, 34, 0.48);
  box-shadow: none;
}

.cta--platform {
  width: 100%;
  min-width: 0;
}

.cta--download {
  justify-content: flex-start;
  min-width: 180px;
  min-height: 58px;
  padding: 8px 12px 8px 9px;
  text-align: left;
}

.cta__platform-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.cta__platform-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.cta__platform-copy small {
  color: rgba(29, 13, 8, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cta__platform-copy strong {
  color: #1d0d08;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.cta--download > .icon--arrow {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  margin-left: auto;
}

.cta--store {
  min-width: 190px;
}

.layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1020px) 240px;
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  margin: 20px auto;
  padding: 0 30px;
}

.content-stack {
  display: flex;
  grid-column: 2;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.sidebar {
  min-width: 0;
}

.sidebar--left {
  grid-column: 1;
}

.sidebar--right {
  grid-column: 3;
}

.sidebar__sticky {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 20px;
}

.sidebar__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sports-panel,
.article-nav,
.app-rail,
.game-rail {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.sports-panel__switches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line-soft);
}

.sports-panel__switches a {
  display: grid;
  place-items: center;
  min-height: 55px;
  padding: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}

.sports-panel__switches a + a {
  border-left: 1px solid var(--line-soft);
}

.sports-panel__switches a:hover,
.sports-panel__switches a:focus-visible {
  color: var(--gold-soft);
  background: rgba(240, 90, 34, 0.07);
}

.sports-panel__live,
.sports-panel__list li a {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 9px 12px;
}

.sports-panel__live {
  color: var(--ember-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
  font-weight: 800;
}

.sports-panel__list {
  margin: 0;
  padding: 4px 0;
  list-style: none;
}

.sports-panel__list li a {
  color: var(--ink-soft);
  font-size: 12px;
}

.sports-panel__live:hover,
.sports-panel__live:focus-visible,
.sports-panel__list li a:hover,
.sports-panel__list li a:focus-visible {
  color: var(--gold-soft);
  background: rgba(240, 90, 34, 0.07);
}

.sports-panel__icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sports-panel strong {
  color: var(--ink-muted);
  font-size: 11px;
}

.article-nav {
  max-height: calc(100vh - 440px);
  padding: 16px 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--wine-bright) transparent;
}

.article-nav__link {
  position: relative;
  display: block;
  padding: 9px 8px 9px 16px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.3;
}

.article-nav__link::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 6px;
  height: 2px;
  content: "";
  background: var(--wine-bright);
  transform: translateY(-50%);
  transition: width 160ms ease, background 160ms ease;
}

.article-nav__link:hover,
.article-nav__link:focus-visible,
.article-nav__link.is-current {
  color: var(--ink);
  transform: translate(2px, -1px);
}

.article-nav__link.is-current::before,
.article-nav__link:hover::before {
  width: 10px;
  background: var(--ember);
}

.app-rail {
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(90, 20, 25, 0.48), rgba(19, 13, 15, 0.98)),
    var(--surface);
}

.app-rail h2 {
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.25;
}

.app-rail__platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.game-rail {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
}

.game-rail a {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 9px 11px;
  color: var(--ink-soft);
  background: var(--surface);
}

.game-rail a:hover,
.game-rail a:focus-visible {
  color: var(--gold-soft);
  background: var(--surface-2);
}

.game-rail__thumb {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid rgba(240, 90, 34, 0.36);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.game-rail a:hover .game-rail__thumb,
.game-rail a:focus-visible .game-rail__thumb {
  border-color: rgba(241, 205, 122, 0.7);
  filter: brightness(1.08);
  transform: translateY(-1px) scale(1.025);
}

.hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background-color: #130b0d;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(240, 90, 34, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 381px;
  padding: 65px 30px;
  background-image: var(--hero-image);
}

.hero::before,
.promo-banner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background: linear-gradient(90deg, rgba(6, 5, 6, 0.96) 0%, rgba(8, 6, 7, 0.86) 42%, rgba(8, 6, 7, 0.14) 72%);
}

.hero--copy-right {
  justify-content: flex-end;
}

.hero--copy-right::before {
  background: linear-gradient(270deg, rgba(6, 5, 6, 0.96) 0%, rgba(8, 6, 7, 0.86) 42%, rgba(8, 6, 7, 0.12) 72%);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(56%, 590px);
  min-width: 0;
}

.hero__eyebrow,
.service-card__eyebrow {
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  padding: 0;
  color: #fff8ef;
  font-size: 30px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: wrap;
}

.hero p {
  width: 100%;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 23.25px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
}

.content-section {
  position: relative;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(44, 20, 24, 0.7), rgba(19, 13, 15, 0.98) 52%),
    var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.content-section:nth-of-type(even) {
  background:
    linear-gradient(145deg, rgba(29, 16, 19, 0.95), rgba(14, 11, 12, 0.98)),
    var(--surface);
}

.content-section::after {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 110px;
  height: 90px;
  content: "";
  border: 1px solid rgba(215, 166, 74, 0.1);
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 22px 0 100%;
  transform: rotate(8deg);
  pointer-events: none;
}

.section-heading {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
}

.section-heading__mark {
  position: relative;
  width: 24px;
  height: 36px;
}

.section-heading__mark::before,
.section-heading__mark::after {
  position: absolute;
  top: 17px;
  content: "";
  background: var(--ember);
}

.section-heading__mark::before {
  left: 0;
  width: 18px;
  height: 2px;
  box-shadow: 6px -5px 0 -0.5px rgba(215, 166, 74, 0.8);
}

.section-heading__mark::after {
  left: 18px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-1px);
}

.section-heading h2 {
  width: 100%;
  max-width: none;
  padding: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 650;
  line-height: 36px;
  letter-spacing: -0.018em;
  text-wrap: wrap;
}

.section-heading h2::after {
  display: block;
  width: 46px;
  height: 1px;
  margin-top: 8px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--ember), transparent);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 360ms ease;
}

.content-section:hover .section-heading h2::after,
.content-section:focus-within .section-heading h2::after {
  transform: scaleX(1);
}

.section-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.section-flow > *,
.faq-item__answer > * {
  width: 100%;
  max-width: none;
}

.section-flow p,
.section-flow li,
.service-pair p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 23.25px;
}

.section-flow .author-signature {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  color: var(--gold-soft);
  background:
    linear-gradient(90deg, rgba(215, 166, 74, 0.12), rgba(240, 90, 34, 0.045)),
    rgba(8, 6, 7, 0.56);
  border: 1px solid rgba(215, 166, 74, 0.22);
  border-left: 3px solid var(--ember);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  font-weight: 800;
  letter-spacing: 0.015em;
}

.section-flow h3 {
  width: 100%;
  padding: 0;
  color: var(--gold-soft);
  font-size: 20px;
  font-weight: 650;
  line-height: 32px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.review-card-suite {
  display: grid;
  gap: 14px;
}

.review-average {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  color: var(--ink-soft);
  background: rgba(8, 6, 7, 0.58);
  border: 1px solid rgba(215, 166, 74, 0.24);
  border-left: 3px solid var(--ember);
  border-radius: 4px;
}

.review-average__label {
  font-weight: 700;
}

.review-average__score {
  display: inline-flex;
  align-items: baseline;
  color: var(--gold-soft);
  font-size: 18px;
  line-height: 1;
}

.review-average__score data {
  font-size: 23px;
  font-weight: 900;
}

.review-average__count {
  color: var(--ink-muted);
  font-size: 13px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(240, 90, 34, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(37, 20, 23, 0.98), rgba(13, 10, 11, 0.98));
  border: 1px solid rgba(215, 166, 74, 0.2);
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  flex-direction: column;
}

.review-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--ember), var(--gold), transparent);
  opacity: 0.62;
}

.review-card__rating {
  display: inline-flex;
  align-items: baseline;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--gold-soft);
  background: rgba(215, 166, 74, 0.08);
  border: 1px solid rgba(215, 166, 74, 0.22);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.review-card__rating data {
  font-size: 16px;
  font-weight: 900;
}

.section-flow .review-card > p {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 23.25px;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-top: 16px;
  padding-top: 12px;
  color: var(--ink-muted);
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  line-height: 19px;
}

.review-card__author strong {
  color: var(--gold-soft);
  font-weight: 800;
}

.section-flow ul,
.section-flow ol {
  display: grid;
  gap: 10px;
  width: 100%;
  padding-left: 24px;
}

.section-flow li {
  padding-left: 4px;
}

.section-flow li::marker {
  color: var(--ember-soft);
  font-weight: 800;
}

.steps-list {
  position: relative;
  gap: 0 !important;
  padding-left: 0 !important;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  min-height: 48px;
  padding: 4px 0 16px 48px;
  counter-increment: steps;
}

.steps-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  content: counter(steps);
  color: #210e08;
  background: linear-gradient(145deg, var(--gold-soft), var(--ember));
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.steps-list li:not(:last-child)::after {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 14px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--ember), rgba(240, 90, 34, 0.08));
}

.section-cta {
  display: flex;
  width: 100%;
  padding-top: 4px;
}

.section-cta--platforms {
  flex-wrap: wrap;
  gap: 10px;
}

.table-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  background: rgba(5, 4, 5, 0.42);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  outline: none;
  scrollbar-width: thin;
  scrollbar-color: var(--ember) #120c0e;
}

.table-wrap:focus-visible {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(240, 90, 34, 0.15);
}

table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

th,
td {
  min-width: 120px;
  padding: 13px 14px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

thead th {
  color: #201007;
  background: linear-gradient(90deg, var(--gold-soft), #e77a33);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr {
  background: rgba(255, 255, 255, 0.014);
  transition: background 160ms ease, box-shadow 160ms ease;
}

tbody tr:nth-child(even) {
  background: linear-gradient(90deg, rgba(240, 90, 34, 0.055), rgba(255, 255, 255, 0.01));
}

tbody tr:hover {
  background: linear-gradient(90deg, rgba(240, 90, 34, 0.14), rgba(215, 166, 74, 0.035));
  box-shadow: inset 3px 0 var(--ember);
}

tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  color: var(--gold-soft);
  background: #171012;
  border-left: 3px solid rgba(240, 90, 34, 0.58);
  font-weight: 750;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  overflow: hidden;
  background: rgba(7, 6, 7, 0.52);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.faq-item:hover {
  background: rgba(43, 20, 23, 0.68);
  border-color: rgba(240, 90, 34, 0.32);
  transform: translate(2px, -2px);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary b {
  position: relative;
  width: 28px;
  height: 28px;
  background: #211518;
  border: 1px solid rgba(240, 90, 34, 0.3);
  border-radius: 50%;
  transition: background 160ms ease, transform 180ms ease;
}

.faq-item summary b::before,
.faq-item summary b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--gold-soft);
  transform: translate(-50%, -50%);
}

.faq-item summary b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary b {
  background: var(--wine-bright);
  transform: rotate(45deg);
}

.faq-item__answer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 16px;
}

.promo-banner {
  display: flex;
  align-items: center;
  min-height: 260px;
  padding: 28px 30px;
  background-image: var(--promo-image);
}

.promo-banner--copy-left {
  justify-content: flex-start;
}

.promo-banner--copy-right {
  justify-content: flex-end;
}

.promo-banner--copy-left::before {
  background: linear-gradient(90deg, rgba(7, 5, 6, 0.94), rgba(7, 5, 6, 0.74) 42%, rgba(7, 5, 6, 0.08) 76%);
}

.promo-banner--copy-right::before {
  background: linear-gradient(270deg, rgba(7, 5, 6, 0.94), rgba(7, 5, 6, 0.74) 42%, rgba(7, 5, 6, 0.08) 76%);
}

.promo-banner__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(52%, 500px);
  min-width: 0;
}

.promo-banner h2 {
  width: 100%;
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.promo-banner p {
  width: 100%;
  margin: 12px 0 16px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.heat-seam::before {
  transform-origin: left;
}

.heat-seam::after {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--ember), var(--gold-soft), transparent);
  transform: scaleX(0.08);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.22, 0.82, 0.26, 1);
  pointer-events: none;
}

.heat-seam.is-revealed::after {
  transform: scaleX(1);
}

.site-footer {
  margin-top: 20px;
  color: var(--ink-soft);
  background:
    linear-gradient(180deg, rgba(62, 18, 22, 0.35), rgba(8, 7, 8, 0.98)),
    #0d090a;
  border-top: 1px solid var(--line);
}

.site-footer__inner,
.site-footer__bottom {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(150px, 0.7fr) minmax(190px, 0.8fr) minmax(250px, 1fr);
  gap: 40px;
  padding-top: 38px;
  padding-bottom: 32px;
}

.site-footer__brand p {
  max-width: 360px;
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav strong {
  margin-bottom: 2px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav a {
  position: relative;
  color: var(--ink-muted);
  font-size: 13px;
}

.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--ink);
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.responsible {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.responsible__age {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--gold-soft);
  border: 2px solid var(--ember);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.responsible strong {
  color: var(--ink);
}

.responsible p {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--ink-muted);
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}

.service-main,
.not-found {
  width: 100%;
  max-width: 1600px;
  margin: 20px auto;
  padding: 0 30px;
}

.service-card,
.not-found__card {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--ink-muted);
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--gold-soft);
}

.service-card h1,
.not-found__card h1 {
  width: 100%;
  margin-bottom: 28px;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
}

.service-pair {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}

.service-pair h2 {
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 650;
  line-height: 30px;
}

.not-found {
  display: grid;
  min-height: 55vh;
  place-items: center;
}

.not-found__card {
  text-align: center;
}

.not-found__code {
  display: block;
  color: var(--ember);
  font-family: Georgia, serif;
  font-size: clamp(70px, 11vw, 150px);
  font-weight: 900;
  line-height: 0.9;
}

.not-found__card h1 {
  margin: 22px 0 14px;
}

.not-found__card p {
  color: var(--ink-muted);
}

.internal-button {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 17px;
  color: #1d0d08;
  background: linear-gradient(135deg, var(--gold-soft), var(--ember));
  border-radius: 4px;
  font-weight: 850;
}

@keyframes ember-ping {
  from {
    opacity: 0.9;
    transform: scale(0.2);
  }
  to {
    opacity: 0;
    transform: scale(8);
  }
}

@media (max-width: 1359px) {
  .layout {
    grid-template-columns: minmax(0, 1020px);
    justify-content: center;
  }

  .sidebar {
    display: none;
  }

  .content-stack {
    grid-column: 1;
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    justify-content: space-between;
  }

  .menu-toggle {
    position: relative;
    z-index: 106;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--ink);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
  }

  .menu-toggle__open,
  .menu-toggle__close {
    grid-area: 1 / 1;
    transition: opacity 140ms ease, transform 180ms ease;
  }

  .menu-toggle__close {
    opacity: 0;
    transform: rotate(-35deg) scale(0.8);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__open {
    opacity: 0;
    transform: rotate(35deg) scale(0.8);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__close {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  .site-nav {
    position: fixed;
    z-index: 105;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    max-height: calc(100dvh - var(--header-h));
    padding: 14px 20px 20px;
    overflow-y: auto;
    background: #100b0d;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
    flex-direction: column;
    transform: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links,
  .site-nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__links {
    gap: 2px;
  }

  .site-nav__actions {
    gap: 10px;
    margin-top: 18px;
  }

  .site-nav__link {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 15px;
  }

  .site-nav__link::after {
    right: auto;
    bottom: 8px;
    left: 6px;
    width: 34px;
  }

  .site-nav .cta {
    width: 100%;
  }

  .menu-scrim {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: block;
    padding: 0;
    background: rgba(0, 0, 0, 0.66);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .menu-scrim.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .site-footer__inner {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
  }

  .responsible {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .site-header__inner,
  .layout,
  .service-main,
  .not-found,
  .site-footer__inner,
  .site-footer__bottom {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    gap: 7px;
  }

  .brand__logo {
    width: 94px;
    height: 36px;
    flex-basis: 94px;
  }

  .layout {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .content-stack {
    gap: 16px;
  }

  .hero {
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 480px;
    padding: 42px 20px 26px;
    background-position: 68% center;
  }

  .hero--copy-right {
    justify-content: flex-start;
    background-position: 35% center;
  }

  .hero::before,
  .hero--copy-right::before {
    background: linear-gradient(180deg, rgba(6, 5, 6, 0.18) 0%, rgba(6, 5, 6, 0.72) 48%, rgba(6, 5, 6, 0.97) 82%);
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .content-section,
  .service-card,
  .not-found__card {
    padding: 20px;
  }

  .section-heading {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
  }

  .section-heading__mark {
    width: 18px;
  }

  .section-heading__mark::before {
    width: 12px;
  }

  .section-heading__mark::after {
    left: 12px;
  }

  .section-heading h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .section-flow h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  table {
    min-width: 650px;
  }

  th,
  td {
    min-width: 130px;
  }

  .promo-banner {
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 420px;
    padding: 24px 20px;
    background-position: center;
  }

  .promo-banner--copy-left::before,
  .promo-banner--copy-right::before {
    background: linear-gradient(180deg, rgba(7, 5, 6, 0.1) 0%, rgba(7, 5, 6, 0.62) 46%, rgba(7, 5, 6, 0.97) 82%);
  }

  .promo-banner__copy {
    width: 100%;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }

  .site-footer__brand,
  .responsible {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hero__actions,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .cta,
  .section-cta .cta {
    width: 100%;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 25px;
    line-height: 31px;
  }

  .hero p {
    font-size: 14px;
    line-height: 21.7px;
  }

  .content-section,
  .service-card,
  .not-found__card {
    padding: 18px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .section-flow {
    gap: 18px;
  }

  .review-card {
    padding: 16px;
  }

  .faq-item summary {
    grid-template-columns: 1fr 28px;
    gap: 10px;
    padding: 12px 13px;
  }

  .faq-item__answer {
    padding: 0 13px 14px;
  }

  .promo-banner {
    min-height: 410px;
  }

  .promo-banner h2 {
    font-size: 24px;
  }

  .promo-banner .cta {
    width: 100%;
    white-space: normal;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .site-footer__brand,
  .responsible {
    grid-column: 1;
  }

  .site-footer__brand .brand {
    margin: 0 auto;
  }

  .site-footer__brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-nav {
    align-items: center;
  }

  .responsible {
    justify-content: center;
    text-align: left;
  }

  .site-footer__bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .service-card h1,
  .not-found__card h1 {
    font-size: 25px;
    line-height: 31px;
  }
}

@media (max-width: 350px) {
  .brand__logo {
    width: 86px;
    height: 34px;
    flex-basis: 86px;
  }

  .hero,
  .promo-banner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .heat-seam::after {
    transform: scaleX(1);
  }
}
