
    /* =========================================================
   Design tokens (keeps things consistent + non-repetitive)
   ========================================================= */
    :root {
      --bg: #1a1a21;
      --panel: #23232b;
      --panel-2: #373843;
      --panel-3: #54546c;

      --text: rgba(229, 231, 235, 0.92);
      --muted: rgba(160, 169, 190, 0.90);
      --muted-2: #888;

      --border: rgba(160, 169, 190, 0.12);
      --border-strong: rgba(160, 169, 190, 0.18);
      --border-soft: rgba(160, 169, 190, 0.10);

      --shadow-lg: 0 40px 120px rgba(0, 0, 0, 0.55);

      --r-lg: 28px;
      --r-md: 18px;
      --r-sm: 14px;

      --blue: #2962ff;
      --blue-2: #3391ff;
      --blue-soft: rgba(59, 130, 246, 0.25);
      --purple: #b96cff;

      --green: #00c774;

      --font-ui: "ZalandoSansExpanded", system-ui, -apple-system, sans-serif;
    }

    /* =========================================================
   Utilities
   ========================================================= */
    .hero-muted {
      color: var(--muted);
    }

    .py-6 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    .py-7 {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }

    /* background texture */
    .dots-back {
      background-size: 50px 50px;
      background-image: radial-gradient(circle at center, #212121 2px, transparent 0);
    }

    /* =========================================================
   Chart container
   ========================================================= */
    #chart-container {
      width: 100%;
      max-width: 1200px;
      height: 340px;
      margin: 0 auto;
    }

    #chart-container canvas {
      width: 100% !important;
      height: 100% !important;
      display: block;
      cursor: crosshair;
    }

    /* =========================================================
   Hero section
   ========================================================= */
    .hero-block {
      background:
        radial-gradient(1000px 600px at 70% 20%, rgba(89, 36, 235, 0.18), #0000 55%),
        radial-gradient(900px 500px at 20% 80%, rgba(107, 7, 253, 0.1), transparent 60%),
        var(--bg)
    }

    .hero-pill {
      padding: 8px 12px;
      border: 1px solid rgba(160, 169, 190, 0.25);
      border-radius: 999px;
      color: var(--text);
      background: rgba(22, 22, 27, 0.6);
      backdrop-filter: blur(10px);
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--purple);
      display: inline-block;
    }

    .hero-btn-primary {
      border-radius: 10px;
      padding-top: 14px;
      padding-bottom: 14px;
    }

    .hero-btn-secondary {
      border-radius: 10px;
      border-color: rgba(160, 169, 190, 0.35);
      color: var(--text);
    }

    .hero-btn-secondary:hover {
      border-color: rgba(229, 231, 235, 0.65);
    }

    /* Right visual wrapper */
    .hero-visual-wrap {
      position: relative;
      min-height: 420px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-visual-glow {
      position: absolute;
      inset: -30px;
      background:
        radial-gradient(300px 220px at 60% 30%, rgba(59, 130, 246, 0.25), transparent 60%),
        radial-gradient(260px 200px at 40% 70%, rgba(99, 102, 241, 0.18), transparent 60%);
      filter: blur(20px);
      opacity: 0.9;
      pointer-events: none;
    }

    /* App card */
    .app-card {
      width: min(520px, 100%);
      height: 380px;
      border-radius: var(--r-md);
      border: 1px solid var(--border-strong);
      background: rgba(22, 22, 27, 0.65);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(14px);
      position: relative;
      overflow: hidden;
    }

    .app-card-top {
      padding: 18px;
      display: flex;
      justify-content: flex-end;
    }

    .app-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 999px;
      border: 1px solid rgba(59, 130, 246, 0.30);
      background: rgba(30, 58, 138, 0.25);
      color: var(--text);
    }

    .app-pill-ico {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: rgba(17, 24, 39, 0.55);
      border: 1px solid rgba(160, 169, 190, 0.15);
    }

    .app-chat {
      padding: 24px 18px;
      display: flex;
      justify-content: center;
    }

    .app-bubble {
      max-width: 88%;
      padding: 18px;
      border-radius: 16px;
      border: 1px solid var(--border-strong);
      background: rgba(17, 17, 22, 0.65);
      color: rgba(229, 231, 235, 0.88);
      line-height: 1.55;
    }

    /* =========================================================
   Feature section
   ========================================================= */
    .feature-spacing {
      padding-top: clamp(5rem, 9vh, 8rem);
      padding-bottom: clamp(5rem, 9vh, 8rem);
    }

    .feature-block {
      background: var(--bg);
    }

    .feature-shell {
      border-radius: var(--r-lg);
      padding: clamp(2.5rem, 5vw, 4rem);
      background:
        radial-gradient(800px 400px at 20% 0%, rgba(255, 255, 255, 0.04), transparent 60%),
        var(--panel);
      border: 1px solid var(--border);
    }

    .feature-visual {
      display: flex;
      justify-content: center;
    }

    .feature-placeholder {
      width: 100%;
      max-width: 520px;
      aspect-ratio: 16 / 10;
      border-radius: var(--r-md);
      border: 1px dashed rgba(160, 169, 190, 0.25);
      display: grid;
      place-items: center;
      color: rgba(160, 169, 190, 0.6);
      background: rgba(0, 0, 0, 0.2);
    }

    .feature-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .feature-item {
      display: flex;
      gap: 16px;
      padding: 18px;
      border-radius: var(--r-sm);
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid transparent;
    }

    .feature-item.active {
      border-color: rgba(229, 231, 235, 0.35);
      background: rgba(255, 255, 255, 0.04);
    }

    .feature-ico {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.06);
      color: #c7d2fe;
    }

    .feature-ico.accent {
      background: rgba(59, 130, 246, 0.25);
      color: #93c5fd;
    }

    .feature-link {
      margin-left: 6px;
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
    }

    .feature-link:hover {
      text-decoration: underline;
    }

    /* =========================================================
   Chart showcase section
   ========================================================= */
    .chart-spacing {
      padding-top: clamp(4rem, 8vh, 7rem);
      padding-bottom: clamp(4rem, 8vh, 7rem);
    }

    .chart-showcase {
      background: var(--bg);
    }

    .chart-shell {
      border-radius: var(--r-lg);
      padding: clamp(1.5rem, 3vw, 2.25rem);
      background:
        /* radial-gradient(900px 500px at 70% 0%, rgba(131, 59, 246, 0.12), transparent 60%), */
        var(--panel);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
    }

    /* =========================================================
   NORC banner (toolbar/tabs/metrics)
   - merged duplicates
   ========================================================= */
    .norc-topbar,
    .norc-tabs,
    .norc-strategy-bar {
      background: var(--panel-2);
      font-family: var(--font-ui);
      color: #ccc;
      border-left: 1px solid var(--border-soft);
      border-right: 1px solid var(--border-soft);
    }

    .norc-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 16px;
      font-size: 10px;
      border-top: 1px solid var(--border-soft);
      border-top-left-radius: var(--r-sm);
      border-top-right-radius: var(--r-sm);
    }

    .norc-title {
      font-size: 11px;
      font-weight: 700;
    }

    .norc-icons i {
      margin-left: 10px;
      font-size: 12px;
      color: var(--muted-2);
      cursor: pointer;
    }

    .norc-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .norc-toggle-label {
      font-size: 8px;
      color: var(--muted-2);
    }

    /* Toggle switch */
    .norc-switch {
      position: relative;
      display: inline-block;
      width: 28px;
      height: 14px;
    }

    .norc-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .norc-slider {
      position: absolute;
      inset: 0;
      cursor: pointer;
      background-color: #444;
      transition: .2s;
      border-radius: 14px;
    }

    .norc-slider:before {
      position: absolute;
      content: "";
      height: 10px;
      width: 10px;
      left: 2px;
      bottom: 2px;
      background-color: #fff;
      transition: .2s;
      border-radius: 50%;
    }

    .norc-switch input:checked+.norc-slider {
      background-color: #337eff;
    }

    .norc-switch input:checked+.norc-slider:before {
      transform: translateX(14px);
    }

    /* Tabs */
    .norc-tabs {
      display: flex;
      gap: 16px;
      padding: 4px 16px;
      font-size: 8px;
      border-bottom: 1px solid #1e1e1e;
    }

    .norc-tab {
      color: #aaa;
      cursor: pointer;
    }

    .norc-tab.active {
      color: var(--blue-2);
      font-weight: 700;
    }

    /* Bottom metric row */
    .norc-strategy-bar {
      display: flex;
      align-items: flex-end;
      padding: 8px 16px;
      font-size: 11px;
      gap: 24px;

      /* responsive */
      flex-wrap: wrap;
      justify-content: flex-start;
      row-gap: 14px;
      column-gap: 24px;

      border-bottom: 1px solid var(--border-soft);
      border-bottom-left-radius: var(--r-sm);
      border-bottom-right-radius: var(--r-sm);
    }

    .norc-section {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 140px;
      white-space: nowrap;
    }

    .norc-label {
      color: var(--muted-2);
      line-height: 1;
    }

    .norc-value {
      font-weight: 700;
      color: #ddd;
    }

    .norc-value span {
      color: var(--muted-2);
      margin-left: 4px;
    }

    .norc-green {
      color: var(--green);
    }


    /* BUTTONS */
    .btn-accent {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      padding: 10px 22px;
      font-size: 12px;
      letter-spacing: 0px;

      color: var(--purple);
      background-color: rgba(150, 77, 220, 0.08);
      /* dark, subtle purple */
      border: 1px solid var(--purple);
      border-radius: 8px;

      text-decoration: none;
      transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
    }

    .btn-accent:hover {
      background-color: rgba(150, 77, 220, 0.16);
      box-shadow: 0 0 0 1px rgba(150, 77, 220, 0.35);
      transform: translateY(-1px);
    }

    .btn-accent:active {
      transform: translateY(0);
      box-shadow: none;
    }

    @media (max-width: 991px) {
      .btn-accent {
        width: 100%;
        padding: 14px 0;
      }
    }

    /* another button */

    .btn-danger-soft {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      padding: 10px 22px;
      font-size: 12px;
      letter-spacing: 0px;

      color: #ef4444;
      background-color: rgba(239, 68, 68, 0.08);
      /* dark muted red */
      border: 1px solid #ef4444;
      border-radius: 8px;

      text-decoration: none;
      transition:
        color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
    }

    .btn-danger-soft:hover {
      background-color: rgba(239, 68, 68, 0.16);
      box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.35);
      transform: translateY(-1px);
    }

    .btn-danger-soft:active {
      transform: translateY(0);
      box-shadow: none;
    }

    @media (max-width: 991px) {
      .btn-danger-soft {
        width: 100%;
        padding: 14px 0;
      }
    }


    /* ICONS */

    .feature-ico {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.06);
    }

    .feature-ico i {
      font-size: 18px;
      line-height: 1;
    }

    .feature-ico.accent {
      background: rgba(150, 77, 220, 0.20);
      /* purple tint */
      color: var(--purple);
      /* purple icon */
    }

  
  /* =========================
   Footer base
   ========================= */
  .site-footer {
    background: #121217;
    font-family: 'fontthree', sans-serif;
  }

  /* Divider */
  .site-footer .footer-top {
    border-color: rgba(160, 169, 190, 0.12) !important;
  }

  /* Legal text: tight lines */
  .site-footer .footer-muted {
    color: #888888;
    font-size: 11px;
    line-height: 1.3;
    /* stays tight */
  }

  /* Footer links */
  .site-footer .footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.2;
    transition: color 0.2s ease;
  }

  .site-footer .footer-link:hover {
    color: #e5e7eb;
    text-decoration: underline;
  }

  /* Bottom strip */
  .site-footer .footer-bottom {
    background: #121217;
  }

  /* Mobile fine-tune */
  @media (max-width: 768px) {
    .site-footer .footer-muted {
      font-size: 10.8px;
    }
  }


    .navbar .nav-link {
    font-size: 12px;
    padding: 18px 12px;
    transition: 0.3s;
  }

  .navbar {
    border-bottom: 1px solid #3f3f46;
  }

  .navbar-brand img {
    height: 15px;
  }

  .signup-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 12px;
    letter-spacing: 0px;
    /* text-transform: uppercase; */

    color: #e5e7eb;
    /* soft light grey */
    background-color: #1d1e23;
    border: 1px solid #3f3f46;
    /* thin grey border */
    border-radius: 6px;

    text-decoration: none;
    transition: all 0.25s ease;
  }

  .signup-btn:hover {
    color: #ffffff;
    border-color: #8b8f97;
    box-shadow: 0 0 0 1px rgba(139, 143, 151, 0.35);
    transform: translateY(-1px);
  }

  .signup-btn:active {
    transform: translateY(0);
    box-shadow: none;
  }



  @media (max-width: 991px) {
    .signup-btn {
      width: 100%;
      text-align: center;
      padding: 14px 0;
    }
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    /* above normal content; aligns with Bootstrap’s navbar z-index range */
  }


  .header-btn-primary {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: 600;

    color: #0e0e11;
    background: #ffffff;
    border: 1px solid #ffffff;

    transition: all 0.25s ease;
  }

  .header-btn-primary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
  }

  /* secondary (your old style but cleaner) */
  .header-btn-secondary {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 8px;

    color: #cbd5f5;
    background: transparent;
    border: 1px solid rgba(160, 169, 190, 0.25);

    transition: all 0.25s ease;
  }

  .header-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
  }

  .nav-item-badge {
    position: relative;
  }

  @media (min-width: 992px) {
    .nav-item-badge {
      margin-right: 72px !important;
    }
  }

  .nav-badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 6px);

    font-size: 10px;
    line-height: 1;
    padding: 5px 8px;
    border-radius: 8px;

    color: #e693fd;
    background: rgba(184, 59, 246, 0.12);
    border: 1px solid rgba(168, 59, 246, 0.35);

    letter-spacing: 0.04em;
    white-space: nowrap;
    pointer-events: none;
  }

  @media (max-width: 991px) {
    .nav-badge {
      position: static;
      transform: none;
      display: inline-flex;
      margin-left: 8px;
      vertical-align: middle;
    }
  }

  /* disclaimer*/

  .norconn-disclaimer {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.disclaimer-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #ff2aa3;
  border: 1px solid rgba(255, 42, 163, 0.45);
  background: rgba(255, 42, 163, 0.10);
}

.disclaimer-link {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(255, 42, 163, 0.65);
  text-underline-offset: 3px;
}

.disclaimer-link:hover {
  color: #ff2aa3;
}