/* ==========================================
   SOCIAL ENGINE PARENT HOMEPAGE STYLESHEET
   Extends frame's styles.css with Parent Core Styling,
   Electric Tech Blue and Creative Violet color palettes,
   Horizontal Channels Ticker, Zig-Zag Pillars, and Personas Router.
   ========================================== */

@import url('styles.css');

:root {
  /* Parent Brand Colors */
  --accent-blue: 190 100% 50%;      /* #00e5ff (Electric Blue) */
  --accent-blue-rgb: 0, 229, 255;
  --accent-purple: 270 95% 65%;     /* #a855f7 (Vibrant Violet) */
  --accent-purple-rgb: 168, 85, 247;
  --accent-green: 103 60% 55%;      /* #6fd149 (Vibrant Green) */
  --accent-green-rgb: 111, 209, 73;
  
  /* Layout Obsidians */
  --obsidian-darker: 220 25% 4%;    /* #0b0c10 */
  --obsidian-dark: 215 15% 8%;      /* #0f111a */
  --obsidian-card: 215 15% 12%;     /* #171a26 */
}

/* ==========================================
   GLOBAL HEADER OVERRIDES & LOGO
   ========================================== */

.logo span {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff !important;
}

.logo-dot-blue {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: hsl(var(--accent-blue));
  border-radius: 50%;
  margin-left: 2px;
  box-shadow: 0 0 10px rgba(var(--accent-blue-rgb), 0.8);
}

.nav-link:hover {
  color: hsl(var(--accent-blue)) !important;
}

.btn-accent-blue {
  background: hsl(var(--accent-blue));
  color: #000 !important;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(var(--accent-blue-rgb), 0.35);
  border: 1px solid transparent;
}

.btn-accent-blue:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(var(--accent-blue-rgb), 0.5);
}

/* ==========================================
   HERO PANEL (obsidian, radial tech glows)
   ========================================== */

.hero-parent {
  padding-top: 14rem;
  padding-bottom: 12rem;
  background: linear-gradient(to right, rgba(5, 7, 8, 0.95) 30%, rgba(5, 7, 8, 0.6) 60%, rgba(5, 7, 8, 0.25) 100%),
              url('assets/soceng-panel-1.webp') no-repeat center right;
  background-size: cover;
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 85vh;
}

.hero-parent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M54 48H6V12h48v36zM30 6v54M6 30h48" fill="none" stroke="rgba(255,255,255,0.01)" stroke-width="1"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 1;
}

.hero-parent-content {
  max-width: 680px;
  margin: 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-parent .hero-badge {
  background: rgba(var(--accent-blue-rgb), 0.06);
  border: 1px solid rgba(var(--accent-blue-rgb), 0.2);
  color: hsl(var(--accent-blue));
  box-shadow: 0 0 15px rgba(var(--accent-blue-rgb), 0.1);
  display: inline-block;
  margin-bottom: 2rem;
}

.hero-parent h1 {
  font-size: 4rem;
  line-height: 1.05;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .hero-parent {
    text-align: center;
    background: linear-gradient(to bottom, rgba(5, 7, 8, 0.85) 0%, rgba(5, 7, 8, 0.95) 100%),
                url('assets/soceng-panel-1.webp') no-repeat center center;
    background-size: cover;
    padding-top: 12rem;
    padding-bottom: 8rem;
    justify-content: center;
    min-height: auto;
  }
  .hero-parent-content {
    margin: 0 auto;
    max-width: 800px;
  }
  .hero-parent-btns {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .hero-parent h1 {
    font-size: 2.75rem;
  }
}

.hero-parent .hero-desc {
  font-size: 1.15rem;
  max-width: 750px;
  margin-bottom: 3.5rem;
  line-height: 1.65;
}

.hero-parent-btns {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-purple-gradient {
  background: linear-gradient(135deg, hsl(var(--accent-purple)) 0%, #7c3aed 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(var(--accent-purple-rgb), 0.35);
  border: 1px solid rgba(var(--accent-purple-rgb), 0.25);
}

.btn-purple-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(var(--accent-purple-rgb), 0.55);
}

.btn-outline-blue {
  background: transparent;
  border: 1.5px solid hsl(var(--accent-blue));
  color: hsl(var(--accent-blue));
  font-weight: 600;
  box-shadow: inset 0 0 10px rgba(var(--accent-blue-rgb), 0.05);
}

.btn-outline-blue:hover {
  background: rgba(var(--accent-blue-rgb), 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(var(--accent-blue-rgb), 0.25);
}

/* Floating Dashboard Mockup */
.hero-parent-mockup {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(var(--accent-blue-rgb), 0.3) 0%, rgba(var(--accent-purple-rgb), 0.15) 50%, transparent 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8),
              0 0 50px rgba(var(--accent-purple-rgb), 0.08);
  transition: transform var(--transition-slow);
}

.hero-parent-mockup:hover {
  transform: translateY(-5px) scale(1.005);
}

.hero-parent-mockup img {
  width: 100%;
  height: auto;
  border-radius: 19px;
  display: block;
}

/* ==========================================
   SECTION 2: 7-CHANNEL DISTRIBUTION (Continuous scroll Ticker)
   ========================================== */

.channels-distribution {
  background: #090a0d;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  overflow: hidden;
}

.channels-distribution .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
  padding: 0 1.5rem;
}

.channels-distribution h2 {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.ticker-marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.ticker-marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
  padding: 1.5rem 0;
}

.ticker-marquee-container:hover .ticker-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

.channel-marquee-card {
  flex-shrink: 0;
  width: 250px;
  padding: 1.75rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.channel-marquee-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-blue-rgb), 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(var(--accent-blue-rgb), 0.15);
  background: rgba(var(--accent-blue-rgb), 0.015);
}

/* Specific glows for hover channels */
.channel-marquee-card:nth-child(even):hover {
  border-color: rgba(var(--accent-purple-rgb), 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(var(--accent-purple-rgb), 0.15);
  background: rgba(var(--accent-purple-rgb), 0.015);
}

.channel-card-logo-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-fast);
}

.channel-marquee-card:hover .channel-card-logo-wrapper {
  color: hsl(var(--accent-blue));
  border-color: rgba(var(--accent-blue-rgb), 0.2);
  background: rgba(var(--accent-blue-rgb), 0.05);
}

.channel-marquee-card:nth-child(even):hover .channel-card-logo-wrapper {
  color: hsl(var(--accent-purple));
  border-color: rgba(var(--accent-purple-rgb), 0.2);
  background: rgba(var(--accent-purple-rgb), 0.05);
}

.channel-marquee-card img.social-icon-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(0.9);
  transition: var(--transition-fast);
}

.channel-marquee-card:hover img.social-icon-img {
  opacity: 1;
  filter: brightness(1) drop-shadow(0 0 8px rgba(var(--accent-blue-rgb), 0.4));
  transform: scale(1.05);
}

.channel-marquee-card:nth-child(even):hover img.social-icon-img {
  filter: brightness(1) drop-shadow(0 0 8px rgba(var(--accent-purple-rgb), 0.4));
}

.channel-marquee-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.channel-marquee-card p.channel-card-format {
  font-size: 0.8rem;
  color: hsl(var(--text-secondary));
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  letter-spacing: 0.05em;
}

.channel-marquee-card p.channel-card-format span.format-arrow {
  color: hsl(var(--accent-blue));
}

.channel-marquee-card:nth-child(even) p.channel-card-format span.format-arrow {
  color: hsl(var(--accent-purple));
}

/* ==========================================
   SECTIONS 3, 4, 5: PILLARS GRID LAYOUTS (Zig-zag 50/50 splits)
   ========================================== */

.pillar-section {
  padding: 8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media (max-width: 991px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.pillar-left, .pillar-right {
  position: relative;
}

.pillar-accent-header {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: hsl(var(--accent-blue));
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.pillar-section:nth-child(even) .pillar-accent-header {
  color: hsl(var(--accent-purple));
}

.pillar-grid h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (max-width: 768px) {
  .pillar-grid h2 {
    font-size: 2.25rem;
  }
}

.pillar-grid p.pillar-desc {
  font-size: 1.05rem;
  color: hsl(var(--text-secondary));
  line-height: 1.65;
}

.pillar-image-container {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--glass-bg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: all var(--transition-normal);
}

.pillar-image-container:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

.pillar-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Interactive custom card glows depending on left or right margin placement */
.pillar-glow-right {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5),
              0 0 40px rgba(var(--accent-blue-rgb), 0.05);
}
.pillar-glow-right:hover {
  border-color: rgba(var(--accent-blue-rgb), 0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7),
              0 0 50px rgba(var(--accent-blue-rgb), 0.15);
}

.pillar-glow-left {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5),
              0 0 40px rgba(var(--accent-purple-rgb), 0.05);
}
.pillar-glow-left:hover {
  border-color: rgba(var(--accent-purple-rgb), 0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7),
              0 0 50px rgba(var(--accent-purple-rgb), 0.15);
}

/* Zig-zag layouts switching column orders on desktop */
@media (min-width: 992px) {
  .pillar-section:nth-child(even) .pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pillar-section:nth-child(even) .pillar-grid .pillar-left {
    order: 2;
  }
  .pillar-section:nth-child(even) .pillar-grid .pillar-right {
    order: 1;
  }
}

/* Mobile feature callout tags */
.mobile-callout-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--accent-purple-rgb), 0.08);
  border: 1px solid rgba(var(--accent-purple-rgb), 0.3);
  color: hsl(var(--accent-purple));
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  box-shadow: 0 0 15px rgba(var(--accent-purple-rgb), 0.1);
}

/* ==========================================
   SECTION 6: PRODUCT TRAFFIC ROUTER (Persona columns)
   ========================================== */

.traffic-router {
  background: #07080c;
  padding: 8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.traffic-router .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
  padding: 0 1.5rem;
}

.traffic-router h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.router-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 991px) {
  .router-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.router-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5.5rem 4.5rem;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  transition: all var(--transition-normal);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

@media (max-width: 576px) {
  .router-card {
    padding: 3rem 2rem;
    height: 450px;
  }
}

/* Dark masks for text readability */
.router-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(7, 8, 12, 0.2) 0%, rgba(7, 8, 12, 0.6) 40%, rgba(7, 8, 12, 0.95) 100%);
  z-index: 1;
  transition: opacity var(--transition-normal);
}

.router-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.router-card-tag {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--accent-blue));
  margin-bottom: 0.75rem;
  display: block;
}

.router-card:nth-child(2) .router-card-tag {
  color: hsl(var(--accent-purple));
}

.router-card h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #fff;
}

.router-card p.router-card-desc {
  font-size: 1rem;
  color: hsl(var(--text-secondary));
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.router-card .btn {
  padding: 0.9rem 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.router-card:hover {
  transform: translateY(-8px);
}

/* Specific glows and zooms on hovers */
.router-card-dealer {
  border-color: rgba(var(--accent-blue-rgb), 0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6),
              inset 0 0 40px rgba(var(--accent-blue-rgb), 0.05);
}

.router-card-dealer:hover {
  border-color: rgba(var(--accent-blue-rgb), 0.35);
  box-shadow: 0 30px 65px rgba(0,0,0,0.8),
              0 0 40px rgba(var(--accent-blue-rgb), 0.25),
              inset 0 0 50px rgba(var(--accent-blue-rgb), 0.1);
}

.router-card-builder {
  border-color: rgba(var(--accent-purple-rgb), 0.1);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6),
              inset 0 0 40px rgba(var(--accent-purple-rgb), 0.05);
}

.router-card-builder:hover {
  border-color: rgba(var(--accent-purple-rgb), 0.35);
  box-shadow: 0 30px 65px rgba(0,0,0,0.8),
              0 0 40px rgba(var(--accent-purple-rgb), 0.25),
              inset 0 0 50px rgba(var(--accent-purple-rgb), 0.1);
}

/* ==========================================
   SECTION 7: BOTTOM CTA & FOOTER OVERRIDES
   ========================================== */

.cta-parent {
  padding: 10rem 0;
  background: #090a0d;
  position: relative;
  text-align: center;
}

.cta-parent-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-parent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--accent-blue-rgb), 0.12) 0%, rgba(var(--accent-purple-rgb), 0.12) 50%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.cta-parent h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cta-parent h2 {
    font-size: 2.5rem;
  }
}

.cta-parent p {
  font-size: 1.15rem;
  color: hsl(var(--text-secondary));
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-pulsing-blue {
  background: linear-gradient(135deg, hsl(var(--accent-blue)) 0%, #00b0ff 100%);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.25rem 3.5rem;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(var(--accent-blue-rgb), 0.4);
  border: 1px solid rgba(var(--accent-blue-rgb), 0.2);
  animation: accent-pulse 2s infinite;
}

.btn-pulsing-blue:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(var(--accent-blue-rgb), 0.7);
  background: #fff;
}

@keyframes accent-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-blue-rgb), 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--accent-blue-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-blue-rgb), 0);
  }
}

.footer-parent {
  background: #050608;
  border-top: 1px solid rgba(255,255,255,0.02);
  padding: 5rem 0 3rem 0;
}

.footer-parent .footer-parent-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .footer-parent .footer-parent-grid {
    flex-direction: column;
    text-align: center;
  }
}

.footer-nav-parent {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

@media (max-width: 576px) {
  .footer-nav-parent {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.footer-nav-parent a {
  font-size: 0.9rem;
  color: hsl(var(--text-secondary));
  transition: var(--transition-fast);
}

.footer-nav-parent a:hover {
  color: hsl(var(--accent-blue));
}

.footer-copyright-parent {
  width: 100%;
  text-align: center;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.02);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: hsl(var(--text-muted));
}

/* ==========================================
   GREEN ACCENT HEADLINE OVERRIDES
   ========================================== */

.hero-parent h1,
.channels-distribution h2,
.pillar-grid h2,
.traffic-router h2,
.router-card h3,
.cta-parent h2 {
  color: hsl(var(--accent-green)) !important;
  text-shadow: 0 0 15px rgba(var(--accent-green-rgb), 0.2);
}

/* ==========================================
   LOGO & BRANDING STYLING
   ========================================== */
.logo span {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0.05em !important;
  color: #fff !important;
  text-transform: uppercase;
}

/* ==========================================
   PANEL 2 PANEL ADJUSTMENTS
   ========================================== */
.channels-distribution {
  background: #090a0d;
  padding: 8rem 0 !important; /* More vertical space */
}

.channels-distribution .uppercase-label {
  font-size: 0.85rem !important; /* Consistently larger badge */
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem !important;
  color: hsl(var(--accent-blue)) !important;
}

/* ==========================================
   PANEL 6 COMING SOON VERTICAL CARDS
   ========================================== */
.upcoming-router-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (max-width: 991px) {
  .upcoming-router-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.router-card-upcoming {
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px dashed rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.router-card-upcoming:hover {
  border-color: rgba(var(--accent-blue-rgb), 0.25);
  background: rgba(var(--accent-blue-rgb), 0.015);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.router-card-upcoming:nth-child(2):hover {
  border-color: rgba(var(--accent-purple-rgb), 0.25);
  background: rgba(var(--accent-purple-rgb), 0.015);
}

.router-card-upcoming:nth-child(3):hover {
  border-color: rgba(var(--accent-green-rgb), 0.25);
  background: rgba(var(--accent-green-rgb), 0.015);
}

.router-card-upcoming-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.router-card-upcoming h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.router-card-upcoming p {
  font-size: 0.875rem;
  color: hsl(var(--text-secondary));
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.router-card-upcoming:nth-child(1) .coming-soon-badge {
  background: rgba(var(--accent-blue-rgb), 0.08);
  border-color: rgba(var(--accent-blue-rgb), 0.3);
  color: hsl(var(--accent-blue));
}

.router-card-upcoming:nth-child(2) .coming-soon-badge {
  background: rgba(var(--accent-purple-rgb), 0.08);
  border-color: rgba(var(--accent-purple-rgb), 0.3);
  color: hsl(var(--accent-purple));
}

.router-card-upcoming:nth-child(3) .coming-soon-badge {
  background: rgba(var(--accent-green-rgb), 0.08);
  border-color: rgba(var(--accent-green-rgb), 0.3);
  color: hsl(var(--accent-green));
}

/* ==========================================
   ONBOARDING SECTION (Calendly & Stats Visual)
   ========================================== */
.onboarding-parent {
  padding: 8rem 0;
  background: radial-gradient(circle at 90% 50%, rgba(var(--accent-purple-rgb), 0.04) 0%, transparent 60%),
              hsl(var(--obsidian-darker));
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.onboarding-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .onboarding-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.onboarding-left h2 {
  font-size: 3.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (max-width: 768px) {
  .onboarding-left h2 {
    font-size: 2.5rem;
  }
}

.onboarding-desc {
  font-size: 1.1rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.onboarding-right {
  position: relative;
}

.onboarding-image-wrapper {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--obsidian-card);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transition: all var(--transition-normal);
}

.onboarding-image-wrapper:hover {
  border-color: rgba(var(--accent-blue-rgb), 0.25);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(var(--accent-blue-rgb), 0.08);
}

.onboarding-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

.stats-chart-panel-se {
  padding: 1.75rem;
  background: rgba(23, 26, 38, 0.8);
  border: 1px solid rgba(var(--accent-blue-rgb), 0.25);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 300px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  z-index: 5;
  transition: all var(--transition-normal);
}

@media (max-width: 1200px) {
  .stats-chart-panel-se {
    position: static;
    width: 100%;
    margin-top: 2rem;
    box-shadow: none;
    border-color: var(--border-light);
  }
}

.stats-chart-panel-se:hover {
  border-color: rgba(var(--accent-purple-rgb), 0.4);
  transform: translateY(-5px);
}

.chart-header-se {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-title-se {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-sparkline-se {
  width: 80px;
  height: 24px;
}

.chart-row-se {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chart-label-se {
  font-size: 0.9rem;
  color: hsl(var(--text-secondary));
}

.chart-val-se {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.chart-sublabel-se {
  font-size: 0.75rem;
  color: hsl(var(--text-muted));
  margin-top: 0.15rem;
}
