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

:root {
  --color-bg: #0A0A0A;
  --color-surface: #0c1017;
  --color-border: rgba(255, 255, 255, 0.07);
  --color-text: #e4e4e7;
  --color-text-muted: #9ca3af;
  --color-accent: #eab308;
  --color-accent-hover: #facc15;
  --color-accent-glow: rgba(250, 204, 21, 0.35);
  --color-accent-subtle: rgba(234, 179, 8, 0.1);
  --color-accent-border: rgba(234, 179, 8, 0.3);
  --color-white: #ffffff;
  --gold-gradient: linear-gradient(to right, #ca8a04, #fef08a, #ca8a04);
  --gold-btn: linear-gradient(to right, #ca8a04, #facc15, #ca8a04);
  --gold-btn-hover: linear-gradient(to right, #eab308, #fde047, #eab308);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navbar-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 8, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-vero {
  color: var(--color-white);
}

.logo-qt {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  background: transparent;
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid var(--color-accent-border);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-login:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent);
  box-shadow: 0 0 14px var(--color-accent-glow);
}

.btn-get-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--gold-btn);
  color: #0f172a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow var(--transition);
}

.btn-get-access:hover {
  background: var(--gold-btn-hover);
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger-line:nth-child(1) {
  transform: translateY(-6px);
}

.hamburger-line:nth-child(3) {
  transform: translateY(6px);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(6, 8, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-login-link {
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
  padding-top: 24px !important;
  color: var(--color-accent) !important;
  font-weight: 600;
}

.mobile-login-link:hover {
  color: var(--color-accent-hover) !important;
}

.mobile-nav-link:hover {
  color: var(--color-accent);
}

.mobile-cta {
  margin-top: 16px;
  padding: 14px 40px;
  font-size: 1.1rem;
}

.desktop-only {
  display: inline-flex;
}

/* ========== HERO ========== */
.main-content {
  min-height: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--navbar-height));
  padding: 100px 24px;
  scroll-margin-top: var(--navbar-height);
}

#algorithm-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(234, 179, 8, 0.1);
  top: -15%;
  right: -10%;
}

.hero-glow--2 {
  width: 500px;
  height: 500px;
  background: rgba(234, 179, 8, 0.06);
  bottom: -10%;
  left: -8%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-border);
  border-radius: 100px;
  margin-bottom: 28px;
  background: var(--color-accent-subtle);
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 44px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--gold-btn);
  color: #0f172a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--gold-btn-hover);
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-accent-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform 0.15s ease;
}

.btn-outline:hover {
  border-color: var(--color-accent-border);
  color: var(--color-white);
  background: var(--color-accent-subtle);
  transform: translateY(-2px);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hiw-header {
  text-align: center;
  margin-bottom: 40px;
}

.hiw-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hiw-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.hiw-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.hiw-line {
  position: absolute;
  top: 36px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent) 20%, var(--color-accent) 80%, transparent);
  opacity: 0.4;
  z-index: 0;
  box-shadow: 0 0 8px rgba(234, 179, 8, 0.3), 0 0 20px rgba(234, 179, 8, 0.15);
}

.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hiw-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ca8a04, #fde68a 50%, #b45309);
  color: #0f172a;
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-step:hover .hiw-icon {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.5);
}

.hiw-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.hiw-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.hiw-step p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ========== CORE OFFERINGS ========== */
.offerings {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  scroll-margin-top: var(--navbar-height);
}

.offerings-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-border);
  border-radius: 100px;
  margin-bottom: 20px;
  background: var(--color-accent-subtle);
}

.offerings-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.offerings-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.offering-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), transform 0.25s ease, box-shadow 0.25s ease, background var(--transition);
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.offering-card:hover {
  border-color: var(--color-accent-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(234, 179, 8, 0.15);
}

.offering-card:hover::before,
.offering-card:focus-visible::before {
  opacity: 1;
}

.offering-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-color: var(--color-accent-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(234, 179, 8, 0.15);
}

.offering-card:focus-visible .offering-icon {
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.5);
}

.offering-card:focus-visible .offering-arrow {
  opacity: 1;
  transform: translateX(0);
}

.offering-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ca8a04, #fde68a 50%, #b45309);
  color: #0f172a;
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
  transition: box-shadow var(--transition), transform 0.25s ease;
}

.offering-card:hover .offering-icon {
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.5);
  transform: translateY(-3px);
}

.offering-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.offering-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.offering-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.offering-card:hover .offering-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========== PERFORMANCE STATS ========== */
.perf-stats {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.perf-stats-header {
  text-align: center;
  margin-bottom: 48px;
}

.perf-stats-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
}

.perf-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.perf-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
}

.perf-stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ca8a04, #fde68a 50%, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(234, 179, 8, 0.35));
}

.perf-stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ========== PRICING ========== */
.pricing {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  scroll-margin-top: var(--navbar-height);
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.pricing-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-showcase {
  display: flex;
  justify-content: center;
}

.card-border-wrap {
  max-width: 520px;
  width: 100%;
  padding: 2px;
  background: linear-gradient(135deg, #ca8a04, #fef08a, #92400e);
  border-radius: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-border-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(234, 179, 8, 0.15), 0 0 100px rgba(250, 204, 21, 0.06);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 44px 44px;
  background: #0b0f16;
  border: none;
  border-radius: 24px;
}

.pricing-card--premium {
  width: 100%;
}

.pricing-card-head {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.pricing-dollar {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-accent);
  align-self: flex-start;
  margin-top: 10px;
}

.pricing-value {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 4px;
  align-self: flex-end;
  margin-bottom: 8px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--color-text);
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.btn-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform 0.15s ease;
}

.btn-subscribe:hover {
  border-color: var(--color-accent-border);
  background: var(--color-accent-subtle);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-subscribe--premium {
  background: var(--gold-btn);
  border-color: transparent;
  color: #0f172a;
  font-size: 1.05rem;
  padding: 18px 32px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-subscribe--premium:hover {
  background: var(--gold-btn-hover);
  border-color: transparent;
  color: #0f172a;
  box-shadow: 0 8px 32px var(--color-accent-glow);
  transform: translateY(-2px);
}

/* ========== BOT PRE-ORDER ========== */
.bot-preorder {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.bot-card {
  position: relative;
  width: 100%;
  padding: 48px 44px 44px;
  background: #0b0f16;
  border: none;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
}

.bot-ribbon {
  position: absolute;
  top: 28px;
  right: -40px;
  padding: 6px 50px;
  background: var(--gold-gradient);
  color: var(--color-bg);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 2px 12px rgba(234, 179, 8, 0.4);
  z-index: 2;
}

.bot-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  margin-top: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bot-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 32px;
}

.bot-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
}

.bot-price-original {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.bot-price-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.bot-price-current {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -2px;
  line-height: 1;
}

.bot-discount {
  display: inline-block;
  margin-top: 4px;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  background: var(--color-accent-subtle);
  border: 1px solid var(--color-accent-border);
  border-radius: 100px;
}

.btn-bot-preorder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--gold-btn);
  color: #0f172a;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: box-shadow var(--transition), transform 0.15s ease;
}

.btn-bot-preorder:hover {
  background: var(--gold-btn-hover);
  color: #0f172a;
  box-shadow: 0 8px 32px var(--color-accent-glow);
  transform: translateY(-2px);
}

/* ========== WHY CHOOSE / TRUST ========== */
.trust {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  scroll-margin-top: var(--navbar-height);
}

.trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  opacity: 1;
  position: relative;
  z-index: 10;
}

.trust-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: 1;
  text-align: center;
  padding: 24px;
  background: #020617;
  border: 1px solid rgba(202, 138, 4, 0.4);
  border-radius: 16px;
  position: relative;
  z-index: 10;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ca8a04, #fde68a 50%, #b45309);
  color: #0f172a;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
  transition: box-shadow var(--transition), transform 0.25s ease;
}

.trust-card:hover .trust-icon {
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.5);
}

.trust-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ========== ANALYTICS PAGE ========== */
.analytics-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  overflow: hidden;
}

.analytics-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.analytics-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  background: linear-gradient(135deg, #EAB308 0%, #FBBF24 40%, #FDE68A 60%, #FBBF24 80%, #EAB308 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}

.analytics-hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.analytics-chart-section,
.analytics-ledger-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 48px 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.analytics-section-header {
  margin-bottom: 32px;
}

.analytics-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.analytics-section-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.analytics-chart-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  height: 420px;
  position: relative;
}

.analytics-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.analytics-table thead {
  border-bottom: 1px solid var(--color-border);
}

.analytics-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.analytics-table td {
  padding: 14px 20px;
  color: var(--color-text);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.analytics-table tbody tr:last-child td {
  border-bottom: none;
}

.analytics-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.asset-cell {
  font-weight: 600;
  color: var(--color-white);
}

.type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.type-long {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.type-short {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}

.pips-positive {
  color: #4ade80;
  font-weight: 600;
}

.pips-negative {
  color: #f87171;
  font-weight: 600;
}

.analytics-disclaimer {
  margin-top: 32px;
  text-align: center;
}

.analytics-disclaimer p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(202, 138, 4, 0.35);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FBBF24;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.2s ease, border-color 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(202, 138, 4, 0.18);
  border-color: rgba(251, 191, 36, 0.6);
}

.scroll-top:active {
  transform: scale(0.92);
}

/* ========== FOOTER ========== */
.footer {
  background: #020617;
  border-top: 1px solid rgba(202, 138, 4, 0.3);
  position: relative;
  z-index: 20;
  width: 100%;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 32px;
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  display: inline-block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.footer-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-disclaimer {
  width: 100%;
  padding: 24px 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-disclaimer p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(253, 224, 113, 0.7);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 120px 24px 64px;
  position: relative;
  z-index: 1;
}

.legal-container {
  max-width: 768px;
  margin: 0 auto;
}

.legal-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  opacity: 0.7;
}

.legal-body h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-link {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(234, 179, 8, 0.3);
  transition: border-color var(--transition), color var(--transition);
}

.legal-link:hover {
  color: var(--color-accent-hover);
  border-bottom-color: var(--color-accent);
}

.legal-highlight {
  color: var(--color-accent);
  font-weight: 500;
}

.legal-warning-box {
  background: rgba(234, 179, 8, 0.06);
  border: 1px solid var(--color-accent-border);
  border-radius: 12px;
  padding: 28px 28px 16px;
  margin-bottom: 40px;
}

.legal-warning-box h2 {
  margin-top: 0;
  color: var(--color-accent);
  border-bottom: none;
  padding-bottom: 0;
  font-size: 1.1rem;
}

.legal-warning-box p {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ========== TECHNOLOGY PAGE ========== */
.tech-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  overflow: hidden;
}

.tech-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.tech-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  background: linear-gradient(135deg, #EAB308 0%, #FBBF24 40%, #FDE68A 60%, #FBBF24 80%, #EAB308 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}

.tech-about {
  padding: 0 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tech-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tech-about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.tech-about-text p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.tech-about-text p:last-of-type {
  margin-bottom: 36px;
}

.tech-stats {
  display: flex;
  gap: 32px;
}

.tech-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tech-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
}

.tech-stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terminal-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(234, 179, 8, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.terminal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(234, 179, 8, 0.06);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot--red { background: #ef4444; }
.terminal-dot--yellow { background: #eab308; }
.terminal-dot--green { background: #22c55e; }

.terminal-title {
  font-family: 'Fira Code', 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}

.terminal-body {
  padding: 20px;
  margin: 0;
  font-family: 'Fira Code', 'Roboto Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  overflow-x: auto;
}

.json-key { color: #FBBF24; }
.json-string { color: #4ade80; }
.json-number { color: #60a5fa; }

/* ========== RESPONSIVE ========== */
html, body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: calc(100dvh - var(--navbar-height));
    padding: 72px 20px 56px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.5rem);
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 320px;
    padding: 15px 24px;
    font-size: 0.9rem;
  }

  .hero-glow--1 {
    width: 300px;
    height: 300px;
  }

  .hero-glow--2 {
    width: 250px;
    height: 250px;
  }

  .how-it-works {
    padding: 48px 20px;
  }

  .hiw-header {
    margin-bottom: 48px;
  }

  .hiw-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hiw-line {
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--color-accent) 15%, var(--color-accent) 85%, transparent);
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.3), 0 0 20px rgba(234, 179, 8, 0.15);
  }

  .hiw-step {
    text-align: left;
    padding-left: 80px;
    padding-bottom: 48px;
    position: relative;
  }

  .hiw-step:last-child {
    padding-bottom: 0;
  }

  .hiw-icon {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 64px;
    height: 64px;
  }

  .hiw-step p {
    margin: 0;
  }

  .perf-stats {
    padding: 48px 20px;
  }

  .perf-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .perf-stat {
    padding: 24px 12px;
  }

  .offerings {
    padding: 48px 20px;
  }

  .offerings-header {
    margin-bottom: 36px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offering-card {
    padding: 28px 24px;
  }

  .offering-card h3 {
    font-size: 1.1rem;
  }

  .offering-card p {
    font-size: 0.88rem;
  }

  .offering-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .pricing {
    padding: 48px 20px;
  }

  .pricing-header {
    margin-bottom: 36px;
  }

  .pricing-card--premium,
  .bot-card {
    padding: 36px 28px 32px;
  }

  .pricing-value {
    font-size: 3rem;
  }

  .pricing-features li {
    font-size: 0.88rem;
  }

  .bot-preorder {
    margin-top: 40px;
  }

  .bot-title {
    font-size: 1.2rem;
  }

  .bot-price-current {
    font-size: 2.75rem;
  }

  .trust {
    padding: 48px 20px;
  }

  .trust-header {
    margin-bottom: 36px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-card {
    padding: 24px;
  }

  .trust-card h3 {
    font-size: 1.05rem;
  }

  .trust-card p {
    font-size: 0.88rem;
  }

  .legal-page {
    padding: 100px 20px 48px;
  }

  .legal-warning-box {
    padding: 20px 20px 12px;
  }

  .tech-hero,
  .analytics-hero {
    min-height: auto;
    padding: 100px 20px 48px;
  }

  .analytics-chart-section,
  .analytics-ledger-section {
    padding: 32px 20px 48px;
  }

  .analytics-chart-wrap {
    height: 320px;
    padding: 16px;
  }

  .analytics-table th,
  .analytics-table td {
    padding: 12px 14px;
  }

  .tech-about {
    padding: 0 20px 48px;
  }

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

  .tech-stats {
    gap: 24px;
  }

  .terminal-card {
    max-width: 100%;
  }

  .terminal-body {
    font-size: 0.75rem;
    padding: 16px;
  }

  .footer-top {
    padding: 32px 24px 24px;
  }

  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    gap: 16px;
  }

  .footer-disclaimer {
    padding: 24px 24px;
  }

  .footer-disclaimer p {
    font-size: 0.875rem;
  }

  .footer-bottom {
    padding: 16px 24px;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  :root {
    --navbar-height: 64px;
  }

  .navbar-logo {
    font-size: 1.3rem;
  }

  .navbar-container {
    padding: 0 16px;
  }

  .hero {
    padding: 56px 16px 44px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    letter-spacing: -0.75px;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    max-width: 100%;
  }

  .how-it-works,
  .offerings,
  .pricing,
  .trust,
  .perf-stats {
    padding: 48px 16px;
  }

  .perf-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .perf-stat-value {
    font-size: 2rem;
  }

  .tech-hero,
  .analytics-hero {
    padding: 88px 16px 36px;
  }

  .analytics-chart-section,
  .analytics-ledger-section {
    padding: 24px 16px 36px;
  }

  .analytics-chart-wrap {
    height: 260px;
    padding: 12px;
  }

  .analytics-table th,
  .analytics-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .tech-about {
    padding: 0 16px 40px;
  }

  .tech-stat-value {
    font-size: 1.4rem;
  }

  .tech-stat-label {
    font-size: 0.7rem;
  }

  .terminal-body {
    font-size: 0.7rem;
    padding: 14px;
    line-height: 1.6;
  }

  .section-badge {
    font-size: 0.68rem;
    padding: 5px 14px;
    letter-spacing: 1.5px;
  }

  .pricing-card--premium,
  .bot-card {
    padding: 28px 20px 24px;
  }

  .pricing-value {
    font-size: 2.75rem;
  }

  .pricing-dollar {
    font-size: 1.25rem;
  }

  .bot-title {
    font-size: 1.1rem;
  }

  .bot-desc {
    font-size: 0.88rem;
  }

  .bot-price-current {
    font-size: 2.5rem;
  }

  .btn-bot-preorder {
    font-size: 0.95rem;
    padding: 16px 24px;
  }

  .footer-top {
    padding: 28px 16px 20px;
  }

  .footer-disclaimer {
    padding: 20px 16px;
  }

  .footer-bottom {
    padding: 16px;
  }

  .mobile-nav-link {
    font-size: 1.5rem;
  }

  .mobile-menu-nav {
    gap: 24px;
  }
}
