/* --- Full-Width Video Hero Container (16:9 Aspect Ratio) --- */
.sb-hero-fullvideo {
  position: relative;
  width: 100%;
  min-height: 56.25vw;
  max-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--sb-navbar-height) + 10px);
  padding-bottom: 70px;
  background: #040508;
}

.sb-hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video: 100% visible, GPU accelerated, smooth playback */
.sb-hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Clean minimal overlay: Keeps video 100% visible and clear */
.sb-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 8, 0.45) 0%, rgba(4, 5, 8, 0.15) 50%, rgba(4, 5, 8, 0.7) 100%);
  pointer-events: none;
}

/* Clean Unblocked Content Container - No extra padding/gaps/drop-shadows */
.sb-hero-full-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  clip-path: none;
}

/* Updated High-Contrast Cyber Text Styling */
.sb-hero-full-content .sb-hero-badge {
  background: rgba(8, 9, 15, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 212, 0, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  color: #FFD400;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Clean Typography - Short, punchy, minimal */
.sb-hero-full-content .sb-hero-title {
  font-family: var(--sb-font-heading);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.sb-hero-full-content .sb-hero-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  color: #d8dae8;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* --- Hero CTA Buttons (Polygon Glassmorphism Chamfered Design) --- */
.sb-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.sb-hero-btn-outer {
  padding: 2px;
  background: linear-gradient(90deg, #fbeb08 0%, #3a1c71 35%, #6c32d9 70%, #decb18 100%);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  box-shadow: 0 8px 25px rgba(123, 63, 228, 0.3);
  transition: all var(--sb-transition-base);
}

.sb-hero-btn-outer:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(123, 63, 228, 0.45);
}

/* Primary Glass Button (Matching Navbar Inner Fill) */
.sb-btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(242, 243, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0b0c12;
  font-family: var(--sb-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sb-transition-fast);
}

.sb-btn-hero-primary:hover {
  background: #7b3fe4;
  color: #ffffff;
}

/* Secondary Glass Button */
.sb-hero-btn-outer.sb-btn-outer-sec {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(123, 63, 228, 0.5) 100%);
}

.sb-btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(14, 15, 25, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: var(--sb-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--sb-transition-fast);
}

.sb-btn-hero-secondary:hover {
  background: rgba(123, 63, 228, 0.4);
  color: #ffffff;
}

.sb-hero-full-content .sb-hero-trust {
  justify-content: center;
}

.sb-hero-full-content .sb-trust-item {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  font-weight: 600;
}

/* --- Hero Content --- */
.sb-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--sb-space-4xl) 0;
}

.sb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sb-space-4xl);
  align-items: center;
}

/* --- Hero Left (Text Content) --- */
.sb-hero-left {
  max-width: 640px;
}

.sb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sb-space-xs);
  padding: var(--sb-space-xs) var(--sb-space-lg);
  background: var(--sb-yellow-10);
  border: 1px solid var(--sb-yellow-20);
  border-radius: var(--sb-radius-full);
  font-size: var(--sb-fs-caption);
  font-weight: var(--sb-fw-semibold);
  color: var(--sb-yellow);
  text-transform: uppercase;
  letter-spacing: var(--sb-ls-wider);
  margin-bottom: var(--sb-space-xl);
}

.sb-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sb-yellow);
  animation: sb-pulse 2s ease-in-out infinite;
}

.sb-hero-title {
  font-size: var(--sb-fs-display);
  font-weight: var(--sb-fw-extrabold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--sb-white);
  margin-bottom: var(--sb-space-xl);
}

.sb-hero-title .sb-highlight {
  color: var(--sb-yellow);
  position: relative;
}

.sb-hero-title .sb-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--sb-yellow);
  border-radius: var(--sb-radius-full);
  opacity: 0.3;
}

.sb-hero-desc {
  font-size: var(--sb-fs-body-lg);
  color: var(--sb-gray-400);
  line-height: var(--sb-lh-relaxed);
  margin-bottom: var(--sb-space-2xl);
  max-width: 520px;
}



/* --- Trust Badges --- */
.sb-hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sb-space-2xl);
  flex-wrap: wrap;
}

.sb-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sb-space-xs);
  color: var(--sb-gray-400);
  font-size: var(--sb-fs-body-sm);
}

.sb-trust-icon {
  color: var(--sb-yellow);
  font-size: 1rem;
}

/* --- Hero Right (Visual) --- */
.sb-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sb-hero-visual {
  position: relative;
  width: 100%;
  max-width: 550px;
}

/* Hero Video Banner Card */
.sb-hero-video-wrapper {
  position: relative;
  width: 100%;
}

.sb-hero-video-card {
  position: relative;
  width: 100%;
  border-radius: var(--sb-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(123, 63, 228, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(123, 63, 228, 0.3);
  background: #0b0c14;
  z-index: 2;
  transition: transform var(--sb-transition-base), box-shadow var(--sb-transition-base);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.sb-hero-video-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.8), 0 0 50px rgba(123, 63, 228, 0.5);
  border-color: rgba(123, 63, 228, 0.8);
}

.sb-hero-video {
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.sb-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 12, 20, 0.1) 0%, rgba(11, 12, 20, 0.35) 100%);
  pointer-events: none;
}

.sb-hero-video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(11, 12, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 212, 0, 0.35);
  border-radius: var(--sb-radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sb-yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
}

/* Orbiting elements around the visual */
.sb-hero-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  border: 1px dashed var(--sb-yellow-20);
  border-radius: 50%;
  animation: sb-rotate-slow 30s linear infinite;
}

.sb-orbit-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--sb-yellow);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--sb-yellow-40);
}

.sb-orbit-node:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sb-orbit-node:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.sb-orbit-node:nth-child(3) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.sb-orbit-node:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

/* --- Hero Stats Bar --- */
.sb-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  border-top: 1px solid var(--sb-glass-border);
  background: rgb(253 253 253);
  backdrop-filter: var(--sb-glass-blur);
  -webkit-backdrop-filter: var(--sb-glass-blur);
}

.sb-hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--sb-container-wide);
  margin: 0 auto;
  padding: var(--sb-space-lg) var(--sb-space-xl);
}

.sb-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sb-stat-value {
  font-family: var(--sb-font-heading);
  font-size: var(--sb-fs-h4);
  font-weight: var(--sb-fw-bold);
  color: var(--sb-yellow);
  line-height: 1;
}

.sb-stat-label {
  font-size: var(--sb-fs-caption);
  color: #000000;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: var(--sb-ls-wider);
}

/* --- Crypto Ticker Bar --- */
.sb-crypto-ticker {
  position: relative;
  z-index: 5;
  background: var(--sb-yellow);
  border-bottom: 1px solid var(--sb-yellow-dark);
  overflow: hidden;
  white-space: nowrap;
}

.sb-ticker-track {
  display: flex;
  align-items: center;
  gap: var(--sb-space-3xl);
  padding: var(--sb-space-sm) 0;
  animation: sb-marquee 40s linear infinite;
}

.sb-ticker-item {
  display: flex;
  align-items: center;
  gap: var(--sb-space-xs);
  flex-shrink: 0;
}

.sb-ticker-symbol {
  font-weight: var(--sb-fw-semibold);
  color: var(--sb-black);
  font-size: var(--sb-fs-body-sm);
}

.sb-ticker-price {
  color: var(--sb-gray-800);
  font-size: var(--sb-fs-body-sm);
  font-family: var(--sb-font-mono);
}

.sb-ticker-change {
  font-size: var(--sb-fs-caption);
  font-weight: var(--sb-fw-semibold);
}

.sb-ticker-up {
  color: #1b5e20;
  /* Dark green for visibility on yellow */
}

.sb-ticker-down {
  color: #b71c1c;
  /* Dark red for visibility on yellow */
}

/* --- Scroll Down Indicator --- */
.sb-hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sb-space-xs);
  color: var(--sb-gray-500);
  font-size: var(--sb-fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--sb-ls-wider);
  animation: sb-float 2s ease-in-out infinite;
}

.sb-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--sb-gray-500);
  border-radius: 12px;
  position: relative;
}

.sb-scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--sb-yellow);
  border-radius: var(--sb-radius-full);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: sb-fade-in-down 1.5s ease-in-out infinite;
}