:root {
  --bg: #220905;
  --bg-soft: #351109;
  --panel: rgba(56, 18, 10, 0.92);
  --panel-2: rgba(73, 24, 13, 0.94);
  --line: rgba(228, 170, 128, 0.18);
  --text: #f7eee7;
  --muted: #d4b8a6;
  --accent: #d7925c;
  --accent-2: #f0bc8f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 36px));
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-offset: 122px;
  color-scheme: dark;
}

@font-face {
  font-family: "Cocoa Sans";
  src: url("../../vault/type/cocoa-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cocoa Sans";
  src: url("../../vault/type/cocoa-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cocoa Display";
  src: url("../../vault/type/bebas-neue-display-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Cocoa Sans", sans-serif;
  background:
    radial-gradient(circle at top, rgba(98, 32, 17, 0.95), transparent 36%),
    linear-gradient(180deg, #2f0d06 0%, #1f0805 100%);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

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

.ui-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
}

.site-frame {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: var(--safe-top);
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(43, 12, 6, 0.97), rgba(43, 12, 6, 0.92));
  border-bottom: 1px solid rgba(228, 170, 128, 0.08);
}

.site-head__row {
  width: var(--container);
  margin: 0 auto;
}

.site-head__row--top {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.site-head__row--mobile-actions {
  display: none;
}

.brand-mark img {
  width: 118px;
  height: auto;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.header-nav__link {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-nav__link:hover,
.header-nav__link--active {
  background: rgba(215, 146, 92, 0.12);
  color: var(--text);
}

.head-actions {
  display: flex;
  gap: 10px;
  justify-self: end;
}

.head-actions__link,
.action-button,
.slot-card__button,
.sticky-bonus__cta,
.demo-modal__play,
.demo-modal__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  line-height: 1;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.head-actions__link--ghost {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid rgba(215, 146, 92, 0.55);
}

.head-actions__link--solid,
.action-button,
.slot-card__button--play,
.sticky-bonus__cta,
.demo-modal__play {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #2b1207;
  box-shadow: 0 12px 24px rgba(215, 146, 92, 0.25);
}

.action-button--play,
.hero-stage__cta {
  animation: heroPulse 2.8s ease-in-out infinite;
}

.head-actions__link:hover,
.action-button:hover,
.slot-card__button:hover,
.sticky-bonus__cta:hover,
.demo-modal__play:hover,
.demo-modal__back:hover {
  transform: translateY(-1px);
}

.burger-toggle,
.demo-modal__back {
  display: none;
}

.mobile-tabs {
  display: none;
}

.hero-stage {
  position: relative;
  min-height: clamp(440px, 58vw, 620px);
  overflow: hidden;
  background: #130604;
}

.hero-stage__picture,
.hero-stage__picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 5, 4, 0.18) 0%, rgba(16, 5, 4, 0.26) 32%, rgba(16, 5, 4, 0.84) 100%),
    linear-gradient(90deg, rgba(25, 8, 5, 0.4) 0%, rgba(25, 8, 5, 0) 30%, rgba(25, 8, 5, 0.28) 100%);
}

.hero-stage__inner,
.hero-lite__inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
}

.hero-stage__inner {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 120px 0 110px;
  text-align: center;
}

.hero-stage__pretitle,
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin: 0;
  border-radius: 999px;
  background: rgba(241, 190, 149, 0.16);
  color: #f6d6bc;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-stage h1,
.hero-lite h1 {
  margin: 0;
  max-width: 660px;
  font-family: "Cocoa Display", "Cocoa Sans", sans-serif;
  font-size: clamp(2.3rem, 4.45vw, 4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.022em;
  text-transform: uppercase;
  color: #ffe6b5;
  text-shadow:
    0 10px 28px rgba(9, 2, 1, 0.46),
    0 0 28px rgba(255, 186, 98, 0.18);
  text-wrap: balance;
}

.hero-stage h1.hero-stage__title--compact,
.hero-lite h1.hero-stage__title--compact {
  max-width: 548px;
  font-size: clamp(2.22rem, 4.1vw, 3.48rem);
  line-height: 0.85;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-stage h1,
  .hero-lite h1 {
    background-image: linear-gradient(180deg, #fff8e6 0%, #ffdba0 42%, #f3a557 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero-stage__headline {
  margin: 0;
  max-width: 700px;
  color: #f9d6ba;
  font-size: clamp(1.12rem, 2vw, 1.6rem);
}

.hero-stage__headline--offer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 8px 12px;
  max-width: 760px;
}

.hero-stage__offer-primary {
  display: inline-block;
  font-size: clamp(2.15rem, 5.9vw, 3.62rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #ffd891;
  text-shadow:
    0 0 22px rgba(255, 177, 77, 0.28),
    0 14px 32px rgba(8, 2, 1, 0.46);
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.34));
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-stage__offer-primary {
    background-image: linear-gradient(180deg, #fff6dd 0%, #ffd38c 38%, #ff9f43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero-stage__offer-note,
.hero-stage__offer-divider {
  display: inline-block;
  align-self: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f5dbbf;
  text-shadow: 0 6px 18px rgba(6, 2, 1, 0.34);
}

.hero-stage__offer-note {
  font-size: clamp(0.82rem, 0.72rem + 0.45vw, 1.02rem);
}

.hero-stage__offer-divider {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  color: #ffcd78;
}

.hero-stage__cta {
  min-width: min(100%, 280px);
  margin-top: 8px;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.payment-badges li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 7, 5, 0.48);
  border: 1px solid rgba(228, 170, 128, 0.12);
}

.payment-badges--hero {
  position: absolute;
  inset-inline: 0;
  bottom: 20px;
  justify-content: center;
}

.page-main {
  flex: 1 1 auto;
  margin: 0;
  padding: 10px 0 24px;
}

.page-main--service {
  padding-top: 12px;
}

.content-section,
.service-section,
.content-section--slots {
  width: 100%;
  margin: 10px 0;
}

.content-section--scene {
  background-image:
    linear-gradient(180deg, rgba(13, 6, 5, 0.78), rgba(13, 6, 5, 0.86)),
    var(--scene);
  background-size: cover;
  background-position: center;
}

.section-wrap,
.hero-lite__inner,
.site-foot__inner,
.site-foot__base {
  width: var(--container);
  margin: 0 auto;
}

.section-wrap {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.content-section--scene .section-wrap,
.hero-lite__inner {
  background: rgba(23, 8, 5, 0.75);
  backdrop-filter: blur(3px);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.section-head h2,
.service-section h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.14;
}

.copy-block {
  display: grid;
  gap: 14px;
}

.copy-block p,
.summary-box p,
.service-section p,
.faq-item p,
.capture-card figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.copy-block strong,
.summary-box strong,
.service-section strong,
.faq-item strong,
.calc-panel__result strong {
  color: var(--text);
}

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

.slot-grid {
  display: grid;
  gap: 14px;
}

.slot-grid--8x2 {
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.slot-grid--6x2 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.slot-card {
  min-width: 0;
}

.slot-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 18px;
  background: #120604;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.slot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.slot-card__shade,
.slot-card__overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.26s ease;
}

.slot-card__shade {
  background: linear-gradient(180deg, rgba(15, 4, 2, 0) 0%, rgba(15, 4, 2, 0.82) 100%);
  opacity: 0;
  pointer-events: none;
}

.slot-card__overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
}

.slot-card__overlay-title,
.slot-card__name {
  display: none;
  margin: 0;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 700;
}

.slot-card__name--static {
  padding-top: 0;
}

.slot-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 8px;
  align-items: stretch;
}

.slot-card__button {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 10px 8px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: clamp(0.76rem, 0.7rem + 0.25vw, 0.94rem);
  line-height: 1.1;
  white-space: nowrap;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
}

.slot-card__button--demo {
  background: rgba(244, 236, 229, 0.08);
  color: var(--text);
  border: 1px solid rgba(244, 236, 229, 0.2);
}

@media (hover: hover) {
  .slot-card:hover .slot-card__media img {
    transform: scale(1.04);
    filter: brightness(0.55);
  }

  .slot-card:hover .slot-card__shade,
  .slot-card:hover .slot-card__overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

.slot-card.is-revealed .slot-card__media img {
  transform: scale(1.04);
  filter: brightness(0.55);
}

.slot-card.is-revealed .slot-card__shade,
.slot-card.is-revealed .slot-card__overlay {
  opacity: 1;
}

.slot-card.is-revealed .slot-card__overlay {
  pointer-events: auto;
}

.ledger-shell,
.table-shell {
  margin-top: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 18px;
  border: 1px solid rgba(228, 170, 128, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.ledger-shell + p,
.table-shell + p {
  margin-top: 16px;
}

.ledger-shell + .copy-block,
.table-shell + .copy-block {
  margin-top: 16px;
}

.facts-ledger,
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-ledger {
  table-layout: fixed;
}

.comparison-table {
  table-layout: fixed;
}

.facts-ledger tr:nth-child(odd),
.comparison-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.facts-ledger th,
.facts-ledger td,
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(228, 170, 128, 0.08);
  font-size: 0.98rem;
  line-height: 1.42;
}

.facts-ledger th {
  width: 36%;
  color: var(--text);
  font-weight: 700;
}

.comparison-table th {
  color: var(--text);
  font-weight: 700;
}

.comparison-table th,
.comparison-table td {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.comparison-table tr > :nth-child(1):nth-last-child(2) {
  width: 30%;
}

.comparison-table tr > :nth-child(2):nth-last-child(1) {
  width: 70%;
}

.comparison-table tr > :nth-child(1):nth-last-child(3) {
  width: 26%;
}

.comparison-table tr > :nth-child(2):nth-last-child(2) {
  width: 29%;
}

.comparison-table tr > :nth-child(3):nth-last-child(1) {
  width: 45%;
}

.comparison-table tr > :nth-child(1):nth-last-child(4) {
  width: 28%;
}

.comparison-table tr > :nth-child(2):nth-last-child(3) {
  width: 16%;
}

.comparison-table tr > :nth-child(3):nth-last-child(2) {
  width: 24%;
}

.comparison-table tr > :nth-child(4):nth-last-child(1) {
  width: 32%;
}

.editorial-figure {
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(228, 170, 128, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: 0 22px 44px rgba(12, 4, 1, 0.22);
}

.editorial-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.styled-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.styled-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: 16px;
  background: rgba(248, 234, 220, 0.03);
  color: var(--muted);
  line-height: 1.62;
}

.styled-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--accent-2) 0, var(--accent) 68%, rgba(215, 146, 92, 0) 70%);
  box-shadow: 0 0 0 7px rgba(215, 146, 92, 0.12);
}

.card-grid,
.tile-grid,
.step-flow,
.screenshot-showcase {
  display: grid;
  gap: 14px;
}

.card-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.data-tile,
.step-card,
.capture-card,
.summary-box,
.calc-panel,
.cta-banner {
  padding: 18px;
  background: rgba(248, 234, 220, 0.04);
  border: 1px solid rgba(228, 170, 128, 0.1);
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.info-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--accent-2);
}

.info-card h3,
.step-card h3,
.data-tile h3 {
  margin: 0;
  font-size: 1.04rem;
  color: var(--text);
}

.info-card p,
.step-card p,
.data-tile p,
.summary-box p,
.calc-panel p,
.cta-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.step-card__index {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #2c1208;
  font-weight: 700;
}

.payment-showcase {
  display: grid;
  gap: 18px;
}

.tile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capture-card {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.capture-card img {
  width: min(100%, 520px);
  height: auto;
  border-radius: 16px;
}

.screenshot-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calc-panel label {
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
}

.calc-panel__row {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 14px;
  align-items: center;
}

.calc-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(228, 170, 128, 0.18);
  background: rgba(16, 6, 4, 0.85);
  color: var(--text);
}

.hero-lite {
  background-image:
    linear-gradient(180deg, rgba(13, 6, 5, 0.74), rgba(13, 6, 5, 0.88)),
    var(--scene);
  background-size: cover;
  background-position: center;
  padding: 28px 0 34px;
}

.hero-lite__inner {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(228, 170, 128, 0.08);
  border-radius: 24px;
}

.hero-lite p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.faq-item {
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(228, 170, 128, 0.1);
  background: rgba(248, 234, 220, 0.03);
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-2);
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 18px;
}

.mobile-drawer,
.drawer-scrim {
  display: none;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.demo-modal.is-open {
  display: block;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.demo-modal__frame {
  position: relative;
  width: min(100%, calc(var(--container) + 120px));
  height: min(86vh, 900px);
  margin: clamp(24px, 5vh, 48px) auto;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.44);
}

.demo-modal__bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(11, 11, 11, 0.98);
}

.demo-modal__back {
  display: inline-flex;
  gap: 8px;
  background: rgba(244, 236, 229, 0.12);
  color: #fff;
}

.demo-modal__play {
  justify-self: end;
  min-width: 220px;
}

.demo-modal__viewport iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.site-foot {
  margin-top: auto;
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(12, 5, 4, 0), rgba(12, 5, 4, 0.75));
}

.site-foot__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(228, 170, 128, 0.08);
}

.site-foot__brand {
  display: grid;
  gap: 12px;
}

.site-foot__brand p,
.site-foot__base p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.site-foot__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.site-foot__nav a {
  color: var(--accent-2);
}

.site-foot__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 calc(18px + var(--safe-bottom));
  border-top: 1px solid rgba(228, 170, 128, 0.06);
}

.sticky-bonus {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px calc(12px + var(--safe-bottom));
  background: rgba(19, 7, 5, 0.96);
  border-top: 1px solid rgba(228, 170, 128, 0.14);
  box-shadow: 0 -16px 30px rgba(0, 0, 0, 0.35);
}

.sticky-bonus__copy {
  margin: 0;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.sticky-bonus__cta {
  min-width: 136px;
  flex: 0 0 auto;
  animation: stickyPulse 3.1s ease-in-out infinite;
}

.sticky-bonus[hidden],
.demo-modal[hidden] {
  display: none !important;
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 24px rgba(215, 146, 92, 0.22);
  }
  16% {
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(215, 146, 92, 0.12), 0 20px 36px rgba(215, 146, 92, 0.28);
  }
  45% {
    transform: scale(1.01);
  }
}

@keyframes stickyPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(215, 146, 92, 0.2);
  }
  18% {
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(215, 146, 92, 0.1), 0 16px 28px rgba(215, 146, 92, 0.24);
  }
  52% {
    transform: scale(1.01);
  }
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .site-head__row--top {
    grid-template-columns: auto auto 1fr auto;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
    --header-offset: 154px;
  }

  html,
  body {
    background: var(--bg);
  }

  .burger-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--text);
  }

  .burger-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .site-head__row--top {
    min-height: 68px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding-top: 8px;
  }

  .site-head__row--top::after {
    content: "";
    width: 44px;
    height: 44px;
  }

  .brand-mark {
    grid-column: 2;
    justify-self: center;
  }

  .brand-mark img {
    width: 112px;
  }

  .head-actions {
    display: none;
  }

  .site-head__row--mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-bottom: 8px;
  }

  .head-actions__link,
  .action-button,
  .sticky-bonus__cta {
    min-height: 46px;
  }

  .mobile-tabs {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 14px 8px;
    background: rgba(68, 20, 10, 0.96);
    border-top: 1px solid rgba(228, 170, 128, 0.08);
    scrollbar-width: none;
  }

  .mobile-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    color: #e4c0a2;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .mobile-tabs a.is-active {
    color: var(--text);
    border-color: var(--accent);
  }

  .hero-stage {
    min-height: 458px;
  }

  .hero-stage__inner {
    padding: 92px 0 94px;
    gap: 8px;
  }

  .hero-stage h1,
  .hero-lite h1 {
    max-width: 292px;
    font-size: clamp(1.88rem, 9.3vw, 2.46rem);
    line-height: 0.84;
    letter-spacing: 0.025em;
  }

  .hero-stage h1.hero-stage__title--compact,
  .hero-lite h1.hero-stage__title--compact {
    max-width: 266px;
    font-size: clamp(1.72rem, 8.55vw, 2.26rem);
    line-height: 0.82;
  }

  .hero-stage__headline {
    max-width: 320px;
    font-size: 1.1rem;
  }

  .hero-stage__headline--offer {
    max-width: 320px;
    gap: 6px 10px;
  }

  .hero-stage__offer-primary {
    font-size: clamp(1.72rem, 8.8vw, 2.5rem);
  }

  .hero-stage__offer-note {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .hero-stage__offer-divider {
    font-size: 1.08rem;
  }

  .hero-stage__cta {
    min-width: 214px;
  }

  .payment-badges--hero {
    gap: 6px;
    bottom: 12px;
    flex-wrap: nowrap;
    padding-inline: 14px;
  }

  .payment-badges--hero li {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 8px;
  }

  .payment-badges--hero img {
    width: 100%;
    max-width: 64px;
    height: 18px;
    object-fit: contain;
  }

  .page-main {
    padding-bottom: 96px;
  }

  body[data-page-mode="service"] .page-main {
    padding-bottom: 24px;
  }

  .section-wrap,
  .hero-lite__inner {
    padding: 18px;
  }

  .content-section,
  .service-section,
  .content-section--slots {
    margin: 8px 0;
  }

  .slot-grid--8x2,
  .slot-grid--6x2,
  .card-grid--four,
  .tile-grid,
  .screenshot-showcase,
  .calc-panel__row,
  .site-foot__nav {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .slot-grid--8x2,
  .slot-grid--6x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-main > .slot-grid {
    width: var(--container);
    margin: 0 auto;
  }

  .facts-ledger th,
  .facts-ledger td,
  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 9px 5px;
    font-size: 0.74rem;
  }

  .comparison-table thead th {
    padding: 8px 4px !important;
    font-size: 0.7rem !important;
    line-height: 1.18;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .comparison-table tbody td {
    padding: 9px 5px !important;
    font-size: 0.74rem !important;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 10px !important;
  }

  .comparison-table {
    min-width: 0;
    table-layout: fixed;
  }

  .comparison-table th,
  .comparison-table td {
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }

  .comparison-table tr > :nth-child(1):nth-last-child(2) {
    width: 34%;
  }

  .comparison-table tr > :nth-child(2):nth-last-child(1) {
    width: 66%;
  }

  .comparison-table tr > :nth-child(1):nth-last-child(3) {
    width: 28%;
  }

  .comparison-table tr > :nth-child(2):nth-last-child(2) {
    width: 24%;
  }

  .comparison-table tr > :nth-child(3):nth-last-child(1) {
    width: 48%;
  }

  .comparison-table tr > :nth-child(1):nth-last-child(4) {
    width: 26%;
  }

  .comparison-table tr > :nth-child(2):nth-last-child(3) {
    width: 13%;
  }

  .comparison-table tr > :nth-child(3):nth-last-child(2) {
    width: 21%;
  }

  .comparison-table tr > :nth-child(4):nth-last-child(1) {
    width: 40%;
  }

  .editorial-figure {
    margin-top: 16px;
    border-radius: 20px;
  }

  .site-foot__base {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-foot__inner,
  .site-foot__base {
    width: var(--container);
  }

  .mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(88vw, 360px);
    z-index: 50;
  }

  .mobile-drawer.is-open,
  .drawer-scrim.is-open {
    display: block;
  }

  .drawer-scrim {
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(8, 3, 2, 0.58);
    backdrop-filter: blur(2px);
  }

  .mobile-drawer__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    background: linear-gradient(180deg, rgba(47, 13, 6, 0.98), rgba(31, 8, 5, 0.98));
    padding: calc(20px + var(--safe-top)) 18px 24px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    overflow: hidden;
    box-shadow: 24px 0 60px rgba(0, 0, 0, 0.36);
  }

  .mobile-drawer__brand {
    display: flex;
    justify-content: center;
  }

  .mobile-drawer__brand img {
    width: 120px;
    height: auto;
  }

  .mobile-drawer__nav {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(215, 146, 92, 0.5) transparent;
  }

  .mobile-drawer__nav::-webkit-scrollbar {
    width: 6px;
  }

  .mobile-drawer__nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(215, 146, 92, 0.42);
  }

  .mobile-drawer__nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(248, 234, 220, 0.04);
    border: 1px solid rgba(228, 170, 128, 0.08);
    color: var(--text);
  }

  .mobile-drawer__nav a.is-current {
    background: rgba(215, 146, 92, 0.16);
    border-color: rgba(228, 170, 128, 0.26);
    color: #f8e7d6;
  }

  .mobile-drawer__microcopy {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .sticky-bonus {
    display: flex;
  }

  .sticky-bonus__copy {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .sticky-bonus__cta {
    min-width: 122px;
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  .demo-modal__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    display: grid;
    grid-template-rows: 1fr auto;
  }

  .demo-modal__viewport {
    min-height: 0;
  }

  .demo-modal__bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    padding: 12px 14px calc(12px + var(--safe-bottom));
  }

  .demo-modal__back {
    display: inline-flex;
    gap: 8px;
  }

  .demo-modal__play {
    min-width: 0;
  }
}

@media (max-width: 360px) {
  :root {
    --container: calc(100% - 22px);
  }

  .site-head__row--mobile-actions {
    gap: 8px;
  }

  .mobile-tabs {
    gap: 16px;
    padding-inline: 11px;
  }

  .sticky-bonus {
    gap: 8px;
    padding-inline: 10px;
  }

  .sticky-bonus__copy {
    font-size: 0.82rem;
  }

  .sticky-bonus__cta {
    min-width: 112px;
    padding-inline: 12px;
    font-size: 0.85rem;
  }

  .slot-card__button {
    min-height: 40px;
    padding-inline: 6px;
    font-size: 0.78rem;
  }
}
