/* Премиум: глубокий графит + изумрудный акцент */
:root {
  --bg-deep: #0c0f0e;
  --bg-mid: #141a18;
  --bg-card: rgba(22, 30, 27, 0.72);
  --border-glass: rgba(180, 220, 200, 0.12);
  --accent: #2dd4a0;
  --accent-dim: rgba(45, 212, 160, 0.12);
  --accent-soft: #8fd9b8;
  --cyan: #2dd4a0;
  --cyan-dim: rgba(45, 212, 160, 0.12);
  --violet: #9ae6c5;
  --violet-dim: rgba(154, 230, 197, 0.1);
  --text: #f2f7f4;
  --text-muted: #9ab8ae;
  --success: #2dd4a0;
  --danger: #ff6b7a;
  --radius: 18px;
  --nav-h: 80px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font: "Plus Jakarta Sans", sans-serif;
  --display: "Unbounded", sans-serif;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}


/* Базовые стили: фон, контейнер, меню, кнопки */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.6;
  letter-spacing: -0.01em;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 15% -5%, rgba(45, 212, 160, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 5%, rgba(45, 212, 160, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 35% at 50% 100%, rgba(20, 60, 45, 0.35), transparent 55%),
    linear-gradient(165deg, #121816 0%, #0e1210 45%, #0a0d0c 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(45, 212, 160, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 160, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 28%, black, transparent);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(12, 15, 14, 0.82);
  border-bottom: 1px solid rgba(45, 212, 160, 0.1);
  padding-top: env(safe-area-inset-top, 0px);
}

.nav-chips {
  display: none;
}

.nav-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  filter: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo:hover .logo-img {
  transform: translateY(-1px);
  opacity: 0.95;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
  margin-right: 0.55rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(180, 220, 200, 0.12);
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
  color: #e8fff6;
  background: rgba(45, 212, 160, 0.1);
}

.profile-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(20, 28, 25, 0.95);
  border: 1px solid rgba(45, 212, 160, 0.16);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

.profile-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(45, 212, 160, 0.2);
  transform: translateY(-1px);
}

.profile-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

.profile-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  box-shadow: 0 0 0 2px rgba(12, 15, 14, 0.95);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.profile-dot.active {
  background: var(--success);
  box-shadow: 0 0 0 2px rgba(12, 15, 14, 0.95), 0 0 10px rgba(45, 212, 160, 0.45);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: linear-gradient(120deg, #34e0ad 0%, #2dd4a0 45%, #1fb887 100%);
  color: #062018;
  box-shadow: 0 12px 32px rgba(45, 212, 160, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(45, 212, 160, 0.38);
}

.btn-primary.connected {
  background: rgba(45, 212, 160, 0.12);
  color: var(--accent);
  border: 1px solid rgba(45, 212, 160, 0.35);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(180, 220, 200, 0.2);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(45, 212, 160, 0.45);
  background: rgba(45, 212, 160, 0.06);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}



/* Блоки страницы: hero, как работает, преимущества, основатель, тарифы, CTA, футер */
/* HERO */
.hero {
  padding: 2rem 0 2.2rem;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 160, 0.28);
  background: rgba(45, 212, 160, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: none;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.1rem;
  background: linear-gradient(120deg, #ffffff 8%, #d9fff0 48%, #2dd4a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 34rem;
  margin-bottom: 0.85rem;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 34rem;
  margin-bottom: 1.15rem;
  line-height: 1.6;
}

.trial-banner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(45, 212, 160, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(45, 212, 160, 0.2);
  max-width: 34rem;
}

.trial-banner.visible {
  display: flex;
  animation: fadeUp 0.5s ease both;
}

.trial-banner strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 0.92rem;
}

.trial-banner p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.countdown {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

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

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hero-trust li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 160, 0.18);
  background: rgba(45, 212, 160, 0.06);
  color: #c9e8da;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-actions .btn-primary {
  min-width: min(100%, 260px);
  padding-inline: 1.55rem;
}

.hero-actions .btn-ghost {
  min-width: 168px;
  background: rgba(10, 16, 14, 0.55);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(45,212,160,0.5), rgba(255,255,255,0.1) 42%, rgba(45,212,160,0.18));
  box-shadow: 0 28px 70px rgba(0,0,0,0.48), 0 0 48px rgba(45,212,160,0.08);
}

.hv-frame {
  position: relative;
  min-height: 498px;
  height: 100%;
  border-radius: 27px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 55% 40%, rgba(45,212,160,0.16), transparent 60%),
    linear-gradient(165deg, #151d1a 0%, #0e1412 50%, #0a100e 100%);
}

.hv-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hv-aura.a1 {
  width: 220px; height: 220px;
  top: -50px; right: -40px;
  background: rgba(45,212,160,0.28);
  animation: orbDrift 9s ease-in-out infinite;
}

.hv-aura.a2 {
  width: 180px; height: 180px;
  bottom: 8%; left: -50px;
  background: rgba(90,200,160,0.18);
  animation: orbDrift 11s ease-in-out infinite reverse;
}

.hv-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(45,212,160,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,160,0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 48%, #000 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 48%, #000 15%, transparent 75%);
  pointer-events: none;
}

.hv-orbit {
  position: absolute;
  top: 46%; left: 50%;
  width: min(300px, 68%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.hv-orbit .o {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(45,212,160,0.18);
}

.hv-orbit .o1 {
  border-color: transparent;
  border-top-color: rgba(45,212,160,0.55);
  border-right-color: rgba(45,212,160,0.12);
  animation: spin 20s linear infinite;
}

.hv-orbit .o2 {
  inset: 14%;
  border-color: transparent;
  border-bottom-color: rgba(45,212,160,0.35);
  border-left-color: rgba(255,255,255,0.1);
  animation: spin 14s linear infinite reverse;
}

.hv-orbit .o3 {
  inset: 28%;
  border-style: dashed;
  border-color: rgba(45,212,160,0.16);
  animation: spin 26s linear infinite;
}

.hv-wave {
  position: absolute;
  left: 4%; right: 4%; bottom: 12%;
  height: 38%;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}

.hv-wave .fill { fill: url(#waveFill); }
.hv-wave .stroke {
  fill: none;
  stroke: url(#waveStroke);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(45,212,160,0.55));
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 2.5s ease forwards 0.2s;
}

.hv-core {
  position: absolute;
  top: 46%; left: 50%;
  width: min(280px, 64%);
  transform: translate(-50%, -50%);
  z-index: 5;
  display: grid;
  place-items: center;
  animation: coreFloat 5.5s ease-in-out infinite;
}

.hv-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.45));
}

.hv-card {
  position: absolute;
  z-index: 6;
  min-width: 142px;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(16,24,21,0.9), rgba(8,12,11,0.78));
  border: 1px solid rgba(45,212,160,0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: float 6s ease-in-out infinite;
}

.hv-card .label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hv-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 700;
  color: #e8fff6;
  line-height: 1;
}

.hv-card strong.up { color: var(--accent); }

.hv-card em {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hv-card .spark {
  display: block;
  width: 100%;
  height: 20px;
  margin-top: 0.5rem;
}

.hv-card .bar {
  margin-top: 0.55rem;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.hv-card .bar i {
  display: block;
  height: 100%;
  width: var(--p, 70%);
  border-radius: inherit;
  background: linear-gradient(90deg, #1fb887, #2dd4a0, #d9fff0);
  box-shadow: 0 0 10px rgba(45,212,160,0.45);
}

.hv-card.top { top: 1.35rem; left: 1.1rem; animation-delay: 0.1s; }
.hv-card.mid { top: 38%; right: 1.1rem; animation-delay: 0.55s; }
.hv-card.bot { bottom: 3.6rem; left: 1.1rem; min-width: 118px; animation-delay: 1s; }

.hv-caption {
  position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: 0.95rem;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(154,184,174,0.8);
}

.hv-caption .live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
}

.hv-caption .live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(45,212,160,0.8);
  animation: pulse 1.6s ease-in-out infinite;
}

.hv-caption #hvLatency,
.hv-caption span:last-child {
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(45,212,160,0.22);
  background: rgba(45,212,160,0.08);
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(138, 155, 181, 0.75);
  max-width: 34rem;
}

/* SECTIONS */
section {
  padding: 2.2rem 0;
}

.section-head {
  margin-bottom: 1.35rem;
  max-width: 36rem;
}

.section-kicker {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

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

.glass {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

/* HOW */
.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  padding: 1.4rem 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 160, 0.28);
}

.step-num {
  font-family: var(--display);
  font-size: 2rem;
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FEATURES */
.features {
  display: grid;
  gap: 0.85rem;
}

.feature {
  padding: 1.5rem 1.35rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(140, 140, 150, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--cyan-dim), var(--violet-dim));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.feature-wide {
  grid-column: 1 / -1;
}

/* ABOUT / HISTORY */
.about-card,
.history-card {
  padding: 1.4rem 1.45rem;
}

.about-card p,
.history-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 0.9rem;
}

.about-card p:last-child,
.history-card p:last-child {
  margin-bottom: 0;
}

/* TECH */
.tech-levels {
  display: grid;
  gap: 0.85rem;
}

.tech-card {
  padding: 1.35rem 1.4rem;
}

.tech-level {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.tech-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* QUOTES */
.quotes {
  display: grid;
  gap: 0.85rem;
}

.quote-card {
  margin: 0;
  padding: 1.35rem 1.4rem;
  color: #e8fff6;
  font-size: 1.02rem;
  line-height: 1.55;
  border-left: 3px solid var(--accent);
}

/* FOUNDER */
.founder {
  display: grid;
  gap: 1.1rem;
  padding: 1.25rem;
  align-items: center;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 300px;
  margin-inline: auto;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(45, 212, 160, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(45, 212, 160, 0.2);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(45, 212, 160, 0.08) inset;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.founder-meta h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.founder-role {
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.founder-meta p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.founder-quote {
  margin: 1rem 0 1.1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: rgba(45, 212, 160, 0.06);
  color: #e8fff6;
  font-size: 0.95rem;
  line-height: 1.55;
}

.founder-quote cite {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 140, 150, 0.25);
  background: rgba(140, 140, 150, 0.08);
  color: #d4d4d8;
  font-size: 0.8rem;
}

/* PRICING */
.pricing {
  display: grid;
  gap: 0.85rem;
}

.price-card {
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 212, 160, 0.32);
}

.price-card.featured {
  border-color: rgba(45, 212, 160, 0.4);
  background:
    linear-gradient(160deg, rgba(45, 212, 160, 0.12), rgba(45, 212, 160, 0.03)),
    var(--bg-card);
}

.price-card.featured::before {
  content: "Популярный";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #062018;
  background: var(--accent);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
}

.price-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.price {
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price small {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(45, 212, 160, 0.45);
  flex-shrink: 0;
}

/* CTA */
.cta {
  padding: 1.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.14), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(140, 140, 150, 0.16), transparent 40%),
    var(--bg-card);
}

.cta h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.cta p {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 auto 1.4rem;
}

/* FOOTER */
footer {
  position: relative;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(45, 212, 160, 0.12);
  color: var(--text-muted);
  font-size: 0.88rem;
  background: linear-gradient(180deg, rgba(10, 14, 12, 0.15) 0%, rgba(7, 11, 9, 0.55) 100%);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 160, 0.4), transparent);
}

.footer-top {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(45, 212, 160, 0.1);
}

.footer-brand-block {
  max-width: 26rem;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 0.7rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  color: #d7ebe2;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8fff6;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  color: #d7ebe2;
}

.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(45, 212, 160, 0.6);
}

.footer-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1.1rem;
  font-size: 0.78rem;
  color: rgba(154, 184, 174, 0.75);
}

.footer-bottom p {
  margin: 0;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes coreFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes scanY {
  0%, 100% { top: 18%; opacity: 0.2; }
  50% { top: 72%; opacity: 0.7; }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.35); opacity: 1; }
}

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

@keyframes candleLive {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.08); }
}

@keyframes feedIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hvShine {
  0%, 100% { transform: translateX(-18%) rotate(8deg); opacity: 0.25; }
  50% { transform: translateX(18%) rotate(8deg); opacity: 0.7; }
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.08); }
}

@keyframes volPulse {
  0%, 100% { transform: scaleY(0.85); opacity: 0.55; }
  50% { transform: scaleY(1.12); opacity: 0.95; }
}

@keyframes hvPulseRing {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-12px) scale(1.35); opacity: 1; }
}



/* Панель профиля / модалка */
/* MODAL / PROFILE PANEL */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 26, 23, 0.98), rgba(12, 15, 14, 0.99));
  border-left: 1px solid rgba(45, 212, 160, 0.14);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
}

.panel.open {
  transform: translateX(0);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-head h3 {
  font-family: var(--display);
  font-size: 1.15rem;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.close-btn:hover {
  border-color: var(--cyan);
  background: rgba(45, 212, 160, 0.06);
}

.panel-body {
  padding: 1.25rem;
  overflow-y: auto;
  display: grid;
  gap: 1rem;
}

.panel-card {
  padding: 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(45, 212, 160, 0.16);
}

.panel-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.wallet-address {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  word-break: break-all;
  color: var(--text);
  line-height: 1.4;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.status-pill.on {
  color: var(--success);
  background: rgba(45, 212, 160, 0.12);
  border-color: rgba(45, 212, 160, 0.28);
}

.status-pill.off {
  color: var(--danger);
  background: rgba(255, 77, 109, 0.1);
  border-color: rgba(255, 77, 109, 0.25);
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: block;
}

.trial-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.trial-note #trialTimer {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.trial-note.expired {
  color: #ff9aa5;
}

.toggle {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(45, 212, 160, 0.16);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d8e2f0;
  transition: transform 0.25s ease, background 0.25s ease;
}

.toggle.on {
  background: rgba(45, 212, 160, 0.2);
  border-color: rgba(45, 212, 160, 0.45);
}

.toggle.on::after {
  transform: translateX(22px);
  background: var(--accent);
  box-shadow: 0 0 12px rgba(45, 212, 160, 0.45);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.metric {
  padding: 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.metric .up {
  color: var(--success);
}

.empty-state {
  text-align: center;
  padding: 2.2rem 1rem;
  color: var(--text-muted);
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.empty-state .empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(140, 140, 150, 0.12));
  border: 1px solid rgba(45, 212, 160, 0.16);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.empty-state h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
}

.empty-state p {
  font-size: 0.92rem;
  max-width: 16rem;
  line-height: 1.5;
}

.wallet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.wallet-masked {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wallet-masked .lock {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.icon-btn:hover {
  border-color: var(--cyan);
  background: rgba(45, 212, 160, 0.06);
}

.ref-box {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(45, 212, 160, 0.06);
  border: 1px solid rgba(45, 212, 160, 0.16);
}

.ref-box code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: var(--cyan);
  word-break: break-all;
  line-height: 1.35;
}

.ref-hint {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ref-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.ref-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.ref-progress i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fb887, var(--accent));
  transition: width 0.35s ease;
}

.ref-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.ref-card {
  padding: 1.15rem 1.2rem;
}

.ref-step {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.ref-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.ref-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.ref-bonus {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  align-items: center;
}

.ref-bonus h3 {
  margin-bottom: 0.7rem;
}

.ref-bonus ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.ref-bonus li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}

@media (min-width: 800px) {
  .ref-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ref-bonus {
    grid-template-columns: 1fr auto;
  }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 300;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: rgba(16, 24, 21, 0.96);
  border: 1px solid rgba(45, 212, 160, 0.25);
  color: var(--text);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
  max-width: calc(100% - 2rem);
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Payment modal */
.pay-overlay {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 8, 6, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.pay-overlay.open {
  opacity: 1;
  visibility: visible;
}

.pay-modal {
  width: min(460px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(45, 212, 160, 0.18);
  background: linear-gradient(180deg, rgba(18, 26, 23, 0.98), rgba(12, 15, 14, 0.99));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}

.pay-overlay.open .pay-modal {
  transform: translateY(0) scale(1);
}

.pay-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pay-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.pay-head h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.3;
}

.pay-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: grid;
  gap: 1.1rem;
}

.pay-plan {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(45, 212, 160, 0.06);
  border: 1px solid rgba(45, 212, 160, 0.14);
}

.pay-price {
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pay-price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font);
}

.pay-desc {
  margin-top: 0.55rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pay-features {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.pay-features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pay-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pay-section {
  display: grid;
  gap: 0.55rem;
}

.pay-network-wrap {
  position: relative;
}

.pay-network-btn,
.pay-network-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 160, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pay-network-btn:hover,
.pay-network-option:hover {
  border-color: rgba(45, 212, 160, 0.4);
  background: rgba(45, 212, 160, 0.08);
}

.pay-net-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.pay-net-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.pay-net-meta {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.pay-net-meta strong {
  font-size: 0.95rem;
}

.pay-net-meta small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.pay-net-chevron {
  color: var(--text-muted);
  display: grid;
  place-items: center;
}

.pay-network-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.4rem);
  z-index: 5;
  display: grid;
  gap: 0.35rem;
  padding: 0.4rem;
  border-radius: 14px;
  border: 1px solid rgba(45, 212, 160, 0.18);
  background: rgba(12, 16, 14, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.pay-network-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pay-network-option.active {
  border-color: rgba(45, 212, 160, 0.45);
  background: rgba(45, 212, 160, 0.1);
}

.pay-check {
  color: var(--accent);
  font-weight: 700;
}

.pay-network-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.65rem 0.4rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pay-chip .pay-net-icon,
.pay-chip .pay-net-icon svg {
  width: 22px;
  height: 22px;
}

.pay-chip:hover {
  color: var(--text);
  border-color: rgba(45, 212, 160, 0.35);
}

.pay-chip.active {
  color: var(--text);
  border-color: rgba(45, 212, 160, 0.5);
  background: rgba(45, 212, 160, 0.12);
}

.pay-token-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pay-address-box {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 160, 0.18);
  background: rgba(0, 0, 0, 0.25);
}

.pay-address-box code {
  flex: 1;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  word-break: break-all;
  color: var(--accent-soft);
}

.pay-warning {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 170, 120, 0.9);
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 140, 60, 0.08);
  border: 1px solid rgba(255, 140, 60, 0.2);
}

.pay-warning strong {
  color: #ffc08a;
}

/* Wallet connect modal */
.wallet-modal {
  width: min(440px, 100%);
}

.wallet-body {
  padding: 0.35rem 1.25rem 1.35rem;
  display: grid;
  gap: 0.75rem;
}

.wallet-intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.wallet-group-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.25rem;
}

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.wallet-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 12, 10, 0.55);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  min-height: 64px;
}

.wallet-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 160, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  background:
    linear-gradient(145deg, rgba(45, 212, 160, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 10, 0.7);
}

.wallet-card.selected {
  border-color: rgba(45, 212, 160, 0.85);
  background:
    linear-gradient(145deg, rgba(45, 212, 160, 0.22), rgba(45, 212, 160, 0.06)),
    rgba(8, 12, 10, 0.85);
  box-shadow:
    0 0 0 1px rgba(45, 212, 160, 0.35),
    0 0 28px rgba(45, 212, 160, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

.wallet-card.loading {
  opacity: 0.72;
  pointer-events: none;
}

.wallet-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border: none;
}

.wallet-card-icon img,
.wallet-card-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.wallet-connect-bar {
  position: sticky;
  bottom: 0;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  background: linear-gradient(180deg, rgba(12, 15, 14, 0), rgba(12, 15, 14, 0.96) 28%, rgba(12, 15, 14, 1));
}

.wallet-connect-bar .btn {
  min-height: 50px;
  box-shadow: 0 10px 28px rgba(45, 212, 160, 0.35);
}

.wallet-card-meta {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.wallet-card-meta strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

.wallet-card-meta small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.wallet-card-badge {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #062018;
  background: var(--accent);
  padding: 0.12rem 0.35rem;
  border-radius: 999px;
}

.wallet-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.15rem;
}

.pay-confirm {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.pay-confirm-hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pay-pending {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 160, 0.28);
  background: rgba(45, 212, 160, 0.1);
  color: var(--accent);
  font-size: 0.88rem;
  line-height: 1.4;
}

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

/* Адаптив для телефонов и планшетов */
/* RESPONSIVE */
@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .tech-levels {
    grid-template-columns: repeat(3, 1fr);
  }

  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .founder {
    grid-template-columns: 240px 1fr;
    padding: 2rem;
  }

  .founder-photo {
    margin-inline: 0;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 2rem;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .hero {
    padding: 2.8rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

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

  .pricing {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.2fr 1.3fr;
    align-items: start;
    gap: 1.8rem;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 639px) {
  :root {
    --nav-h: 64px;
  }

  body.panel-open {
    overflow: hidden;
  }

  .nav {
    min-height: 0;
    padding-bottom: 0.55rem;
  }

  .nav-inner {
    min-height: var(--nav-h);
  }

  .logo-img {
    height: 48px;
  }

  .nav-chips {
    display: flex;
    gap: 0.45rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.1rem;
  }

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

  .nav-chips a {
    flex: 0 0 auto;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(180, 220, 200, 0.12);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }

  .nav-chips a:active {
    transform: scale(0.97);
    color: #e8fff6;
    border-color: rgba(45, 212, 160, 0.35);
    background: rgba(45, 212, 160, 0.1);
  }

  .profile-btn {
    width: 40px;
    height: 40px;
  }

  section {
    padding: 1.7rem 0;
  }

  .section-head {
    margin-bottom: 1.1rem;
  }

  .hero {
    padding: 1.15rem 0 1.4rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .btn {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hv-card.bot { display: none; }
  .hv-card { min-width: 122px; padding: 0.7rem 0.8rem; }
  .hv-card strong { font-size: 1.1rem; }
  .hv-core { width: min(230px, 58%); }
  .hv-logo { max-width: 210px; }
  .hv-orbit { width: min(240px, 62%); }
  .hv-frame { min-height: 400px; }
  .hero-visual { min-height: 400px; }
  .hero-trust { gap: 0.4rem; }
  .hero-trust li { font-size: 0.72rem; padding: 0.38rem 0.65rem; }

  .feature-wide {
    grid-column: auto;
  }

  .tech-levels,
  .quotes {
    grid-template-columns: 1fr;
  }

  .panel {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: min(88vh, 720px);
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - 0.5rem);
    border-left: none;
    border-top: 1px solid rgba(45, 212, 160, 0.18);
    border-radius: 22px 22px 0 0;
    transform: translateY(110%);
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.5);
    padding-bottom: var(--safe-bottom);
  }

  .panel.open {
    transform: translateY(0);
  }

  .panel-head {
    position: relative;
    padding-top: 1.35rem;
  }

  .panel-head::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 50%;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(180, 220, 200, 0.28);
    transform: translateX(-50%);
  }

  .panel-body {
    padding-bottom: calc(1rem + var(--safe-bottom));
  }

  .pay-modal,
  .wallet-modal {
    width: min(100%, 100%);
    max-height: min(92vh, 760px);
    margin: auto 0 0;
    border-radius: 22px 22px 0 0;
    padding-bottom: var(--safe-bottom);
  }

  .pay-overlay {
    align-items: flex-end;
  }

  .toast {
    bottom: calc(1.25rem + var(--safe-bottom));
  }

  footer {
    padding: 1.6rem 0 calc(1.2rem + 0.25rem);
  }

  .footer-top {
    gap: 1.2rem;
    padding-bottom: 1rem;
  }

  .footer-logo {
    height: 44px;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.4rem;
  }

  .footer-bottom {
    gap: 0.45rem;
    padding-top: 1rem;
  }

  .footer-bottom p:last-child {
    line-height: 1.4;
  }
}
