:root {
  --bg: #08101a;
  --bg-elev: #0f1726;
  --bg-card: rgba(18, 26, 40, 0.88);
  --text: #eef5ff;
  --muted: #b5c1d6;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #20dd74;
  --accent-2: #f4cf3d;
  --accent-3: #36c2ff;
  --danger: #ff6a62;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(54, 194, 255, 0.12), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(244, 207, 61, 0.12), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(32, 221, 116, 0.1), transparent 42%),
    linear-gradient(180deg, #060b12 0%, #08101a 38%, #0a1220 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, #000 35%, transparent 95%);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 60;
  background: transparent;
}

.scroll-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 12px rgba(32, 221, 116, 0.55);
  transition: width 90ms linear;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 15, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-shell {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand__pixel {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, #5dff9f 0%, #18d769 48%, #0d8b45 100%);
  box-shadow:
    10px 0 0 rgba(32, 221, 116, 0.18),
    0 10px 0 rgba(54, 194, 255, 0.16),
    10px 10px 0 rgba(244, 207, 61, 0.18);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 10px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.header-cta {
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #1ee170, #12b85a);
  color: #06120b;
  box-shadow: 0 10px 30px rgba(32, 221, 116, 0.25);
}

.header-cta:hover,
.header-cta:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
  outline: none;
}

.hero {
  padding-block: 28px 16px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.hero__copy,
.hero-panel__frame {
  background: linear-gradient(180deg, rgba(17, 26, 40, 0.86), rgba(10, 16, 26, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: 22px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7e3f7;
  font-size: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.eyebrow__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 106, 98, 0.15);
  border: 1px solid rgba(255, 106, 98, 0.35);
  color: #ffd6d2;
  font-weight: 800;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1,
h2 {
  font-family: "Russo One", sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
  text-wrap: balance;
}

.hero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 18px;
  min-height: 50px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn--primary {
  color: #06120b;
  background: linear-gradient(135deg, #32f08a 0%, #16c965 52%, #0da84f 100%);
  box-shadow: 0 14px 34px rgba(32, 221, 116, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 18px 38px rgba(32, 221, 116, 0.36);
}

.btn--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.btn--secondary {
  color: var(--text);
  border-color: rgba(244, 207, 61, 0.26);
  background: linear-gradient(180deg, rgba(244, 207, 61, 0.12), rgba(244, 207, 61, 0.05));
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  border-color: rgba(244, 207, 61, 0.42);
  box-shadow: 0 10px 26px rgba(244, 207, 61, 0.14);
}

.btn--xl {
  min-height: 58px;
  padding: 16px 22px;
  font-size: 1rem;
}

.affiliate-note {
  margin: 12px 0 0;
  color: #91a1bc;
  font-size: 0.9rem;
}

.hero__chips {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__chips li {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: #dce6f8;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.hero__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.stat-card__label {
  color: #9db0cb;
  font-size: 0.82rem;
}

.stat-card__value {
  font-size: 1rem;
  line-height: 1.15;
}

.stat-card__hint {
  color: #aab7cd;
  font-size: 0.8rem;
}

.hero-panel__frame {
  padding: 16px;
  position: sticky;
  top: calc(var(--header-h) + 12px);
}

.hero-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: #d7e4f7;
}

.hero-panel__domain {
  font-size: 0.82rem;
  color: #9eb0c8;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.signal i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(32, 221, 116, 0.12);
  animation: pulse 1.7s ease-in-out infinite;
}

.hero-scene {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.8), rgba(12, 19, 31, 0.9));
  height: 210px;
  overflow: hidden;
}

.hero-scene__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.65;
}

.hero-scene__block {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.12);
}

.hero-scene__block::before,
.hero-scene__block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero-scene__block::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.06) 75%, transparent 75%),
    linear-gradient(rgba(255, 255, 255, 0.06) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.06) 75%, transparent 75%);
  background-size: 18px 18px;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-scene__block--emerald {
  left: 24px;
  bottom: 26px;
  background: linear-gradient(160deg, #30f191, #1ccf6c 60%, #0b8f48);
}

.hero-scene__block--stone {
  left: 118px;
  bottom: 56px;
  background: linear-gradient(160deg, #6d7d95, #46566f 60%, #243244);
}

.hero-scene__block--gold {
  left: 210px;
  bottom: 36px;
  background: linear-gradient(160deg, #ffe06a, #f8c82b 55%, #c89814);
}

.hero-scene__pick {
  position: absolute;
  right: 26px;
  top: 34px;
  width: 138px;
  height: 138px;
  transform: rotate(-14deg);
}

.hero-scene__pick::before,
.hero-scene__pick::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.hero-scene__pick::before {
  width: 26px;
  height: 118px;
  left: 56px;
  top: 8px;
  background: linear-gradient(180deg, #c6905d, #865430);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.hero-scene__pick::after {
  width: 102px;
  height: 34px;
  left: 18px;
  top: 14px;
  background:
    linear-gradient(135deg, #5fe7ff, #27b8f2 60%, #1d74dc);
  clip-path: polygon(0 45%, 38% 45%, 46% 0, 100% 0, 100% 100%, 46% 100%, 38% 55%, 0 55%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.hero-panel__stack {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.route-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.route-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-family: "Russo One", sans-serif;
  font-size: 0.88rem;
  color: #06120b;
  background: linear-gradient(135deg, #38ef8d, #17c662);
}

.route-card strong {
  display: block;
  margin-top: 2px;
  font-size: 0.95rem;
}

.route-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-panel__cta {
  width: 100%;
}

.section {
  padding-block: 18px;
}

.section__intro {
  margin-bottom: 14px;
}

.section__eyebrow {
  margin: 0 0 8px;
  color: #99add0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section__intro h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  margin-bottom: 10px;
  text-wrap: balance;
}

.section__intro p {
  margin: 0;
  color: var(--muted);
}

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

.feature-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  counter-reset: none;
}

.step-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-card);
  padding: 14px;
}

.step-card__num {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Russo One", sans-serif;
  color: #06120b;
  background: linear-gradient(135deg, #f7d54d, #efbc22);
  box-shadow: 0 10px 26px rgba(244, 207, 61, 0.22);
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-panel {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(54, 194, 255, 0.1), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(32, 221, 116, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(17, 25, 39, 0.94), rgba(10, 16, 26, 0.96));
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.cta-panel__copy h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 10px;
}

.cta-panel__copy p {
  margin: 0 0 10px;
  color: var(--muted);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #dbe7fb;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(135deg, #33f18c, #18c965);
  box-shadow: inset 0 0 0 2px rgba(6, 18, 11, 0.25);
}

.cta-panel__actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

.cta-panel__actions .btn {
  width: 100%;
}

.cta-panel__micro {
  margin: 0;
  color: #9eb0c8;
  font-size: 0.85rem;
  text-align: center;
}

.section--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-card);
  padding: 16px;
}

.card--text p:last-child {
  margin-bottom: 0;
}

.card--accent {
  background:
    radial-gradient(circle at 90% 12%, rgba(244, 207, 61, 0.14), transparent 42%),
    radial-gradient(circle at 8% 100%, rgba(54, 194, 255, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(19, 29, 47, 0.92), rgba(9, 15, 25, 0.96));
}

.card--accent h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.plain-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #dbe7fb;
}

.plain-list li + li {
  margin-top: 7px;
}

.query-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.query-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.query-list span {
  font-weight: 700;
  color: #edf5ff;
}

.query-list small {
  color: #9db0cb;
  text-align: right;
}

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

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  overflow: clip;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  position: relative;
  padding-right: 46px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dbe7fb;
  font-weight: 800;
}

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

.faq-item > div {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 16px 14px;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.responsible-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, rgba(255, 106, 98, 0.08), rgba(255, 106, 98, 0)),
    rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.responsible-box h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.responsible-box p:last-child {
  margin-bottom: 0;
}

.responsible-box p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 8, 14, 0.45);
}

.footer-shell {
  padding-block: 18px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer-brand {
  margin: 0 0 6px;
  font-family: "Russo One", sans-serif;
  font-size: 1.05rem;
}

.footer-text,
.footer-meta p {
  margin: 0;
  color: #9fb0c8;
  font-size: 0.9rem;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  z-index: 70;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 23, 36, 0.96), rgba(8, 13, 21, 0.98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  padding: 10px;
}

.sticky-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e7f2ff;
  font-weight: 700;
  min-width: 0;
}

.sticky-cta__label span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(32, 221, 116, 0.14);
}

.sticky-cta__button {
  min-height: 46px;
  padding-inline: 16px;
}

.noscript-note {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  background: #fff6d6;
  color: #231c07;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.75; }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel__frame {
    position: relative;
    top: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .section--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 70px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .top-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

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

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .responsible-box {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding-bottom: 112px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero__copy,
  .hero-panel__frame {
    border-radius: 16px;
  }

  .hero__copy {
    padding: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .header-cta {
    padding: 9px 13px;
  }

  .top-nav a {
    white-space: nowrap;
  }

  .hero-scene {
    height: 180px;
  }

  .hero-scene__block {
    width: 66px;
    height: 66px;
  }

  .hero-scene__block--stone {
    left: 98px;
  }

  .hero-scene__block--gold {
    left: 172px;
  }

  .hero-scene__pick {
    width: 110px;
    height: 110px;
    right: 12px;
    top: 22px;
  }

  .sticky-cta__content {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sticky-cta__label {
    justify-content: center;
  }
}

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

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@supports (content-visibility: auto) {
  .feature-card,
  .step-card,
  .faq-item {
    content-visibility: auto;
    contain-intrinsic-size: 1px 180px;
  }
}
