:root {
  --bg: #23110b;
  --bg-soft: #34170d;
  --panel: rgba(50, 24, 17, 0.76);
  --panel-strong: rgba(58, 29, 20, 0.92);
  --panel-light: rgba(77, 40, 27, 0.88);
  --text: #f7efe7;
  --muted: #b48767;
  --muted-strong: #e2bf9f;
  --line: rgba(239, 150, 76, 0.17);
  --accent: #ff9a4d;
  --accent-strong: #ff7200;
  --accent-warm: #ffbd7a;
  --shadow: rgba(0, 0, 0, 0.44);
  --hero-shadow: rgba(255, 130, 31, 0.2);
  --scroll-progress: 0;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 122, 26, 0.18) 0%, transparent 28%),
    radial-gradient(circle at 15% 66%, rgba(120, 82, 162, 0.17) 0%, transparent 24%),
    radial-gradient(circle at 86% 74%, rgba(116, 138, 49, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, #23110b 0%, #160b07 46%, #24120b 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 204, 170, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 204, 170, 0.02) 1px, transparent 1px);
  background-size: 92px 92px;
  -webkit-mask-image: radial-gradient(circle at center, black 22%, transparent 92%);
  mask-image: radial-gradient(circle at center, black 22%, transparent 92%);
  opacity: 0.45;
  pointer-events: none;
}

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

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

p {
  margin: 0;
}

.page-shell {
  position: relative;
  isolation: isolate;
  padding-bottom: 1px;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  background: linear-gradient(90deg, #ff7a00 0%, var(--accent) 45%, var(--accent-warm) 100%);
  box-shadow: 0 0 28px rgba(255, 126, 32, 0.42);
  pointer-events: none;
}

.page-atmosphere {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.56;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-shift, 0px), 0);
  will-change: transform;
}

.atmosphere-left {
  top: 8%;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 127, 35, 0.26) 0%, rgba(129, 84, 169, 0.12) 42%, transparent 74%);
}

.atmosphere-right {
  top: 18%;
  right: -110px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 186, 122, 0.18) 0%, rgba(104, 132, 45, 0.12) 42%, transparent 74%);
}

.atmosphere-horizon {
  top: 40%;
  left: 14%;
  width: min(880px, 72vw);
  height: 180px;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.3;
  background: linear-gradient(90deg, rgba(115, 78, 156, 0.04) 0%, rgba(255, 139, 44, 0.16) 48%, rgba(93, 122, 38, 0.08) 100%);
}

.topbar,
.hero,
.section,
.footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: sticky;
  top: 14px;
  z-index: 30;
  padding: 18px 22px;
  margin-top: 12px;
  border: 1px solid rgba(239, 150, 76, 0.12);
  border-radius: 999px;
  background: rgba(43, 20, 12, 0.56);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

body.is-scrolled .topbar {
  background: rgba(39, 18, 11, 0.86);
  border-color: rgba(239, 150, 76, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(239, 150, 76, 0.14);
  background: linear-gradient(180deg, rgba(104, 56, 28, 0.72) 0%, rgba(59, 29, 19, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand-mark::after {
  content: "M";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.topbar-note {
  max-width: 19rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: right;
}

.single-cta {
  flex-shrink: 0;
}

.nav-link {
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 999px;
  padding: 1rem 1.45rem;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.button::after {
  content: "";
  position: absolute;
  top: -120%;
  bottom: -120%;
  left: -32%;
  width: 34%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
  transform: translateX(-220%) rotate(18deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(520%) rotate(18deg);
}

.button-small {
  padding: 0.82rem 1.15rem;
}

.button-primary {
  color: #fff5ec;
  border-color: rgba(255, 184, 126, 0.18);
  background: linear-gradient(180deg, #ff8a1f 0%, #ff6d00 100%);
  box-shadow: 0 20px 40px rgba(255, 109, 0, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(62, 29, 19, 0.58);
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2.8rem, 8vw, 6rem) 0 5rem;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(239, 150, 76, 0.14) 24%, rgba(255, 189, 122, 0.28) 52%, rgba(239, 150, 76, 0.14) 76%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 100%);
}

.hero h1,
.section-heading h2,
.referral-copy h2,
.support-card h2,
.payments-card h2,
.cta-card h2 {
  margin: 1rem 0 1.25rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.45rem);
}

.lead,
.section-heading p,
.feature-card p,
.referral-copy > p,
.support-card > p,
.payments-card > p,
.cta-card > p {
  color: var(--muted);
  line-height: 1.74;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.lead {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-meta span,
.payment-badges span,
.detail-row span,
.board-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(239, 150, 76, 0.16);
  border-radius: 999px;
  background: rgba(56, 27, 18, 0.76);
  color: var(--muted-strong);
  font-weight: 700;
}

.hero-note {
  margin-top: 1.35rem;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.mirage-beam {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0) 0%, rgba(255, 122, 26, 0.26) 28%, rgba(255, 189, 122, 0.22) 62%, rgba(141, 99, 191, 0) 100%);
  filter: blur(10px);
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: mirageDrift 11s ease-in-out infinite;
}

.beam-one {
  top: 116px;
  left: -20px;
  width: 80%;
  height: 94px;
  transform: rotate(-8deg);
}

.beam-two {
  right: -30px;
  bottom: 110px;
  width: 72%;
  height: 88px;
  transform: rotate(8deg);
  animation-delay: 1.6s;
}

.visual-orbit {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(59, 28, 18, 0.88) 0%, rgba(32, 15, 10, 0.66) 100%);
  border: 1px solid rgba(239, 150, 76, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 90px var(--shadow);
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
}

.visual-orbit::before {
  inset: 8% 18% auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 147, 64, 0.24) 0%, transparent 70%);
}

.visual-orbit::after {
  inset: auto auto -8% 8%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(104, 132, 45, 0.18) 0%, transparent 74%);
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(239, 150, 76, 0.12);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.ring-1 {
  top: 46px;
  right: 34px;
  width: 280px;
  aspect-ratio: 1;
}

.ring-2 {
  left: -70px;
  bottom: -90px;
  width: 430px;
  aspect-ratio: 1;
  animation-duration: 26s;
  animation-direction: reverse;
}

.console-card,
.device-card,
.metric-card,
.server-card,
.feature-card,
.faq-card,
.referral-copy,
.referral-board,
.support-card,
.payments-card,
.cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239, 150, 76, 0.14);
  background:
    linear-gradient(180deg, rgba(60, 30, 20, 0.86) 0%, rgba(42, 20, 13, 0.76) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 26px 60px var(--shadow);
}

.console-card::before,
.device-card::before,
.feature-card::before,
.server-card::before,
.faq-card::before,
.referral-copy::before,
.referral-board::before,
.support-card::before,
.payments-card::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 20%;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 139, 44, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.console-card {
  position: absolute;
  top: 52px;
  left: 34px;
  right: 118px;
  padding: 1.3rem;
  border-radius: 28px;
}

.console-head,
.device-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.console-title {
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 18px;
}

.signal-bars span {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.28);
}

.signal-bars span:nth-child(1) {
  height: 8px;
}

.signal-bars span:nth-child(2) {
  height: 12px;
}

.signal-bars span:nth-child(3) {
  height: 16px;
}

.signal-bars span:nth-child(4) {
  height: 18px;
}

.console-body {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.log-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(43, 20, 12, 0.62);
}

.log-label {
  color: var(--muted);
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(43, 20, 12, 0.84);
  border: 1px solid rgba(239, 150, 76, 0.18);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}

.chip-top {
  top: 26px;
  right: 16px;
}

.chip-right {
  top: 210px;
  right: -18px;
  animation-delay: 1.2s;
}

.chip-bottom {
  left: 22px;
  bottom: 26px;
  animation-delay: 2.4s;
}

.device-card {
  position: absolute;
  right: 40px;
  bottom: 38px;
  width: min(290px, calc(100% - 88px));
  padding: 1.2rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(45, 21, 13, 0.94) 0%, rgba(66, 31, 20, 0.88) 100%);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 10px rgba(255, 122, 26, 0.12);
}

.device-topline {
  justify-content: flex-start;
  color: var(--muted-strong);
  font-weight: 800;
}

.device-screen {
  display: grid;
  gap: 0.72rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(38, 17, 11, 0.9) 0%, rgba(58, 27, 18, 0.74) 100%);
}

.screen-step {
  padding: 0.78rem 0.92rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-weight: 700;
}

.section {
  padding-bottom: 5.5rem;
}

.metrics {
  padding-bottom: 4.7rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.server-card {
  min-height: 220px;
  padding: 1.35rem;
  border-radius: 30px;
}

.server-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.server-head h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.15;
}

.server-head p {
  color: var(--muted);
  line-height: 1.7;
}

.flag {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 189, 122, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.flag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%);
  pointer-events: none;
}

.flag-ru {
  background:
    linear-gradient(180deg, #ffffff 0 33.333%, #0f4cbd 33.333% 66.666%, #c53d36 66.666% 100%);
}

.flag-nl {
  background:
    linear-gradient(180deg, #b8393c 0 33.333%, #ffffff 33.333% 66.666%, #21468b 66.666% 100%);
}

.flag-tr {
  background:
    radial-gradient(circle at 46% 50%, #ffffff 0 12%, transparent 12.5%),
    radial-gradient(circle at 50% 50%, #d11f1f 0 20%, transparent 20.5%),
    radial-gradient(circle at 42% 50%, #ffffff 0 20%, transparent 20.5%),
    linear-gradient(180deg, #d21c1c 0%, #c51a1a 100%);
}

.flag-us {
  background:
    linear-gradient(180deg, #b22234 0 10%, #ffffff 10% 20%, #b22234 20% 30%, #ffffff 30% 40%, #b22234 40% 50%, #ffffff 50% 60%, #b22234 60% 70%, #ffffff 70% 80%, #b22234 80% 90%, #ffffff 90% 100%);
}

.flag-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 54%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 1.2px, transparent 1.4px);
  background-color: #3c3b6e;
  background-size: 9px 9px;
  background-position: 2px 2px;
}

.metric-card {
  min-height: 170px;
  padding: 1.4rem;
  border-radius: 28px;
}

.metric-value {
  margin-bottom: 0.75rem;
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-label {
  color: var(--muted);
  line-height: 1.66;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.referral-copy h2,
.support-card h2,
.payments-card h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading > p {
  max-width: 38rem;
}

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

.feature-card {
  grid-column: span 4;
  min-height: 270px;
  padding: 1.45rem;
  border-radius: 30px;
}

.feature-large {
  grid-column: span 6;
}

.feature-highlight {
  background:
    linear-gradient(160deg, rgba(84, 38, 23, 0.96) 0%, rgba(49, 22, 13, 0.8) 100%);
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 154, 77, 0.12);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.feature-card h3 {
  margin: 1rem 0 0.9rem;
  max-width: 16ch;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.18;
}

.detail-row,
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.text-link,
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  color: var(--accent);
  font-weight: 800;
}

.text-link::after,
.footer-link::after {
  content: "↗";
  font-size: 0.95em;
}

.referral-shell,
.service-grid {
  display: grid;
  gap: 1rem;
}

.referral-shell {
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
}

.referral-copy,
.referral-board,
.support-card,
.payments-card,
.cta-card {
  border-radius: 32px;
  padding: 1.7rem;
}

.step-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(54, 25, 16, 0.58);
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: #031013;
  font-weight: 900;
}

.step-item strong,
.payout-row strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.step-item p,
.board-note,
.payment-copy {
  color: var(--muted);
  line-height: 1.66;
}

.referral-board {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.board-pill {
  align-self: flex-start;
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 154, 77, 0.2), rgba(255, 189, 122, 0.12));
}

.payout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(54, 25, 16, 0.6);
  color: var(--muted-strong);
}

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

.support-list {
  display: grid;
  gap: 0.78rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.66;
}

.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
}

.payments-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.qr-shell {
  width: 180px;
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(239, 150, 76, 0.16);
  background:
    linear-gradient(135deg, rgba(89, 41, 24, 0.9) 0%, rgba(56, 25, 16, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 34px rgba(0, 0, 0, 0.22);
}

.qr-svg {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.final-cta {
  padding-bottom: 4rem;
}

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

.faq-card {
  min-height: 220px;
  padding: 1.45rem;
  border-radius: 30px;
}

.faq-card h3 {
  margin: 0 0 0.95rem;
  max-width: 20ch;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.2;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.72;
}

.cta-card {
  background:
    linear-gradient(135deg, rgba(92, 42, 24, 0.98) 0%, rgba(49, 22, 13, 0.88) 100%);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0 0 2rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  filter: blur(var(--reveal-blur, 0px));
  transform: translate3d(var(--reveal-x, 0px), calc(var(--reveal-y, 28px) + var(--parallax-shift, 0px)), 0)
    scale(var(--reveal-scale, 0.985)) rotate(var(--reveal-rotate, 0deg));
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0px);
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-shift, 0px), 0) scale(1) rotate(0deg);
}

.reveal-left {
  --reveal-x: -34px;
  --reveal-y: 22px;
  --reveal-rotate: -0.8deg;
}

.reveal-right {
  --reveal-x: 34px;
  --reveal-y: 18px;
  --reveal-rotate: 0.8deg;
}

.reveal-scale {
  --reveal-y: 20px;
  --reveal-scale: 0.94;
}

section[id] {
  scroll-margin-top: 120px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes mirageDrift {
  0%,
  100% {
    opacity: 0.34;
    filter: blur(10px);
  }

  50% {
    opacity: 0.62;
    filter: blur(15px);
  }
}

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

  .hero h1 {
    max-width: 14ch;
  }

  .hero-visual {
    min-height: 520px;
  }

  .feature-card {
    grid-column: span 6;
  }

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

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

  .faq-grid,
  .referral-shell,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .reveal {
    --reveal-blur: 6px;
    transition:
      opacity 0.52s ease,
      transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.78s ease;
  }

  .reveal-left,
  .reveal-right,
  .reveal-scale {
    --reveal-x: 0px;
    --reveal-y: 18px;
    --reveal-rotate: 0deg;
    --reveal-scale: 0.985;
  }

  body::before {
    background-size: 68px 68px;
    opacity: 0.28;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 34px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .topbar-note {
    text-align: left;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .console-card {
    right: 70px;
  }

  .chip-right {
    right: 14px;
    top: 250px;
  }

  .payments-layout {
    grid-template-columns: 1fr;
  }

  .page-atmosphere {
    opacity: 0.34;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .section,
  .footer {
    width: min(1240px, calc(100% - 24px));
  }

  .topbar {
    top: max(10px, env(safe-area-inset-top));
    gap: 1rem;
    padding: 16px;
    border-radius: 28px;
  }

  .brand {
    font-size: 0.82rem;
  }

  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .topbar-note {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .nav-link {
    display: none;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero {
    gap: 1.5rem;
    padding: 1.8rem 0 4rem;
  }

  .hero::after {
    left: 0;
    right: 0;
    bottom: 20px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    line-height: 1.02;
  }

  .hero-visual {
    display: grid;
    gap: 0.8rem;
    min-height: auto;
    padding: 1rem;
    border-radius: 28px;
  }

  .lead,
  .section-heading p,
  .feature-card p,
  .referral-copy > p,
  .support-card > p,
  .payments-card > p,
  .cta-card > p,
  .hero-note,
  .metric-label,
  .faq-card p,
  .step-item p,
  .board-note,
  .payment-copy,
  .server-head p,
  .support-list li {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .hero-meta span {
    width: 100%;
    min-height: 100%;
    padding-inline: 0.85rem;
    text-align: center;
  }

  .visual-orbit {
    border-radius: 28px;
  }

  .orbit-ring,
  .page-atmosphere {
    display: none;
  }

  .console-card,
  .device-card,
  .floating-chip {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 0;
  }

  .console-card,
  .device-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .device-card {
    width: 100%;
  }

  .chip-top,
  .chip-right,
  .chip-bottom {
    margin-top: 0;
  }

  .floating-chip {
    animation: none;
    justify-content: flex-start;
    padding: 0.75rem 0.9rem;
    border-radius: 20px;
    font-size: 0.88rem;
  }

  .mirage-beam {
    display: none;
  }

  .log-line,
  .payout-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-card h3,
  .faq-card h3 {
    max-width: none;
  }

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

  .feature-card,
  .feature-large {
    grid-column: span 1;
  }

  .metric-card,
  .server-card,
  .feature-card,
  .faq-card,
  .referral-copy,
  .referral-board,
  .support-card,
  .payments-card,
  .cta-card {
    border-radius: 26px;
    padding: 1.25rem;
  }

  .qr-shell {
    width: min(180px, 100%);
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1.4rem;
  }
}

@media (max-width: 420px) {
  .topbar,
  .hero,
  .section,
  .footer {
    width: calc(100% - 16px);
  }

  .brand {
    gap: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11.5vw, 3rem);
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .console-card,
  .device-card,
  .metric-card,
  .server-card,
  .feature-card,
  .faq-card,
  .referral-copy,
  .referral-board,
  .support-card,
  .payments-card,
  .cta-card {
    border-radius: 22px;
    padding: 1.1rem;
  }

  .device-screen {
    padding: 0.85rem;
  }
}

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

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

  .scroll-meter,
  .page-atmosphere {
    display: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none !important;
  }
}
