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

    body {
      font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #000;
      color: #fff;
      overflow-x: hidden;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 30% 60%, rgba(130, 160, 255, 0.08), transparent 65%),
        radial-gradient(circle at 70% 20%, rgba(90, 130, 255, 0.06), transparent 60%);
      filter: blur(90px);
      z-index: 0;
    }


    #constellation-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .bs-nav {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      z-index: 1000;
    }

    .bs-nav-left {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo-text {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .bs-nav-links {
      display: flex;
      gap: 2.5rem;
    }

    .bs-nav-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
    }

    .bs-nav-links a:hover {
      color: #fff;
    }

    .btn {
      padding: 0.75rem 1.8rem;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Outfit', sans-serif;
    }

    .primary-btn {
      background: #fff;
      color: #000;
    }

    .primary-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    .ghost-btn {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .ghost-btn:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .hero {
      min-height: 100vh;
      padding: 12rem 5% 6rem;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 1.5rem;
    }

    h1 {
      font-size: 4.5rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -2px;
    }

    .accent {
     color: #E0EBFF;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
    }

    .hero-visual {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1.5rem;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 2rem;
      backdrop-filter: blur(10px);
      transition: all 0.4s;
    }

    .hero-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
    }

    .chart-card {
      grid-column: 1 / -1;
    }

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

    .card-title {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .card-pill {
      font-size: 0.75rem;
      padding: 0.35rem 0.8rem;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
    }

    .card-pill.green {
      background: rgba(34, 197, 94, 0.15);
      color: #22c55e;
    }

    .hero-chart-placeholder {
      position: relative;
      height: 180px;
      margin-bottom: 1rem;
    }

    .chart-line {
      position: absolute;
      bottom: 20%;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg,
          transparent 0%,
          rgba(255, 255, 255, 0.2) 10%,
          rgba(255, 255, 255, 0.3) 30%,
          rgba(255, 255, 255, 0.4) 50%,
          rgba(255, 255, 255, 0.5) 70%,
          rgba(255, 255, 255, 0.3) 90%,
          transparent 100%);
      animation: chartFlow 3s ease-in-out infinite;
    }

    @keyframes chartFlow {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .chart-marker {
      position: absolute;
      width: 8px;
      height: 8px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    .marker-1 {
      left: 20%;
      bottom: 25%;
    }

    .marker-2 {
      left: 50%;
      bottom: 35%;
      animation-delay: 0.3s;
    }

    .marker-3 {
      left: 80%;
      bottom: 45%;
      animation-delay: 0.6s;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 0.3;
        transform: scale(1);
      }

      50% {
        opacity: 1;
        transform: scale(1.5);
      }
    }

    .chart-footer {
      display: flex;
      gap: 1.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.4);
    }

    .chart-footer span.active {
      color: #fff;
    }

    .order-body,
    .portfolio-body {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .order-row,
    .portfolio-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
    }

    .order-row span:first-child,
    .portfolio-row span:first-child {
      color: rgba(255, 255, 255, 0.5);
    }

    .pill {
      padding: 0.3rem 0.7rem;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      font-size: 0.8rem;
    }

    .pill.green {
      background: rgba(34, 197, 94, 0.15);
      color: #22c55e;
    }

    .green {
      color: #22c55e;
    }

    .red {
      color: #ef4444;
    }

    .full-btn {
      width: 100%;
      margin-top: 0.5rem;
    }

    .ai-pill {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      margin-top: 0.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .ai-orb {
      width: 24px;
      height: 24px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
      border-radius: 50%;
      flex-shrink: 0;
      animation: glow 2s ease-in-out infinite;
    }

    @keyframes glow {

      0%,
      100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      }

      50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
      }
    }

    .section {
      padding: 8rem 5%;
      position: relative;
      z-index: 1;
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 5rem;
    }

    .section-header h2 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      letter-spacing: -2px;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
    }

    .feature-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 2.5rem;
      transition: all 0.4s;
    }

    .feature-card:hover {
      background: rgba(255, 255, 255, 0.04);
      border-color: rgba(255, 255, 255, 0.12);
      transform: translateY(-5px);
    }

    .feature-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .feature-card p {
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .feature-card ul {
      list-style: none;
    }

    .feature-card li {
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0.5rem;
      padding-left: 1.5rem;
      position: relative;
    }

    .feature-card li:before {
      content: '→';
      position: absolute;
      left: 0;
      color: rgba(255, 255, 255, 0.3);
    }

    .section-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .split-text h2 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      letter-spacing: -2px;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 2rem;
    }

    .bullet-list {
      list-style: none;
      margin-top: 2rem;
    }

    .bullet-list li {
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.6);
    }

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

    .ai-orb-large {
      position: relative;
      width: 300px;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ai-orb-ring {
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: rotate 20s linear infinite;
    }

    .ring-1 {
      width: 100%;
      height: 100%;
      animation-duration: 15s;
    }

    .ring-2 {
      width: 70%;
      height: 70%;
      animation-duration: 25s;
      animation-direction: reverse;
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .ai-orb-core {
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
      border-radius: 50%;
      animation: glow 3s ease-in-out infinite;
    }

    .ai-tooltip {
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 1rem 1.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      width: 120%;
      text-align: center;
    }

    .command-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .command-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 2.5rem;
      transition: all 0.4s;
    }

    .command-card:hover {
      background: rgba(255, 255, 255, 0.04);
      transform: translateY(-5px);
    }

    .command-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .mini-chart {
      margin-top: 2rem;
      height: 60px;
      position: relative;
    }

    .mini-line {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .mini-tags {
      display: flex;
      gap: 0.8rem;
      margin-top: 2rem;
    }

    .scenario-timeline {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
    }

    .scenario-timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: rgba(255, 255, 255, 0.1);
    }

    .scenario-node {
      display: flex;
      gap: 2rem;
      margin-bottom: 3rem;
      position: relative;
    }

    .node-dot {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .node-label h4 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    .node-label p {
      color: rgba(255, 255, 255, 0.5);
    }

    .ledger-stack {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .ledger-block {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      font-family: 'Courier New', monospace;
      font-size: 0.9rem;
    }

    .ledger-connector {
      width: 2px;
      height: 20px;
      background: rgba(255, 255, 255, 0.1);
      margin-left: 1.5rem;
    }

    .gamification-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .gam-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 2.5rem;
      transition: all 0.4s;
    }

    .gam-card:hover {
      background: rgba(255, 255, 255, 0.04);
      transform: translateY(-5px);
    }

    .gam-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .mini-leaderboard {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .mini-leaderboard>div {
      display: flex;
      justify-content: space-between;
      padding: 0.8rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 8px;
      font-size: 0.9rem;
    }

    .progress-bar {
      margin-top: 2rem;
      width: 100%;
      height: 8px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6));
      border-radius: 4px;
    }

    .progress-label {
      display: block;
      margin-top: 0.8rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .CTA-section {
      padding: 8rem 5%;
    }

    .cta-card {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 5rem 3rem;
    }

    .cta-card h2 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      letter-spacing: -2px;
    }

    .bs-footer {
      padding: 3rem 5%;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      text-align: center;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.9rem;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 1024px) {

      .hero-content,
      .section-split {
        grid-template-columns: 1fr;
        gap: 4rem;
      }

      .hero-visual {
        grid-template-columns: 1fr;
      }

      .feature-grid,
      .command-grid,
      .gamification-grid {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 3.5rem;
      }

      .section-header h2,
      .split-text h2,
      .cta-card h2 {
        font-size: 2.5rem;
      }
    }

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

      h1 {
        font-size: 2.5rem;
      }
    }

    .bs-nav {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 1.5rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      backdrop-filter: none;
      border-bottom: 1px solid transparent;
      transition: all 0.35s ease;
      z-index: 1000;
    }

    .bs-nav.scrolled {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nyra-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nyra-orb {
    width: 340px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(150, 180, 255, 0.25));
    animation: float 6s ease-in-out infinite;
}

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

.nyra-orb svg {
    width: 100%;
    height: auto;
    display: block;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(60,110,255,0.25), transparent 55%),
        radial-gradient(circle at 30% 80%, rgba(180,80,255,0.18), transparent 60%),
        radial-gradient(circle at 80% 65%, rgba(80,240,255,0.13), transparent 55%);
    filter: blur(140px);
    opacity: 0.55;
    z-index: -1;
    pointer-events: none;
}
.hero-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(160,120,255,0.12);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    transition: 0.4s;
}

.hero-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.089);
}
.card-title {
    background: linear-gradient(90deg,#9ed4ff,#a98fff);
    -webkit-background-clip: text;
    color: transparent;
}
.green {
    color: #3eff9a; /* more electric */
    text-shadow: 0 0 8px rgba(62,255,154,0.3);
}
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nyra-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-tooltip {
    margin-top: 1.5rem;
}
.nyra-container {
    transform: translateX(150px); /* adjust this number */
}
.progress-bar {
    margin-top: 2rem;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #000000, #ffffff);
    box-shadow: 0 0 12px rgba(150, 180, 255, 0.4);
    transition: width 0.6s ease;
}
.progress-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #A98FFF);
    overflow: hidden;
}

.progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background: rgba(255,255,255,0.7);
    filter: blur(8px);
    animation: sweep 2s infinite linear;
}

@keyframes sweep {
    0% { left: -40px; }
    100% { left: 100%; }
}
.bs-nav-links a {
    position: relative;
}

.bs-nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    border-radius: 2px;
    opacity: 1;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.bs-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    opacity: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
/* default (inactive) */
.bs-nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.45);   /* faded */
    transition: 0.25s ease;
}

/* hover (slightly brighter + underline appears subtly) */
.bs-nav-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.bs-nav-links a:hover::after {
    transform: scaleX(1);
    opacity: 0.6;   /* softer than active */
}

/* active (full white + full underline) */
.bs-nav-links a.active {
    color: #ffffff;   /* full white, no transparency */
}

.bs-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #ffffff); /* Nyra gradient */
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: 0.25s ease;
}

/* underline fully visible on active */
.bs-nav-links a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

/* ---------------------------------------
   CORE LOADER WRAPPER
--------------------------------------- */
#bs-loading-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 1;
    transition: opacity 0.7s ease; /* smooth fade-out */
}

/* Fade-out trigger */
#bs-loading-screen.bs-hide {
    opacity: 0;
    pointer-events: none;
}

/* ---------------------------------------
   BACKGROUND GLOW + VIGNETTE
--------------------------------------- */
#bs-loading-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(60,110,255,0.22), transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(170,80,255,0.14), transparent 55%);
    filter: blur(120px);
    opacity: 0.45;
    z-index: -1;
}

#bs-loading-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
    z-index: -1;
}

/* ---------------------------------------
   CENTERED LOADER CONTENT
--------------------------------------- */
.bs-loader-center {
    width: 600px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

/* ---------------------------------------
   TERMINAL TEXT
--------------------------------------- */
#bs-terminal-text {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.95rem;
    color: #E0EBFF;
    text-shadow: 0 0 8px rgba(120,150,255,0.4);
    white-space: pre-wrap;
}

/* Cursor */
#bs-terminal-text::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #bfe0ff;
    margin-left: 6px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.1%, 100% { opacity: 0; }
}

/* ---------------------------------------
   LOADING BAR
--------------------------------------- */
.bs-loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    border-radius: 2px;
}

.bs-loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #76a8ff, #ffffff);
    box-shadow: 0 0 14px rgba(140,160,255,0.45);
    animation: loadBar 2.4s forwards ease-out;
}

@keyframes loadBar {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ---------------------------------------
   SUBTEXT
--------------------------------------- */
.bs-loader-sub {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: rgba(200,220,255,0.7);
    opacity: 0.8;
}

/* ---------------------------------------
   MAIN CONTENT HIDDEN INITIALLY
--------------------------------------- */
#bs-main-content {
    opacity: 0;
    transition: opacity 0.7s ease; /* fade-in after loader disappears */
}
@media (min-width: 1000px) and (max-width: 1400px) {
    body {
        zoom: 0.85; /* 85% size */
    }
}/* ============================
   STARFIELD — MOBILE FIX
   ============================ */
#constellation-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* MOBILE ADAPTATION */
@media (max-width: 768px) {
  #constellation-canvas {
    width: 100vw;
    height: 100vh;
    transform: scale(1.4); /* upscale so stars don’t clump */
    transform-origin: center;
    opacity: 0.8; /* softer for readability */
  }
}

@media (max-width: 480px) {
  #constellation-canvas {
    transform: scale(1.65);
    opacity: 0.75;
  }
}
/* ============================
   NYRA AI — MOBILE STACK FIX
   ============================ */

@media (max-width: 900px) {
  .section-split {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .split-text {
    order: 1;
    text-align: center;
  }

  .nyra-container {
    order: 2;
    margin-top: 2rem;
    transform: none !important; /* remove desktop shift */
    display: flex;
    justify-content: center;
  }

  .nyra-orb {
    width: 250px;     /* shrink for phones */
    margin: 0 auto;
  }

  .ai-tooltip {
    width: 90%;
    max-width: 320px;
    margin: 1.5rem auto 0;
    font-size: 0.85rem;
  }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
  .nyra-orb {
    width: 200px;
  }
}
/* DEFAULT OUTLINE BUTTON (Hero, Order Card, CTA, etc.) */
.primary-btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255,255,255,0.9) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

/* HOVER — turns fully white */
.primary-btn:hover {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 20px rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
/* NAVBAR BUTTON – stays filled white */
.nav-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 12px;
}

/* Hover behavior for navbar button */
.nav-btn:hover {
    background: #ffffff !important; /* stays white */
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(255,255,255,0.35);
    transform: translateY(-2px);
}
/* SCENARIO TIMELINE */

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid #ffffff;
    flex-shrink: 0;
    z-index: 1;
    margin-top: 10px;
    margin-left: 15px;
}
