:root {
  --bg: #0a0a0f;
  --bg-alt: #0f0f1a;
  --bg-card: rgba(15, 15, 26, 0.8);
  --surface: rgba(13, 209, 138, 0.12);
  --surface-strong: rgba(17, 255, 143, 0.25);
  --surface-glass: rgba(255, 255, 255, 0.05);
  --border: rgba(21, 255, 153, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-secondary: #e1e5e9;
  --muted: #a8b5c8;
  --primary: #00d4aa;
  --primary-dark: #00b394;
  --secondary: #6366f1;
  --secondary-dark: #5855eb;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --gradient: linear-gradient(135deg, #00d4aa 0%, #6366f1 50%, #8b5cf6 100%);
  --gradient-primary: linear-gradient(135deg, #00d4aa 0%, #6366f1 50%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.3);
  --shadow-glow-secondary: 0 0 40px rgba(99, 102, 241, 0.3);
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 24px;
}

/* Modern Animation Keyframes */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 170, 0.6); }
}

@keyframes card-hover-morph {
  0% { border-radius: 1.25rem; transform: translateY(0) scale(1); }
  100% { border-radius: 2rem; transform: translateY(-8px) scale(1.02); }
}

@keyframes text-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes backdrop-shift {
  0% { backdrop-filter: blur(8px) hue-rotate(0deg); }
  50% { backdrop-filter: blur(12px) hue-rotate(180deg); }
  100% { backdrop-filter: blur(8px) hue-rotate(360deg); }
}

@keyframes nav-aurora {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes nav-shimmer {
  0% { transform: translateX(-80%); opacity: 0; }
  45% { opacity: 0.35; }
  60% { opacity: 0.45; }
  100% { transform: translateX(80%); opacity: 0; }
}

@keyframes nav-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 18px 45px rgba(25, 242, 140, 0.25); }
}

@keyframes scout-blink {
  0%, 4%, 50%, 54%, 100% { transform: scaleY(1); }
  2%, 52% { transform: scaleY(0.2); }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'cv02', 'cv03', 'cv04';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body::-webkit-scrollbar,
body::-webkit-scrollbar-track,
body::-webkit-scrollbar-thumb {
  display: none;
}

body::-webkit-scrollbar-corner {
  background: transparent;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
}

.scroll-indicator {
  position: fixed;
  right: clamp(12px, 3vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: clamp(140px, 42vh, 320px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 45;
}

.scroll-indicator.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-indicator__track {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 14, 20, 0.65);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  backdrop-filter: blur(8px);
  touch-action: none;
}

.scroll-indicator__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(25, 242, 140, 0.95), rgba(127, 91, 255, 0.95));
  box-shadow: 0 8px 20px rgba(25, 242, 140, 0.35);
  transform: translateY(0);
  cursor: grab;
}

.scroll-indicator__track,
.scroll-indicator__thumb {
  pointer-events: auto;
}

.scroll-indicator__thumb.is-dragging {
  cursor: grabbing;
}

.sneaky-scout {
  position: fixed;
  left: 0;
  bottom: clamp(56px, 18vh, 260px);
  width: 110px;
  height: 164px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translateX(-55%);
  transition: transform 0.4s ease, opacity 0.35s ease;
  z-index: 60;
  pointer-events: auto;
}

.sneaky-scout:hover {
  transform: translateX(-35%);
}

.sneaky-scout:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.sneaky-scout.is-hidden {
  opacity: 0;
  transform: translateX(-140%);
  pointer-events: none;
}

.sneaky-scout__cloak {
  flex: 0 0 38px;
  height: 100%;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(180deg, rgba(15, 19, 32, 0.8), rgba(8, 12, 24, 0.6));
  box-shadow: 12px 0 24px rgba(0, 0, 0, 0.45);
}

.sneaky-scout__body {
  position: relative;
  flex: 0 0 74px;
  height: 128px;
  border-radius: 22px 22px 8px 8px;
  background: linear-gradient(160deg, rgba(25, 242, 140, 0.18), rgba(127, 91, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
  overflow: visible;
}

.sneaky-scout__head {
  position: absolute;
  top: -36px;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid rgba(5, 7, 15, 0.9);
  box-shadow: 0 12px 28px rgba(127, 91, 255, 0.4);
  background-image: url('https://cdn.jsdelivr.net/gh/spothq/cryptocurrency-icons@master/svg/color/btc.svg');
  background-size: 58%;
  background-repeat: no-repeat;
  background-position: center;
}

.sneaky-scout__eye {
  position: absolute;
  top: 36px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(6, 10, 15, 0.9);
  animation: scout-blink 5s infinite;
  transform-origin: center;
}

.sneaky-scout__eye::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(32, 45, 62, 0.65);
  transform-origin: center;
  transform: scaleY(1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sneaky-scout:hover .sneaky-scout__eye::after {
  opacity: 1;
}

.sneaky-scout__eye--left {
  left: 22px;
}

.sneaky-scout__eye--right {
  right: 22px;
}

.sneaky-scout__arm {
  position: absolute;
  bottom: 8px;
  right: -14px;
  width: 26px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(25, 242, 140, 0.3), rgba(99, 102, 241, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
  transform: rotate(-12deg);
}

.sneaky-scout__tooltip {
  position: absolute;
  left: calc(100% - 18px);
  bottom: 110px;
  padding: 0.35rem 0.65rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sneaky-scout:hover .sneaky-scout__tooltip,
.sneaky-scout:focus-visible .sneaky-scout__tooltip {
  transform: translateY(-6px);
}

.page-shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
}

/* Section Spacing */
section {
  margin: 6rem 0;
}

section:first-child {
  margin-top: 3rem;
}

section:last-child {
  margin-bottom: 3rem;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}


.btn {
  border: none;
  border-radius: 12px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  backdrop-filter: blur(var(--blur-sm));
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glass);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--surface-glass);
  color: var(--text);
  backdrop-filter: blur(var(--blur-md));
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 212, 170, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  border: 1px dashed var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  backdrop-filter: blur(var(--blur-sm));
}

.btn-ghost:hover {
  border-style: solid;
  border-color: var(--border);
  background: var(--surface-glass);
  transform: translateY(-2px);
  color: var(--text);
}

.navigation {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0.5rem 0;
  background: rgba(8, 10, 18, 0.82);
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  z-index: 1100;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.35s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: nav-pulse 10s ease-in-out infinite;
}

.navigation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 242, 140, 0.08), rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.08));
  background-size: 200% 200%;
  opacity: 0.45;
  z-index: 0;
  animation: nav-aurora 18s ease-in-out infinite;
}

.navigation::after {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 120px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  filter: blur(0.5px);
  opacity: 0;
  z-index: 0;
  animation: nav-shimmer 8s ease-in-out infinite;
  animation-delay: 1.2s;
  mix-blend-mode: screen;
}

.navigation__inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.navigation__brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.navigation__logo {
  width: 100px;
  height: auto;
  display: block;
}

.navigation__brand small {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(25, 242, 140, 0.9), rgba(99, 102, 241, 0.85));
  background-size: 180% 180%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nav-aurora 14s ease-in-out infinite;
}

.navigation__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.navigation__links a.active {
  position: relative;
}
.navigation__links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

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

.navigation__actions .btn {
  padding: 0.55rem 1.4rem;
  min-height: auto;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: none;
}

.navigation__actions .btn-ghost {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(14, 24, 21, 0.55);
  color: var(--text-secondary);
}

.navigation__actions .btn-ghost:hover {
  color: var(--text);
  border-color: rgba(25, 242, 140, 0.4);
  background: rgba(25, 242, 140, 0.12);
  box-shadow: var(--shadow-sm);
}

.navigation__actions .btn-primary {
  padding-inline: 1.6rem;
  background: linear-gradient(130deg, rgba(25, 242, 140, 0.85), rgba(127, 91, 255, 0.85));
  box-shadow: 0 12px 24px rgba(25, 242, 140, 0.25);
}

.navigation__actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(25, 242, 140, 0.35);
}

#lang-select {
  background: rgba(14, 24, 21, 0.55);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#lang-select:hover,
#lang-select:focus {
  border-color: rgba(25, 242, 140, 0.4);
  color: var(--text);
  outline: none;
}

.navigation__lang-mobile {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.lang-picker__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(14, 24, 21, 0.55);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.lang-picker__toggle:hover,
.lang-picker__toggle:focus-visible {
  border-color: rgba(25, 242, 140, 0.4);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(25, 242, 140, 0.15);
  outline: none;
}

.lang-picker__current {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
}

.lang-picker__flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-picker__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-picker__toggle[aria-expanded="true"] .lang-picker__chevron {
  transform: rotate(180deg);
}

.lang-picker__menu {
  position: absolute;
  top: auto;
  bottom: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 15, 0.98);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  z-index: 120;
  max-height: min(240px, calc(100vh - 160px));
  overflow-y: auto;
}

.lang-picker__menu[hidden] {
  display: none;
}

.lang-picker__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-picker__option:hover,
.lang-picker__option.is-active {
  background: rgba(25, 242, 140, 0.18);
  color: var(--text);
}

.navigation__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  padding: 0.35rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.navigation__menu span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.navigation__menu:hover {
  background: rgba(255, 255, 255, 0.08);
}

.navigation__menu:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.navigation__menu.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.navigation__menu.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1600;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-nav.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 85vw);
  background: rgba(6, 10, 20, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.32s cubic-bezier(0.4, 0.2, 0.1, 1), opacity 0.32s ease;
  opacity: 0;
  overflow-y: auto;
  z-index: 1;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.mobile-nav__panel:focus {
  outline: none;
}

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

.mobile-nav__brand img {
  width: clamp(92px, 22vw, 110px);
  height: auto;
  display: block;
}

.mobile-nav__close {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav__close span:first-child {
  transform: rotate(45deg);
}

.mobile-nav__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav__close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav__links a {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav__links a:last-child {
  border-bottom: none;
}

.mobile-nav__links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.mobile-nav__links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav__actions .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav__locale {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .navigation__lang-mobile {
  display: block;
}

.mobile-nav__panel::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav__panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

@media (min-width: 981px) {
  .mobile-nav {
    display: none;
  }
}

.hero {
  margin-top: 3rem;
  margin-bottom: 8rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 159, 63, 0.2);
  color: var(--accent);
  font-size: 0.85rem;
}

.hero__content h1 {
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  margin: 1rem 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent), var(--primary), var(--secondary));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-gradient 4s ease-in-out infinite;
  word-wrap: break-word;
  hyphens: auto;
}

.hero__lead {
  font-size: 1rem;
  line-height: 1.6;
  word-wrap: break-word;
  margin-bottom: 1.35rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(127, 91, 255, 0.32);
  background: rgba(8, 20, 32, 0.55);
  box-shadow: 0 12px 24px rgba(8, 12, 24, 0.32);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.hero__actions {
  margin: 1.75rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-preview {
  margin-top: 1rem;
  width: clamp(400px, 45vw, 600px);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.hero__stats strong {
  font-size: 2rem;
  display: block;
}

.hero__stats div {
  min-width: 150px;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--surface-glass);
  backdrop-filter: blur(var(--blur-md));
  box-shadow: var(--shadow-lg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.hero__stats div::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glass);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__stats div:hover::before {
  opacity: 1;
}

.hero__stats div:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 212, 170, 0.4);
  border-color: var(--primary);
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.crypto-tickers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.crypto-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid var(--border-subtle);
  background: var(--surface-glass);
  backdrop-filter: blur(var(--blur-sm));
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.3s ease;
  font-weight: 500;
}

.crypto-chip:hover {
  transform: translateY(-2px);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.crypto-chip small {
  color: var(--accent);
}

.crypto-chip__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
}

.crypto-chip--avax small {
  color: #ff8b94;
}

.hero__disclaimer {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 1.75rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(127, 91, 255, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(25, 242, 140, 0.2), transparent 60%), var(--surface);
}

.app-showcase__content ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.app-showcase__content ul li::before {
  content: '•';
  margin-right: 0.4rem;
  color: var(--secondary);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-button {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 0.875rem 1.5rem;
  border: none;
  min-width: 160px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.store-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.store-button__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-button__icon svg {
  width: 24px;
  height: 24px;
}

.store-button__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-button__text small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 1px;
}

.store-button__text strong {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Apple App Store Style */
.store-button--apple {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-button--apple:hover {
  background: #1a1a1a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.store-button--apple .store-button__icon svg {
  fill: #ffffff;
}

/* Google Play Store Style */
.store-button--play {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 25%, #fbbc05 50%, #ea4335 75%);
  color: #ffffff;
  border: none;
}

.store-button--play:hover {
  background: linear-gradient(135deg, #3367d6 0%, #2d8f47 25%, #f9ab00 50%, #d93025 75%);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.store-button--play .store-button__icon svg {
  fill: #ffffff;
}


.app-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.screenshot-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.35rem;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.screenshot-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.visual-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--surface-glass);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(var(--blur-lg));
  box-shadow: var(--shadow-xl);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glass);
  opacity: 0.3;
  z-index: -1;
}

.visual-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-radius: 2rem;
  box-shadow: var(--shadow-xl), var(--shadow-glow), 0 0 50px rgba(0, 212, 170, 0.3);
  border-color: var(--primary);
}

.visual-card--primary {
  background: radial-gradient(circle at top left, rgba(0, 212, 170, 0.2), transparent 70%), var(--bg-card);
  border-color: rgba(0, 212, 170, 0.3);
}

.visual-card--primary:hover {
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.visual-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.status {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.status.success {
  background: rgba(15, 184, 116, 0.2);
  color: var(--secondary);
}

.scenario {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

.scenario:last-child {
  border-bottom: none;
}

.visual-card footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.visual-card--secondary header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.telemetry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.telemetry strong {
  font-size: 1.4rem;
}

.visual-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.signal-bar {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.signal-bar__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--muted);
}

.crypto-assets {
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  background: radial-gradient(circle at 20% 20%, rgba(25, 242, 140, 0.18), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(127, 91, 255, 0.2), transparent 60%), var(--surface);
}

.crypto-assets__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.crypto-assets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.crypto-assets__grid article {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
}

.asset-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.asset-icon__img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.asset-icon--btc {
  background: #f7931a;
  color: #221103;
}

.asset-icon--eth {
  background: #627eea;
  color: #fff;
}

.asset-icon--sol {
  background: #14f195;
  color: #0a0d0b;
}

.asset-icon--matic {
  background: #8247e5;
  color: #fff;
}

.component-lab {
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 3rem;
  background: radial-gradient(circle at top right, rgba(25, 242, 140, 0.2), transparent),
    radial-gradient(circle at bottom left, rgba(127, 91, 255, 0.18), transparent 40%), var(--surface);
}

.component-lab__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.component-lab__preview {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.component-lab__preview img {
  width: clamp(380px, 40vw, 550px);
  height: auto;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

.component-lab__preview p {
  color: var(--text-secondary);
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
}

.lab-grid {
  display: grid;
  gap: 1rem;
}

.lab-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: inherit;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lab-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-radius: 1.75rem;
  box-shadow: 0 8px 32px rgba(127, 91, 255, 0.3);
  border-color: rgba(127, 91, 255, 0.5);
}

.lab-card.is-active {
  border-color: rgba(127, 91, 255, 0.65);
  background: linear-gradient(120deg, rgba(127, 91, 255, 0.2), rgba(25, 242, 140, 0.12));
}

.lab-card h3 {
  margin: 0.35rem 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  background: rgba(127, 91, 255, 0.15);
  color: #dfdbff;
}

.chip--outline {
  border: 1px solid rgba(127, 91, 255, 0.5);
  color: #d0c6ff;
  background: transparent;
}

.lab-preview {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 5, 15, 0.7);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.lab-screen {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
}

.lab-screen.is-active {
  display: flex;
}

.lab-screen__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.lab-screen pre {
  margin: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  padding: 1.25rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e4e8ff;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-x: auto;
  max-width: 100%;
}

.lab-screen__matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.lab-screen__matrix div {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.lab-screen__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lab-screen__list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-screen__list li:last-child {
  border-bottom: none;
}

.pill {
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

.zigzag {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.zigzag__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.zigzag__row:nth-child(even) .zigzag__text {
  order: 2;
}

.zigzag__row:nth-child(even) .zigzag__visual {
  order: 1;
}

.zigzag__text h2 {
  margin: 0.4rem 0 0.8rem;
}

.zigzag__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
}

.zigzag__list li::before {
  content: '↘';
  margin-right: 0.35rem;
  color: var(--secondary);
}

.zigzag__visual {
  display: flex;
  justify-content: center;
}

.visual-window {
  width: min(420px, 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(25, 242, 140, 0.25), rgba(127, 91, 255, 0.25));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.visual-window__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--muted);
}

.visual-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.visual-window__body {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.visual-window__body--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
}

.visual-window__body--grid div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 0.75rem;
  text-align: center;
}

.progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--gradient);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(127, 91, 255, 0.8);
}

.capabilities__grid,
.architecture__grid,
.security__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.architecture-card,
.security__grid article,
.pricing__grid article,
.insights__panel,
.insight-card,
.cta,
.modules__rail article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.capabilities__grid ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
}

.capabilities__grid li::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--secondary);
}

.architecture__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.architecture-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

.modules {
  position: relative;
  border-radius: 1.5rem;
  padding: 3rem;
  background: radial-gradient(circle at bottom right, rgba(0, 230, 179, 0.25), transparent), var(--bg-alt);
}

.modules__badge {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.modules__timeline {
  display: grid;
  gap: 1.5rem;
}

.module-node {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  position: relative;
}

.module-node::before {
  content: '';
  position: absolute;
  left: 32px;
  top: -18px;
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, rgba(25, 242, 140, 0.5), rgba(127, 91, 255, 0));
}

.module-node:first-child::before {
  display: none;
}

.module-node__icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(127, 91, 255, 0.9), rgba(25, 242, 140, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #010b07;
}

.security__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.insights {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 3rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top left, rgba(25, 242, 140, 0.08), transparent 70%),
    radial-gradient(circle at bottom right, rgba(127, 91, 255, 0.12), transparent 70%),
    var(--surface-glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--blur-lg));
}

.insights__panel {
  position: relative;
  overflow: hidden;
}

.insights__panel::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(25, 242, 140, 0.4), rgba(127, 91, 255, 0.3));
  border-radius: 1.25rem;
  z-index: -1;
  animation: gradient-shift 6s ease-in-out infinite;
  background-size: 200% 200%;
}

.insights__panel ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.insights__panel li {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.insights__panel li:hover {
  background: rgba(25, 242, 140, 0.1);
  border-color: rgba(25, 242, 140, 0.3);
  transform: translateX(8px);
}

.insights__cards {
  display: grid;
  gap: 1rem;
}

.insight-card {
  background: linear-gradient(140deg, rgba(25, 242, 140, 0.15), rgba(127, 91, 255, 0.15));
  border-color: rgba(25, 242, 140, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float-gentle 8s ease-in-out infinite;
}

.insight-card:nth-child(2) {
  animation-delay: -2.7s;
}

.insight-card:nth-child(3) {
  animation-delay: -5.3s;
}

.insight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.insight-card:hover::after {
  left: 100%;
}

.insight-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(25, 242, 140, 0.2);
  border-color: rgba(25, 242, 140, 0.6);
}

.insight-card strong {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.global {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 3rem;
  background: radial-gradient(circle at top right, rgba(127, 91, 255, 0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(25, 242, 140, 0.25), transparent 50%), var(--surface);
}

.global__content ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.global__content ul li::before {
  content: '•';
  margin-right: 0.4rem;
  color: var(--secondary);
}

.global__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.global__logos span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  padding: 0.65rem 0.85rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
}

.global__visual {
  display: flex;
  justify-content: center;
}

.orb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle, rgba(25, 242, 140, 0.2), rgba(0, 0, 0, 0.4));
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: orb-spin 22s linear infinite;
  transform-origin: 50% 50%;
  will-change: transform;
}

.orb__ring {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(127, 91, 255, 0.4);
}

.orb__ring--two {
  inset: 55px;
  border-color: rgba(25, 242, 140, 0.4);
}

.orb__ring--three {
  inset: 80px;
  border-color: rgba(255, 159, 63, 0.35);
}

.orb__signal {
  position: absolute;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  animation: orb-spin-counter 22s linear infinite;
}

.orb__signal--ru {
  top: 18%;
  left: 28%;
}

.orb__signal--az {
  bottom: 24%;
  left: 18%;
}

.orb__signal--tr {
  top: 25%;
  right: 8%;
}

.orb__signal--us {
  top: 50%;
  left: 5%;
}

.orb__signal--eu {
  bottom: 20%;
  right: 18%;
}


.sponsors {
  margin-top: 2rem;
}

.sponsor-track {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
}

.sponsor-track__inner {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2rem;
}

.sponsor-track__inner span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes orb-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orb-spin-counter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.voices {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  background: radial-gradient(circle at top left, rgba(127, 91, 255, 0.15), transparent 60%),
    radial-gradient(circle at bottom right, rgba(25, 242, 140, 0.18), transparent 60%), var(--surface);
}

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

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

.voices__viewport {
  position: relative;
  min-height: 260px;
}

.voice-card {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.25rem;
  background: rgba(5, 7, 15, 0.85);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  max-width: 100%;
}

.voice-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.voice-card__tag {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.voice-card blockquote {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  word-break: break-word;
  hyphens: auto;
}

.voice-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
}

.voices__dots {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.voices__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.voices__dot.is-active {
  background: var(--accent);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  margin-bottom: 1rem;
}

.billing-toggle__btn {
  border: none;
  color: var(--text);
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.billing-toggle__btn.is-active {
  background: var(--gradient);
}

.billing-note {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.25rem 0 0.75rem;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
}

.price-period {
  color: var(--muted);
}

.pricing__grid .featured {
  background: linear-gradient(150deg, rgba(25, 242, 140, 0.2), rgba(127, 91, 255, 0.25));
  border-color: rgba(25, 242, 140, 0.5);
  box-shadow: 0 35px 65px rgba(127, 91, 255, 0.25);
  position: relative;
}

.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #1f1103;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.pricing__grid ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  color: var(--muted);
}

.pricing__grid li {
  margin: 0.5rem 0;
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(0, 230, 179, 0.25), transparent), var(--surface);
}

.cta__form {
  display: grid;
  gap: 1rem;
}

.cta__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.cta__form input,
.cta__form select {
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  background: rgba(3, 5, 15, 0.6);
  color: var(--text);
}

.faq__deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at top left, rgba(25, 242, 140, 0.12), transparent 60%),
    rgba(3, 12, 9, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card:hover {
  animation: card-hover-morph 0.4s ease forwards;
  border-color: rgba(25, 242, 140, 0.6);
  box-shadow: 0 28px 60px rgba(25, 242, 140, 0.25), 0 0 40px rgba(25, 242, 140, 0.2);
}

.faq-card__badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(25, 242, 140, 0.18);
  border: 1px solid rgba(25, 242, 140, 0.35);
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-size: 0.85rem;
}

.faq-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.4;
}

.faq-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(127, 91, 255, 0.15), transparent 65%),
    radial-gradient(circle at bottom right, rgba(25, 242, 140, 0.15), transparent 55%),
    rgba(1, 11, 7, 0.85);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-footer__brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.site-footer__brand p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 50;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 2rem;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__title {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--primary);
}

.site-footer__bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-footer__bottom small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__bottom span {
  font-size: 0.85rem;
}

.footer-logo {
  width: 130px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--muted);
}

.social-links a:hover {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(25, 242, 140, 0.3);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .scroll-indicator {
    display: none;
  }

  .sneaky-scout {
    bottom: clamp(36px, 12vh, 180px);
    width: 92px;
    height: 148px;
    transform: translateX(-60%);
  }

  .sneaky-scout:hover {
    transform: translateX(-45%);
  }

  .sneaky-scout__body {
    height: 116px;
  }

  .sneaky-scout__head {
    width: 56px;
    height: 56px;
    top: -32px;
  }

  .sneaky-scout__tooltip {
    bottom: 92px;
    font-size: 0.7rem;
  }

  .navigation__inner {
    gap: 0.75rem;
  }

  .navigation__links {
    display: none;
  }

  .navigation__menu {
    display: flex;
    margin-left: auto;
    z-index: 905;
  }

  .navigation__actions {
    display: none;
  }

  #lang-select {
    display: none;
  }

  .component-lab__layout {
    grid-template-columns: 1fr;
  }

  .voice-card {
    padding: 2rem;
    transform: translateX(0);
  }

  .voice-card.is-active {
    transform: translateX(0);
  }

  .voices__viewport {
    min-height: 240px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
  }

  .site-footer__columns {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .site-footer__bottom {
    width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: 95vw;
  }

  .navigation__inner {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .navigation__actions {
    display: none;
  }

  .navigation__menu {
    display: flex;
    order: 3;
  }

  .hero__grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .hero__content h1 {
    font-size: clamp(1.6rem, 6vw, 2.8rem);
    line-height: 1.1;
  }

  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

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

  .hero__tags {
    justify-content: center;
    text-align: center;
    gap: 0.65rem;
    margin-top: 0.6rem;
  }

  .hero__tags span {
    padding: 0.5rem 0.9rem;
    font-size: 0.86rem;
    box-shadow: 0 10px 20px rgba(8, 12, 24, 0.28);
  }

  .hero__actions {
    justify-content: center;
    text-align: center;
  }

  .insights {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .modules {
    padding: 2rem;
  }

  .component-lab {
    padding: 2rem;
  }

  .lab-preview {
    padding: 1.25rem;
  }

  .lab-screen__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .lab-screen pre {
    font-size: 0.85rem;
    padding: 1.1rem;
  }

  .app-showcase {
    padding: 2rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .app-screenshots {
    padding: 1.5rem;
    min-height: auto;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .screenshot-image {
    width: 100%;
    height: auto;
  }

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

  .voice-card {
    position: relative;
    inset: auto;
    padding: 1.65rem;
    gap: 1.1rem;
  }

  .voice-card:not(.is-active) {
    display: none;
  }

  .voice-card.is-active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .voice-card blockquote {
    font-size: 1rem;
  }

  .voices__viewport {
    min-height: auto;
  }

  .voices__dots {
    margin-top: 1.25rem;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    text-align: center;
    padding: 0 1.5rem;
  }

  .site-footer__brand {
    align-items: center;
    margin: 0 auto;
    text-align: center;
  }

  .site-footer__brand p {
    max-width: 32ch;
  }

  .site-footer__columns {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    width: 100%;
    gap: 1.5rem;
  }

  .social-links {
    justify-content: center;
  }

  .site-footer__column {
    text-align: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 1.5rem;
  }

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

  .crypto-assets__head {
    text-align: center;
    gap: 1.35rem;
  }

  .crypto-assets__head > p {
    max-width: 48ch;
    margin: 0 auto;
  }

  .crypto-assets {
    padding: 1.75rem 1.5rem;
    border-radius: 1.35rem;
  }

  .crypto-assets__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .crypto-assets__grid article {
    padding: 1.1rem 1.25rem;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .crypto-assets__grid article h3 {
    font-size: 1.05rem;
  }

  .crypto-assets__grid article p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .section-heading {
    text-align: center;
  }

  .global {
    padding: 2rem;
    text-align: center;
  }

  .voices {
    padding: 2rem;
  }

  .cta {
    padding: 2rem;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: 92vw;
  }

  .hero {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }

  .sneaky-scout {
    bottom: 28px;
    width: 78px;
    height: 132px;
    transform: translateX(-64%);
  }

  .sneaky-scout:hover {
    transform: translateX(-50%);
  }

  .sneaky-scout__tooltip {
    display: none;
  }

  .hero__content h1 {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
    line-height: 1.1;
    margin: 0.5rem 0;
  }

  .hero__lead {
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.65rem;
  }

  .hero__tags {
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.55rem;
  }

  .hero__tags span {
    font-size: 0.82rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.8rem;
    box-shadow: 0 8px 16px rgba(8, 12, 24, 0.22);
  }

  .hero__actions {
    gap: 0.75rem;
  }

  .hero__actions .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .lang-picker__toggle {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }

  .lang-picker__option {
    font-size: 0.9rem;
  }

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

  .hero__stats div {
    padding: 1rem;
    min-width: auto;
  }

  .hero__stats strong {
    font-size: 1.5rem;
  }

  .navigation__inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .navigation__actions {
    display: none;
  }

  .navigation__menu {
    display: flex;
  }

  .component-lab {
    padding: 1.5rem;
  }

  .lab-preview {
    padding: 1.05rem;
  }

  .lab-screen pre {
    font-size: 0.8rem;
    padding: 0.95rem;
  }

  .carousel-btn {
    display: none;
  }

  .app-screenshots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 100%;
  }

  .screenshot-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
  }

  .screenshot-image:hover {
    transform: translateY(-4px);
  }

  .voice-card {
    padding: 1.4rem;
  }

  .voice-card blockquote {
    font-size: 0.95rem;
  }

  .asset-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .asset-icon__img {
    width: 28px;
    height: 28px;
  }

  .crypto-assets {
    padding: 1.5rem 1.25rem;
  }

  .crypto-assets__grid article {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
  }

  .crypto-assets__grid article > div {
    width: 100%;
  }

  .crypto-assets__grid article h3 {
    font-size: 1rem;
  }

  .crypto-assets__grid article p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .crypto-assets__head > p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .signal-bar__logos {
    justify-content: center;
    gap: 1rem;
  }

  .signal-bar__logos span {
    font-size: 0.85rem;
  }

  .sponsor-track__inner span {
    font-size: 0.85rem;
    padding: 0 0.75rem;
  }

  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer__inner {
    padding: 0 1.25rem;
  }

  .site-footer__brand {
    align-items: center;
    gap: 0.85rem;
  }

  .site-footer__brand p {
    max-width: 30ch;
  }

  .social-links {
    justify-content: center;
  }

  .site-footer__column {
    text-align: center;
  }

  .site-footer__title {
    letter-spacing: 0.18em;
    font-size: 0.7rem;
  }

  .site-footer__bottom {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 0.9rem;
    padding: 0 1.25rem;
  }

  .site-footer__bottom small,
  .site-footer__bottom span {
    max-width: 34ch;
    line-height: 1.5;
  }

  section {
    margin: 3rem 0;
  }

  section:first-child {
    margin-top: 1.5rem;
  }

  section:last-child {
    margin-bottom: 1.5rem;
  }

  .section-heading h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.2;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .btn {
    min-height: 44px;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    transition: none !important;
    transform: none !important;
  }

  .hero__visual,
  .app-showcase,
  .component-lab,
  .zigzag,
  .voices,
  .pricing__grid article,
  .cta,
  .modules,
  .sponsor-track__inner,
  .orb,
  .orb__signal {
    animation: none;
  }
}
.capabilities__grid--mosaic {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cap-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 14, 10, 0.55);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cap-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(25, 242, 140, 0.08), transparent 50%);
  pointer-events: none;
}

.cap-card:hover {
  animation: card-hover-morph 0.4s ease forwards;
  border-color: rgba(25, 242, 140, 0.4);
  box-shadow: 0 22px 45px -12px rgba(25, 242, 140, 0.7), 0 0 30px rgba(25, 242, 140, 0.3);
  transform: translateY(-8px) scale(1.02);
}

.cap-card--gradient {
  background: linear-gradient(150deg, rgba(25, 242, 140, 0.3) 0%, rgba(29, 144, 118, 0.2) 40%, rgba(127, 91, 255, 0.4) 100%);
  color: #03120c;
  border: 1px solid rgba(25, 242, 140, 0.4);
}

.cap-card--gradient::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 65%);
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}

.cap-card__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.cap-card__label svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  filter: drop-shadow(0 8px 12px rgba(25, 242, 140, 0.25));
}

.cap-card__badges,
.cap-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cap-card__badges span,
.cap-card__tags span {
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 33, 26, 0.65);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

.cap-card--outline {
  background: rgba(255, 255, 255, 0.02);
}

.cap-card--glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.cap-card__metrics {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cap-card__metrics strong {
  font-size: 1.5rem;
}

.cap-card--legal {
  background: rgba(127, 91, 255, 0.15);
}

body.legal-page {
  background: radial-gradient(circle at top, rgba(0, 212, 170, 0.15), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.12), transparent 45%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.legal-page__container {
  padding: 2.5rem clamp(1.5rem, 3vw, 4rem) 4rem;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.legal-page__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text);
}

.legal-page__brand img {
  width: 52px;
  height: 52px;
  border-radius: 0.6rem;
  box-shadow: var(--shadow-lg);
}

.legal-page__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
}

.legal-page__subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-page__nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-page__nav a {
  text-decoration: none;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 0.95rem;
  transition: border 0.3s ease, background 0.3s ease;
}

.legal-page__nav a:hover,
.legal-page__nav a:focus-visible {
  border-color: var(--primary);
  background: rgba(0, 212, 170, 0.15);
}

.legal-page__card {
  background: rgba(9, 13, 20, 0.95);
  padding: clamp(1.75rem, 2vw, 2.5rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.legal-page__section {
  margin-bottom: 1.75rem;
}

.legal-page__section:last-child {
  margin-bottom: 0;
}

.legal-page__section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.legal-page__section p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-page__section ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.4rem;
  color: var(--text-secondary);
}

.legal-page__section ul li {
  list-style: disc;
}

.legal-page__cta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.legal-page__cta strong {
  color: var(--text);
}

@media (max-width: 720px) {
  .legal-page__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-page__nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .hero-preview {
    width: clamp(320px, 80vw, 500px);
    margin: 2rem auto 1rem;
  }

  .component-lab__preview {
    flex-direction: column;
    align-items: center;
  }

  .component-lab__preview img {
    width: 100%;
    max-width: 450px;
  }
}
