:root {
  --bg: #060606;
  --bg-2: #0b0b0b;
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, 0.62);
  --line: rgba(246, 201, 108, 0.16);
  --gold-1: #fff0c2;
  --gold-2: #f3cf85;
  --gold-3: #d8ab57;
  --gold-4: #9e6a20;
  --panel: linear-gradient(180deg, rgba(12, 12, 12, 0.65), rgba(6, 6, 6, 0.65));
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 22px;
  --container: 1560px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(243, 207, 133, 0.06), transparent 24%),
    linear-gradient(180deg, #070707 0%, #030303 100%);
  overflow-x: hidden;
}
/* VX logo */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(90px);
}

.site-bg::before {
  top: 24%;
  width: 420px;
  height: 420px;
  background: rgba(243, 207, 133, 0.16);
}

.site-bg::after {
  top: 58%;
  width: 520px;
  height: 520px;
  background: rgba(243, 207, 133, 0.12);
}
.site-bg__vx {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 320px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -12px;
  color: rgba(243, 207, 133, 0.11);
  filter: blur(9px);
  white-space: nowrap;
  user-select: none;
}
a {
  color: inherit;
  text-decoration: none;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 0.5px,
    transparent 0.5px
  );
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.container,
.page {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 18px;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 6, 0.92),
    rgba(6, 6, 6, 0.55) 70%,
    rgba(6, 6, 6, 0)
  );
  backdrop-filter: blur(14px);
}
.header__inner {
  min-height: 72px;
  border: 1px solid rgba(246, 201, 108, 0.1);
  border-radius: 24px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: transparent;
  background: linear-gradient(
    180deg,
    var(--gold-1) 0%,
    var(--gold-2) 42%,
    var(--gold-4) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-width: 0;
}

.nav a {
  font-size: 0.95rem;
  color: rgba(245, 242, 234, 0.8);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav-cta:hover,
.header-link:hover {
  color: var(--gold-2);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
}

.header-link {
  min-width: 106px;
  padding: 12px 16px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(246, 201, 108, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(245, 242, 234, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.header-link:hover {
  border-color: rgba(246, 201, 108, 0.4);
  background: rgba(243, 207, 133, 0.04);
  transform: translateY(-1px);
}

.nav-cta {
  min-width: 108px;
  padding: 12px 18px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(246, 201, 108, 0.55);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(0, 0, 0, 0.2);
}
/*BURGER*/

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(246, 201, 108, 0.16);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.78);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  position: relative;
  z-index: 31;
}

.burger span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff0c2 0%, #f3cf85 100%);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    top 0.28s ease;
}

.burger span:nth-child(1) {
  top: 15px;
}

.burger span:nth-child(2) {
  top: 22px;
}

.burger span:nth-child(3) {
  top: 29px;
}

.burger.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

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

.burger.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.hero-shell {
  margin-top: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(246, 201, 108, 0.16);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 1px rgba(246, 201, 108, 0.03);
}

.lang-switch__link {
  min-width: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.64);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.lang-switch__link:hover {
  color: var(--gold-1);
}

.lang-switch__link.is-active {
  color: #1a1206;
  background: linear-gradient(135deg, #fff0c2 0%, #f3cf85 48%, #d49a40 100%);
  box-shadow: 0 0 20px rgba(243, 207, 133, 0.18);
}
.page {
  padding: 0 0 15px;
}

.panel,
.hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 201, 108, 0.12);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-shell {
  min-height: 700px;
  padding: 80px 40px 70px;
  display: grid;
  place-items: center;

  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    radial-gradient(
      circle at center,
      rgba(243, 207, 133, 0.05),
      transparent 40%
    ),
    url("assets/img/imghero-bg.webp") center / cover no-repeat;
}
.hero-shell::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;

  background: linear-gradient(to bottom, transparent, rgba(6, 6, 6, 0.85));

  pointer-events: none;
  z-index: 1;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(243, 207, 133, 0.08),
    transparent 50%
  );

  pointer-events: none;
}
.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero__title {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: transparent;
  background: linear-gradient(180deg, #fff8e0 0%, #f6d892 45%, #d59f43 90%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 18px rgba(243, 207, 133, 0.18),
    0 0 58px rgba(243, 207, 133, 0.16);
}

.hero__subtitle {
  margin: 24px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.95rem);
  font-weight: 600;
}

.hero__text {
  margin: 10px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  color: rgba(245, 242, 234, 0.88);
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-rings,
.hero-rings::before,
.hero-rings::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(246, 201, 108, 0.22);
}

.hero-rings {
  top: 50%;
  width: 780px;
  height: 780px;
  transform: translateY(-50%);
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(243, 207, 133, 0.15),
    transparent
  );
  animation: rotateRing 8s linear infinite;
}

@keyframes rotateRing {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.hero-rings--left {
  left: -470px;
}

.hero-rings--right {
  right: -470px;
}

.hero-rings::before {
  inset: 44px;
}

.hero-rings::after {
  inset: 92px;
}

.hero-glow {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 240, 194, 0),
    rgba(243, 207, 133, 0.95),
    rgba(255, 240, 194, 0)
  );
  filter: blur(1px);
  transform: translateY(-50%);
  box-shadow: 0 0 34px rgba(243, 207, 133, 0.7);
}

.hero-glow--left {
  left: 62px;
}

.hero-glow--right {
  right: 62px;
}
.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* капсула */
.scroll-indicator__mouse {
  width: 34px;
  height: 56px;
  border-radius: 20px;
  border: 1px solid rgba(243, 207, 133, 0.35);

  background: linear-gradient(
    180deg,
    rgba(255, 240, 194, 0.08),
    rgba(0, 0, 0, 0.2)
  );

  backdrop-filter: blur(6px);

  display: flex;
  justify-content: center;
  padding-top: 10px;

  box-shadow:
    0 0 18px rgba(243, 207, 133, 0.15),
    inset 0 0 10px rgba(243, 207, 133, 0.08);
}

/* точка внутри */
.scroll-indicator__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff0c2, #f3cf85);

  box-shadow: 0 0 10px rgba(243, 207, 133, 0.8);

  animation: scrollDot 1.8s infinite;
}
.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.05);
}
.scroll-indicator__mouse {
  transition: all 0.3s ease;
}
.scroll-indicator {
  opacity: 0;
  bottom: calc(60px + env(safe-area-inset-bottom));
  animation:
    fadeIn 1s ease forwards,
    float 3s ease-in-out infinite;
  animation-delay: 1.2s, 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* анимация */
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 201, 108, 0.2);
  background: rgba(10, 10, 10, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(246, 201, 108, 0.03),
    0 10px 30px rgba(0, 0, 0, 0.22);
  color: rgba(255, 240, 194, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__microcopy {
  margin: 18px auto 0;
  max-width: 640px;
  color: rgba(245, 242, 234, 0.56);
  font-size: 0.88rem;
  line-height: 1.6;
}
.section {
  margin-top: 22px;
  padding: 42px 28px 36px;
}

.section-title {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
  text-align: center;
  font-weight: 800;
}

.section-title--left {
  text-align: left;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.project-card {
  min-height: 220px;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(246, 201, 108, 0.2);
  background:
    radial-gradient(
      circle at bottom left,
      rgba(243, 207, 133, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, rgba(24, 24, 24, 0.92), rgba(12, 12, 12, 0.98));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 201, 108, 0.5);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(243, 207, 133, 0.08);
}

.project-card--active {
  box-shadow:
    inset 0 0 0 1px rgba(246, 201, 108, 0.22),
    0 0 32px rgba(243, 207, 133, 0.1);
}

.project-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--gold-2);
  border: 1px solid rgba(246, 201, 108, 0.25);
  background: radial-gradient(
    circle at top,
    rgba(243, 207, 133, 0.08),
    rgba(0, 0, 0, 0)
  );
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 1.38rem;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.97rem;
}

.support-panel {
  text-align: center;
}

.support-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.about-hero {
  position: relative;
  min-height: 420px;
  padding: 60px;
  display: flex;
  align-items: center;

  border-radius: 26px;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 35%,
      rgba(0, 0, 0, 0.2) 60%,
      transparent 80%
    ),
    url("assets/img/about-visual.webp") right center / cover no-repeat;
}

/* затемнение слева */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at right,
    rgba(243, 207, 133, 0.15),
    transparent 40%
  );
  pointer-events: none;
}

/* текст */
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.about-hero__content h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.about-hero__content p {
  color: rgba(245, 242, 234, 0.75);
  margin-bottom: 40px;
  line-height: 1.6;
}
.btn,
.support-pill {
  min-width: 220px;
  padding: 18px 28px;
  border-radius: 999px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid rgba(246, 201, 108, 0.34);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover,
.support-pill:hover,
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.btn--solid,
.support-pill--solid {
  color: #1a1206;
  background: linear-gradient(135deg, #fff0c2 0%, #f3cf85 48%, #d49a40 100%);
}

.btn--ghost,
.support-pill--ghost {
  color: var(--gold-2);
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.96),
    rgba(7, 7, 7, 0.96)
  );
}

.hero__actions .btn--solid {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(243, 207, 133, 0.18);
}

.hero__actions .btn--solid:hover {
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(243, 207, 133, 0.24);
}

.btn--small {
  min-width: 150px;
  width: fit-content;
  padding-inline: 24px;
  margin-top: 10px;
}

.connect-panel {
  text-align: center;
  padding-bottom: 48px;
}

.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.social-btn {
  width: 78px;
  height: 78px;
  position: relative;
  overflow: visible;
  display: grid;
  fill: currentColor;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(246, 201, 108, 0.35);
  background:
    radial-gradient(circle at top, rgba(243, 207, 133, 0.12), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(7, 7, 7, 0.98));
  color: var(--gold-2);
  font-size: 1.9rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.social-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%) translateY(6px);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(246, 201, 108, 0.18);
  background: rgba(10, 10, 10, 0.96);
  color: var(--gold-1);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.social-btn:hover::after,
.social-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.social-btn:hover {
  border-color: rgba(246, 201, 108, 0.65);
}
.social-btn svg {
  width: 26px;
  height: 26px;
  color: var(--gold-2);
  transition: all 0.25s ease;
}
.social-btn:hover svg {
  color: #fff0c2;
  transform: scale(1.1);
}
@media (max-width: 1100px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about__visual {
    min-height: 340px;
  }

  .hero-shell {
    min-height: 620px;
  }

  .hero-rings {
    width: 620px;
    height: 620px;
  }

  .hero-rings--left {
    left: -410px;
  }

  .hero-rings--right {
    right: -410px;
  }
}
.support-note {
  max-width: 620px;
  margin: 0 auto 18px;
  color: rgba(245, 242, 234, 0.68);
  line-height: 1.6;
  text-align: center;
}

.support-consent {
  position: relative;
  display: inline-block;
  max-width: 700px;
  margin: 0 auto 32px;
  padding-left: 60px;

  text-align: left;
  vertical-align: top;
  cursor: pointer;
}

.support-consent input {
  position: absolute;
  top: 4px;
  left: 25px;

  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #d8ab57;
  cursor: pointer;
}

.support-consent__text {
  max-width: 620px;
  display: block;
  color: rgba(245, 242, 234, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.support-consent a {
  color: var(--gold-2);
  transition: color 0.25s ease;
}

.support-consent a:hover {
  color: var(--gold-1);
}

.support-pill--disabled {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.15);
  box-shadow: none;
}

.legal-links {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(245, 242, 234, 0.5);
}

.legal-links a {
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--gold-2);
}
.site-footer {
  margin-top: 10px;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(246, 201, 108, 0.08);
  background: transparent;
  position: relative;
  z-index: 4;
}

.footer-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(245, 242, 234, 0.46);
}

.site-footer .legal-links {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: rgba(245, 242, 234, 0.46);
}

.site-footer .legal-links a {
  opacity: 0.82;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.site-footer .legal-links a:hover {
  opacity: 1;
  color: var(--gold-2);
}
.contact-mini {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245, 242, 234, 0.5);
}

.site-footer .contact-mini {
  width: 100%;
  margin-top: 2px;
}

.site-footer a,
.site-footer button {
  pointer-events: auto;
}

.contact-mini a:hover {
  color: var(--gold-2);
}
/*crypto-modal*/
.crypto-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.crypto-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.crypto-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.crypto-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  padding: 34px 28px 28px;
  border-radius: 30px;
  border: 1px solid rgba(246, 201, 108, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(6, 6, 6, 0.96)),
    radial-gradient(circle at top, rgba(243, 207, 133, 0.06), transparent 40%);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(243, 207, 133, 0.08);
  overflow-y: auto;
}

.crypto-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 201, 108, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-2);
  font-size: 1.5rem;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.crypto-modal__close:hover {
  transform: scale(1.04);
  border-color: rgba(246, 201, 108, 0.38);
  background: rgba(243, 207, 133, 0.06);
}

.crypto-modal__header {
  text-align: center;
  margin-bottom: 26px;
}

.crypto-modal__header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.crypto-modal__header p {
  margin: 0;
  color: rgba(245, 242, 234, 0.68);
  line-height: 1.6;
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.crypto-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(246, 201, 108, 0.16);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98)),
    radial-gradient(
      circle at top left,
      rgba(243, 207, 133, 0.06),
      transparent 30%
    );
  box-shadow: inset 0 0 0 1px rgba(246, 201, 108, 0.04);
}

.crypto-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.crypto-card__top h4 {
  margin: 0;
  font-size: 1.15rem;
}

.crypto-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1a1206;
  background: linear-gradient(135deg, #fff0c2 0%, #f3cf85 48%, #d49a40 100%);
}

.crypto-card__hint {
  margin: 10px 0 18px;
  color: rgba(245, 242, 234, 0.62);
  font-size: 0.93rem;
}

.crypto-card__qr {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.crypto-card__qr img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(246, 201, 108, 0.12);
  background: #fff;
  padding: 10px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.crypto-card:hover .crypto-card__qr img {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(246, 201, 108, 0.2);
}
.crypto-card__address {
  margin-bottom: 14px;
  flex-grow: 1;
  display: flex;
}

.crypto-card__label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: rgba(245, 242, 234, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.crypto-card__address code {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(246, 201, 108, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.5;
  word-break: break-all;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.crypto-card__copy {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(246, 201, 108, 0.26);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.96),
    rgba(7, 7, 7, 0.96)
  );
  color: var(--gold-2);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.crypto-card__copy:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 201, 108, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.crypto-modal__note {
  margin: 22px 0 0;
  text-align: center;
  color: rgba(245, 242, 234, 0.56);
  line-height: 1.6;
  font-size: 0.92rem;
  margin-top: 26px;
}

body.modal-open {
  overflow: hidden;
}
/*ЮРИДИЧКА*/
.legal-page {
  padding-top: 26px;
}

.legal-hero,
.legal-content {
  padding: 40px 32px;
}

.legal-hero {
  margin-bottom: 20px;
  text-align: center;
}

.legal-eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.legal-title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 800;
}

.legal-updated {
  margin: 16px 0 0;
  color: rgba(245, 242, 234, 0.52);
  font-size: 0.95rem;
}

.legal-intro {
  width: min(100%, 760px);
  margin: 18px auto 0;
  color: rgba(245, 242, 234, 0.72);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-section {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(246, 201, 108, 0.08);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.legal-section p {
  margin: 0;
  max-width: 920px;
  color: rgba(245, 242, 234, 0.74);
  line-height: 1.75;
  font-size: 0.98rem;
}

.legal-section a {
  color: var(--gold-2);
}

.legal-section a:hover {
  color: var(--gold-1);
}

@media (max-width: 820px) {
  .legal-hero,
  .legal-content {
    padding: 28px 18px;
  }

  .legal-content {
    gap: 22px;
  }

  .legal-section {
    padding-bottom: 18px;
  }
}
/*COOKIE*/
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 22px 22px;
  border-radius: 26px;
  border: 1px solid rgba(246, 201, 108, 0.16);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.96), rgba(7, 7, 7, 0.98)),
    radial-gradient(
      circle at top left,
      rgba(243, 207, 133, 0.06),
      transparent 30%
    );
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(243, 207, 133, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__content {
  max-width: 720px;
}

.cookie-banner__eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.cookie-banner__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.cookie-banner__text {
  margin: 0;
  color: rgba(245, 242, 234, 0.7);
  line-height: 1.65;
  font-size: 0.95rem;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(246, 201, 108, 0.28);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.cookie-btn--solid {
  color: #1a1206;
  background: linear-gradient(135deg, #fff0c2 0%, #f3cf85 48%, #d49a40 100%);
}

.cookie-btn--ghost {
  color: var(--gold-2);
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.96),
    rgba(7, 7, 7, 0.96)
  );
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.cookie-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  padding: 32px 26px 24px;
  border-radius: 30px;
  border: 1px solid rgba(246, 201, 108, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(6, 6, 6, 0.96)),
    radial-gradient(circle at top, rgba(243, 207, 133, 0.06), transparent 40%);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(243, 207, 133, 0.08);
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 201, 108, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-2);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-modal__header {
  text-align: center;
  margin-bottom: 22px;
}

.cookie-modal__header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cookie-modal__header p {
  margin: 0;
  color: rgba(245, 242, 234, 0.68);
  line-height: 1.6;
}

.cookie-groups {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.cookie-group {
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(246, 201, 108, 0.14);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98)),
    radial-gradient(
      circle at top left,
      rgba(243, 207, 133, 0.05),
      transparent 30%
    );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-group__info h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.cookie-group__info p {
  margin: 0;
  color: rgba(245, 242, 234, 0.66);
  line-height: 1.6;
  font-size: 0.93rem;
  max-width: 560px;
}

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 242, 234, 0.78);
  white-space: nowrap;
}

.cookie-toggle input {
  width: 18px;
  height: 18px;
  accent-color: #d8ab57;
}

.cookie-toggle--locked {
  opacity: 0.76;
}

.footer-cookie-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: rgba(245, 242, 234, 0.38);
  cursor: pointer;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.footer-cookie-link:hover {
  color: var(--gold-2);
}
/*404*/
.page-404 {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.error-hero {
  min-height: 72vh;
  padding: 80px 32px;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.error-hero__code {
  margin: 18px 0 0;
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: transparent;
  background: linear-gradient(180deg, #fff8e0 0%, #f6d892 45%, #d59f43 90%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 18px rgba(243, 207, 133, 0.18),
    0 0 58px rgba(243, 207, 133, 0.16);
}

.error-hero__title {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
}

.error-hero__text {
  margin: 14px auto 0;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 242, 234, 0.74);
}

/* ===== DINO SCENE ===== */
.dino-scene {
  position: relative;
  width: min(100%, 420px);
  height: 170px;
  margin: 24px auto 12px;
  overflow: hidden;
}

.dino-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(243, 207, 133, 0.12) 0%,
    rgba(243, 207, 133, 0.9) 20%,
    rgba(243, 207, 133, 0.35) 50%,
    rgba(243, 207, 133, 0.9) 80%,
    rgba(243, 207, 133, 0.12) 100%
  );
  box-shadow:
    0 0 10px rgba(243, 207, 133, 0.2),
    0 0 24px rgba(243, 207, 133, 0.12);
}

.dino-ground::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 18px,
    rgba(243, 207, 133, 0.45) 18px 26px
  );
  animation: ground-move 1.2s linear infinite;
  opacity: 0.8;
}

.dino-flip {
  position: absolute;
  left: -180px;
  bottom: 18px;
  width: 180px;
  height: 180px;
  transform-origin: center;
  animation: dino-walk 8s linear infinite;
}

.dino {
  width: 100%;
  height: 100%;
  display: block;
  color: #f3cf85;
  fill: currentColor;
  filter: drop-shadow(0 0 6px rgba(243, 207, 133, 0.42))
    drop-shadow(0 0 18px rgba(243, 207, 133, 0.22));
  opacity: 0.96;
}

.dino--real path {
  fill: currentColor;
}

@keyframes dino-walk {
  0% {
    left: -180px;
  }
  100% {
    left: 100%;
  }
}

@keyframes ground-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-26px);
  }
}

@media (max-width: 640px) {
  .dino-scene {
    width: min(100%, 320px);
    height: 135px;
  }

  .dino-flip {
    left: -140px;
    width: 140px;
    height: 140px;
    animation: dino-walk-mobile 8s linear infinite;
  }
}

@keyframes dino-walk-mobile {
  0% {
    left: -140px;
  }
  100% {
    left: 100%;
  }
}
/* СКЕЙТ */
.dino-skate {
  position: absolute;
  bottom: 10px;
  left: 50px;
  width: 80px;
  height: 8px;
  background: linear-gradient(90deg, #f3cf85, #c89b3c);
  border-radius: 6px;
  box-shadow:
    0 0 8px rgba(243, 207, 133, 0.3),
    0 0 18px rgba(243, 207, 133, 0.15);
}

/* Колёса */
.wheel {
  position: absolute;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: #f3cf85;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(243, 207, 133, 0.4);
  animation: wheel-spin 0.5s linear infinite;
}

.wheel:first-child {
  left: 8px;
}

.wheel:last-child {
  right: 8px;
}

/* Вращение колес */
@keyframes wheel-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 820px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    justify-content: stretch;
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
  }

  .cookie-modal__dialog {
    padding: 26px 18px 20px;
    border-radius: 24px;
  }

  .cookie-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-toggle {
    white-space: normal;
  }

  .social-btn::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .crypto-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 26px 18px 20px;
    border-radius: 24px;
  }

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

  .crypto-card__qr img {
    width: 170px;
    height: 170px;
  }
}
/*media*/
@media (max-width: 600px) {
  .connect-panel {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .connect-panel .section-title {
    margin-bottom: 16px;
    font-size: 1.85rem;
  }

  .social-row {
    gap: 14px;
  }

  .social-btn {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }

  .social-btn svg {
    width: 22px;
    height: 22px;
  }

  .site-footer {
    margin-top: 8px;
    padding: 8px 0 10px;
  }

  .footer-mini {
    gap: 6px;
  }

  .footer-copy {
    font-size: 0.7rem;
  }

  .site-footer .legal-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    align-items: start;
    font-size: 0.7rem;
    line-height: 1.4;
  }

  .site-footer .legal-links a,
  .site-footer .contact-mini {
    min-width: 0;
    text-align: center;
  }

  .site-footer .contact-mini {
    grid-column: 1 / -1;
    font-size: 0.68rem;
  }
}

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

  .connect-panel {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .connect-panel .section-title {
    margin-bottom: 20px;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .social-row {
    gap: 16px;
  }

  .scroll-indicator {
    display: none !important;
  }

  .hero-shell {
    padding: 70px 18px 54px;
    min-height: 520px;
  }

  .hero-rings {
    width: 440px;
    height: 440px;
  }

  .hero-rings--left {
    left: -310px;
  }

  .hero-rings--right {
    right: -310px;
  }

  .hero-glow--left {
    left: 18px;
  }

  .hero-glow--right {
    right: 18px;
  }

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

  .section {
    padding: 28px 18px 26px;
  }

  .btn,
  .support-pill {
    width: 100%;
    min-width: 0;
  }

  .social-btn {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }
}
@media (max-width: 1100px) {
  .site-header {
    padding-top: 10px;
  }

  .header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 12px 14px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 31;
    margin: 0 auto;
    text-align: center;
    font-size: 1.72rem;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    z-index: 31;
  }

  .header__inner::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    pointer-events: none;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    width: min(calc(100vw - 40px), 800px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    padding: 12px 12px 12px;
    border: 1px solid rgba(246, 201, 108, 0.1);
    border-radius: 18px;
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.98),
      rgba(4, 4, 4, 0.99)
    );
    backdrop-filter: blur(16px);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.52),
      0 0 32px rgba(243, 207, 133, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -8px);
    pointer-events: none;
    transition:
      max-height 0.28s ease,
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.28s ease;
    z-index: 30;
  }

  .header-panel.is-open {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
  }

  .header__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    margin: 0 auto;
    align-self: center;
  }

  .lang-switch__link {
    min-width: 40px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.74rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .header-link,
  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    min-height: 38px;
    min-width: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.86rem;
    line-height: 1;
  }
}
