
/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #070d1a;
  --bg-secondary: #0b1526;
  --bg-card: #0f1d35;
  --bg-card-hover: #142544;
  --border-subtle: rgba(79, 142, 247, 0.12);
  --border-glow: rgba(79, 142, 247, 0.3);
  --accent: #4f8ef7;
  --accent-bright: #6ba1ff;
  --accent-glow: rgba(79, 142, 247, 0.15);
  --gold: #f0b429;
  --gold-hover: #f7c948;
  --green: #10b981;
  --red-soft: #f87171;
  --text-primary: #e8edf5;
  --text-secondary: #8899b4;
  --text-muted: #5a6f8a;
  --gradient-hero: linear-gradient(165deg, #070d1a 0%, #0d1a30 40%, #0f1f3d 70%, #0a1225 100%);
  --gradient-accent: linear-gradient(135deg, #4f8ef7, #3b6fd4);
  --gradient-gold: linear-gradient(135deg, #f0b429, #d4992a);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --section-pad: clamp(4rem, 10vw, 7rem) clamp(1rem, 5vw, 2rem);
  --max-w: 1140px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 5.75rem;
}

@media (max-width: 600px) {
  :root {
    --section-pad: clamp(3rem, 10vw, 5rem) 1rem;
    --nav-height: 5.1rem;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: calc(var(--nav-height) + 0.75rem);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: rgba(7, 13, 26, 0.35);
  opacity: 0;
  transform: scale(1);
  filter: blur(0px);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
  z-index: 1200;
}
.page-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(79, 142, 247, 0.25) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 15%, rgba(240, 180, 41, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 75%, rgba(79, 142, 247, 0.2) 0 1px, transparent 2px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 6px);
  background-size: 14px 14px, 18px 18px, 22px 22px, 120px 120px;
}
.page-transition.active {
  opacity: 1;
  transform: scale(1.02);
  filter: blur(2px);
}
.page-shell {
  min-height: 100vh;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}
.page-shell.is-ready {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.page-shell.is-exiting {
  opacity: 0;
  transform: translateY(-6px);
  filter: blur(6px);
}

@media (max-width: 600px) {
  .page-shell {
    filter: blur(4px);
  }
  .page-shell.is-exiting {
    filter: blur(4px);
  }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.container { max-width: var(--max-w); margin: 0 auto; width: 100%; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

h1 { font-size: clamp(2rem, 6vw, 3.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

h1, h2 { text-wrap: balance; }

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

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: inline-block;
  opacity: 0.9;
}

.section-desc {
  color: var(--text-secondary);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  max-width: 540px;
  margin: 1rem auto 0;
  line-height: 1.7;
  text-wrap: pretty;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  line-height: 1;
}

.js-transition:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 142, 247, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 142, 247, 0.45);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #0a1225;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 180, 41, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glow);
}
.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.btn-ghost {
  background: rgba(79, 142, 247, 0.08);
  color: var(--accent-bright);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { background: rgba(79, 142, 247, 0.15); }

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

/* ===== LOGOS ===== */
.fibonex-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  isolation: isolate;
}
.fibonex-logo-link::before,
.footer-brand::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 50%;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.24) 0%, rgba(240, 180, 41, 0.12) 45%, rgba(240, 180, 41, 0) 74%);
  transform: translate(-50%, -50%) scale(0.94);
  filter: blur(9px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.fibonex-logo-link > *,
.footer-brand > * {
  position: relative;
  z-index: 1;
}
.fibonex-logo-img {
  height: 34px;
  width: auto;
  max-width: 140px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
  transition: transform var(--transition), filter var(--transition);
  will-change: transform, filter;
}
.fibonex-logo-block {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
}
.fibonex-logo-block .fibonex-logo-img {
  height: clamp(60px, 10vw, 96px);
  max-width: min(240px, 75%);
}

@media (prefers-reduced-motion: no-preference) {
  .fibonex-logo-link::before,
  .footer-brand::before {
    animation: logoBreath 5.8s ease-in-out infinite;
  }
}

.fibonex-logo-link:hover .fibonexLogo,
.footer-brand:hover .fibonexLogo {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 10px rgba(240, 180, 41, 0.14));
}

@keyframes logoBreath {
  0% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.34;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.62;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.34;
  }
}
.okx-logo-img {
  height: 28px;
  width: auto;
  max-width: 110px;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}
.okx-logo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.okx-logo-cta:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem clamp(1rem, 5vw, 2rem);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(7, 13, 26, 0.34), rgba(7, 13, 26, 0));
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    background var(--transition),
    backdrop-filter var(--transition),
    -webkit-backdrop-filter var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    padding var(--transition);
  will-change: backdrop-filter, box-shadow;
}

.nav.scrolled {
  background: rgba(7, 13, 26, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 16px 40px rgba(3, 8, 20, 0.24);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: clamp(0.9rem, 2.5vw, 2.5rem);
  min-height: calc(var(--nav-height) - 1.5rem);
}

.nav-inner > * { min-width: 0; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  flex-wrap: wrap;
}

.nav-links a {
  font-size: clamp(0.82rem, 1.1vw, 0.9rem);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  display: flex;
  gap: clamp(0.5rem, 1.3vw, 0.9rem);
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: clamp(0.6rem, 1.2vw, 0.85rem) clamp(1rem, 2vw, 1.6rem);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
}

@media (max-width: 1180px) {
  .nav-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.65rem;
  }
  .nav-logo { grid-column: 1 / 2; }
  .nav-cta { grid-column: 2 / 3; justify-self: end; }
  .nav-links {
    grid-column: 1 / -1;
    justify-self: center;
    gap: 0.9rem 1.2rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }

@media (max-width: 1024px) {
  .nav {
    padding-block: 0.6rem;
  }
  .nav-inner {
    min-height: calc(var(--nav-height) - 1.2rem);
  }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: calc(var(--nav-height) + 1rem) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition), background var(--transition), border-color var(--transition);
    width: min(100%, 24rem);
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(79, 142, 247, 0.12);
    background: rgba(255, 255, 255, 0.03);
  }
  .mobile-menu a:hover {
    color: var(--text-primary);
    background: rgba(79, 142, 247, 0.12);
    border-color: rgba(79, 142, 247, 0.26);
  }
  .mobile-menu .btn {
    margin-top: 0.25rem;
  }
  .mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  padding: 9rem clamp(1rem, 5vw, 2rem) 4.5rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

@media (max-width: 1180px) {
  .hero { padding-top: 8.5rem; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 142, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 247, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 247, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; text-align: center; }

.hero h1 {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-okx {
  animation: fadeUp 0.8s ease 0.4s both;
  text-align: center;
}

.hero-okx p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.okx-logo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  transition: all var(--transition);
  cursor: pointer;
  min-height: 44px;
}
.okx-logo-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.okx-logo-btn .okx-logo-img { height: 28px; width: auto; }
.okx-logo-btn span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-video-wrap {
  margin: 3rem auto 0;
  width: min(100%, 780px);
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-video-container {
  margin-top: 0;
  border-radius: 20px;
  border: 1px solid rgba(79, 142, 247, 0.1);
  box-shadow: 0 20px 60px rgba(5, 10, 20, 0.35);
}

/* ===== TEASE SECTIONS ===== */
.tease-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}
.tease-section .section-desc {
  margin-top: 0.75rem;
}
.tease-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 7.5rem clamp(1rem, 5vw, 2rem) 4rem;
  background: radial-gradient(circle at top, rgba(79, 142, 247, 0.08), transparent 65%), var(--bg-primary);
  text-align: center;
}
.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.page-hero-sub {
  color: var(--text-secondary);
  max-width: 640px;
}
.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero-support-note {
  margin: 0.15rem auto 0;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.snipers-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem 1.35rem;
  min-width: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(16, 22, 35, 0.96) 0%, rgba(11, 16, 27, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(5, 10, 20, 0.28);
}

.snipers-hero-badge-item {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.22rem;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}

.snipers-hero-badge-item,
.snipers-hero-badge-item strong,
.snipers-hero-badge-item span {
  font-size: 0.96rem;
}

.snipers-hero-badge-item strong {
  font-weight: 700;
  color: #f3f5f8;
  letter-spacing: -0.02em;
}

.snipers-hero-badge-item span {
  font-weight: 500;
  color: #c4cad6;
}

.snipers-hero-badge-dot {
  color: rgba(240, 180, 41, 0.9);
  font-size: 0.95rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .snipers-hero-badge {
    border-radius: 20px;
    padding: 0.9rem 1.05rem;
    gap: 0.42rem;
  }

  .snipers-hero-badge-item,
  .snipers-hero-badge-item strong,
  .snipers-hero-badge-item span {
    font-size: 0.88rem;
  }

  .snipers-hero-badge-dot {
    font-size: 0.82rem;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 7rem 1rem 3.25rem;
  }
}

@media (max-width: 768px) {
  .hero-video-wrap {
    margin-top: 2.5rem;
  }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 1.75rem clamp(1rem, 5vw, 2rem);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item .icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.2), rgba(15, 29, 53, 0.9));
  border: 1px solid rgba(79, 142, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 rgba(79, 142, 247, 0);
  padding: 4px;
}
.trust-item .icon svg {
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .trust-item .icon {
    animation: trustIconFloat 4.8s ease-in-out infinite;
  }
  .trust-item:nth-child(2) .icon { animation-delay: 0.7s; }
  .trust-item:nth-child(3) .icon { animation-delay: 1.4s; }
  .trust-item:nth-child(4) .icon { animation-delay: 2.1s; }
}

.trust-item:hover .icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 0 0 6px rgba(79, 142, 247, 0.08), 0 10px 22px rgba(79, 142, 247, 0.16);
  border-color: rgba(107, 161, 255, 0.42);
  color: var(--accent-bright);
}

@keyframes trustIconFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(79, 142, 247, 0);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 5px rgba(79, 142, 247, 0.07), 0 8px 18px rgba(79, 142, 247, 0.12);
  }
}

/* ===== ANIMATED ICONS ===== */
.anim-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anim-icon svg {
  width: 100%;
  height: 100%;
}

/* Glow pulse for icon containers */
@keyframes iconGlow {
  0%, 100% { filter: drop-shadow(0 0 2px currentColor); }
  50% { filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 16px currentColor); }
}

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

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

@keyframes dotOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%, 100% { r: 1.5; opacity: 0.6; }
  50% { r: 2.2; opacity: 1; }
}

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

@keyframes lineTrace {
  0% { stroke-dashoffset: 40; }
  100% { stroke-dashoffset: 0; }
}

@keyframes shieldPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-2px) translateX(1px); }
  75% { transform: translateY(1px) translateX(-1px); }
}

@keyframes crosshairPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes particleDrift {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-4px) scale(1.2); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .anim-icon svg * {
    animation: none !important;
  }
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}

.problem-section h2 { margin-bottom: 0.5rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pain-card:hover {
  border-color: rgba(248, 113, 113, 0.3);
  background: var(--bg-card-hover);
}

.pain-card .pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red-soft);
  margin-bottom: 0;
  flex-shrink: 0;
  padding: 6px;
}
.pain-card .pain-icon svg {
  width: 100%;
  height: 100%;
}

.pain-card .pain-text {
  flex: 1;
  min-width: 0;
}

.pain-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--red-soft);
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.solution-step {
  display: flex;
  gap: 1.25rem;
  text-align: left;
  padding: 1.5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .trust-items { gap: 1rem 1.5rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .course-card { padding: 1.4rem 1.2rem; }
  .solution-step { gap: 1rem; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
}

.solution-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 3.5rem;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.step-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: var(--accent-bright);
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}
.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== FREE COURSES ===== */
.courses-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}

.courses-intro {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}
.course-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto;
  max-width: 820px;
}
.course-pill {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 29, 53, 0.7);
  color: var(--text-secondary);
  font-weight: 600;
}

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

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.course-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 142, 247, 0.08);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.course-card:hover::before { opacity: 1; }

.course-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(79, 142, 247, 0.2), rgba(15, 29, 53, 0.9));
  border: 1px solid rgba(79, 142, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.course-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.course-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.badge-free {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ===== FIBONEX PRO+ ===== */
.proplus-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.proplus-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.proplus-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 2;
}

.proplus-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(240, 180, 41, 0.05);
  border: 1px solid rgba(240, 180, 41, 0.1);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}

.benefit-item .check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.proplus-unlock {
  margin-top: 1.5rem;
  text-align: center;
}

.proplus-unlock p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.okx-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, 345px);
  background:
    linear-gradient(180deg, rgba(17, 24, 38, 0.98) 0%, rgba(9, 15, 27, 0.98) 100%);
  border: 2px solid rgba(176, 135, 28, 0.85);
  border-radius: 22px;
  padding: 1.3rem 1.5rem;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.okx-cta-big:hover {
  background:
    linear-gradient(180deg, rgba(20, 29, 45, 0.98) 0%, rgba(12, 18, 31, 0.98) 100%);
  border-color: rgba(240, 180, 41, 0.95);
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(240, 180, 41, 0.08);
}

.okx-cta-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  flex-shrink: 0;
}

.okx-cta-big .okx-logo-img {
  height: 34px;
  width: auto;
  max-width: 96px;
  filter: none;
}

.okx-cta-big .cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}
.okx-cta-big .cta-text strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.15;
  color: #f0b429;
  letter-spacing: 0.01em;
}
.okx-cta-big .cta-text span {
  font-size: 0.84rem;
  line-height: 1.2;
  color: #67748f;
}

@media (max-width: 520px) {
  .okx-cta-big {
    width: 100%;
    padding: 1.1rem 1.1rem;
    gap: 0.9rem;
  }

  .okx-cta-logo-wrap {
    min-width: 82px;
  }

  .okx-cta-big .okx-logo-img {
    height: 30px;
    max-width: 82px;
  }

  .okx-cta-big .cta-text strong {
    font-size: 0.92rem;
  }

  .okx-cta-big .cta-text span {
    font-size: 0.79rem;
  }
}

/* ===== WORKSHOP ===== */
.workshop-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}

.workshop-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 700px;
  margin: 2rem auto 0;
  position: relative;
  overflow: hidden;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(240, 180, 41, 0.12);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(240, 180, 41, 0.2);
  margin-bottom: 1rem;
}

.workshop-card h3 { margin-bottom: 0.5rem; }

.workshop-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.workshop-card-list {
  list-style: none;
  margin: -0.25rem 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  text-align: left;
}

.workshop-card-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.workshop-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.12);
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.waitlist-form input[type="email"] {
  min-width: min(280px, 100%);
  flex: 1 1 240px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-glow);
  background: rgba(7, 13, 26, 0.6);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}
.waitlist-form input[type="email"]::placeholder { color: var(--text-muted); }
.waitlist-form input[type="email"]:focus-visible {
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(79, 142, 247, 0.2);
}
.waitlist-form .btn { margin: 0; }

.waitlist-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.workshop-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.workshop-inline-link {
  color: var(--accent-bright);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ===== VIDEO ===== */
.video-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: 0 24px 80px rgba(7, 13, 26, 0.6);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: linear-gradient(135deg, #0f1d35, #142544);
}
.video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(79, 142, 247, 0.22), transparent 45%),
              radial-gradient(circle at 30% 80%, rgba(240, 180, 41, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.video-frame-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.5rem;
}

.video-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(79, 142, 247, 0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
  padding: 0;
  appearance: none;
  box-shadow: 0 0 0 8px rgba(79, 142, 247, 0.08);
}
.video-play:hover {
  background: rgba(79, 142, 247, 0.25);
  transform: scale(1.1);
}
.video-play::after {
  content: '';
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(79, 142, 247, 0.35);
  animation: pulseRing 2.2s ease infinite;
}
.video-play svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-bright);
  margin-left: 3px;
}

.video-frame-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.video-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(7, 13, 26, 0.8);
  border: 1px solid rgba(79, 142, 247, 0.3);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.video-badge span {
  color: var(--accent-bright);
  font-weight: 700;
}

.video-fomo {
  position: absolute;
  bottom: 1.4rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.video-chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 13, 26, 0.7);
  color: var(--text-secondary);
  font-size: 0.75rem;
}
.video-chip strong { color: var(--text-primary); font-weight: 600; }

@media (max-width: 768px) {
  .video-container {
    margin-top: 1.5rem;
    box-shadow: 0 12px 40px rgba(7, 13, 26, 0.5);
  }
  .video-frame-inner {
    padding: 1rem;
    gap: 0.65rem;
  }
  .video-play {
    width: 56px;
    height: 56px;
    box-shadow: 0 0 0 6px rgba(79, 142, 247, 0.08);
  }
  .video-play::after {
    width: 74px;
    height: 74px;
  }
  .video-badge {
    top: 0.85rem;
    left: 0.85rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
  }
  .video-fomo {
    display: none;
  }
}

@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.65; }
  70% { transform: scale(1.15); opacity: 0.15; }
  100% { transform: scale(1.2); opacity: 0; }
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame.loaded::after {
  display: none;
}

.hero-video-container.is-floating-reserved {
  min-height: clamp(220px, 48vw, 450px);
}

.video-frame.is-floating {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1200;
  width: min(360px, calc(100vw - 2rem));
  height: min(202px, calc((100vw - 2rem) * 0.5625));
  padding-bottom: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(107, 161, 255, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.video-frame.is-floating iframe {
  position: absolute;
}

.video-float-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 13, 26, 0.82);
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.62rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.video-float-close:hover,
.video-float-close:focus-visible {
  border-color: rgba(107, 161, 255, 0.42);
  background: rgba(15, 29, 53, 0.92);
}

/* ===== PROOF / ROADMAP ===== */
.proof-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.roadmap-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding: 1.25rem 0;
}

.roadmap-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 3.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--border-subtle) 100%);
}

.roadmap-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-bright);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.roadmap-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: var(--accent-bright);
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.roadmap-icon svg {
  width: 100%;
  height: 100%;
}

.roadmap-content { text-align: left; }
.roadmap-content h4 { margin-bottom: 0.25rem; font-size: 1.05rem; }
.roadmap-content p { color: var(--text-secondary); font-size: 0.9rem; }

.testimonial-placeholder {
  margin-top: 2.5rem;
  padding: 2rem;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-placeholder p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== WHY DIFFERENT ===== */
.different-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
}

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

.compare-col {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
}

.compare-col.bad {
  background: rgba(248, 113, 113, 0.05);
  border: 1px solid rgba(248, 113, 113, 0.12);
}

.compare-col.good {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.compare-col h4 {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-col.bad h4 { color: var(--red-soft); }
.compare-col.good h4 { color: var(--green); }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.compare-item .mark { flex-shrink: 0; font-weight: 700; }
.compare-col.bad .mark { color: var(--red-soft); }
.compare-col.good .mark { color: var(--green); }

/* ===== FAQ ===== */
.faq-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-glow); }

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 1.15rem 1.25rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }

.faq-arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  color: var(--text-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.15rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(79, 142, 247, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .container { position: relative; z-index: 2; }

.final-cta h2 { margin-bottom: 1rem; }

.final-cta .section-desc { margin-bottom: 2.5rem; }

.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ===== PROOF OF EXPERIENCE ===== */
.proof-experience-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}
.proof-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CAPSULE CAROUSEL ===== */
.capsule-carousel {
  margin: 2.5rem auto 0;
  max-width: 780px;
  position: relative;
  border-radius: 24px;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(15, 29, 53, 0.92), rgba(9, 18, 36, 0.92));
  border: 1px solid rgba(79, 142, 247, 0.18);
  box-shadow: 0 24px 60px rgba(7, 13, 26, 0.55);
  overflow: hidden;
}
.capsule-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(79, 142, 247, 0.2), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.capsule-carousel::after {
  content: '';
  display: block;
  padding-top: 70%;
}
.capsule-slide {
  position: absolute;
  inset: 1.25rem;
  border-radius: 18px;
  opacity: 0;
  transform: translateY(8px) scale(1.02);
  transition: opacity 0.95s ease, transform 0.95s ease;
  background: rgba(7, 13, 26, 0.6);
  display: grid;
  place-items: center;
}
.capsule-slide img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(7, 13, 26, 0.9);
}
.capsule-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.capsule-slide.capsule-fallback::before {
  content: 'Workshop photo loading';
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.capsule-caption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(7, 13, 26, 0.7);
  border: 1px solid rgba(79, 142, 247, 0.25);
  color: var(--text-secondary);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.capsule-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  z-index: 2;
}
.capsule-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.capsule-dot.is-active {
  background: var(--accent-bright);
  transform: scale(1.2);
}
.proof-carousel {
  max-width: 620px;
}
.proof-carousel::after {
  padding-top: 152%;
}
.proof-carousel .capsule-slide {
  inset: 1.45rem;
}
.proof-carousel .capsule-slide img {
  object-fit: contain;
  box-sizing: border-box;
  padding: 0.35rem;
}

/* ===== CRYPTOSHUA SECTION ===== */
.cryptoshua-section {
  padding: var(--section-pad);
  background: var(--bg-secondary);
}
.cryptoshua-stack {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.cryptoshua-stack > * {
  min-width: 0;
}
.cryptoshua-content {
  color: var(--text-secondary);
  max-width: 700px;
  width: 100%;
  justify-self: center;
  align-self: center;
}
.cryptoshua-content h2 {
  margin: 0.6rem 0 1.25rem;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}
.cryptoshua-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.cryptoshua-tagline {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.cryptoshua-actions {
  margin-top: 1.75rem;
}
.cryptoshua-carousel {
  width: min(100%, 520px);
  max-width: 520px;
  margin: 0;
  justify-self: center;
  align-self: center;
}
.cryptoshua-carousel::after {
  padding-top: 128%;
}
.cryptoshua-carousel .capsule-slide {
  transition: opacity 0.95s ease, transform 0.95s ease;
  inset: 1.45rem;
}
.cryptoshua-carousel .capsule-slide img {
  object-fit: contain;
  box-sizing: border-box;
  padding: 0.35rem;
}
.cryptoshua-carousel .capsule-dots {
  display: none;
}
.cryptoshua-carousel .capsule-slide.capsule-fallback::before {
  content: 'Add Cryptoshua photos to /assets/workshop';
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ===== WORKSHOP CTA ===== */
.workshop-final-cta {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}

@media (min-width: 900px) {
  .cryptoshua-stack {
    grid-template-columns: minmax(360px, 520px) minmax(420px, 560px);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  .cryptoshua-content {
    padding-block: 1rem;
  }
  .cryptoshua-carousel::after {
    padding-top: 132%;
  }
}

@media (max-width: 640px) {
  .capsule-carousel {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .capsule-carousel::after {
    padding-top: 85%;
  }
  .capsule-slide {
    inset: 1rem;
    transform: translateY(4px) scale(1.01);
  }
  .capsule-caption {
    right: 0.9rem;
    bottom: 0.9rem;
  }
  .proof-carousel::after {
    padding-top: 152%;
  }
  .cryptoshua-carousel::after {
    padding-top: 122%;
  }
  .cryptoshua-carousel {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
  .cryptoshua-carousel .capsule-slide {
    inset: 0.95rem;
  }
  .cryptoshua-content {
    max-width: 100%;
  }
  .cryptoshua-content h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem clamp(1rem, 5vw, 2rem);
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  isolation: isolate;
}

.footer-brand .fibonex-logo-img {
  height: 28px;
  max-width: 110px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-credit {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0 auto 0.9rem;
  max-width: 520px;
}

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

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(7, 13, 26, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
}

.mobile-sticky-inner {
  display: flex;
  gap: 0.5rem;
}

.mobile-sticky .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .mobile-sticky { display: block; }
  .footer { padding-bottom: 5rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CHOOSE YOUR PATH ===== */
.choose-path {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.75rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

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

.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(79, 142, 247, 0.12);
}

.path-card-pioneer:hover {
  border-color: var(--accent);
}
.path-card-snipers:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(240, 180, 41, 0.12);
}

.path-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  align-self: flex-start;
}

.path-badge-gold {
  background: rgba(240, 180, 41, 0.12);
  color: var(--gold);
  border-color: rgba(240, 180, 41, 0.2);
}

.path-icon-block {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  margin: 0;
  padding: 10px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.path-card:hover .path-icon-block {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(79, 142, 247, 0.15);
}

.path-icon-gold {
  background: rgba(240, 180, 41, 0.12);
  border-color: rgba(240, 180, 41, 0.25);
  color: var(--gold);
}

.path-card:hover .path-icon-gold {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(240, 180, 41, 0.15);
}

.path-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.path-card-titles {
  flex: 1;
  min-width: 0;
}

.path-card h3 {
  font-size: 1.3rem;
  margin-top: 0;
}

.path-subtitle {
  color: var(--accent-bright);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.path-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.path-sessions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.5rem 0;
}

.path-sessions span {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 0.75rem;
  position: relative;
}

.path-sessions span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.path-card-snipers .path-sessions span::before {
  background: var(--gold);
}

.path-cta-text {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-bright);
}

.path-cta-gold {
  color: var(--gold);
}

/* ===== PIONEER STYLES ===== */
.pioneer-hero {
  background: radial-gradient(circle at top, rgba(16, 185, 129, 0.08), transparent 65%), var(--bg-primary);
}

.pioneer-curriculum {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}

.session-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 740px;
  margin: 2.5rem auto 0;
}

.session-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.session-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0.5;
  transition: opacity var(--transition);
}

.session-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.session-card:hover::before {
  opacity: 1;
}

.session-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.session-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent-bright);
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.session-num svg {
  width: 100%;
  height: 100%;
}

.session-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  flex: 1;
}

.session-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.session-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.session-topics {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
}

.session-topics li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.session-topics li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== SNIPERS STYLES ===== */
.snipers-hero {
  background: radial-gradient(circle at top, rgba(240, 180, 41, 0.08), transparent 65%), var(--bg-primary);
}

.snipers-curriculum {
  padding: var(--section-pad);
  background: var(--bg-secondary);
  text-align: center;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.day-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
  transition: all var(--transition);
}

.day-card:hover {
  border-color: rgba(240, 180, 41, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(240, 180, 41, 0.06);
}

.day-card-final {
  border-color: rgba(240, 180, 41, 0.2);
  background: linear-gradient(135deg, var(--bg-card), rgba(240, 180, 41, 0.04));
}

.day-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.day-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240, 180, 41, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(240, 180, 41, 0.2);
}
.day-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(240, 180, 41, 0.3));
}
.day-icon svg {
  width: 100%;
  height: 100%;
}

.day-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.day-topics {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
}

.day-topics li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
}

.day-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* ===== UNLOCK / OKX SUBMISSION ===== */
.unlock-section {
  padding: var(--section-pad);
  background: var(--bg-primary);
  text-align: center;
}

.unlock-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem auto 0;
  max-width: 700px;
}

.unlock-step {
  display: flex;
  gap: 1.25rem;
  text-align: left;
  padding: 1.5rem 0;
  position: relative;
}

.unlock-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 3.5rem;
  bottom: 0;
  width: 2px;
  background: rgba(240, 180, 41, 0.2);
}

.unlock-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a1225;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.unlock-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(240, 180, 41, 0.3));
}
.unlock-icon svg {
  width: 100%;
  height: 100%;
}

.unlock-content h4 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.unlock-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.okx-submit-card {
  max-width: 600px;
  margin: 2.5rem auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: left;
}

.okx-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.okx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .okx-form-grid { grid-template-columns: 1fr; }
}

.okx-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.okx-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.okx-field input {
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-glow);
  background: rgba(7, 13, 26, 0.6);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.okx-field input::placeholder {
  color: var(--text-muted);
}

.okx-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.15);
}

.okx-state-msg {
  text-align: center;
  padding: 1rem 0;
}

.okx-state-msg h3 {
  margin: 0.75rem 0 0.5rem;
}

.okx-state-msg p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-pending {
  background: rgba(240, 180, 41, 0.12);
  color: var(--gold);
  border: 1px solid rgba(240, 180, 41, 0.25);
}

.state-approved {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.state-denied {
  background: rgba(248, 113, 113, 0.12);
  color: var(--red-soft);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.state-detail {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== AUTH NAV STATE ===== */
.nav-user-only { display: none !important; }
body.is-logged-in .nav-user-only { display: inline-flex !important; }
body.is-logged-in .nav-guest-only { display: none !important; }

.nav-auth-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  transition: color var(--transition);
}
.nav-auth-link:hover { color: var(--text-primary); }

/* ===== AUTH PAGES ===== */
.auth-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 1rem 3rem;
  background: var(--gradient-hero);
}

.signup-shell {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.signup-intro {
  padding: clamp(0.5rem, 1vw, 1rem) 0;
  display: flex;
  flex-direction: column;
}

.signup-market-box {
  position: relative;
  margin-bottom: 0.9rem;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(79, 142, 247, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(240, 180, 41, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(7, 13, 26, 0.22)),
    rgba(7, 13, 26, 0.3);
  box-shadow: 0 24px 60px rgba(6, 13, 24, 0.18);
  opacity: 0.88;
}

.signup-market-track {
  position: relative;
  height: 260px;
}

.signup-market-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: signupMarketCycle 16s infinite;
  padding: 1.25rem 1.25rem 1rem;
  pointer-events: none;
}

.signup-market-slide:nth-child(2) {
  animation-delay: 4s;
}

.signup-market-slide:nth-child(3) {
  animation-delay: 8s;
}

.signup-market-slide:nth-child(4) {
  animation-delay: 12s;
}

.signup-market-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #82a4db;
  line-height: 1;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.signup-market-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
}

.signup-market-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.2rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(8, 17, 31, 0.4)),
    rgba(8, 17, 31, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.signup-market-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #87a8df;
}

.signup-market-stat strong {
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: block;
}

.signup-market-stat-now {
  border-color: rgba(79, 142, 247, 0.22);
  background:
    radial-gradient(circle at top right, rgba(79, 142, 247, 0.16), transparent 54%),
    linear-gradient(180deg, rgba(79, 142, 247, 0.08), rgba(8, 17, 31, 0.46)),
    rgba(8, 17, 31, 0.4);
}

.signup-market-base {
  flex-shrink: 0;
  padding-top: 0.75rem;
}

.signup-market-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 142, 247, 0.18);
  background: rgba(8, 17, 31, 0.46);
  color: #dbe7ff;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Chart slide */
.signup-market-slide-chart {
  flex-direction: column;
}

.signup-market-chart {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(79, 142, 247, 0.12);
  background:
    linear-gradient(180deg, rgba(79, 142, 247, 0.08), rgba(79, 142, 247, 0)),
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 20%
    ),
    radial-gradient(circle at 70% 24%, rgba(79, 142, 247, 0.12), transparent 44%);
}

.signup-market-chart span {
  position: absolute;
  bottom: 0;
  width: 18%;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, rgba(79, 142, 247, 0.15), rgba(79, 142, 247, 0.85));
  box-shadow: 0 12px 24px rgba(79, 142, 247, 0.18);
  transform-origin: bottom;
  animation: signupBarRise 2.8s ease-in-out infinite alternate;
}

.signup-market-chart span:nth-child(1) { left: 1%; height: 28%; animation-delay: 0.1s; }
.signup-market-chart span:nth-child(2) { left: 21%; height: 40%; animation-delay: 0.25s; }
.signup-market-chart span:nth-child(3) { left: 41%; height: 56%; animation-delay: 0.4s; }
.signup-market-chart span:nth-child(4) { left: 61%; height: 73%; animation-delay: 0.55s; }
.signup-market-chart span:nth-child(5) { left: 81%; height: 92%; animation-delay: 0.7s; }

.signup-trust-visual {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.signup-next-steps {
  margin-top: 1rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(79, 142, 247, 0.16);
  background:
    linear-gradient(180deg, rgba(18, 31, 54, 0.72), rgba(10, 18, 33, 0.9)),
    rgba(10, 18, 33, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.signup-next-steps h3 {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
}

.signup-next-steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.signup-next-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.signup-next-steps strong {
  color: var(--text-primary);
}

.signup-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(79, 142, 247, 0.16);
  border: 1px solid rgba(79, 142, 247, 0.25);
  color: var(--accent-bright);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.signup-symbol {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 30%, rgba(79, 142, 247, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(7, 13, 26, 0.18)),
    rgba(7, 13, 26, 0.3);
  position: relative;
  box-shadow: 0 10px 24px rgba(6, 13, 24, 0.18);
  animation: signupFloat 6.5s ease-in-out infinite;
}

.signup-symbol::before,
.signup-symbol::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.signup-symbol-fibonex img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 10px rgba(240, 180, 41, 0.22));
}

.signup-symbol-fibonex {
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 180, 41, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(7, 13, 26, 0.18)),
    rgba(7, 13, 26, 0.3);
}

.signup-symbol-pioneer {
  animation-delay: 0.7s;
}

.signup-symbol-pioneer::before {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.signup-symbol-pioneer::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.signup-symbol-sniper {
  animation-delay: 1.2s;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.52) calc(50% - 1px), rgba(255, 255, 255, 0.52) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(180deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.52) calc(50% - 1px), rgba(255, 255, 255, 0.52) calc(50% + 1px), transparent calc(50% + 1px)),
    radial-gradient(circle at 30% 30%, rgba(79, 142, 247, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(7, 13, 26, 0.18)),
    rgba(7, 13, 26, 0.3);
}

.signup-symbol-sniper::before {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.signup-symbol-sniper::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
}

.signup-symbol-sniper::before,
.signup-symbol-sniper::after {
  z-index: 1;
  pointer-events: none;
}

.signup-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.signup-trust-strip span {
  padding: 0.62rem 0.8rem;
  border-radius: 999px;
  background: rgba(79, 142, 247, 0.08);
  border: 1px solid rgba(79, 142, 247, 0.14);
  color: var(--text-secondary);
  font-size: 0.82rem;
  white-space: nowrap;
}

.login-shell {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(420px, 500px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.login-side {
  padding: clamp(0.5rem, 1vw, 1rem) 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 920px) {
  .login-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .login-side {
    order: 2;
    width: 100%;
    max-width: 480px;
  }
}

.auth-card {
  width: min(100%, 480px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  box-shadow: 0 30px 60px rgba(1, 5, 12, 0.28);
}

.auth-card-wide {
  width: min(100%, 560px);
}

.signup-card {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(19, 34, 61, 0.9), rgba(12, 21, 37, 0.96)),
    var(--bg-card);
}

.auth-card h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.signup-card-title {
  margin: 0.7rem 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.auth-card .auth-sub {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.auth-field input {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-glow);
  background: rgba(7, 13, 26, 0.6);
  color: var(--text-primary);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.auth-field input::placeholder { color: var(--text-muted); }
.auth-field input:focus {
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(79, 142, 247, 0.15);
}

.auth-type-selector {
  display: grid;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.auth-type-option {
  position: relative;
}

.auth-type-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.auth-type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--border-subtle);
  background: rgba(7, 13, 26, 0.4);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
}

.auth-type-label:hover {
  border-color: var(--border-glow);
}

.auth-type-option input:checked + .auth-type-label {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.auth-type-option:last-child input:checked + .auth-type-label {
  border-color: var(--gold);
  background: rgba(240, 180, 41, 0.08);
}

.auth-type-label strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.auth-type-label span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.auth-feedback {
  min-height: 1.2rem;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.auth-error { color: var(--red-soft); }
.auth-success { color: var(--green); }

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
}

.auth-links a {
  color: var(--accent-bright);
  transition: color var(--transition);
}
.auth-links a:hover { color: var(--text-primary); }

.auth-type-label-text {
  display: block;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.auth-type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.auth-track-group {
  margin: 0.25rem 0 0;
  padding: 0;
  border: 0;
}

.auth-track-legend {
  margin-bottom: 0.35rem;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.auth-track-sub {
  margin: 0 0 0.9rem;
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.65;
}

.auth-track-options {
  align-items: stretch;
}

.auth-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  min-height: 142px;
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius);
  border: 2px solid var(--border-subtle);
  background: rgba(7, 13, 26, 0.4);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.auth-type-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.auth-type-option input:checked + .auth-type-card {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(79, 142, 247, 0.18), rgba(79, 142, 247, 0.06));
  box-shadow: 0 14px 30px rgba(79, 142, 247, 0.16);
}

.auth-type-option:last-child input:checked + .auth-type-card-gold {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(240, 180, 41, 0.16), rgba(240, 180, 41, 0.04));
  box-shadow: 0 14px 30px rgba(240, 180, 41, 0.12);
}

.auth-type-card strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text-primary);
}

.auth-type-card span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.signup-submit {
  width: 100%;
  margin-top: 0.35rem;
  justify-content: center;
}

.signup-microcopy {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  font-size: 0.77rem;
  line-height: 1.55;
}

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

@keyframes signupMarketCycle {
  0%, 4% {
    opacity: 0;
    transform: translateY(14px);
  }
  7%, 22% {
    opacity: 1;
    transform: translateY(0);
  }
  25%, 100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes signupBarRise {
  0% { transform: scaleY(0.92); }
  100% { transform: scaleY(1.04); }
}

.auth-switch {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: center;
}

.auth-switch a {
  color: var(--accent-bright);
  transition: color var(--transition);
}

.auth-switch a:hover { color: var(--text-primary); }

.auth-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.auth-verification-note {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(79, 142, 247, 0.22);
  background: linear-gradient(180deg, rgba(79, 142, 247, 0.12), rgba(7, 13, 26, 0.72));
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
}

.auth-verification-note strong {
  color: var(--text-primary);
}

.auth-verification-success {
  border-color: rgba(16, 185, 129, 0.24);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(7, 13, 26, 0.72));
  color: var(--text-primary);
}

@media (max-width: 920px) {
  .signup-shell {
    grid-template-columns: 1fr;
  }

  .signup-intro {
    order: 2;
  }

  .signup-card {
    order: 1;
  }

  .signup-market-track {
    height: 240px;
  }

  .signup-market-slide {
    padding: 1.1rem;
  }

  .signup-market-chart {
    min-height: 170px;
  }
}

@media (max-width: 600px) {
  .auth-type-options { grid-template-columns: 1fr; }

  .hero-support-note {
    font-size: 0.79rem;
  }

  .signup-trust-strip span {
    white-space: normal;
  }

  .signup-trust-visual {
    margin-bottom: 0.9rem;
  }

  .signup-market-track {
    height: 220px;
  }

  .signup-market-slide {
    padding: 1rem;
  }

  .signup-market-stat strong {
    font-size: 1.85rem;
  }

  .signup-market-chip {
    padding: 0.5rem 0.8rem;
    font-size: 0.74rem;
  }

  .signup-market-chart {
    min-height: 130px;
  }
}

/* ============================================================
   SOLO LEVELING DASHBOARD
   ============================================================ */

.sl-dashboard {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 2rem) clamp(1rem, 5vw, 2rem) 3rem;
  background: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(79, 142, 247, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(240, 180, 41, 0.04) 0%, transparent 60%);
}

.sl-container {
  max-width: 780px;
}

/* Loading */
.sl-loading {
  text-align: center;
  padding: 6rem 1rem;
  color: var(--text-muted);
}
.sl-loading p {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sl-loading-ring {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(79, 142, 247, 0.15);
  border-top-color: var(--accent-bright);
  border-radius: 50%;
  margin: 0 auto;
  animation: slSpin 0.8s linear infinite;
}
@keyframes slSpin {
  to { transform: rotate(360deg); }
}

/* ===== PROFILE HEADER ===== */
.sl-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.sl-rank-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--rank-color, var(--accent));
  box-shadow: 0 0 20px var(--rank-glow, rgba(79,142,247,0.3)), inset 0 0 12px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  color: var(--rank-color, var(--accent));
  padding: 10px;
}

.sl-rank-badge svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px var(--rank-glow, rgba(79,142,247,0.4)));
}

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

.sl-profile-top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sl-name {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.sl-rank-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sl-track-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.sl-message {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 0.35rem;
  font-style: italic;
}

/* ===== XP BAR ===== */
.sl-xp-bar {
  margin-bottom: 2.5rem;
}

.sl-xp-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sl-xp-info strong {
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.sl-xp-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sl-xp-track {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(79, 142, 247, 0.08);
  overflow: hidden;
  border: 1px solid rgba(79, 142, 247, 0.1);
}

.sl-xp-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 8px rgba(79, 142, 247, 0.4);
}

.sl-xp-gold {
  background: linear-gradient(90deg, #c4930a, #f0b429, #ffd466);
  box-shadow: 0 0 8px rgba(240, 180, 41, 0.4);
}

.sl-xp-pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text-secondary);
  min-width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* ===== QUEST BOARD ===== */
.sl-section-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sl-quest-board {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sl-onboarding-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(79, 142, 247, 0.06);
  border: 1px solid rgba(79, 142, 247, 0.12);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.sl-onboarding-hint svg {
  flex-shrink: 0;
  color: var(--accent-bright);
}

.sl-quest-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sl-quest-card:last-child {
  border-bottom: none;
}

/* Left icon column */
.sl-quest-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
}

.sl-quest-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sl-quest-icon svg {
  width: 18px;
  height: 18px;
}

.sl-quest-icon.sl-active {
  background: rgba(79, 142, 247, 0.15);
  border: 2px solid var(--accent);
  color: var(--accent-bright);
  box-shadow: 0 0 12px rgba(79, 142, 247, 0.25);
}

.sl-quest-icon.sl-done {
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--green);
  color: var(--green);
}

.sl-quest-icon.sl-locked {
  background: rgba(90, 111, 138, 0.1);
  border: 2px solid rgba(90, 111, 138, 0.25);
  color: var(--text-muted);
}

/* Quest body */
.sl-quest-body {
  flex: 1;
  min-width: 0;
}

.sl-quest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.sl-quest-title-group {
  flex: 1;
  min-width: 0;
}

.sl-quest-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.sl-active .sl-quest-num { color: var(--accent-bright); }

.sl-quest-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.sl-quest-status {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  flex-shrink: 0;
}

.sl-quest-status.sl-active {
  background: rgba(79, 142, 247, 0.12);
  color: var(--accent-bright);
  border: 1px solid rgba(79, 142, 247, 0.2);
}

.sl-quest-status.sl-done {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.sl-quest-status.sl-locked {
  background: rgba(90, 111, 138, 0.08);
  color: var(--text-muted);
  border: 1px solid rgba(90, 111, 138, 0.15);
}

.sl-quest-body > p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.sl-locked .sl-quest-header h3 { opacity: 0.5; }
.sl-locked .sl-quest-body > p { opacity: 0.4; }

/* Countdown */
.sl-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  background: rgba(240, 180, 41, 0.06);
  border: 1px solid rgba(240, 180, 41, 0.15);
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.sl-countdown svg {
  flex-shrink: 0;
  color: var(--gold);
}

.sl-countdown-timer {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Quest assignment */
.sl-quest-assignment {
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(79, 142, 247, 0.04);
  border: 1px solid rgba(79, 142, 247, 0.1);
}

.sl-quest-q {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.sl-quest-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sl-quest-opt {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(79, 142, 247, 0.15);
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.sl-quest-opt:hover {
  background: rgba(79, 142, 247, 0.1);
  border-color: var(--accent);
  color: var(--text-primary);
  transform: translateX(4px);
}

/* Instruction text above quest */
.sl-quest-instruction {
  font-size: 0.82rem;
  color: var(--accent-bright);
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

/* Answered state */
.sl-quest-answered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.sl-quest-answered svg { flex-shrink: 0; }
.sl-quest-answered strong { color: var(--text-primary); }

/* Review toggle */
.sl-review-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.25rem 0;
  margin-top: 0.25rem;
  font-family: var(--font-body);
  transition: color 0.2s ease;
}

.sl-review-toggle:hover { color: var(--accent-bright); }

.sl-review-toggle svg {
  transition: transform 0.2s ease;
}

.sl-review-toggle.is-open svg {
  transform: rotate(180deg);
}

.sl-review-panel {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sl-review-panel p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.sl-complete-btn {
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  display: inline-flex;
  align-items: center;
}

/* Active quest card glow */
.sl-quest-card.sl-active {
  background: rgba(79, 142, 247, 0.03);
  border: 1px solid rgba(79, 142, 247, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  margin: 0.25rem -1rem;
}

/* Completed quest card — green indicator */
.sl-quest-card.sl-done {
  background: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  margin: 0.25rem -1rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.12);
}

.sl-done .sl-quest-num { color: var(--green); }
.sl-done .sl-quest-header h3 { color: var(--green); }

/* ===== REWARD / COMPLETION CARD ===== */
.sl-reward-card {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid rgba(79, 142, 247, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sl-reward-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rank-glow, rgba(79,142,247,0.15)) 0%, transparent 70%);
  pointer-events: none;
}

.sl-reward-content {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem);
}

.sl-reward-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--gold);
  animation: slFloat 3s ease-in-out infinite;
}

.sl-reward-icon svg {
  width: 100%;
  height: 100%;
}

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

.sl-reward-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 0.75rem;
}

.sl-reward-content > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.sl-reward-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--rank-color, var(--accent));
  box-shadow: 0 0 24px var(--rank-glow, rgba(79,142,247,0.3));
  margin-bottom: 2rem;
}

.sl-reward-rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--rank-color, var(--accent));
  text-shadow: 0 0 12px var(--rank-glow, rgba(79,142,247,0.5));
}

.sl-reward-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Discord reveal */
.sl-discord-reveal {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(88, 101, 242, 0.06);
  border: 1px solid rgba(88, 101, 242, 0.2);
}

.sl-discord-reveal h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #7289da;
}

.sl-discord-reveal p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.sl-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sl-discord-btn svg {
  width: 20px;
  height: 20px;
}

.sl-next-track {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sl-next-track h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sl-next-track > p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.sl-okx-register-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 180, 41, 0.2);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}

.sl-okx-register-link:hover {
  background: rgba(240, 180, 41, 0.08);
  border-color: rgba(240, 180, 41, 0.35);
}

.sl-okx-register-link small {
  font-weight: 400;
  opacity: 0.7;
}

.sl-upgrade-form {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.sl-upgrade-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.sl-upgrade-row {
  display: flex;
  gap: 0.5rem;
}

.sl-upgrade-row input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.sl-upgrade-row input:focus {
  border-color: var(--gold);
}

.sl-upgrade-row .btn {
  flex-shrink: 0;
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
}

.sl-upgrade-feedback {
  font-size: 0.82rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

.sl-upgrade-error { color: var(--red, #f87171); }
.sl-upgrade-success { color: var(--green, #10b981); }

.sl-final-quote {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold) !important;
  text-shadow: 0 0 16px rgba(240, 180, 41, 0.3);
}

/* Status cards (pending/denied/no-okx) */
.sl-status-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sl-status-pending { border-color: rgba(240, 180, 41, 0.2); }
.sl-status-denied { border-color: rgba(248, 113, 113, 0.2); }

.sl-status-card h2 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.4rem;
}

.sl-status-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.dash-uid-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  margin-top: 1rem;
  font-size: 0.92rem;
}

.dash-uid-display span { color: var(--text-muted); }
.dash-uid-display strong { color: var(--gold); font-family: var(--font-display); }

/* Mobile responsiveness */
@media (max-width: 500px) {
  .sl-profile { gap: 1rem; }
  .sl-rank-badge { width: 48px; height: 48px; padding: 8px; }
  .sl-quest-header { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .sl-reward-badge { padding: 0.75rem 1.5rem; }
}

/* ===== SESSION VIEW ===== */
.sl-session-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0.4rem 0;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.sl-session-back:hover { color: var(--accent-bright); }

.sl-session-header {
  margin-bottom: 2rem;
}

.sl-session-header .sl-quest-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.sl-session-header h1 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.sl-session-header p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Video player */
.sl-session-player {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

.sl-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

.sl-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Timer bar below video */
.sl-session-timer-bar {
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.sl-timer-display {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 160px;
}

.sl-timer-icon {
  color: var(--accent-bright);
  flex-shrink: 0;
}

.sl-timer-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sl-timer-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sl-timer-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.sl-timer-progress {
  flex: 2;
  min-width: 120px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sl-timer-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent-bright, #4f8ef7);
  transition: width 1s linear;
}

.sl-timer-fill.sl-timer-gold {
  background: linear-gradient(90deg, #f0b429, #ffd466);
}

.sl-timer-actions {
  display: flex;
  gap: 0.5rem;
}

.sl-timer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-family: var(--font-body);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sl-timer-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

/* No video placeholder */
.sl-no-video { border: 1px dashed rgba(255, 255, 255, 0.1); }

.sl-video-error {
  border-style: dashed;
  border-color: rgba(253, 164, 175, 0.22);
  background: rgba(15, 23, 42, 0.86);
}

.sl-video-error .sl-no-video-box {
  color: #fda4af;
}

.sl-video-error .sl-no-video-box h3 {
  color: #fecdd3;
}

.sl-no-video-box {
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  text-align: center;
  color: var(--text-muted);
}

.sl-no-video-box svg {
  margin-bottom: 1rem;
  opacity: 0.4;
}

.sl-no-video-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.sl-no-video-box p {
  font-size: 0.88rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Quest area in session view */
.sl-session-quest {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  transition: opacity 0.3s ease;
}

.sl-session-quest.sl-quest-gated {
  opacity: 0.6;
}

.sl-quest-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-muted);
}

.sl-quest-gate svg {
  opacity: 0.5;
}

.sl-quest-gate p {
  font-size: 0.88rem;
}

.sl-session-quest-inner .sl-quest-instruction {
  margin-bottom: 1rem;
}

/* Start Session button on dashboard */
.sl-start-session-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  padding: 0.7rem 1.6rem;
  margin-top: 0.5rem;
}

.sl-start-session-btn svg { flex-shrink: 0; }

/* Watch progress indicator on dashboard */
.sl-watch-progress {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0.25rem;
}

.sl-watch-progress svg { flex-shrink: 0; opacity: 0.7; }

input.is-invalid {
  border-color: rgba(248, 113, 113, 0.9) !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.auth-state-card {
  margin-top: 1.1rem;
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(107, 161, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(79, 142, 247, 0.12), rgba(79, 142, 247, 0.04)),
    rgba(10, 18, 37, 0.82);
  box-shadow: 0 18px 40px rgba(4, 10, 23, 0.28);
}

.auth-state-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(107, 161, 255, 0.14);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-state-card h3 {
  margin-top: 0.95rem;
  margin-bottom: 0.4rem;
}

.auth-state-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.auth-status-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
}

.auth-status-chip-track {
  color: var(--gold);
  border-color: rgba(240, 180, 41, 0.18);
  background: rgba(240, 180, 41, 0.08);
}

.auth-state-copy {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.auth-state-note {
  margin-top: 0.75rem;
  color: #ffd38b;
}

.auth-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hub-shell {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(107, 161, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(107, 161, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(10, 18, 37, 0.92), rgba(10, 18, 37, 0.78));
  box-shadow: 0 18px 40px rgba(4, 10, 23, 0.28);
}

.hub-hero-blocked {
  border-color: rgba(240, 180, 41, 0.16);
  background:
    radial-gradient(circle at top right, rgba(240, 180, 41, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(10, 18, 37, 0.92), rgba(10, 18, 37, 0.78));
}

.hub-copy h2 {
  font-size: clamp(1.45rem, 3.4vw, 2.25rem);
  margin-bottom: 0.55rem;
}

.hub-copy p {
  color: var(--text-secondary);
  max-width: 64ch;
}

.hub-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.hub-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hub-pill,
.hub-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.hub-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hub-card {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(107, 161, 255, 0.12);
  background: rgba(11, 21, 38, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hub-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

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

.hub-card-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hub-meta-row,
.hub-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.hub-progress {
  margin-top: 0.85rem;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.hub-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f8ef7, #6ba1ff);
}

.hub-quiet-log {
  border-radius: 18px;
  border: 1px solid rgba(107, 161, 255, 0.1);
  background: rgba(7, 13, 26, 0.46);
}

.hub-quiet-log summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  color: var(--text-secondary);
  font-weight: 700;
}

.hub-quiet-log-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.hub-quiet-log-grid span {
  overflow-wrap: anywhere;
}

.hub-materials-log {
  border-color: rgba(240, 180, 41, 0.13);
  background:
    linear-gradient(180deg, rgba(12, 23, 43, 0.82), rgba(7, 13, 26, 0.56));
}

.hub-material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0 1rem 1rem;
}

.hub-material-card {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(107, 161, 255, 0.12);
  background:
    radial-gradient(circle at top, rgba(107, 161, 255, 0.1), transparent 54%),
    rgba(9, 18, 34, 0.82);
  color: var(--text-primary);
  text-align: center;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hub-material-card:hover,
.hub-material-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 180, 41, 0.3);
  background:
    radial-gradient(circle at top, rgba(240, 180, 41, 0.12), transparent 58%),
    rgba(12, 25, 47, 0.94);
}

.hub-material-card:focus-visible {
  outline: 3px solid rgba(240, 180, 41, 0.32);
  outline-offset: 3px;
}

.hub-material-icon {
  position: relative;
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.hub-material-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-material-fibonex-mark {
  background: rgba(240, 180, 41, 0.08);
}

.hub-material-fibonex-mark img {
  object-fit: contain;
  padding: 0.28rem;
}

.hub-material-title {
  display: block;
  max-width: 16ch;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.hub-material-journal-mark {
  overflow: visible;
  border: 1px solid rgba(240, 180, 41, 0.18);
  background:
    linear-gradient(135deg, rgba(240, 180, 41, 0.2), rgba(79, 142, 247, 0.08)),
    rgba(10, 18, 37, 0.9);
}

.hub-material-journal-mark::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 46px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, transparent 12px, rgba(255, 255, 255, 0.08) 13px, transparent 14px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.hub-material-journal-mark span {
  position: relative;
  z-index: 1;
  width: 5px;
  border-radius: 999px;
  background: #f0b429;
  box-shadow: 0 0 14px rgba(240, 180, 41, 0.34);
}

.hub-material-journal-mark span:nth-child(1) { height: 18px; }
.hub-material-journal-mark span:nth-child(2) { height: 30px; background: #6ba1ff; }
.hub-material-journal-mark span:nth-child(3) { height: 24px; }

.hub-material-tradingview-mark {
  color: #6ba1ff;
  border: 1px solid rgba(107, 161, 255, 0.18);
  background: rgba(79, 142, 247, 0.08);
}

.hub-material-tradingview-mark svg {
  width: 52px;
  height: 34px;
}

.hub-inline-form {
  margin-top: 0.4rem;
}

.hub-inline-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.hub-inline-form p {
  margin-bottom: 0.9rem;
}

.hub-inline-row {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

.hub-inline-row input {
  flex: 1;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 13, 26, 0.7);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
}

.hub-inline-feedback {
  margin-top: 0.65rem;
  min-height: 1.2rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .sl-session-timer-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .sl-timer-actions {
    justify-content: center;
  }
  .auth-state-actions,
  .hub-cta,
  .hub-inline-row {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .hub-hero,
  .hub-grid,
  .hub-material-grid {
    grid-template-columns: 1fr;
  }
  .hub-cta {
    justify-content: flex-start;
  }
  .hub-quiet-log-grid {
    grid-template-columns: 1fr;
  }
  .hub-material-card {
    min-height: 132px;
  }
}

@media (min-width: 600px) and (max-width: 980px) {
  .hub-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== SCROLL PADDING ===== */
section[id] { scroll-margin-top: 70px; }

@media (max-width: 1180px) {
  section[id] { scroll-margin-top: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .page-transition { display: none; }
  .page-shell,
  .page-shell.is-exiting {
    transform: none !important;
    filter: none !important;
  }
  .capsule-slide,
  .capsule-slide.is-active {
    transform: none !important;
  }
}

/* ============================================================
   Calm layer — applied site-wide.
   The base styles intentionally leaned decorative; this layer
   strips the motion + glow + gradient noise so the brand reads
   as composed rather than generated. Reversible: deleting this
   block restores the maximalist look.
   ============================================================ */

/* Kill the decorative SVG icon animations across pain cards,
   path icons, trust items, solution steps, etc.
   Inline style="animation:..." attrs in the HTML keep referring
   to keyframe names; we silence those animations here without
   needing to scrub every <svg>. */
.anim-icon svg *,
.trust-item .icon,
.path-icon-block,
.pain-icon,
.step-icon,
.workshop-icon {
  animation: none !important;
}

/* Hero — flat brand surface, no radial blobs, no grid overlay */
.hero {
  background: var(--bg-primary);
  padding: 7.5rem clamp(1rem, 5vw, 2rem) 4.5rem;
}
.hero::before,
.hero::after,
.hero-grid {
  display: none !important;
}
.hero h1,
.hero-sub,
.hero-ctas,
.hero-okx,
.hero-video-wrap {
  animation: none !important;
}
.hero-video-container {
  border-radius: 14px;
  box-shadow: none;
  border-color: var(--border-subtle);
}

/* Page-level transition overlay — disabled. The 420ms exit blur
   added meaningful click-to-navigate latency for no UX gain. */
.page-transition,
.page-transition.active {
  display: none !important;
}
.page-shell,
.page-shell.is-exiting {
  filter: none !important;
  transform: none !important;
}

/* Inner page heroes — drop the radial halo */
.page-hero {
  background: var(--bg-primary);
  padding: 7rem clamp(1rem, 5vw, 2rem) 3.5rem;
}

/* Buttons — remove the floating-glow look. Clean weight, clean hover. */
.btn-primary,
.btn-gold {
  box-shadow: none;
}
.btn-primary:hover,
.btn-gold:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(1.08);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
}
.okx-logo-btn:hover {
  transform: none;
}

/* Highlight word — keep brand color, drop the live gradient text */
.highlight {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--accent-bright);
  color: var(--accent-bright);
}

/* Cards — calmer hover. No lift, no shadow burst. */
.path-card,
.pain-card,
.solution-step,
.workshop-card {
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.path-card:hover,
.pain-card:hover,
.solution-step:hover,
.workshop-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

/* Snipers hero badge — flatter */
.snipers-hero-badge {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}

/* Trust strip — quieter rhythm, no float, no scale on hover */
.trust-item:hover .icon {
  transform: none;
  box-shadow: none;
  border-color: var(--border-glow);
}

/* Carousel — kill the active-slide scale jolt */
.capsule-slide.is-active {
  transform: none !important;
}

/* Section dividers — drop the glowing accent line if any */
.section-label::after {
  display: none;
}

/* Tighter rhythm on the final CTA stack */
.final-cta {
  background: var(--bg-primary);
}
.final-ctas {
  gap: 0.65rem;
}

/* ----- Tap responsiveness -----
   The previous setup had three sources of perceived lag on mobile,
   most visible when tapping a nav link from inside the burger menu:
   1) page-shell entered new pages at opacity 0 and faded in over
      450ms — the new page DOM was ready but invisible.
   2) the mobile menu faded out over 400ms, competing with the
      navigation animation.
   3) no touch-action hints, so mobile browsers could add a small
      tap-delay waiting for double-tap detection.
   Below addresses each. */

.page-shell {
  opacity: 1 !important;
  transition: none !important;
}

@media (max-width: 1024px) {
  .mobile-menu {
    transition: opacity 0.18s ease !important;
  }
}

a,
button,
.btn,
.mobile-menu a,
.hamburger {
  touch-action: manipulation;
}

/* Carousel cross-fades were 950ms. Drop to 380ms so the slide
   change reads as intentional rather than slow. */
.capsule-slide,
.cryptoshua-carousel .capsule-slide {
  transition: opacity 0.38s ease, transform 0.38s ease !important;
}

/* `.path-icon-block` previously used `transition: all 0.4s` — `all`
   forces the browser to invalidate every property, which is heavier
   than naming what actually changes. Tighten to the specific props. */
.path-icon-block {
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}

/* Mobile menu uses backdrop-filter: blur(20px), which is a known
   GPU hot spot on lower-end Android phones — visible as scroll jank
   and a sluggish open/close. Drop the blur radius. */
@media (max-width: 1024px) {
  .mobile-menu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  /* The fixed nav also animates backdrop-filter on scroll (.nav has
     `transition: backdrop-filter ...`, .nav.scrolled adds blur(18px)).
     Animating blur intensity on every scroll tick is the most
     expensive thing on the page on mobile. Lighter blur, no animation
     of the filter itself. */
  .nav {
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  }
  .nav.scrolled {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

