:root {
  --bg: #121212;
  --bg-elevated: #1a1a1a;
  --bg-soft: #222222;
  --text: #f5f5f5;
  --muted: #a8a29a;
  --line: rgba(255, 255, 255, 0.08);
  --brand: #ff9f1c;
  --brand-hot: #fe6e00;
  --brand-soft: rgba(255, 159, 28, 0.14);
  --emerald: #1faa6c;
  --danger: #fb2c36;
  --font-sans: "Nunito", "Segoe UI", sans-serif;
  --font-display: "Press Start 2P", monospace;
  --font-mono: "JetBrains Mono", "Cascadia Code", "Consolas", monospace;
  --container: 1120px;
  --header-h: 104px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.7rem 0 0;
  pointer-events: none;
}

.header-shell {
  position: relative;
  width: min(100% - 1.5rem, calc(var(--container) + 1.5rem));
  margin-inline: auto;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(255, 159, 28, 0.28);
  background: rgba(8, 8, 8, 0.9);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 159, 28, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 64px;
  padding: 0.45rem 0.7rem 0.45rem 0.75rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.92;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.brand-name em {
  font-style: normal;
  background: linear-gradient(135deg, #ffc14d, var(--brand-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.live-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: livePulse 1.8s ease infinite;
}

.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: block;
  background: #171717;
  box-shadow: 0 8px 20px rgba(254, 110, 0, 0.3);
  overflow: hidden;
}

.brand-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-desktop::before {
  content: "";
  width: 1px;
  height: 1.4rem;
  margin-right: 0.55rem;
  background: rgba(255, 255, 255, 0.12);
}

.nav-item {
  color: rgba(245, 245, 245, 0.7);
  font-weight: 800;
  font-size: 0.92rem;
  background: none;
  border: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-item:hover,
.nav-item:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-chevron {
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  z-index: 120;
  min-width: 11.5rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #181818;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateX(-50%);
}

.nav-dropdown-menu[hidden] {
  display: none;
}

.nav-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: rgba(245, 245, 245, 0.78);
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s ease, background 0.2s ease;
}

button.nav-dropdown-item {
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.nav-dropdown-item[aria-current="page"] {
  color: var(--accent);
  background: rgba(255, 159, 28, 0.08);
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.62rem 1.15rem 0.62rem 1rem;
  border: 1.5px solid rgba(255, 159, 28, 0.55);
  border-radius: 10px;
  background: rgba(255, 159, 28, 0.1);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.header-cta-text {
  white-space: nowrap;
}

.header-cta-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-cta:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #140c00;
  transform: translateY(-1px);
}

.header-cta:hover .header-cta-icon {
  opacity: 1;
  transform: scale(1.06);
}

.header-cta:focus-visible {
  outline: 2px solid rgba(255, 159, 28, 0.65);
  outline-offset: 2px;
}

.header-cta:active {
  transform: translateY(0);
  background: #e88a10;
  border-color: #e88a10;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-direction: column;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.burger:hover {
  border-color: rgba(255, 159, 28, 0.4);
  background: rgba(255, 159, 28, 0.1);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  gap: 0.85rem;
  padding: 0.55rem 0.9rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.22s ease both;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-nav {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-nav a,
.mobile-nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0.95rem 1.05rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.mobile-nav a:last-child,
.mobile-nav button:last-child {
  border-bottom: 0;
}

.mobile-nav a::after,
.mobile-nav button::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid rgba(255, 255, 255, 0.28);
  border-top: 1.5px solid rgba(255, 255, 255, 0.28);
  transform: rotate(45deg);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.mobile-nav a:hover,
.mobile-nav button:hover {
  background: rgba(255, 159, 28, 0.08);
  color: #fff;
  padding-left: 1.2rem;
}

.mobile-nav a:hover::after,
.mobile-nav button:hover::after {
  border-color: var(--brand);
  transform: rotate(45deg) translate(1px, -1px);
}

.mobile-nav a[aria-current="page"] {
  background: rgba(255, 159, 28, 0.08);
  color: #fff;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255, 159, 28, 0.55);
  border-radius: 10px;
  background: rgba(255, 159, 28, 0.1);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-align: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.mobile-cta-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-cta:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #140c00;
  transform: translateY(-1px);
}

.mobile-cta:hover .mobile-cta-icon {
  opacity: 1;
  transform: scale(1.06);
}

.mobile-cta:active {
  transform: translateY(0);
  background: #e88a10;
  border-color: #e88a10;
}

.contacts-modal-panel {
  width: min(100%, 440px);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 159, 28, 0.14), transparent 45%),
    #171717;
}

.contacts-grid {
  display: grid;
  gap: 0.65rem;
}

.contacts-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contacts-card:hover {
  border-color: rgba(255, 159, 28, 0.4);
  transform: translateY(-1px);
}

.contacts-card strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.contacts-card small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.contacts-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.contacts-icon-vk {
  background: rgba(70, 128, 255, 0.18);
  color: #8eb4ff;
  border: 1px solid rgba(70, 128, 255, 0.35);
}

.contacts-icon-tg {
  background: rgba(42, 171, 238, 0.16);
  color: #7ad4ff;
  border: 1px solid rgba(42, 171, 238, 0.35);
}

.contacts-icon-mail {
  background: rgba(255, 159, 28, 0.14);
  color: var(--brand);
  border: 1px solid rgba(255, 159, 28, 0.35);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-hot));
  color: #1a0f00;
  box-shadow: 0 10px 30px rgba(254, 110, 0, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(254, 110, 0, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    url("../assets/hero-bg.png") center / cover no-repeat;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(10, 8, 6, 0.18) 0%, rgba(10, 8, 6, 0.72) 55%, #121212 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.45) 0%, rgba(18, 18, 18, 0.2) 40%, #121212 100%);
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.32), transparent 68%);
  filter: blur(22px);
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-glow-2 {
  top: 58%;
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  background: radial-gradient(circle, rgba(254, 110, 0, 0.22), transparent 70%);
  animation-delay: 1.2s;
  opacity: 0.85;
}

.hero-content {
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.2rem) 0 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease both;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 170, 108, 0.35);
  background: rgba(8, 28, 18, 0.55);
  color: #d6ffe9;
  font-weight: 800;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.online-pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(31, 170, 108, 0.7);
  animation: livePulse 1.8s ease infinite;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 28, 0.28);
  background: rgba(255, 159, 28, 0.1);
  color: #ffd7a1;
  font-weight: 800;
  font-size: 0.78rem;
  backdrop-filter: blur(8px);
}

.hero-brand {
  position: relative;
  margin: 0 0 1rem;
  animation: fadeUp 0.9s ease 0.08s both;
  width: 100%;
}

.hero-brand-text,
.hero-brand-glow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 7.2vw, 4.1rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-brand-text {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #ffe2a8 0%,
    #ff9f1c 42%,
    #fe6e00 78%,
    #ffb347 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.hero-brand-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: transparent;
  text-shadow:
    0 0 28px rgba(255, 159, 28, 0.55),
    0 0 70px rgba(254, 110, 0, 0.45),
    0 0 120px rgba(254, 110, 0, 0.25);
  animation: brandPulse 3.4s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.hero-divider {
  width: min(220px, 46%);
  height: 2px;
  margin: 0 0 1.25rem;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 159, 28, 0.15) 15%,
    #ffb347 50%,
    rgba(255, 159, 28, 0.15) 85%,
    transparent
  );
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.45);
  animation: fadeUp 0.9s ease 0.12s both;
}

.hero-pitch {
  width: min(100%, 520px);
  margin: 0 0 0.85rem;
  display: grid;
  justify-items: center;
  gap: 0.95rem;
  animation: fadeUp 0.9s ease 0.14s both;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.25;
  max-width: 22ch;
  text-wrap: balance;
}

.hero-title span {
  background: linear-gradient(135deg, #ffe0a8, var(--brand) 45%, var(--brand-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0;
  color: rgba(245, 240, 232, 0.86);
  max-width: 44ch;
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 480px);
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  min-width: 10.5rem;
  padding: 0.85rem 1.45rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.hero-btn:active {
  transform: translateY(0) scale(0.985);
}

.hero-btn-primary {
  color: #1a0f00;
  border-color: rgba(255, 220, 160, 0.45);
  background: linear-gradient(145deg, #ffd27a 0%, #ff9f1c 48%, #fe6e00 100%);
  box-shadow:
    0 10px 28px rgba(254, 110, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow:
    0 16px 36px rgba(254, 110, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-btn-primary:hover::after {
  transform: translateX(130%);
}

.hero-btn-ghost {
  color: #fff;
  border-color: rgba(255, 159, 28, 0.28);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 159, 28, 0.5);
  background: rgba(255, 159, 28, 0.12);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  animation: fadeUp 0.9s ease 0.4s both;
}

.ip-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
  padding: 0.7rem 0.7rem 0.7rem 1rem;
  border: 1px solid rgba(255, 159, 28, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.1), transparent 55%),
    rgba(0, 0, 0, 0.42);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.ip-box:hover {
  border-color: rgba(255, 159, 28, 0.55);
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.16), transparent 55%),
    rgba(0, 0, 0, 0.5);
}

.ip-box:active {
  transform: scale(0.985);
}

.ip-box:focus-visible {
  outline: 2px solid rgba(255, 159, 28, 0.65);
  outline-offset: 3px;
}

.ip-box.is-copied {
  border-color: rgba(31, 170, 108, 0.55);
  background:
    linear-gradient(135deg, rgba(31, 170, 108, 0.16), transparent 55%),
    rgba(0, 0, 0, 0.45);
}

.ip-meta {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.ip-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ip-value {
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}

.ip-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ip-box:hover .ip-copy {
  border-color: rgba(255, 159, 28, 0.35);
  background: rgba(255, 159, 28, 0.14);
}

.ip-box.is-copied .ip-copy {
  border-color: rgba(31, 170, 108, 0.4);
  background: rgba(31, 170, 108, 0.16);
  color: #7dffb8;
}

.ip-icon {
  width: 1rem;
  height: 1rem;
}

.ip-icon-check {
  display: none;
}

.ip-box.is-copied .ip-icon-copy {
  display: none;
}

.ip-box.is-copied .ip-icon-check {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  .ip-box {
    width: 100%;
    justify-content: space-between;
  }

  .ip-copy-text {
    display: none;
  }

  .ip-copy {
    padding: 0.7rem;
  }
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2.2rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
}

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

.legal {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 159, 28, 0.08), transparent 45%),
    linear-gradient(180deg, #151515, #121212 45%),
    var(--bg);
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.25);
  padding: 1.6rem 1.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-card + .legal-card {
  margin-top: 1.1rem;
}

.legal-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.legal-text {
  display: grid;
  gap: 0.9rem;
}

.legal-text p {
  margin: 0;
  color: rgba(245, 240, 232, 0.74);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-text a {
  color: var(--accent);
  text-decoration: none;
}

.legal-text a:hover {
  text-decoration: underline;
}

.legal-lead {
  margin-bottom: 0.25rem;
  color: rgba(245, 240, 232, 0.82);
  font-size: 1rem;
}

.legal-section {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: none;
}

.legal-section h4 {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legal-list {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.55rem;
}

.legal-list li {
  color: rgba(245, 240, 232, 0.74);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 0.15rem;
}

.legal-list li::marker {
  color: rgba(255, 159, 28, 0.75);
  font-weight: 600;
}

.legal-sublist {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.legal-contact {
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 159, 28, 0.18);
  background: rgba(255, 159, 28, 0.06);
  color: rgba(245, 240, 232, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-contact a {
  color: var(--accent);
  text-decoration: none;
}

.legal-contact a:hover {
  text-decoration: underline;
}

.shop {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 159, 28, 0.08), transparent 42%),
    linear-gradient(180deg, #141414, #121212 35%),
    var(--bg);
}

.shop-promo {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.shop-promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.2rem 0.2rem 0.2rem 0;
}

.shop-promo-kicker {
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 28, 0.28);
  background: rgba(255, 159, 28, 0.1);
  color: #ffd7a1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.shop-promo-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.shop-promo-copy > p {
  margin: 0;
  max-width: 36ch;
  color: rgba(245, 240, 232, 0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}

.shop-promo-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.2rem 0 0;
  padding: 0;
}

.shop-promo-points li {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #ebe4da;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.shop-promo-points li:nth-child(1) {
  border-color: rgba(31, 170, 108, 0.35);
  background: rgba(8, 28, 18, 0.55);
  color: #86efac;
}

.shop-promo-points li:nth-child(2) {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(8, 22, 36, 0.55);
  color: #7dd3fc;
}

.shop-promo-points li:nth-child(3) {
  border-color: rgba(255, 159, 28, 0.28);
  background: rgba(255, 159, 28, 0.1);
  color: #ffd7a1;
}

.sale-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1.25rem;
  border: 1px solid rgba(255, 159, 28, 0.38);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 159, 28, 0.2), rgba(254, 110, 0, 0.06) 45%, rgba(0, 0, 0, 0.35)),
    rgba(16, 12, 8, 0.85);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sale-banner-glow {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.35), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.sale-banner-main,
.sale-banner-timer {
  position: relative;
  z-index: 1;
}

.sale-badge {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffc14d, var(--brand-hot));
  color: #1a0f00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sale-banner-main strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.sale-banner-main em {
  font-style: normal;
  background: linear-gradient(135deg, #ffe0a8, var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sale-banner-main p {
  margin: 0;
  color: rgba(245, 240, 232, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.sale-banner-timer {
  display: grid;
  gap: 0.55rem;
}

.sale-timer-label {
  color: #ffd7a1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.timer span {
  display: grid;
  gap: 0.15rem;
  justify-items: center;
  min-width: 0;
  padding: 0.65rem 0.4rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.timer b {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.timer small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .shop-promo {
    grid-template-columns: 1fr;
  }
}

.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  padding: 0.3rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab.is-active,
.tab:hover {
  color: #1a0f00;
  background: linear-gradient(135deg, #ffc14d, var(--brand-hot));
}

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

.product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 159, 28, 0.06), transparent 40%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product:hover {
  border-color: rgba(255, 159, 28, 0.42);
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 159, 28, 0.11), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 108px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 159, 28, 0.14), transparent 60%),
    rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.product-media img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.25s ease;
}

.product:hover .product-media img {
  transform: translateY(-2px) scale(1.03);
}

.product-sale {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.42rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 159, 28, 0.35);
  background: rgba(18, 12, 4, 0.75);
  color: #ffd7a1;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}

.product-body {
  display: grid;
  gap: 0.15rem;
}

.product-rank {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  min-width: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.78rem;
  font-weight: 700;
  order: -1;
}

.product-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-shrink: 0;
  min-height: 2.35rem;
  padding: 0 0.95rem 0 0.85rem;
  border: 1.5px solid rgba(255, 159, 28, 0.5);
  border-radius: 10px;
  background: rgba(255, 159, 28, 0.08);
  color: #fff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.product-buy-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-buy:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #140c00;
  transform: translateY(-1px);
}

.product-buy:hover .product-buy-icon {
  opacity: 1;
  transform: scale(1.06);
}

.product-buy:focus-visible {
  outline: 2px solid rgba(255, 159, 28, 0.6);
  outline-offset: 2px;
}

.product-buy:active {
  transform: translateY(0);
  background: #e88a10;
  border-color: #e88a10;
}

.purchases {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 159, 28, 0.09), transparent 38%),
    #101010;
}

.purchases-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.purchases-head .section-head {
  margin-bottom: 0;
}

.purchases-kicker {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 28, 0.22);
  background: rgba(255, 159, 28, 0.08);
  color: #ffd7a1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.purchases-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 170, 108, 0.28);
  background: rgba(8, 28, 18, 0.48);
  color: #d6ffe9;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.purchases-live-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(31, 170, 108, 0.7);
  animation: livePulse 1.8s ease infinite;
}

.purchases-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

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

.purchase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.9rem 0.85rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.purchase:hover,
.purchase:focus-visible {
  border-color: rgba(255, 159, 28, 0.35);
  transform: translateY(-2px);
  background: rgba(255, 159, 28, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.purchase:focus-visible {
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    0 0 0 2px rgba(255, 159, 28, 0.35);
}

.purchase--new {
  border-color: rgba(255, 159, 28, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 159, 28, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.03);
}

.purchase--new::after {
  content: "New";
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 1;
  padding: 0.14rem 0.38rem;
  border-radius: 5px;
  background: linear-gradient(135deg, #ffc14d, var(--brand-hot));
  color: #1a0f00;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.purchase-media {
  display: grid;
  place-items: center;
  height: 4.6rem;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 159, 28, 0.14), transparent 62%),
    rgba(0, 0, 0, 0.28);
}

.purchase-media img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}

.purchase:hover .purchase-media img {
  transform: translateY(-2px);
}

.purchase-body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  text-align: center;
}

.purchase-body em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.purchase-body b {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.purchase-who {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.purchase-who span:last-child {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.purchase-who strong {
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-who small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.purchase-avatar {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: color-mix(in srgb, var(--a, var(--brand)) 20%, #111);
  color: var(--a, var(--brand));
  font-weight: 900;
  font-size: 0.62rem;
  border: 1px solid color-mix(in srgb, var(--a, var(--brand)) 40%, transparent);
}

.purchase-price {
  display: none;
}

@media (max-width: 980px) {
  .purchases-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .purchase {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "media body"
      "media foot";
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.2rem;
    padding: 0.65rem 0.75rem;
  }

  .purchase:hover,
  .purchase:focus-visible {
    transform: none;
  }

  .purchase--new::after {
    top: 0.45rem;
    right: 0.45rem;
    font-size: 0.58rem;
    padding: 0.12rem 0.34rem;
  }

  .purchase-media {
    grid-area: media;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 9px;
  }

  .purchase-media img {
    width: 44px;
    height: 44px;
  }

  .purchase-body {
    grid-area: body;
    text-align: left;
    gap: 0.08rem;
  }

  .purchase-body em {
    font-size: 0.62rem;
  }

  .purchase-body b {
    font-size: 0.95rem;
  }

  .purchase-foot {
    grid-area: foot;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    justify-content: flex-start;
  }

  .purchase-avatar {
    width: 1.45rem;
    height: 1.45rem;
    font-size: 0.58rem;
  }

  .purchase-who strong {
    font-size: 0.74rem;
  }

  .purchase-who small {
    font-size: 0.64rem;
  }
}

.faq {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(255, 159, 28, 0.07), transparent 40%),
    #111;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.faq-intro {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding-top: 0.25rem;
}

.faq-kicker {
  width: fit-content;
  color: #ffc98a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.faq-lead {
  margin: 0;
  max-width: 24ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.faq-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin-top: 0.45rem;
  min-height: 2.7rem;
  padding: 0.32rem 0.35rem 0.32rem 0.95rem;
  border: 1px solid rgba(255, 159, 28, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 159, 28, 0.12), rgba(255, 159, 28, 0.04)),
    rgba(12, 10, 8, 0.75);
  color: #fff7eb;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 10px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.faq-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 210, 122, 0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.faq-cta-text {
  position: relative;
  z-index: 1;
}

.faq-cta-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffd27a 0%, #ff9f1c 48%, #fe6e00 100%);
  color: #1a0f00;
  box-shadow:
    0 6px 16px rgba(254, 110, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.faq-cta-arrow svg {
  width: 0.95rem;
  height: 0.95rem;
}

.faq-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 159, 28, 0.55);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 210, 122, 0.08) inset,
    0 14px 32px rgba(254, 110, 0, 0.18);
}

.faq-cta:hover::before {
  transform: translateX(120%);
}

.faq-cta:hover .faq-cta-arrow {
  transform: translateX(2px);
  box-shadow:
    0 8px 20px rgba(254, 110, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.faq-cta:active {
  transform: translateY(0);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transition: background 0.55s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.is-open {
  background: rgba(255, 159, 28, 0.04);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.72s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 0.85rem;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  bottom: 1.15rem;
  width: 2px;
  border-radius: 2px;
  background: transparent;
  transition: background 0.5s ease;
}

.faq-item.is-open summary::before {
  background: linear-gradient(180deg, var(--brand), var(--brand-hot));
}

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

.faq-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
}

.faq-q {
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.faq-icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition: border-color 0.45s ease, background 0.45s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.55rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.faq-item.is-open .faq-icon {
  border-color: rgba(255, 159, 28, 0.4);
  background: rgba(255, 159, 28, 0.12);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: var(--brand);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-a {
  overflow: hidden;
  min-height: 0;
  padding: 0 2.2rem 1.2rem 3.1rem;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0s;
}

.faq-item.is-open .faq-a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.faq-a p {
  margin: 0;
  max-width: 52ch;
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "lead"
      "cta";
    gap: 0.85rem;
  }

  .faq-kicker {
    grid-area: kicker;
  }

  .faq-title {
    grid-area: title;
  }

  .faq-lead {
    grid-area: lead;
    max-width: none;
    padding-right: 0;
  }

  .faq-cta {
    grid-area: cta;
    justify-self: start;
    align-self: start;
    margin-top: 0.15rem;
  }

  .faq-a {
    padding-left: 0.85rem;
    padding-right: 0.25rem;
  }

  .faq-item summary {
    grid-template-columns: 2rem 1fr auto;
    padding-left: 0.7rem;
  }
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b0b;
  color: rgba(245, 240, 232, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.6fr);
  gap: 2.5rem 3rem;
  padding-top: 3rem;
  padding-bottom: 2.4rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-logo {
  display: inline-block;
  width: fit-content;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo-image {
  display: block;
  width: auto;
  height: clamp(2.75rem, 4.8vw, 3.35rem);
  max-width: min(10.5rem, 100%);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 10px rgba(255, 120, 0, 0.18));
  transition: filter 0.2s ease, transform 0.2s ease;
}

.footer-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-logo:hover .footer-logo-image {
  filter: drop-shadow(0 4px 14px rgba(255, 120, 0, 0.28));
}

.footer-tagline {
  margin: 0;
  max-width: 30ch;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  color: rgba(245, 240, 232, 0.52);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-social {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 240, 232, 0.72);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-social:hover {
  transform: translateY(-1px);
  color: #fff;
}

.footer-social[href*="t.me"]:hover {
  background: #229ed9;
}

.footer-social[href*="vk.com"]:hover {
  background: #0077ff;
}

.footer-social[href^="mailto"]:hover {
  background: rgba(255, 159, 28, 0.85);
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.5rem;
  justify-content: flex-start;
  align-self: start;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-width: 8.5rem;
  overflow: visible;
}

.footer-col h3 {
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col button {
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-col a:hover,
.footer-col button:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-dropdown {
  position: relative;
  width: 100%;
}

.footer-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-dropdown-toggle:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-dropdown-chevron {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.footer-dropdown.is-open .footer-dropdown-chevron {
  transform: rotate(180deg);
}

.footer-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  width: 100%;
  min-width: 11.5rem;
  margin-top: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #181818;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 0.15rem;
}

.footer-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 0;
  width: 100%;
  height: 0.35rem;
}

.footer-dropdown-menu[hidden] {
  display: none;
}

.footer-dropdown-menu a,
.footer-dropdown-menu button {
  display: block;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: rgba(245, 245, 245, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-dropdown-menu button {
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-dropdown-menu a:hover,
.footer-dropdown-menu button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

.footer-dropdown-menu a[aria-current="page"] {
  color: var(--accent);
  background: rgba(255, 159, 28, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: grid;
  gap: 0.3rem;
  padding-top: 0.95rem;
  padding-bottom: 1.2rem;
  text-align: center;
  justify-items: center;
}

.footer-bottom-inner p {
  margin: 0;
  max-width: 42rem;
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(245, 240, 232, 0.28);
  text-align: center;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.4rem;
  }

  .footer-cols {
    gap: 1.25rem 2.75rem;
  }
}

@media (max-width: 640px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.modal.is-open {
  display: grid;
}

html.buy-modal-open,
body.buy-modal-open {
  overflow: hidden;
  scroll-behavior: auto;
}

body.buy-modal-open {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
}

#buyModal {
  overflow: hidden;
}

.modal-panel {
  position: relative;
  width: min(100%, 420px);
  background: #171717;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem;
  animation: fadeUp 0.28s ease both;
}

.modal-panel h3 {
  margin: 0 0 0.4rem;
}

.modal-panel > p,
.howto-panel-head p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.buy-panel {
  width: min(100%, 460px);
  max-height: calc(100dvh - 2rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.2rem 1.25rem 1.1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 159, 28, 0.45) rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 159, 28, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    #151515;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.buy-panel::-webkit-scrollbar {
  width: 6px;
}

.buy-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.45);
}

.buy-product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.1rem 1.8rem 0.75rem 0;
}

.buy-product-media {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 159, 28, 0.18), transparent 65%),
    rgba(0, 0, 0, 0.35);
}

.buy-product-media img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.buy-product-info {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.buy-product-rank {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.buy-panel #modalTitle {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.buy-product-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.buy-price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.85rem;
  font-weight: 700;
}

.buy-product-price strong {
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.buy-desc {
  margin: 0 0 0.85rem !important;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(245, 240, 232, 0.86) !important;
  font-size: 0.92rem;
  line-height: 1.5;
}

.buy-desc--game {
  position: relative;
  max-height: 4.75rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.65rem 0.7rem 0.7rem;
  margin-bottom: 0.75rem !important;
  font-size: 0.8rem;
  line-height: 1.32;
  cursor: pointer;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 159, 28, 0.5) rgba(255, 255, 255, 0.05);
  transition: max-height 0.35s ease;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 1.1rem), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 1.1rem), transparent 100%);
}

.buy-desc--game.is-expanded {
  max-height: min(48vh, 20rem);
  -webkit-mask-image: none;
  mask-image: none;
}

.buy-desc--game::-webkit-scrollbar {
  width: 6px;
}

.buy-desc--game::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.45);
}

.mc-desc-line {
  min-height: 1.05em;
}

.mc-desc-spacer {
  height: 0.2rem;
}

.buy-panel .buy-form {
  gap: 0.8rem;
}

.mc-text {
  font-family: var(--font-sans);
  font-weight: 600;
}

.mc-text.mc-bold {
  font-weight: 800;
}

.mc-black { color: #1a1a1a; }
.mc-dark-blue { color: #4a6cff; }
.mc-dark-green { color: #4a9a4a; }
.mc-dark-aqua { color: #4a9a9a; }
.mc-dark-red { color: #aa3333; }
.mc-purple { color: #c85cff; }
.mc-gold { color: #ffb020; }
.mc-gray { color: #9a9a9a; }
.mc-dark-gray { color: #6a6a6a; }
.mc-blue { color: #6a8cff; }
.mc-green { color: #6ee07a; }
.mc-aqua { color: #5ad4e8; }
.mc-red { color: #ff5555; }
.mc-light-purple { color: #e87dff; }
.mc-yellow { color: #ffe14d; }
.mc-white { color: #f2f2f2; }

.buy-form {
  display: grid;
  gap: 0.95rem;
}

.buy-fields {
  display: grid;
  gap: 0.75rem;
}

.buy-form .field {
  margin-bottom: 0;
  gap: 0.4rem;
}

.buy-form .field label {
  color: rgba(245, 240, 232, 0.78);
  font-size: 0.82rem;
}

.field-control {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 0.9rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.2s ease;
}

.field-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.buy-form .field-control input,
.buy-form .field-control select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 0.85rem 0.95rem 0.85rem 2.55rem;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.buy-form .field-control select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.55) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.buy-form .field-control input:focus,
.buy-form .field-control select:focus {
  outline: none;
  border-color: rgba(255, 159, 28, 0.5);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.12);
}

.buy-form .field-control:focus-within .field-icon {
  color: var(--brand);
}

.buy-summary {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 159, 28, 0.2);
  background: rgba(255, 159, 28, 0.08);
}

.buy-summary-dot {
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.55);
  animation: livePulse 1.8s ease infinite;
}

.buy-hint {
  margin: 0;
  color: #ffd7a1;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

.buy-actions {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 0.6rem;
}

.buy-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.buy-consent-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.buy-consent-mark {
  position: relative;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.buy-consent-input:focus-visible + .buy-consent-mark {
  box-shadow: 0 0 0 2px rgba(255, 159, 28, 0.35);
}

.buy-consent-input:checked + .buy-consent-mark {
  border-color: rgba(255, 159, 28, 0.75);
  background: rgba(255, 159, 28, 0.16);
}

.buy-consent-input:checked + .buy-consent-mark::after {
  content: "";
  position: absolute;
  left: 0.31rem;
  top: 0.12rem;
  width: 0.28rem;
  height: 0.52rem;
  border: solid var(--brand);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.buy-consent-copy {
  color: rgba(245, 240, 232, 0.62);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.buy-consent-link {
  color: rgba(245, 240, 232, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 159, 28, 0.4);
  text-underline-offset: 0.14em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.buy-consent-link:hover {
  color: var(--brand);
  text-decoration-color: rgba(255, 159, 28, 0.75);
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.05rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.buy-btn-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.buy-btn:active {
  transform: scale(0.98);
}

.buy-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.buy-btn-ghost:hover {
  border-color: rgba(255, 159, 28, 0.35);
  background: rgba(255, 159, 28, 0.08);
}

.buy-btn-primary {
  color: #1a0f00;
  border-color: rgba(255, 210, 130, 0.35);
  background: linear-gradient(145deg, #ffd27a 0%, #ff9f1c 48%, #fe6e00 100%);
  box-shadow:
    0 10px 24px rgba(254, 110, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.buy-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(254, 110, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.buy-btn-primary:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.buy-btn-primary:disabled:hover {
  transform: none;
  box-shadow: none;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.howto-panel {
  width: min(100%, 460px);
  padding: 1.45rem 1.35rem 1.35rem;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 159, 28, 0.14), transparent 45%),
    #171717;
  max-height: min(90vh, 760px);
  overflow: auto;
}

.howto-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.howto-panel-head h3 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.howto-panel-head p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
}

.howto-grid {
  display: grid;
  gap: 0.6rem;
}

.howto-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.howto-card:hover {
  border-color: rgba(255, 159, 28, 0.4);
  transform: translateY(-1px);
}

.howto-step-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 159, 28, 0.14);
  color: var(--brand);
  border: 1px solid rgba(255, 159, 28, 0.35);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.howto-card strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.howto-card small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.howto-panel-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.howto-ip {
  display: grid;
  gap: 0.2rem;
}

.howto-ip span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.howto-ip strong {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0;
}

.howto-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-width: 10.875rem;
  min-height: 2.55rem;
  padding: 0 1.15rem;
  border: 1.5px solid rgba(255, 159, 28, 0.55);
  border-radius: 10px;
  background: rgba(255, 159, 28, 0.1);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.howto-copy-btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.howto-copy-btn-icon-check {
  display: none;
}

.howto-copy-btn-text {
  white-space: nowrap;
}

.howto-copy-btn.is-copied .howto-copy-btn-icon-copy {
  display: none;
}

.howto-copy-btn.is-copied .howto-copy-btn-icon-check {
  display: block;
}

.howto-copy-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #140c00;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 120, 0, 0.28);
}

.howto-copy-btn:hover .howto-copy-btn-icon {
  transform: scale(1.05);
}

.howto-copy-btn:focus-visible {
  outline: 2px solid rgba(255, 159, 28, 0.6);
  outline-offset: 2px;
}

.howto-copy-btn:active {
  transform: translateY(0);
}

.howto-copy-btn.is-copied {
  border-color: rgba(31, 170, 108, 0.55);
  background: rgba(31, 170, 108, 0.14);
  color: #7dffb8;
  box-shadow: 0 6px 18px rgba(31, 170, 108, 0.18);
}

.howto-copy-btn.is-copied:hover {
  background: rgba(31, 170, 108, 0.24);
  border-color: rgba(31, 170, 108, 0.7);
  color: #a8ffd0;
  box-shadow: 0 8px 22px rgba(31, 170, 108, 0.24);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field label {
  font-weight: 800;
  font-size: 0.9rem;
}

.field input,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #101010;
  color: var(--text);
  padding: 0.85rem 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 0.6rem;
}

.modal-actions .btn {
  flex: 1;
}

@media (max-width: 960px) {
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .header-left {
    gap: 0.85rem;
  }

  .nav-item {
    padding: 0.45rem 0.55rem;
    font-size: 0.86rem;
  }

  .header-cta {
    font-size: 0.84rem;
    min-height: 2.4rem;
    padding: 0.55rem 0.95rem;
  }
}

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

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .brand-sub {
    display: none;
  }

  .header-inner {
    min-height: 58px;
  }

  .hero-chip {
    display: none;
  }
}

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

  .hero-content {
    padding-bottom: 2.5rem;
  }

  .hero-brand-text,
  .hero-brand-glow {
    font-size: clamp(1.25rem, 9.5vw, 2.4rem);
    letter-spacing: 0.02em;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-btn {
    flex: 1 1 auto;
    min-width: 9.5rem;
  }

  .header-shell {
    border-radius: 12px;
  }

  .header-inner {
    min-height: 56px;
    padding: 0.4rem 0.6rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lavaFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes brandShine {
  0%,
  100% {
    transform: translate(-8%, -8%) rotate(24deg);
    opacity: 0.55;
  }
  50% {
    transform: translate(28%, 18%) rotate(24deg);
    opacity: 0.9;
  }
}

@keyframes brandPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 170, 108, 0.65);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(31, 170, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 170, 108, 0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}
