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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text-2);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

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

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

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

ol,
ul {
  list-style: none;
}

:root {
  --navy: #0a0f2c;
  --navy-mid: #0d1540;
  --indigo: #111c55;
  --indigo-2: #162068;
  --blue: #1b4fd8;
  --blue-2: #2563eb;
  --blue-3: #3b82f6;
  --teal: #00c9a7;
  --teal-2: #00a88c;
  --teal-dim: rgba(0, 201, 167, 0.12);
  --gold: #f5a623;
  --gold-2: #e8961a;
  --gold-dim: rgba(245, 166, 35, 0.1);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.12);
  --blue-dim: rgba(27, 79, 216, 0.1);
  --text-1: #f0f4ff;
  --text-2: #a8b8d8;
  --text-3: #5a6e9a;
  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.07);
  --max-w: 1120px;
  --header-height: 64px;
  --nav-h: var(--header-height);
  --r: 12px;
  --r-lg: 20px;
  --mono: 'Space Mono', monospace;
  --display: 'Outfit', sans-serif;
  --body: 'DM Sans', sans-serif;
  --grad-cta: linear-gradient(135deg, #1b4fd8 0%, #2563eb 50%, #1b4fd8 100%);
  --grad-teal: linear-gradient(135deg, #00c9a7 0%, #00a88c 100%);
  --grad-gold: linear-gradient(135deg, #f5a623 0%, #e8961a 100%);
}

::selection {
  background: rgba(0, 201, 167, 0.2);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
}

#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 15, 44, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

#nav.scrolled {
  background: rgba(10, 15, 44, 0.96);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-1);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 2px 16px rgba(27, 79, 216, 0.4);
}

.logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.15s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-1);
  background: var(--glass-2);
}

.nav-actions,
.nav-desktop-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions {
  min-width: 0;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}

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

.btn-sm {
  height: 36px;
  padding: 0 16px;
}

.btn-md {
  height: 42px;
  padding: 0 22px;
}

.btn-lg {
  height: 50px;
  padding: 0 28px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 4px 24px rgba(27, 79, 216, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(27, 79, 216, 0.45);
}

.btn-teal {
  background: var(--grad-teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 201, 167, 0.3);
}

.btn-teal:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 201, 167, 0.4);
}

.btn-ghost {
  background: var(--glass-2);
  color: var(--text-1);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}

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

.btn-gold {
  background: var(--grad-gold);
  color: #0a0f2c;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.25);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  background: var(--glass-2);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  position: relative;
  z-index: 1001;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-2);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    background-color 0.2s ease;
  transform-origin: center;
  margin: 0 auto;
}

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

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

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

.nav-mobile-overlay {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(3, 8, 22, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
  z-index: 999;
}

.nav-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.24s ease;
}

.nav-mobile {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 24rem);
  max-width: 100%;
  background: rgba(10, 15, 44, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px clamp(18px, 5vw, 24px) calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 48px rgba(0, 0, 0, 0.28);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    visibility 0s linear 0.32s;
  will-change: transform;
}

.nav-mobile.open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.nav-mobile .nav-link {
  font-size: 1.05rem;
  padding: 14px 16px;
  border-radius: var(--r);
}

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

.nav-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-wrap,
.hero-content,
.mod-b2b-inner,
.footer-bottom,
.footer-legal {
  min-width: 0;
}

#hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(24px, 4vw, 40px) 0 clamp(48px, 8vw, 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero .wrap {
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0f2c 0, #0d1845 30%, #0c1f5a 55%, #082848 80%, #041c38 100%);
  z-index: 0;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(27, 79, 216, 0.22) 0, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 201, 167, 0.12) 0, transparent 60%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(27, 79, 216, 0.18) 0, transparent 70%);
  top: -100px;
  right: -80px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.12) 0, transparent 70%);
  bottom: 0;
  left: -60px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.07) 0, transparent 70%);
  top: 40%;
  right: 30%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.04);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.96);
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.25);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  width: fit-content;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-1);
}

.hero-title em {
  font-style: normal;
  color: var(--teal);
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-3);
  padding-top: 4px;
}

.hero-proof strong {
  color: var(--text-2);
  font-weight: 600;
}

.hero-avatars {
  display: flex;
}

.hero-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--indigo-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--blue-3);
  margin-left: -7px;
}

.hero-av:first-child {
  margin-left: 0;
}

.mockup {
  background: rgba(13, 21, 64, 0.7);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: mockFloat 6s ease-in-out infinite;
}

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

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

.mockup:hover {
  animation-play-state: paused;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(10, 15, 44, 0.8);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mockup-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mockup-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.alert-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(13, 21, 64, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all 0.3s;
}

.alert-row:hover {
  border-color: rgba(27, 79, 216, 0.4);
}

.alert-row.high {
  border-left: 2px solid var(--red);
}

.alert-row.med {
  border-left: 2px solid var(--gold);
}

.alert-row.ok {
  border-left: 2px solid var(--teal);
}

.alert-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.alert-info {
  flex: 1;
  min-width: 0;
}

.alert-title {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}

.alert-sub {
  font-size: 9.5px;
  color: var(--text-3);
  line-height: 1.4;
}

.alert-tag {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.08) 0, rgba(27, 79, 216, 0.06) 100%);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: var(--r);
}

.score-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-ring-inner {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
}

.score-label {
  font-size: 9px;
  color: var(--text-3);
  margin-bottom: 1px;
}

.score-val {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-1);
}

.mockup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-top: 1px solid var(--border);
}

.mock-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 8.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s ease infinite;
}

.mock-dots {
  display: flex;
  gap: 4px;
}

.mock-dot-prog {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s;
  cursor: pointer;
}

.mock-dot-prog.active {
  width: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue-3));
  border-color: transparent;
}

#trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(13, 21, 64, 0.5);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--glass-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy-mid);
}

.stat {
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stat:last-child {
  border-right: none;
}

.stat:hover {
  background: var(--indigo);
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-num.c-teal {
  background: linear-gradient(135deg, #00c9a7, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num.c-blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num.c-gold {
  background: linear-gradient(135deg, #f5a623, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px;
}

.sh {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.sh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.sh-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--grad-teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.sh-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 12px;
}

.sh-desc {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.75;
}

.sh.center {
  text-align: center;
}

.sh.center .sh-desc {
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mod {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.mod::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 79, 216, 0.08) 0, rgba(0, 201, 167, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.28s;
}

.mod:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 79, 216, 0.35);
  box-shadow: 0 16px 48px rgba(27, 79, 216, 0.15);
}

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

.mod-emoji {
  font-size: 28px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.mod-name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.mod-desc {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.mod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.mod-count {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
}

.mod-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.tag-free {
  background: var(--teal-dim);
  color: var(--teal);
}

.tag-ai {
  background: var(--blue-dim);
  color: var(--blue-3);
}

.mod-b2b {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0, rgba(27, 79, 216, 0.06) 100%);
  border-color: rgba(245, 166, 35, 0.2);
}

.mod-b2b:hover {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 16px 48px rgba(245, 166, 35, 0.1);
}

.mod-b2b-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.b2b-soon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--gold);
  z-index: 1;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.level {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  transition: all 0.28s;
}

.level:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.level-accent {
  height: 4px;
}

.level-body {
  padding: clamp(22px, 3vw, 30px);
}

.level-belt {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.level-name {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.level-target {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.level-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 18px;
}

.level-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.level-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
}

.feat-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 201, 167, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 9px;
  color: var(--teal);
}

.level-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.badge-emoji {
  font-size: 22px;
}

.badge-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 1px;
}

.badge-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
}

#how {
  background: linear-gradient(180deg, transparent 0, rgba(13, 21, 64, 0.4) 50%, transparent 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.step {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.5vw, 28px);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.22s;
}

.step:hover {
  background: var(--glass-2);
  border-color: var(--border-2);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--indigo);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-3);
  margin: 0 auto 16px;
}

.step-title {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.65;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.region {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  transition: all 0.22s;
}

.region:hover {
  border-color: var(--border-2);
  background: var(--glass-2);
}

.region-flag {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.region-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 3px;
}

.region-law {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue-3);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.region-li {
  font-size: 0.82rem;
  color: var(--text-2);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.region-li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
}

.testi-quote {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 10px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--indigo-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-3);
  border: 1.5px solid var(--border-2);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
}

.testi-role {
  font-size: 0.72rem;
  color: var(--text-3);
}

#b2b {
  background: linear-gradient(135deg, rgba(13, 21, 64, 0.6) 0, rgba(8, 40, 72, 0.4) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.b2b-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.b2b-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all 0.22s;
}

.b2b-feat:hover {
  background: var(--glass-2);
  border-color: var(--border-2);
}

.bf-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  background: rgba(245, 166, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.bf-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}

.bf-desc {
  font-size: 0.8rem;
  color: var(--text-2);
}

.b2b-visual {
  background: var(--glass);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 20px;
}

.b2b-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.b2b-stat {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px;
}

.b2b-stat-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 2px;
}

.b2b-stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
}

.b2b-early {
  padding: 14px;
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: var(--r);
}

.b2b-early-title {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.b2b-early-desc {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.65;
}

.cta-banner {
  position: relative;
  border: 1px solid rgba(27, 79, 216, 0.2);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(27, 79, 216, 0.12) 0, rgba(0, 201, 167, 0.08) 100%);
}

.cta-banner::before {
  content: 'Free';
  position: absolute;
  right: -20px;
  top: -30px;
  font-family: var(--display);
  font-size: 160px;
  font-weight: 900;
  color: rgba(27, 79, 216, 0.06);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}

#footer {
  background: linear-gradient(180deg, var(--navy-mid) 0, var(--navy) 100%);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 6vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}

.footer-brand-desc {
  font-size: 0.84rem;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--glass-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-3);
  transition: all 0.15s;
}

.social-link:hover {
  background: var(--glass);
  color: var(--text-1);
  border-color: var(--border-2);
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: var(--text-3);
  margin-bottom: 9px;
  transition: color 0.15s;
}

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

.footer-col .badge-soon {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold);
  margin-left: 5px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.footer-bottom {
  padding: clamp(16px, 2.5vw, 24px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-3);
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-3);
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--text-2);
}

.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(27, 79, 216, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-top:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

[data-d='1'] {
  transition-delay: 0.08s;
}

[data-d='2'] {
  transition-delay: 0.16s;
}

[data-d='3'] {
  transition-delay: 0.24s;
}

[data-d='4'] {
  transition-delay: 0.32s;
}

[data-d='5'] {
  transition-delay: 0.4s;
}

@media (max-width: 1024px) {
  #hero {
    padding-top: 24px;
    padding-bottom: 72px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .mockup-wrap {
    max-width: 480px;
    width: 100%;
  }

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

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

  .steps::before {
    display: none;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links,
  .nav-desktop-actions {
    display: none;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    width: min(100%, 22rem);
  }

  .nav-mobile .nav-link {
    width: 100%;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  #hero {
    min-height: calc(100svh - var(--header-height));
    padding: 16px 0 40px;
  }

  .hero-layout {
    gap: 28px;
    align-items: start;
  }

  .hero-content {
    gap: 18px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 1.03;
  }

  .hero-desc {
    line-height: 1.7;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

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

  .stat {
    border-bottom: 1px solid var(--border);
  }

  .levels-grid,
  .modules-grid,
  .regions-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

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

  .mod-b2b-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .mod-b2b .btn {
    width: 100%;
    justify-content: center;
  }

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

  .trust-row {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-inner,
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-mobile {
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

  .b2b-stats {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 2.9rem);
  }

  .hero-desc {
    font-size: 0.96rem;
  }

  .hero-proof,
  .mockup-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mockup,
  .orb {
    animation: none !important;
  }

  .nav-mobile-overlay,
  .nav-mobile,
  .nav-toggle,
  .nav-toggle span {
    transition: none !important;
  }
}
