*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #05060b;
  color: #f8fafc;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
}

.vs-connect-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  max-width: 28rem;
}

.vs-connect-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.vs-connect-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.vs-connect-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.vs-wc-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.vs-wc-note a {
  color: #fbbf24;
}

.vs-btn-large {
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
}

.vs-no-contract-note {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.vs-no-contract-note code {
  background: rgba(0,0,0,0.3);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
}

a {
  color: inherit;
  text-decoration: none;
}

.vs-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
}

.vs-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 8, 20, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.vs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.vs-logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vs-logo span {
  color: #fbbf24;
}

.vs-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.vs-nav a {
  opacity: 0.85;
}

.vs-nav a:hover {
  opacity: 1;
}

.vs-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.6rem 1.25rem;
  min-height: 44px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.18s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vs-btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #0b1120;
}

.vs-btn-primary:hover {
  filter: brightness(1.08);
}

.vs-btn:focus-visible,
.vs-nav a:focus-visible,
.vs-upline-input:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

.vs-btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.vs-btn-outline:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

.vs-hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), transparent 55%);
}

.vs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  align-items: center;
}

.vs-hero-badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fbbf24;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.vs-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.vs-hero-lead {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #e2e8f0;
  max-width: 36rem;
  line-height: 1.6;
}

.vs-hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.vs-wallet-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #e5e7eb;
  opacity: 0.86;
}

.vs-wallet-info span strong {
  color: #fbbf24;
}


.vs-referral-box {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  max-width: 32rem;
}

.vs-referral-label {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.vs-referral-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.vs-referral-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #0f172a;
  color: #e5e7eb;
}

.vs-copy-feedback {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: #4ade80;
}

.vs-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0.5rem;
  cursor: pointer;
  color: #f8fafc;
}

.vs-nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vs-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vs-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.vs-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.vs-hero-card {
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.15), rgba(15, 23, 42, 0.98));
  border-radius: 1.5rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.75);
}

.vs-hero-card h2 {
  font-size: 1.2rem;
margin-bottom: 1rem;
}

.vs-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.vs-stat {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.vs-stat-label {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.vs-stat-value {
  display: block;
  margin-top: 0.25rem;
  font-weight: 700;
}

.vs-section {
  padding: 3rem 0;
}

.vs-guide-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, #020617 100%);
}

.vs-guide-heading {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.vs-guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 42rem;
}

.vs-guide-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  align-items: flex-start;
}

.vs-guide-step:last-child {
  border-bottom: none;
}

.vs-guide-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.25);
  color: #94a3b8;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-guide-step.done .vs-guide-step-num {
  background: rgba(74, 222, 128, 0.25);
  color: #4ade80;
}

.vs-guide-step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.vs-guide-step-body p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.vs-guide-step-body p:last-child {
  margin-bottom: 0;
}

.vs-guide-status {
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
}

.vs-guide-step.done .vs-guide-status {
  color: #4ade80;
  font-style: normal;
}

.vs-register-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.vs-upline-input {
  flex: 1;
  min-width: 200px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #0f172a;
  color: #e5e7eb;
}

.vs-upline-input::placeholder {
  color: #64748b;
}

.vs-section-alt {
  background: #020617;
}

.vs-section-title {
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.vs-section-subtitle {
  color: #94a3b8;
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.vs-why-section {
  background: #0f172a;
}

.vs-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.vs-why-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1rem;
  padding: 1.5rem;
}

.vs-why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.vs-why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.vs-why-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.vs-go-online-section {
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}

.vs-go-online-steps {
  max-width: 40rem;
}

.vs-go-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  align-items: flex-start;
}

.vs-go-step:last-child {
  border-bottom: none;
}

.vs-go-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-go-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #f8fafc;
}

.vs-go-step p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.vs-go-step a {
  color: #fbbf24;
  text-decoration: underline;
}

.vs-go-step code {
  background: rgba(0,0,0,0.35);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.85em;
}

.vs-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.vs-lead {
  color: #cbd5f5;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.vs-grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vs-grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vs-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.9rem;
}

.vs-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.vs-card ul {
  margin-left: 1.1rem;
  margin-top: 0.35rem;
}

.vs-card li {
  margin-bottom: 0.25rem;
}

.vs-royalty-card {
  margin-top: 1.5rem;
}

.vs-packages-notice {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
}

.vs-packages-notice-warn {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.4);
  color: #fef3c7;
}

.vs-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
}

.vs-package-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1rem;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.vs-package-card h4 {
  font-size: 1rem;
}

.vs-package-price {
  font-weight: 700;
  color: #fbbf24;
}

.vs-package-note {
  font-size: 0.78rem;
  color: #9ca3af;
}

.vs-package-actions {
  margin-top: 0.5rem;
}

.vs-steps {
  margin-left: 1.4rem;
  margin-top: 0.5rem;
  font-size: 0.92rem;
}

.vs-steps li {
  margin-bottom: 0.4rem;
}

.vs-note {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: #cbd5f5;
}

.vs-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.1rem 0;
  background: #020617;
}

.vs-footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9ca3af;
}

.vs-footer-note {
  color: #e5e7eb;
}

@media (max-width: 900px) {
  .vs-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .vs-hero {
    padding: 2rem 0 2.5rem;
  }

  .vs-connect-card {
    max-width: none;
  }

  .vs-connect-buttons {
    flex-direction: column;
  }

  .vs-connect-buttons .vs-btn {
    width: 100%;
  }

  .vs-header-inner {
    gap: 0.5rem;
    padding: 0.6rem 0;
  }

  .vs-nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }

  .vs-nav {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(6, 8, 20, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    z-index: 19;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .vs-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .vs-nav a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .vs-nav a:hover {
    background: rgba(251, 191, 36, 0.15);
  }

  .vs-section {
    padding: 2rem 0;
  }

  .vs-guide-step {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }

  .vs-register-row {
    flex-direction: column;
  }

  .vs-upline-input {
    min-width: 100%;
    padding: 0.65rem 0.75rem;
    min-height: 44px;
  }

  .vs-why-grid {
    grid-template-columns: 1fr;
  }

  .vs-go-step {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .vs-hero-actions {
    flex-direction: column;
  }

  .vs-hero-actions .vs-btn,
  .vs-hero-actions a.vs-btn {
    width: 100%;
  }

  .vs-stats-grid {
    grid-template-columns: 1fr;
  }

  .vs-packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .vs-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .vs-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .vs-footer-inner {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

