@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;700&family=Rajdhani:wght@500;600;700;800&display=swap");

:root {
  --black: #030305;
  --black-depth: #010102;
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-grad: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  --white: #f8fafc;
  --muted: #94a3b8;
  --line-gold: rgba(212, 175, 55, 0.18);
  --line-gold-active: rgba(212, 175, 55, 0.5);
  --font-luxury: "Cinzel", serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-tech: "Rajdhani", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--black);
  background-image: 
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.06), transparent 50%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.02), transparent 50%),
    url("assets/bank-signals-logo.webp");
  background-size: auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll, scroll, fixed;
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

#bg-tint {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: rgba(3, 3, 5, 0.15);
  transition: background-color 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#tradingCanvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Luxury Grid Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.012) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* --- HEADER NAVIGATION --- */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(3, 3, 5, 0.75);
  border-bottom: 1px solid var(--line-gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-luxury);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
}

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

.logo small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: lowercase;
  margin-left: 2px;
}

/* Real-Time YouTube Indicator */
.yt-sub-badge {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--line-gold);
  background: rgba(212, 175, 55, 0.02);
  text-decoration: none;
  transition: var(--transition);
}

.yt-sub-badge:hover {
  color: var(--gold-light);
  border-color: rgba(255, 22, 63, 0.44);
  background: linear-gradient(90deg, rgba(255, 22, 63, 0.08), rgba(212, 175, 55, 0.06));
  box-shadow: 0 0 22px rgba(255, 22, 63, 0.12);
}

.yt-play-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 15px;
  min-width: 22px;
  border-radius: 4px;
  background: #ff163f;
  box-shadow: 0 0 16px rgba(255, 22, 63, 0.34);
  vertical-align: -2px;
}

.yt-play-mark::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #fff;
  transform: translateX(1px);
}

.yt-sub-badge .yt-play-mark,
.link-with-icon .yt-play-mark {
  width: 20px;
  height: 14px;
  min-width: 20px;
}

.nav-access {
  display: flex;
  align-items: center;
  gap: 10px;
}

#yt-sub-count {
  color: var(--gold-light);
  font-weight: 700;
}

/* Button 1: Member Login */
.nav-btn {
  font-family: var(--font-tech);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 6px;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  background: transparent;
  transition: var(--transition);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.05);
  white-space: nowrap;
  text-decoration: none;
}

.nav-btn-primary {
  color: var(--black);
  border-color: transparent;
  background: var(--gold-grad);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.18);
}

.nav-btn:hover {
  background: var(--gold-grad);
  color: var(--black);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

.nav-btn-primary:hover {
  color: var(--black);
  filter: brightness(1.08);
}

/* --- SPLASH SECTION --- */
#splash {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.splash-prompt {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  opacity: 0.7;
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  animation: pulse-glow 2.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.35; text-shadow: 0 0 5px rgba(212, 175, 55, 0.2); }
  50% { opacity: 0.95; text-shadow: 0 0 25px rgba(212, 175, 55, 0.7); }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
}

.hero-copy {
  opacity: 0;
  filter: blur(25px);
  transform: translateY(40px);
  transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 2.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-copy.in-focus {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-eyebrow {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-luxury);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

/* Button 2: Request Private Access */
.btn-main {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 48px;
  border-radius: 6px;
  color: var(--black-depth);
  background: var(--gold-grad);
  border: none;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.btn-with-icon,
.link-with-icon,
.yt-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-with-icon {
  justify-content: center;
}

/* --- VIDEO SHOWCASE SECTION --- */
.showcase-sec {
  padding: 60px 0;
  background: rgba(3, 3, 5, 0.4);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.showcase-head {
  text-align: center;
  margin-bottom: 50px;
}

.showcase-head h2 {
  font-family: var(--font-luxury);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.showcase-head p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.video-card {
  background: var(--black-depth);
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.video-card:hover {
  border-color: var(--line-gold-active);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.08);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-meta {
  padding: 24px;
  border-top: 1px solid var(--line-gold);
}

.video-meta h4 {
  font-family: var(--font-tech);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.video-meta p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.video-control-wrap {
  text-align: center;
  margin-top: 20px;
}

/* Button 3: Activate Demonstration Audio */
.btn-video {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 6px;
  color: var(--white);
  border: 1px solid var(--line-gold);
  background: rgba(212, 175, 55, 0.03);
  transition: var(--transition);
}

.btn-video:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* --- MARKETS COVERED SECTION --- */
.markets-sec {
  padding: 100px 0;
}

.markets-head {
  text-align: center;
  margin-bottom: 60px;
}

.markets-head h2 {
  font-family: var(--font-luxury);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.markets-head p {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.markets-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.market-col {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  padding: 24px;
  transition: var(--transition);
}

.market-col:hover {
  background: rgba(212, 175, 55, 0.02);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.market-col h3 {
  font-family: var(--font-tech);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 10px;
}

.market-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.market-col li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.market-col li .m-symbol {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.market-col li .m-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}

/* --- RETAINER PRICING SECTION --- */
.pricing-sec {
  padding: 80px 0 140px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03), transparent 70%);
}

.pricing-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 50px 30px;
  background: rgba(3, 3, 5, 0.9);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 40px rgba(212, 175, 55, 0.08);
  position: relative;
}

.pricing-box::before {
  content: "Strictly Private";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  background: var(--black);
  padding: 4px 20px;
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
}

.price-tag {
  font-family: var(--font-luxury);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.price-tag span {
  font-size: 1rem;
  font-family: var(--font-tech);
  color: var(--muted);
  letter-spacing: 1px;
}

.price-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 30px;
}

/* --- FOOTER --- */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--line-gold);
  text-align: center;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

footer p {
  margin-bottom: 8px;
}

/* --- ANIMATIONS & RESPONSIVENESS --- */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 22, 63, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 22, 63, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 22, 63, 0); }
}

@media (max-width: 968px) {
  .hero h1 { font-size: 3rem; }
  .video-grid { grid-template-columns: 1fr; }
  .markets-matrix { grid-template-columns: repeat(3, 1fr); }
  .blueprint-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-wrap { flex-direction: column; gap: 15px; }
  .hero { padding-top: 220px; }
  .markets-matrix { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .markets-matrix { grid-template-columns: 1fr; }
  .blueprint-grid { grid-template-columns: 1fr; }
}

/* --- CINEMATIC MODAL OVERLAYS --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 3, 5, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-close-trigger {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.65;
  cursor: pointer;
  z-index: 2100;
  transition: var(--transition);
}

.modal-close-trigger:hover {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.modal-body-wrap {
  width: 90vw;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.modal-body-wrap video {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid var(--line-gold-active);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
  background: #000;
}

/* Image Magnifier */
.image-scroll-wrap {
  cursor: grab;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-scroll-wrap:active {
  cursor: grabbing;
}

#lightbox-image-element {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: 1px solid var(--line-gold);
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}

/* Magnifier Control Panel */
.magnifier-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: rgba(3, 3, 5, 0.85);
  border: 1px solid var(--line-gold);
  padding: 10px 24px;
  border-radius: 30px;
  z-index: 2100;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.mag-btn {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  cursor: pointer;
  padding: 4px 12px;
  transition: var(--transition);
}

.mag-btn:hover {
  opacity: 1;
  color: var(--white);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* --- DETAILED BLUEPRINT GALLERY --- */
.blueprint-sec-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1.8s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 1.2s ease,
              margin-top 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
}

.blueprint-sec-visible {
  max-height: 2500px;
  opacity: 1;
  margin-top: 60px;
  transition: max-height 2.2s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 1.5s ease,
              margin-top 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.blueprint-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-primary) 50%, transparent);
  opacity: 0.25;
  margin-bottom: 40px;
}

.blueprint-head {
  text-align: center;
  margin-bottom: 40px;
}

.blueprint-head h3 {
  font-family: var(--font-luxury);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.blueprint-head p {
  font-size: 0.9rem;
  color: var(--muted);
}

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

.blueprint-card {
  background: var(--black-depth);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.blueprint-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.06);
  transform: translateY(-4px);
}

.blueprint-img-wrap {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #020203;
  margin-bottom: 14px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 8px;
  box-sizing: border-box;
}

.blueprint-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blueprint-card:hover .blueprint-img-wrap img {
  transform: scale(1.08);
}

.blueprint-card h5 {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  margin-top: 8px;
}

/* Video Hover Overlay and badge */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.video-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 5, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 5;
}

.video-wrap:hover .video-hover-overlay {
  opacity: 1;
}

.overlay-badge {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 8px 18px;
  background: rgba(3, 3, 5, 0.85);
  border-radius: 4px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transform: translateY(10px);
  transition: var(--transition);
}

.video-wrap:hover .overlay-badge {
  transform: translateY(0);
}

/* --- DYNAMIC GAMIFICATION STYLES --- */

/* 1. Real-Time Price Ticker Bar */
#ticker-bar {
  background: rgba(3, 3, 5, 0.85);
  border-bottom: 1px solid var(--line-gold);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-tech);
  font-size: 0.82rem;
  letter-spacing: 1px;
  z-index: 100;
  position: relative;
  margin-top: 78px; /* Offset below the fixed navigation bar */
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

#ticker-bar::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: var(--transition);
  user-select: none;
}

.ticker-item:hover {
  background: rgba(212, 175, 55, 0.04);
  border-color: var(--line-gold);
}

.ticker-symbol {
  font-weight: 700;
  color: var(--white);
}

.ticker-price {
  font-family: var(--font-mono);
  color: var(--gold-light);
}

.ticker-change {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  padding: 1px 5px;
  border-radius: 2px;
  font-weight: 600;
}

.ticker-change.up {
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.ticker-change.down {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

/* Ticker blink tick indicators */
@keyframes flash-green {
  0% { background: rgba(16, 185, 129, 0.35); border-color: #10b981; }
  100% { background: transparent; border-color: transparent; }
}

@keyframes flash-red {
  0% { background: rgba(239, 68, 68, 0.35); border-color: #ef4444; }
  100% { background: transparent; border-color: transparent; }
}

.ticker-item.tick-up {
  animation: flash-green 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ticker-item.tick-down {
  animation: flash-red 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ticker-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #ff163f;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff163f;
  animation: pulse 1.8s infinite;
}

.ticker-winrate {
  color: var(--gold-primary);
  font-weight: 700;
  border-left: 1px solid var(--line-gold);
  padding-left: 16px;
}

/* 2. Bottom-Right Live Activity Feed */
#activity-feed {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 330px;
  max-width: calc(100vw - 48px);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none; /* Let clicks pass through context container */
}

.activity-card {
  pointer-events: auto; /* Enable clicks on cards */
  background: rgba(3, 3, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.03);
  transform: translateX(130%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.activity-card.show {
  transform: translateX(0);
  opacity: 1;
}

.activity-card.hide {
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.activity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
  border-bottom: 1px dotted var(--line-gold);
  padding-bottom: 4px;
}

.activity-time {
  color: var(--muted);
  font-weight: 400;
  font-family: var(--font-mono);
}

.activity-body {
  font-size: 0.84rem;
  color: var(--white);
  line-height: 1.5;
  font-family: var(--font-body);
}

.activity-body span.highlight-win {
  color: #10b981;
  font-weight: 700;
}

.activity-body span.highlight-symbol {
  color: var(--gold-light);
  font-weight: 700;
}



.fb-vals {
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: normal;
  margin-left: 5px;
  opacity: 0.85;
}

/* Neon Live Bias Chips */
.ticker-bias {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  padding: 1px 5px;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 6px;
  letter-spacing: 0.5px;
  display: inline-block;
  vertical-align: middle;
}

.ticker-bias.buy {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.35);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ticker-bias.sell {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.35);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ticker-bias.neutral {
  color: var(--muted);
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
}


/* --- 2026 CONVERSION UPGRADE OVERRIDES --- */
:root {
  --ink-panel: rgba(2, 3, 5, 0.78);
  --line-soft: rgba(248, 250, 252, 0.08);
  --green: #10b981;
  --red: #ef4444;
}

body {
  background-image:
    linear-gradient(180deg, rgba(1, 1, 2, 0.72), rgba(1, 1, 2, 0.94)),
    url("assets/bank-signals-watermark.webp");
  background-size: auto, min(1100px, 96vw);
  background-position: center top, center 28vh;
  background-repeat: no-repeat, no-repeat;
}

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

#nav {
  padding: 13px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.105), transparent 32%),
    radial-gradient(circle at 78% 0%, rgba(255, 22, 63, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.95), rgba(2, 2, 4, 0.88));
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.46), inset 0 -1px 0 rgba(248, 250, 252, 0.025);
  transition: padding 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

#nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.34), transparent);
}

.nav-wrap {
  gap: 20px;
  min-height: 52px;
  position: relative;
  transition: min-height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
  position: relative;
  min-width: max-content;
  letter-spacing: 2.8px;
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.12);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.8s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo::after {
  content: "";
  width: 42px;
  height: 1px;
  margin-left: 14px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.38), transparent);
  transform-origin: left center;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), width 0.55s cubic-bezier(0.16, 1, 0.3, 1), margin 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  transition: opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1), transform 0.62s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.62s;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.66);
  padding: 5px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.035), rgba(248, 250, 252, 0.01)),
    rgba(3, 3, 5, 0.42);
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04);
  transition: opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1), transform 0.62s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.62s;
}

.nav-links a {
  position: relative;
  padding: 7px 10px;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.075);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
}

.yt-sub-badge {
  min-height: 42px;
  padding: 0 15px;
  border-color: rgba(255, 22, 63, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 22, 63, 0.08), rgba(212, 175, 55, 0.035)),
    rgba(3, 3, 5, 0.52);
  color: rgba(248, 250, 252, 0.72);
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04), 0 12px 28px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.nav-access {
  padding: 4px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.035), rgba(248, 250, 252, 0.01)),
    rgba(3, 3, 5, 0.5);
  box-shadow: inset 0 1px 0 rgba(248, 250, 252, 0.04), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.nav-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(212, 175, 55, 0.02);
}

.nav-btn-primary {
  min-width: 150px;
  border: 1px solid rgba(243, 229, 171, 0.62);
  background:
    linear-gradient(135deg, #fff1a8 0%, #d4af37 46%, #b8860b 100%);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.16), 0 18px 36px rgba(212, 175, 55, 0.18);
}

.nav-btn:not(.nav-btn-primary):hover {
  border-color: rgba(243, 229, 171, 0.62);
  background: rgba(212, 175, 55, 0.09);
  color: var(--gold-light);
}

html.intro-stage #nav {
  padding: 18px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(3, 3, 5, 0.64), rgba(3, 3, 5, 0.18));
  border-bottom-color: rgba(212, 175, 55, 0.08);
  box-shadow: none;
}

html.intro-stage #nav::after {
  opacity: 0.46;
}

html.intro-stage .nav-wrap {
  min-height: 42px;
  justify-content: center;
}

html.intro-stage .logo {
  font-size: 1.28rem;
  text-shadow: 0 0 34px rgba(212, 175, 55, 0.2);
}

html.intro-stage .logo::after {
  width: 0;
  margin-left: 0;
  opacity: 0;
  transform: scaleX(0);
}

html.intro-stage .nav-links,
html.intro-stage .nav-right {
  position: absolute;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(-50% - 12px));
}

html.intro-stage .nav-links {
  left: 50%;
}

html.intro-stage .nav-right {
  right: 0;
}

html.intro-stage #ticker-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
}

html.intro-stage-revealed .nav-links,
html.intro-stage-revealed .nav-right {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

html.intro-stage-revealed #ticker-bar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

#splash {
  isolation: isolate;
  --splash-frame-ratio: 1672 / 941;
  --splash-frame-width: min(calc(100vw - 150px), calc((100vh - 245px) * 1.7768), 1480px);
  background:
    radial-gradient(circle at 50% 44%, rgba(212, 175, 55, 0.22), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(248, 250, 252, 0.1), transparent 35%),
    radial-gradient(circle at 50% 76%, rgba(212, 175, 55, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(1, 1, 2, 0.02), rgba(1, 1, 2, 0.82));
}

#splash::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: var(--splash-frame-width);
  aspect-ratio: var(--splash-frame-ratio);
  transform: translate(-50%, -50%);
  z-index: 0;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(1, 1, 2, 0.04), rgba(1, 1, 2, 0.44)),
    radial-gradient(circle at 50% 28%, rgba(248, 250, 252, 0.16), transparent 30%),
    radial-gradient(circle at 50% 52%, rgba(212, 175, 55, 0.12), transparent 42%),
    url("assets/bank-signals-logo.webp") center / contain no-repeat;
  box-shadow:
    inset 0 0 110px rgba(1, 1, 2, 0.66),
    inset 0 0 46px rgba(212, 175, 55, 0.13),
    0 0 62px rgba(212, 175, 55, 0.06),
    0 46px 150px rgba(0, 0, 0, 0.66);
  filter: saturate(0.9) contrast(1.22) brightness(0.84);
  animation: splash-frame 6s ease-in-out infinite;
}

#splash::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: var(--splash-frame-width);
  aspect-ratio: var(--splash-frame-ratio);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
  background:
    linear-gradient(105deg, transparent 18%, rgba(212, 175, 55, 0.11) 38%, rgba(248, 250, 252, 0.2) 49%, rgba(212, 175, 55, 0.1) 58%, transparent 78%),
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.23), transparent 34%),
    radial-gradient(circle at 50% 58%, rgba(248, 250, 252, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(1, 1, 2, 0.82), transparent 24%, transparent 76%, rgba(1, 1, 2, 0.82));
  mix-blend-mode: screen;
  opacity: 0.64;
  animation: splash-light-sweep 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.splash-core {
  text-align: center;
  transform: translateY(4vh);
}

.splash-kicker,
.section-kicker {
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.splash-title {
  margin-top: 16px;
  font-family: var(--font-luxury);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.28);
}

.splash-prompt {
  position: static;
  transform: none;
  margin-top: 28px;
}

@keyframes splash-frame {
  0%, 100% { opacity: 0.88; transform: translate(-50%, -50%) scale(0.997); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes splash-light-sweep {
  0%, 100% { opacity: 0.42; transform: translate(-51%, -50%) scale(0.996); }
  45% { opacity: 0.74; transform: translate(-49%, -50%) scale(1); }
}

#ticker-bar {
  position: sticky;
  top: 78px;
  z-index: 900;
  margin-top: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.36);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s;
}

.ticker-wrap {
  min-width: max-content;
}

.ticker-winrate {
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 44px);
  align-items: center;
  justify-content: flex-start;
  padding: 124px 0 96px;
  text-align: left;
  isolation: isolate;
}

.hero,
.evidence-sec,
.showcase-sec,
.markets-sec,
.pricing-sec {
  scroll-margin-top: 148px;
}

.hero-bg-media,
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-media {
  z-index: -3;
  overflow: hidden;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.02) brightness(0.34) blur(0.5px);
  transform: scale(1.05) translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen-video-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-media .screen-video-layer {
  transform: scale(1.05) translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen-video {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  opacity: 0.52;
  filter: saturate(1.18) contrast(1.18) brightness(0.78);
  mix-blend-mode: screen;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.12), inset 0 0 18px rgba(0, 0, 0, 0.6);
}

.screen-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 6px);
}

.screen-video-main {
  left: 56.7%;
  top: 22.2%;
  width: 19.9%;
  height: 18.4%;
  transform: perspective(900px) rotateY(-5deg) rotateZ(0.4deg);
}

.screen-video-right {
  left: 77.1%;
  top: 20.6%;
  width: 18.7%;
  height: 30.4%;
  transform: perspective(900px) rotateY(-4deg) rotateZ(-0.15deg);
}

.screen-video-laptop {
  left: 21.6%;
  top: 58.3%;
  width: 12.8%;
  height: 12.2%;
  opacity: 0.46;
  transform: perspective(720px) rotateY(-12deg) rotateX(4deg) rotateZ(-3deg);
}

.hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 1, 2, 0.96) 0%, rgba(1, 1, 2, 0.78) 36%, rgba(1, 1, 2, 0.5) 68%, rgba(1, 1, 2, 0.76) 100%),
    linear-gradient(180deg, rgba(1, 1, 2, 0.64) 0%, rgba(1, 1, 2, 0.2) 42%, rgba(1, 1, 2, 0.96) 100%);
}

.hero-inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-live-dock {
  display: grid;
  gap: 14px;
  justify-self: end;
  width: min(100%, 500px);
  opacity: 0.92;
  transform: perspective(1100px) rotateY(-7deg);
  transform-origin: center;
}

.live-monitor,
.rig-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background: #020305;
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.58),
    0 0 28px rgba(212, 175, 55, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.live-monitor::after,
.rig-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 5px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 20%, transparent 74%, rgba(255, 255, 255, 0.05));
  mix-blend-mode: screen;
}

.live-monitor video,
.live-monitor img,
.rig-screen video,
.rig-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.live-monitor-main {
  aspect-ratio: 16 / 9;
}

.live-monitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.live-monitor-small {
  aspect-ratio: 16 / 10;
}

.hero-copy > .hero-eyebrow:not(.hero-eyebrow-primary),
.hero-copy > .hero-sub:not(.hero-sub-short) {
  display: none;
}

.hero-eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 760px;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 15%, #f3e5ab 56%, #b78b19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 660px;
  color: rgba(248, 250, 252, 0.82);
  margin-bottom: 30px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-main,
.btn-secondary,
.btn-video,
.nav-btn {
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 17px 30px;
  border-radius: 6px;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(3, 3, 5, 0.54);
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  color: var(--white);
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 34px;
}

.hero-proof-row div {
  min-height: 86px;
  padding: 16px 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background: rgba(3, 3, 5, 0.54);
  backdrop-filter: blur(16px);
}

.hero-proof-row strong,
.hero-proof-row span {
  display: block;
}

.hero-proof-row strong {
  font-family: var(--font-tech);
  font-size: 1.22rem;
  color: var(--gold-light);
  letter-spacing: 0.6px;
}

.hero-proof-row span {
  margin-top: 4px;
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.58);
}

.hero-scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--gold-primary), transparent);
}

.evidence-sec {
  padding: 120px 0 100px;
  background:
    linear-gradient(180deg, rgba(1, 1, 2, 0.98), rgba(3, 3, 5, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.08), transparent 32%);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.workstation-proof {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(360px, 1.06fr);
  gap: 76px;
  align-items: center;
  margin-bottom: 96px;
}

.workstation-proof > div:last-child {
  position: relative;
  z-index: 2;
}

.workstation-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
}

.workstation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 1, 2, 0.05), transparent 44%, rgba(1, 1, 2, 0.12)),
    radial-gradient(circle at 64% 42%, rgba(212, 175, 55, 0.09), transparent 24%);
}

.workstation-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.workstation-media .screen-video {
  opacity: 0.64;
  filter: saturate(1.22) contrast(1.14) brightness(0.86);
}

.live-workstation-rig {
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 28px;
  isolation: isolate;
}

.rig-office-context {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.rig-office-context img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.8) contrast(0.95) brightness(0.72) blur(1.2px);
  transform: scale(1.04);
}

.live-workstation-rig::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 3, 5, 0.58), rgba(2, 3, 5, 0.08) 45%, rgba(2, 3, 5, 0.44)),
    radial-gradient(circle at 62% 54%, rgba(212, 175, 55, 0.16), transparent 38%);
}

.rig-screen-wide {
  position: absolute;
  left: 24%;
  top: 18%;
  width: 43%;
  aspect-ratio: 16 / 9;
}

.rig-screen-side {
  position: absolute;
  right: 15%;
  top: 28%;
  width: 22%;
  aspect-ratio: 9 / 12;
}

.rig-screen-laptop {
  position: absolute;
  left: 9%;
  bottom: 13%;
  width: 32%;
  aspect-ratio: 16 / 10;
  transform: perspective(900px) rotateY(8deg) rotateX(2deg);
}

.workstation-proof h2 {
  font-family: var(--font-luxury);
  font-size: 2.25rem;
  line-height: 1.18;
  letter-spacing: 0;
  margin: 14px 0 16px;
}

.workstation-proof p {
  color: rgba(248, 250, 252, 0.74);
  line-height: 1.75;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.evidence-copy h2,
.pricing-copy h2 {
  font-family: var(--font-luxury);
  font-size: 2.55rem;
  line-height: 1.18;
  letter-spacing: 0;
  margin-top: 16px;
  margin-bottom: 18px;
}

.evidence-copy > p {
  color: rgba(248, 250, 252, 0.74);
  line-height: 1.75;
  max-width: 560px;
}

.proof-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.proof-point span {
  grid-row: 1 / 3;
  font-family: var(--font-mono);
  color: var(--gold-primary);
  opacity: 0.72;
}

.proof-point strong {
  font-family: var(--font-tech);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.proof-point p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.evidence-visual-stack {
  position: relative;
  min-height: 580px;
}

.evidence-main-shot,
.evidence-side-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.1);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.evidence-main-shot {
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
}

.evidence-main-shot img,
.evidence-side-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.evidence-main-shot figcaption,
.evidence-side-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 4px;
  background: rgba(3, 3, 5, 0.76);
  color: rgba(248, 250, 252, 0.78);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.evidence-main-shot,
.evidence-side-shot {
  position: relative;
}

.evidence-side-shot {
  position: absolute;
  width: 42%;
  aspect-ratio: 16 / 10;
}

.evidence-chat-shot {
  right: 0;
  top: 46px;
  transform: translateX(8%);
}

.evidence-signal-shot {
  left: 7%;
  bottom: 0;
  width: 36%;
  aspect-ratio: 1 / 1;
}

.market-state-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.market-state-strip div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(212, 175, 55, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(3, 3, 5, 0.56);
}

.market-state-strip span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.market-state-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-tech);
  font-size: 1.02rem;
  line-height: 1.28;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.market-state-strip p {
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
}

.legacy-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.legacy-strip div {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01)),
    rgba(3, 3, 5, 0.52);
}

.legacy-strip span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.legacy-strip strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-tech);
  font-size: 1.04rem;
  line-height: 1.25;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legacy-strip p {
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.88rem;
  line-height: 1.65;
}

.youtube-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 44px;
  padding: 34px;
  border: 1px solid rgba(255, 22, 63, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 22, 63, 0.12), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(212, 175, 55, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.012)),
    rgba(3, 3, 5, 0.62);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32), inset 0 0 36px rgba(255, 22, 63, 0.025);
}

.yt-proof-copy {
  max-width: 760px;
}

.yt-proof-copy h2 {
  margin: 12px 0 14px;
  font-family: var(--font-luxury);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--white);
}

.yt-proof-copy p {
  color: rgba(248, 250, 252, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.yt-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.yt-proof-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.yt-proof-stats div {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 22, 63, 0.055), rgba(212, 175, 55, 0.032)),
    rgba(255, 255, 255, 0.018);
}

.yt-proof-stats strong {
  font-family: var(--font-tech);
  color: var(--gold-light);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.yt-stat-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.yt-proof-stats .yt-play-mark {
  width: 20px;
  height: 14px;
  min-width: 20px;
}

.yt-proof-stats strong .yt-sub-count {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.yt-proof-stats span {
  font-family: var(--font-mono);
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.showcase-sec {
  padding: 96px 0;
  background: rgba(3, 3, 5, 0.72);
}

.showcase-head,
.markets-head,
.blueprint-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-head h2,
.markets-head h2,
.blueprint-head h3 {
  letter-spacing: 0;
}

.video-card,
.pricing-box {
  border-radius: 8px;
}

.video-card {
  background: linear-gradient(180deg, rgba(13, 14, 18, 0.96), rgba(2, 3, 5, 0.96));
}

.video-wrap::after,
.blueprint-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.11) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-wrap:hover::after,
.blueprint-card:hover .blueprint-img-wrap::after {
  transform: translateX(120%);
}

.blueprint-img-wrap {
  position: relative;
}

.blueprint-sec-visible {
  overflow: visible;
}

.blueprint-card {
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 14, 18, 0.96), rgba(3, 3, 5, 0.96));
}

.markets-sec {
  padding: 110px 0 96px;
  background:
    linear-gradient(180deg, rgba(3, 3, 5, 0.48), rgba(3, 3, 5, 0.84)),
    radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.05), transparent 28%);
}

.market-col {
  min-height: 286px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.pricing-sec {
  padding: 110px 0 150px;
  background:
    linear-gradient(180deg, rgba(1, 1, 2, 0.9), rgba(1, 1, 2, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 42%);
}

.pricing-box {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  text-align: left;
  padding: 42px;
}

.pricing-box::before {
  content: "Intro Rate Lock";
  border-radius: 6px;
}

.pricing-copy {
  max-width: 820px;
}

.price-desc {
  margin: 0;
  max-width: 760px;
}

.pricing-youtube-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 22, 63, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 22, 63, 0.06), rgba(212, 175, 55, 0.035)),
    rgba(255, 255, 255, 0.014);
}

.pricing-callout-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pricing-youtube-callout > div > span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pricing-youtube-callout p {
  margin: 0;
  color: rgba(248, 250, 252, 0.66);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pricing-youtube-callout a {
  white-space: nowrap;
  padding: 12px 16px;
  border: 1px solid rgba(255, 22, 63, 0.38);
  border-radius: 6px;
  color: var(--gold-light);
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.pricing-youtube-callout a:hover {
  color: var(--white);
  background: rgba(255, 22, 63, 0.09);
  transform: translateY(-1px);
}

.member-suite-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(3, 3, 5, 0.46);
}

.member-suite-copy {
  max-width: 820px;
}

.member-suite-copy h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-family: var(--font-luxury);
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--white);
}

.member-suite-copy p,
.member-suite-note {
  color: rgba(248, 250, 252, 0.66);
  line-height: 1.7;
}

.member-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.member-suite-grid div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.member-suite-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-tech);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.member-suite-grid p {
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.88rem;
  line-height: 1.6;
}

.member-suite-note {
  padding: 16px 18px;
  border-left: 2px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.035);
  font-size: 0.92rem;
}

.member-suite-warning {
  border-color: rgba(248, 250, 252, 0.3);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(3, 3, 5, 0.34);
  color: rgba(248, 250, 252, 0.74);
}

.pricing-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-offer-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 342px;
  padding: 26px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
    rgba(3, 3, 5, 0.5);
  overflow: hidden;
}

.pricing-offer-featured {
  border-color: rgba(212, 175, 55, 0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    rgba(3, 3, 5, 0.58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36), inset 0 0 36px rgba(212, 175, 55, 0.045);
}

.pricing-offer-elite {
  grid-column: 1 / -1;
  min-height: auto;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1fr) minmax(250px, 0.72fr);
  align-items: center;
  align-content: center;
  column-gap: 28px;
  border-color: rgba(248, 250, 252, 0.18);
  background:
    radial-gradient(circle at 12% 18%, rgba(248, 250, 252, 0.08), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(212, 175, 55, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(3, 3, 5, 0.64);
}

.pricing-offer-elite .price-tag,
.pricing-offer-elite .offer-label {
  margin: 0;
}

.pricing-offer-elite .offer-label {
  grid-column: 1;
  grid-row: 1;
}

.pricing-offer-elite .price-tag {
  grid-column: 1;
  grid-row: 2;
}

.pricing-offer-elite p {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.pricing-offer-elite .elite-tier-list {
  grid-column: 2;
  grid-row: 3;
}

.pricing-offer-card p {
  color: rgba(248, 250, 252, 0.66);
  line-height: 1.65;
}

.elite-tier-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.elite-tier-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.elite-tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.42);
}

.pricing-offer-elite .btn-main,
.pricing-offer-elite .offer-anchor {
  grid-column: 3;
}

.pricing-offer-elite .btn-main {
  grid-row: 1 / span 2;
  align-self: end;
}

.pricing-offer-elite .offer-anchor {
  grid-row: 3;
  align-self: start;
  text-align: center;
}

.offer-label,
.offer-anchor {
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.offer-label {
  color: var(--gold-primary);
}

.offer-anchor {
  color: rgba(248, 250, 252, 0.52);
}

.pricing-offer-card .btn-main {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  text-align: center;
}

.pricing-terms {
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(248, 250, 252, 0.6);
  font-size: 0.86rem;
  line-height: 1.65;
}

.pricing-value-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.pricing-value-grid div {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 6px;
  color: rgba(248, 250, 252, 0.78);
  font-family: var(--font-tech);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(3, 3, 5, 0.34);
}

.mag-btn {
  border: 0;
  background: transparent;
}

.foot-brand > p:not(.foot-clean),
.foot-bottom > p:not(.copyright-clean):nth-of-type(2) {
  display: none;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-actions a {
  padding: 9px 13px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 6px;
  color: rgba(248, 250, 252, 0.66);
  text-decoration: none;
  transition: var(--transition);
}

.footer-actions a:hover {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.36);
  background: rgba(212, 175, 55, 0.04);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

body.copy-lite #splash {
  display: flex;
  cursor: default;
}

body.copy-lite .workstation-proof {
  margin-bottom: 72px;
}

body.copy-lite .workstation-proof p,
body.copy-lite .evidence-copy > p,
body.copy-lite .showcase-head p,
body.copy-lite .video-meta p,
body.copy-lite .blueprint-head p,
body.copy-lite .markets-head p {
  max-width: 440px;
  color: rgba(248, 250, 252, 0.6);
}

body.copy-lite .proof-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.copy-lite .proof-point {
  min-height: 88px;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 8px;
}

body.copy-lite .proof-point span {
  grid-row: auto;
}

body.copy-lite .proof-point p,
body.copy-lite .evidence-main-shot figcaption,
body.copy-lite .evidence-side-shot figcaption {
  display: none;
}

body.copy-lite .video-meta {
  padding: 18px 20px;
}

body.copy-lite .pricing-value-grid div {
  min-height: 44px;
}

@media (max-width: 1180px) {
  .nav-wrap {
    width: min(100% - 32px, 1200px);
    gap: 12px;
  }

  .logo::after {
    width: 24px;
    margin-left: 10px;
  }

  .nav-links a {
    padding: 7px 8px;
  }

  .yt-sub-badge {
    padding: 0 12px;
  }

  .nav-btn {
    padding: 0 16px;
  }
}

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

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-live-dock {
    justify-self: start;
    width: min(100%, 620px);
    transform: none;
  }

  .evidence-layout {
    grid-template-columns: 1fr;
  }

  .workstation-proof {
    grid-template-columns: 1fr;
  }

  .evidence-visual-stack {
    min-height: 520px;
  }

  .market-state-strip,
  .youtube-proof-panel,
  .legacy-strip {
    grid-template-columns: 1fr;
  }

  .member-suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 968px) {
  #ticker-bar {
    top: 72px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(1, 1, 2, 0.92), rgba(1, 1, 2, 0.58)),
      linear-gradient(180deg, rgba(1, 1, 2, 0.64), rgba(1, 1, 2, 0.94));
  }

  .hero-bg-media .screen-video-layer {
    opacity: 0.72;
  }

  .pricing-offer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-youtube-callout {
    grid-template-columns: 1fr;
  }

  .pricing-callout-actions {
    justify-content: flex-start;
  }

  .pricing-youtube-callout a {
    justify-self: start;
  }

  .member-suite-grid {
    grid-template-columns: 1fr;
  }

  .pricing-offer-card {
    min-height: auto;
  }

  .pricing-offer-elite {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-offer-elite .offer-label,
  .pricing-offer-elite .price-tag,
  .pricing-offer-elite p,
  .pricing-offer-elite .elite-tier-list,
  .pricing-offer-elite .btn-main,
  .pricing-offer-elite .offer-anchor {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-offer-elite .offer-anchor {
    text-align: left;
  }
}

@media (max-width: 768px) {
  #nav {
    padding: 10px 0;
  }

  .nav-wrap {
    min-height: auto;
  }

  .logo::after {
    display: none;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  #splash {
    --splash-frame-width: min(calc(100vw - 28px), calc((100vh - 205px) * 1.7768));
  }

  #ticker-bar {
    position: relative;
    top: auto;
    z-index: 80;
  }

  .yt-sub-badge {
    min-height: 38px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
  }

  .nav-access {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-btn {
    flex: 1 1 150px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 154px;
  }

  .hero-bg-media img {
    object-position: 60% center;
  }

  .hero-bg-media .screen-video-layer {
    display: none;
  }

  .hero-live-dock {
    display: none;
  }

  .hero-proof-row,
  .pricing-value-grid,
  .market-state-strip,
  .youtube-proof-panel,
  .legacy-strip {
    grid-template-columns: 1fr;
  }

  .youtube-proof-panel {
    padding: 26px 20px;
  }

  .yt-proof-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .yt-proof-actions .btn-main,
  .yt-proof-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }

  body.copy-lite .proof-points {
    grid-template-columns: 1fr;
  }

  .evidence-sec,
  .showcase-sec,
  .markets-sec,
  .pricing-sec {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .evidence-copy h2,
  .workstation-proof h2,
  .pricing-copy h2 {
    font-size: 2rem;
  }

  .evidence-visual-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .live-workstation-rig {
    min-height: 360px;
    padding: 18px;
  }

  .rig-screen-wide {
    left: 12%;
    top: 12%;
    width: 68%;
  }

  .rig-screen-side {
    right: 8%;
    top: 44%;
    width: 34%;
  }

  .rig-screen-laptop {
    left: 8%;
    bottom: 12%;
    width: 44%;
  }

  .evidence-side-shot,
  .evidence-chat-shot,
  .evidence-signal-shot {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .pricing-box {
    padding: 34px 22px;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 28px, 1200px);
  }

  .yt-sub-badge {
    display: none;
  }

  .splash-title {
    font-size: 2rem;
  }

  #ticker-bar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn-main,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-scroll-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
