:root {
      --bg: #0B1020;
      --bg-panel: #0F1530;
      --bg-panel-2: #121833;
      --primary: #00AEEF;
      --primary-rgb: 0, 174, 239;
      --primary-light: #33C5F5;
      --primary-dark: #0090CC;
      --secondary: #0090CC;
      --secondary-rgb: 0, 144, 204;
      --accent: #10B981;
      --accent-rgb: 16, 185, 129;
      --amber: #F59E0B;
      --amber-rgb: 245, 158, 11;
      --red: #EF4444;
      --purple: #8B5CF6;
      --text: #E6E9F5;
      --text-dim: #8088AC;
      --border: rgba(255, 255, 255, 0.08);
      --glass: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.12);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
      /* prevents horizontal scroll without breaking position: sticky */
      max-width: 100%;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      min-height: 100vh;
      position: relative;
      overflow-x: clip;
      transition: background 0.3s ease, color 0.3s ease;
    }

    /* ===== LIGHT MODE OVERRIDES ===== */
    body[data-mode="light"] {
      --bg: #F7F8FC;
      --bg-panel: #FFFFFF;
      --bg-panel-2: #F0F1F8;
      --text: #161B33;
      --text-dim: #5C6485;
      --border: rgba(20, 20, 50, 0.09);
      --glass: rgba(20, 20, 50, 0.035);
      --glass-border: rgba(20, 20, 50, 0.1);
    }

    /* Shadows */
    body[data-mode="light"] .mockup,
    body[data-mode="light"] .dash-panel,
    body[data-mode="light"] .card {
      box-shadow: 0 20px 50px rgba(20, 20, 50, 0.08);
    }

    body[data-mode="light"] .nav {
      background: rgba(247, 248, 252, 0.9);
    }

    body[data-mode="light"] .topbar {
      background: #FFFFFF;
      border-bottom: 1px solid rgba(15, 18, 33, 0.08);
    }

    /* Buttons */
    body[data-mode="light"] .btn-primary {
      color: #FFFFFF;
    }

    body[data-mode="light"] .btn-secondary {
      background: #FFFFFF;
      border-color: rgba(15, 18, 33, 0.14);
      color: #0F1221;
      box-shadow: 0 2px 8px rgba(15, 18, 33, 0.08);
    }

    /* Glow blobs — softer in light */
    body[data-mode="light"] .glow {
      opacity: 0.5;
    }

    /* Feature chips — stronger saturation on light bg */
    body[data-mode="light"] .h-chip:nth-child(1) {
      background: rgba(var(--primary-rgb), 0.1);
      border-color: rgba(var(--primary-rgb), 0.4);
      color: var(--primary);
    }

    body[data-mode="light"] .h-chip:nth-child(2) {
      background: rgba(59, 123, 250, 0.1);
      border-color: rgba(59, 123, 250, 0.4);
      color: #1D5FEF;
    }

    body[data-mode="light"] .h-chip:nth-child(3) {
      background: rgba(16, 185, 129, 0.1);
      border-color: rgba(16, 185, 129, 0.4);
      color: #059669;
    }

    body[data-mode="light"] .h-chip:nth-child(1) .chip-icon {
      background: rgba(var(--primary-rgb), 0.15);
    }

    body[data-mode="light"] .h-chip:nth-child(2) .chip-icon {
      background: rgba(59, 123, 250, 0.15);
    }

    body[data-mode="light"] .h-chip:nth-child(3) .chip-icon {
      background: rgba(16, 185, 129, 0.15);
    }

    /* Terminals — light theme variant */
    body[data-mode="light"] .term-window {
      background: #FAFBFF;
      border-color: rgba(15, 18, 33, 0.12);
      box-shadow: 0 16px 48px rgba(15, 18, 33, 0.12), 0 0 0 1px rgba(15, 18, 33, 0.06);
    }

    body[data-mode="light"] .term-bar {
      background: #F0F2FA;
      border-bottom-color: rgba(15, 18, 33, 0.08);
    }

    body[data-mode="light"] .term-title {
      color: rgba(15, 18, 33, 0.4);
    }

    body[data-mode="light"] .term-body {
      color: #1E2240;
    }

    /* Override hardcoded terminal text colors for light mode */
    body[data-mode="light"] .tl-dim {
      color: #9CA3AF;
    }

    body[data-mode="light"] .pipe-step {
      color: #374151;
    }

    body[data-mode="light"] .pipe-row {
      border-bottom-color: rgba(15, 18, 33, 0.06);
    }

    /* Section backgrounds */
    body[data-mode="light"] .why-section {
      background: #FFFFFF;
      border-color: rgba(15, 18, 33, 0.08);
    }

    body[data-mode="light"] .manager-section {
      background: #F7F8FF;
      border-color: rgba(15, 18, 33, 0.08);
    }

    body[data-mode="light"] .project-card,
    body[data-mode="light"] .track-card,
    body[data-mode="light"] .org-card,
    body[data-mode="light"] .manager-panel {
      background: #FFFFFF;
      box-shadow: 0 4px 16px rgba(15, 18, 33, 0.07);
    }

    body[data-mode="light"] .compare-card.traditional {
      background: rgba(239, 68, 68, 0.04);
    }

    body[data-mode="light"] .compare-card.nimblex {
      background: rgba(16, 185, 129, 0.05);
    }

    body[data-mode="light"] .duty-item {
      background: #F7F8FF;
    }

    body[data-mode="light"] .sprint-task {
      background: #F3F4F8;
      border-color: rgba(15, 18, 33, 0.08);
    }

    /* Feature items */
    body[data-mode="light"] .feature-item {
      background: #FFFFFF;
      border-color: rgba(15, 18, 33, 0.1);
      box-shadow: 0 2px 6px rgba(15, 18, 33, 0.05);
    }

    /* Modal */
    body[data-mode="light"] .modal-submit {
      color: #FFFFFF;
    }

    body[data-mode="light"] .form-select {
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234A5270' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    }

    body[data-mode="light"] .form-input,
    body[data-mode="light"] .form-select {
      background: #F7F8FF;
      border-color: rgba(15, 18, 33, 0.12);
      color: #0F1221;
    }

    body[data-mode="light"] .modal-card {
      background: #FFFFFF;
      border-color: rgba(15, 18, 33, 0.12);
      box-shadow: 0 40px 100px rgba(15, 18, 33, 0.2);
    }

    body[data-mode="light"] .custom-select-trigger {
      background: #F7F8FF;
      border-color: rgba(15, 18, 33, 0.12);
      color: #0F1221;
    }

    body[data-mode="light"] .custom-select-trigger.placeholder {
      color: #8088AC;
    }

    body[data-mode="light"] .custom-select-trigger:focus,
    body[data-mode="light"] .custom-select-trigger.open {
      border-color: var(--primary);
      background: #FFFFFF;
    }

    body[data-mode="light"] .custom-select-panel {
      background: #FFFFFF;
      border-color: rgba(15, 18, 33, 0.1);
      box-shadow: 0 8px 32px rgba(15, 18, 33, 0.12);
    }

    body[data-mode="light"] .custom-select-option {
      color: #4A5270;
    }

    body[data-mode="light"] .custom-select-option:not(:last-child) {
      border-bottom-color: rgba(15, 18, 33, 0.06);
    }

    body[data-mode="light"] .custom-select-option:hover {
      background: rgba(var(--primary-rgb), 0.06);
      color: #0F1221;
    }

    body[data-mode="light"] .custom-select-option.selected {
      background: rgba(var(--primary-rgb), 0.07);
      color: var(--primary);
    }

    body[data-mode="light"] .custom-select-option .opt-check {
      color: var(--primary);
    }

    body[data-mode="light"] .form-group.has-error .custom-select-trigger {
      border-color: #F87171;
    }

    /* Footer */
    body[data-mode="light"] .footer {
      border-top-color: rgba(15, 18, 33, 0.08);
    }

    /* ===== THEME SWITCHER PANEL ===== */
    section {
      padding: 90px 40px;
    }

    .wrap {
      max-width: 1280px;
      margin: 0 auto;
    }

    h2 {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 36px;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(var(--primary-rgb), 0.12);
      border: 1px solid rgba(var(--primary-rgb), 0.3);
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
      font-family: 'Inter', sans-serif;
      letter-spacing: normal;
      text-transform: none;
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-dim);
      max-width: 640px;
      line-height: 1.65;
      margin-bottom: 48px;
    }

    .grad-text {
      background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* ===== TOPBAR / NAV ===== */
    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 32px;
      border-bottom: 1px solid var(--border);
      background: var(--bg-panel);
      font-size: 13px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 100;
      gap: 20px;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-shrink: 0;
      min-width: 0;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-img {
      height: 42px;
      width: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .logo-img {
        height: 34px;
      }
    }

    .status-chip {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--accent);
      font-weight: 600;
    }

    .status-chip .blip {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 4px var(--accent);
      position: relative;
      flex-shrink: 0;
    }

    .status-chip .blip::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      border: 1.5px solid var(--accent);
      opacity: 0;
      animation: blip-ring 2s ease-out infinite;
    }

    @keyframes blip-ring {
      0% {
        transform: scale(1);
        opacity: 0.6;
      }

      100% {
        transform: scale(2);
        opacity: 0;
      }
    }

    .topbar-right {
      display: flex;
      gap: 20px;
      color: var(--text-dim);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      font-size: 13px;
      color: var(--text-dim);
      font-weight: 500;
    }

    .nav-links a {
      color: inherit;
      text-decoration: none;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-cta {
      background: var(--primary);
      color: #FFFFFF;
      padding: 9px 18px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .role-strip {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    .role-tab {
      padding: 7px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dim);
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 7px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
      white-space: nowrap;
    }

    .role-tab:not(.active):hover {
      border-color: rgba(var(--primary-rgb), 0.35);
      color: var(--text);
    }

    .role-tab.active {
      color: var(--text);
      background: rgba(var(--primary-rgb), 0.14);
      border-color: rgba(var(--primary-rgb), 0.3);
    }

    .role-tab .role-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--primary);
    }

    .role-tab.active .role-dot {
      background: var(--primary);
    }

    /* ===== HERO (Option 2 style: centered, glow, glass) ===== */
    .glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      pointer-events: none;
      z-index: 0;
    }

    .hero {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 80px 64px 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .hero .status-chip {
      margin-bottom: 16px;
      font-size: 13px;
    }

    /* Hero chips row */
    .hero-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 28px;
    }

    .h-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      padding: 7px 14px;
      border-radius: 100px;
      border: 1px solid transparent;
      opacity: 0;
      transform: translateY(10px);
      animation: chipIn 0.5s ease forwards;
    }

    .h-chip:nth-child(1) {
      animation-delay: 0.1s;
      background: rgba(99, 102, 241, 0.12);
      border-color: rgba(99, 102, 241, 0.3);
      color: #818CF8;
    }

    .h-chip:nth-child(2) {
      animation-delay: 0.25s;
      background: rgba(6, 182, 212, 0.12);
      border-color: rgba(6, 182, 212, 0.3);
      color: #22D3EE;
    }

    .h-chip:nth-child(3) {
      animation-delay: 0.4s;
      background: rgba(16, 185, 129, 0.12);
      border-color: rgba(16, 185, 129, 0.3);
      color: #34D399;
    }

    .h-chip .chip-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    .h-chip:nth-child(1) .chip-icon {
      background: rgba(99, 102, 241, 0.2);
    }

    .h-chip:nth-child(2) .chip-icon {
      background: rgba(6, 182, 212, 0.2);
    }

    .h-chip:nth-child(3) .chip-icon {
      background: rgba(16, 185, 129, 0.2);
    }

    @keyframes chipIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    h1 {
      font-family: 'Manrope', sans-serif;
      font-size: 54px;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    h1 .dim {
      color: var(--text-dim);
    }

    .tagline {
      font-size: 18px;
      color: var(--text);
      font-weight: 600;
      margin-bottom: 14px;
    }

    .sub {
      font-size: 17px;
      color: var(--text-dim);
      line-height: 1.6;
      max-width: 560px;
      margin: 0 auto 32px;
    }

    .cta-row {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 36px;
    }

    .btn-primary {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      padding: 15px 30px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 15px;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 40px rgba(var(--primary-rgb), 0.4);
      transition: opacity 0.2s ease;
    }

    .btn-primary:disabled {
      cursor: default;
    }

    .btn-secondary {
      background: var(--glass);
      color: var(--text);
      padding: 15px 30px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 15px;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      cursor: pointer;
      white-space: nowrap;
    }

    .feature-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      max-width: 680px;
      margin: 0 auto 70px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--text-dim);
      background: var(--glass);
      border: 1px solid var(--glass-border);
      padding: 8px 14px;
      border-radius: 100px;
    }

    .feature-item .check {
      color: var(--secondary);
      font-weight: 700;
    }

    /* Journey arrow strip */
    .journey-strip {
      display: flex;
      align-items: center;
      gap: 0;
      justify-content: center;
      margin: 0 auto 56px;
      flex-wrap: nowrap;
      max-width: 520px;
    }

    .j-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .j-node .j-dot {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
    }

    .j-node.j-final .j-dot {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: transparent;
      box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.4);
      color: #fff;
    }

    .j-node .j-lbl {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-dim);
      white-space: nowrap;
    }

    .j-node.j-final .j-lbl {
      color: var(--secondary);
    }

    .j-arr {
      color: var(--text-dim);
      padding: 0 4px;
      margin-bottom: 14px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      opacity: 0.5;
    }

    /* Left progress card */
    .prog-card {
      background: #0D1117;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
      animation: termfloat 6s ease-in-out infinite;
      width: 276px;
    }

    .prog-bar-bg {
      height: 4px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 100px;
      overflow: hidden;
      margin-top: 6px;
    }

    .prog-bar-fill {
      height: 100%;
      border-radius: 100px;
    }

    .prog-step {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 7px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      font-size: 11px;
      font-family: 'Inter', sans-serif;
    }

    .prog-step:last-child {
      border-bottom: none;
    }

    .prog-step .ps-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
    }

    .ps-done {
      background: rgba(16, 185, 129, 0.18);
      color: #10B981;
    }

    .ps-active {
      background: rgba(99, 102, 241, 0.22);
      color: #818CF8;
    }

    .ps-todo {
      background: rgba(255, 255, 255, 0.06);
      color: #484F58;
    }

    .prog-step .ps-label {
      flex: 1;
      color: #C9D1D9;
    }

    .prog-step .ps-done-label {
      color: #484F58;
    }

    .prog-step .ps-badge {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
    }

    .psb-done {
      background: rgba(16, 185, 129, 0.15);
      color: #10B981;
    }

    .psb-active {
      background: rgba(99, 102, 241, 0.18);
      color: #818CF8;
    }

    .psb-todo {
      background: rgba(255, 255, 255, 0.07);
      color: #484F58;
    }

    body[data-mode="light"] .prog-card {
      background: #FAFBFF;
      border-color: rgba(15, 18, 33, 0.12);
      box-shadow: 0 16px 48px rgba(15, 18, 33, 0.12);
    }

    body[data-mode="light"] .prog-step .ps-label {
      color: #1E2240;
    }

    body[data-mode="light"] .prog-step {
      border-bottom-color: rgba(15, 18, 33, 0.05);
    }

    body[data-mode="light"] .prog-bar-bg {
      background: rgba(15, 18, 33, 0.07);
    }

    /* ===== HERO WRAPPER & SIDE DECORATIONS ===== */
    .hero-outer {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-side {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 280px;
      pointer-events: none;
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px 0;
    }

    .hero-side.left {
      left: 24px;
      align-items: flex-start;
    }

    .hero-side.right {
      right: 24px;
      align-items: flex-end;
    }

    /* Terminal window */
    .term-window {
      width: 276px;
      background: #0D1117;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
      animation: termfloat 6s ease-in-out infinite;
    }

    .term-window.right-term {
      animation-delay: -3s;
      animation-duration: 7s;
    }

    @keyframes termfloat {

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

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

    .term-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 14px;
      background: #161B22;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .term-btn {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .term-title {
      margin-left: 6px;
      font-size: 10px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.3);
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.03em;
    }

    .term-body {
      padding: 14px 16px;
      font-family: 'Courier New', monospace;
      font-size: 10.5px;
      line-height: 1.85;
      color: #C9D1D9;
      min-height: 180px;
      overflow: hidden;
    }

    .tl {
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }

    .tl-prompt {
      color: var(--primary);
      flex-shrink: 0;
    }

    .tl-text {
      color: #C9D1D9;
    }

    .tl-green {
      color: #10B981;
    }

    .tl-cyan {
      color: var(--secondary);
    }

    .tl-amber {
      color: #F59E0B;
    }

    .tl-dim {
      color: #484F58;
    }

    .tl-white {
      color: #fff;
      font-weight: 600;
    }

    /* blinking cursor */
    .cursor {
      display: inline-block;
      width: 7px;
      height: 12px;
      background: var(--primary);
      margin-left: 2px;
      vertical-align: middle;
      animation: blink 1.1s step-end infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    /* pipeline status badges */
    .pipe-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .pipe-row:last-child {
      border-bottom: none;
    }

    .pipe-step {
      font-size: 10.5px;
      color: #8B949E;
      font-family: 'Inter', sans-serif;
    }

    .pipe-badge {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
    }

    .pipe-pass {
      background: rgba(16, 185, 129, 0.15);
      color: #10B981;
    }

    .pipe-run {
      background: rgba(99, 102, 241, 0.18);
      color: #818CF8;
    }

    .pipe-wait {
      background: rgba(255, 255, 255, 0.07);
      color: #484F58;
    }

    .pipe-fail {
      background: rgba(239, 68, 68, 0.15);
      color: #EF4444;
    }

    @media(max-width:1300px) {
      .hero-side {
        display: none;
      }
    }

    /* Floating glass stage */
    .stage {
      position: relative;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto 80px;
      padding: 90px 40px 110px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .card {
      position: absolute;
      z-index: 2;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(16px);
      border-radius: 16px;
      padding: 18px 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .card-1 {
      top: 30px;
      left: 0px;
      width: 210px;
    }

    .card-2 {
      top: -10px;
      right: 0px;
      width: 210px;
    }

    .card-3 {
      bottom: 30px;
      left: 30px;
      width: 210px;
    }

    .card-4 {
      bottom: -15px;
      right: 20px;
      width: 210px;
    }

    .card .ctitle {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 600;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .card .cval {
      font-family: 'Manrope', sans-serif;
      font-size: 22px;
      font-weight: 800;
    }

    .card .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      background: rgba(var(--secondary-rgb), 0.15);
      color: var(--secondary);
      padding: 4px 10px;
      border-radius: 100px;
      margin-top: 8px;
    }

    svg.connections {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .flow-line {
      stroke-dasharray: 6 10;
      animation: flow 1s linear infinite;
    }

    @keyframes flow {
      to {
        stroke-dashoffset: -16;
      }
    }

    /* Dashboard mockup (glass style) */
    .dash-panel {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 560px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    }

    .dash-head {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      border-bottom: 1px solid var(--glass-border);
    }

    .dash-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .dash-title {
      margin-left: 6px;
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 600;
    }

    .dash-body {
      padding: 22px;
    }

    .dash-label {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 14px;
    }

    .dash-metric-row {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
    }

    .dash-metric {
      flex: 1;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 10px;
      padding: 12px;
    }

    .dash-metric .dmval {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 19px;
    }

    .dash-metric .dmlbl {
      font-size: 11px;
      color: var(--text-dim);
      margin-top: 2px;
    }

    .dash-timeline {
      display: flex;
      flex-direction: column;
    }

    .dash-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dash-row:last-child {
      border-bottom: none;
    }

    .dash-icon {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .dash-row.done .dash-icon {
      background: rgba(16, 185, 129, 0.18);
      color: var(--accent);
    }

    .dash-row.active .dash-icon {
      background: rgba(var(--primary-rgb), 0.22);
      color: var(--primary);
    }

    .dash-row.todo .dash-icon {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text-dim);
    }

    .dash-text {
      font-size: 13px;
      flex: 1;
    }

    .dash-row.todo .dash-text {
      color: var(--text-dim);
    }

    .dash-meta {
      font-size: 11px;
      color: var(--text-dim);
      font-weight: 600;
    }

    @media (max-width: 1000px) {
      .status-chip {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        overflow: visible;
        min-width: 0;
      }

      .status-chip-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
      }
    }

    @media (max-width: 1000px) {
      .hero {
        padding: 50px 20px 20px;
      }

      h1 {
        font-size: 36px;
      }

      .card {
        display: none;
      }

      svg.connections {
        display: none;
      }

      .stage {
        padding: 40px 16px 32px;
        margin-bottom: 0;
      }

      .stage-header {
        margin-bottom: 28px !important;
      }

      .dash-panel {
        max-width: 100%;
      }
    }

    @media (max-width: 1000px) {
      h1 {
        font-size: 36px;
      }

      .topbar-right,
      .nav-links {
        display: none;
      }

      .topbar {
        padding: 14px 20px;
      }

      section {
        padding: 60px 24px;
      }
    }

    @media (max-width: 640px) {
      .nav-cta {
        padding: 8px 12px;
        font-size: 12px;
      }

      .logo {
        font-size: 14px;
      }

      .role-strip {
        max-width: 40vw;
      }

      .role-tab {
        padding: 6px 10px;
        font-size: 12px;
      }

      .role-tab .role-dot {
        display: none;
      }
    }

    .mobile-menu-btn {
      display: none;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: transparent;
      border: none;
      color: var(--primary);
      cursor: pointer;
      flex-shrink: 0;
      margin-left: auto;
      padding: 0;
    }

    .mobile-menu-btn svg {
      display: block;
      width: 20px;
      height: 20px;
    }

    .mobile-menu-btn:hover {
      opacity: 0.75;
    }

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(5, 7, 16, 0.55);
      backdrop-filter: blur(3px);
      display: none;
    }

    .mobile-nav-overlay.open {
      display: block;
    }

    .mobile-nav-panel {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 82%;
      max-width: 320px;
      background: var(--bg-panel);
      border-left: 1px solid var(--glass-border);
      box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      padding: 20px;
      transform: translateX(100%);
      transition: transform 0.25s ease;
    }

    .mobile-nav-overlay.open .mobile-nav-panel {
      transform: translateX(0);
    }

    .mobile-nav-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .mobile-nav-head .logo {
      font-size: 15px;
    }

    .mobile-nav-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
    }

    .mobile-nav-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 14px;
      border-radius: 10px;
      cursor: pointer;
      color: var(--text-dim);
      font-size: 14.5px;
      font-weight: 600;
      background: none;
      border: 1px solid transparent;
      text-align: left;
      font-family: 'Inter', sans-serif;
    }

    .mobile-nav-link:hover {
      border-color: rgba(var(--primary-rgb), 0.3);
      color: var(--text);
    }

    .mobile-nav-link.active {
      background: rgba(var(--primary-rgb), 0.12);
      color: var(--primary);
      border-color: rgba(var(--primary-rgb), 0.3);
    }

    .mobile-nav-cta {
      margin-top: 16px;
    }

    @media (max-width: 1000px) {
      .topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 64px;
        padding: 12px 20px;
        gap: 12px;
        overflow: hidden;
        /* nothing can overflow the topbar */
      }

      .topbar-left {
        min-width: 0;
        flex: 1;
        gap: 8px;
        /* tighter gap on mobile */
        overflow: hidden;
        /* clip any internal overflow */
      }

      /* Smaller logo on tablet */
      .logo-img {
        height: 30px;
        max-width: 120px;
        object-fit: contain;
        object-position: left center;
      }

      .role-strip,
      .nav-cta {
        display: none !important;
      }

      .mobile-menu-btn {
        display: inline-flex !important;
        flex-shrink: 0;
        margin-left: 0;
        align-self: center;
      }

      h2 {
        font-size: 28px;
      }

      .section-sub {
        font-size: 14.5px;
      }

      section {
        padding: 60px 24px;
      }

      .parallax-section {
        padding: 60px 0;
      }

      .wrap {
        padding: 0 20px;
      }

      .footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 24px 20px;
      }

      .dash-metric-row {
        flex-wrap: wrap;
      }

      .dash-metric {
        min-width: calc(50% - 6px);
      }

      .org-row {
        flex-wrap: wrap;
      }

      .org-badge {
        margin-left: 0;
        margin-top: 6px;
      }

      .check-in-row {
        flex-wrap: wrap;
        gap: 4px;
      }
    }

    @media (max-width: 480px) {
      section {
        padding: 40px 16px;
      }

      .parallax-section {
        padding: 40px 0;
      }

      .wrap {
        padding: 0 16px;
      }

      h1 {
        font-size: 30px;
      }

      h2 {
        font-size: 24px;
      }

      .tagline {
        font-size: 15px;
      }

      .sub {
        font-size: 14.5px;
      }

      .topbar {
        padding: 10px 14px;
        gap: 10px;
      }

      .status-chip {
        font-size: 11px;
        overflow: visible;
        min-width: 0;
      }

      .status-chip-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
      }

      .dash-panel {
        border-radius: 14px;
      }

      .dash-body {
        padding: 16px;
      }

      .dash-metric {
        min-width: 100%;
      }

      /* Stack CTA buttons vertically on phones */
      .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
      }

      /* Hero padding */
      .hero {
        padding: 56px 16px 20px;
      }

      /* Journey strip — wrap on mobile, arrows stay visible */
      .journey-strip {
        flex-wrap: wrap;
        gap: 10px 6px;
        justify-content: center;
        max-width: 100%;
        margin-bottom: 32px;
      }

      .feature-grid {
        margin-bottom: 32px;
      }

      .modal-card {
        padding: 22px 18px;
        border-radius: 14px;
      }

      .modal-title {
        font-size: 20px;
      }
    }

    .panel-head {
      display: flex;
      justify-content: space-between;
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      font-size: 12px;
      color: var(--text-dim);
    }

    /* ===== WHY NIMBLEX ===== */
    .why-section {
      background: var(--bg-panel);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    /* Subtle grid background */
    .why-section::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.5;
    }

    /* 2-column top row */
    .why-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 48px;
    }

    .why-left {
      flex: 1;
      max-width: 620px;
    }

    .why-right {
      flex: 1;
      display: flex;
      justify-content: flex-end;
    }

    /* Reporting Manager Widget */
    .rm-widget {
      width: 100%;
      max-width: 380px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(24px);
      animation: termfloat 6s ease-in-out infinite;
    }

    .rm-widget-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(0, 0, 0, 0.2);
    }

    .rm-w-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: 0.04em;
    }

    .rm-w-status {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      font-weight: 800;
      color: #10B981;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10B981;
      box-shadow: 0 0 8px #10B981;
    }

    .rm-widget-body {
      padding: 24px 20px;
    }

    .rm-metrics-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }

    .rm-metric-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 12px;
      padding: 16px;
      text-align: center;
    }

    .rm-mb-val {
      font-family: 'Manrope', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 4px;
    }

    .rm-mb-lbl {
      font-size: 10.5px;
      font-weight: 700;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .rm-activity {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 12px;
      padding: 16px;
    }

    .rm-act-head {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      font-weight: 800;
      color: var(--text-dim);
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .rm-act-row {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      color: var(--text);
      margin-bottom: 12px;
    }

    .rm-act-row:last-child {
      margin-bottom: 0;
    }

    .rm-act-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: rgba(99, 102, 241, 0.15);
      color: #818CF8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }

    .rm-act-row.success .rm-act-icon {
      background: rgba(16, 185, 129, 0.15);
      color: #34D399;
    }

    body[data-mode="light"] .rm-widget {
      background: rgba(255, 255, 255, 0.7);
      border-color: rgba(15, 18, 33, 0.1);
      box-shadow: 0 24px 64px rgba(15, 18, 33, 0.08);
    }

    body[data-mode="light"] .rm-widget-header {
      background: rgba(15, 18, 33, 0.02);
      border-bottom-color: rgba(15, 18, 33, 0.05);
    }

    body[data-mode="light"] .rm-metric-box,
    body[data-mode="light"] .rm-activity {
      background: #fff;
      border-color: rgba(15, 18, 33, 0.06);
      box-shadow: 0 4px 12px rgba(15, 18, 33, 0.03);
    }

    body[data-mode="light"] .rm-mb-val {
      color: var(--text);
    }

    body[data-mode="light"] .rm-act-head {
      color: var(--text-dim);
    }

    @media (max-width: 1000px) {
      .why-top-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .why-right {
        width: 100%;
        justify-content: center;
      }
    }

    /* Stat pills row */
    .stat-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .stat-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 100px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(8px);
      font-size: 13px;
      font-weight: 600;
    }

    .stat-pill .sp-icon {
      color: var(--secondary);
      font-weight: 800;
      font-size: 14px;
    }

    .stat-pill .sp-lbl {
      color: var(--text);
    }

    /* Mini visual journey */
    .mini-journey {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 40px;
      margin-bottom: 10px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-dim);
    }

    .mini-journey .mj-arr {
      color: var(--text-dim);
      font-size: 16px;
      opacity: 0.5;
      font-weight: 400;
    }

    .mini-journey .mj-end {
      color: var(--text);
      background: rgba(var(--secondary-rgb), 0.15);
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid rgba(var(--secondary-rgb), 0.3);
    }

    /* Row-aligned comparison table */
    .compare-table {
      width: 100%;
      max-width: 900px;
      border-collapse: separate;
      border-spacing: 0;
    }

    .compare-table thead th {
      padding: 14px 20px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-bottom: 1px solid var(--border);
    }

    .compare-table thead .th-trad {
      background: rgba(239, 68, 68, 0.06);
      color: #F87171;
      border-radius: 12px 0 0 0;
      border: 1px solid rgba(239, 68, 68, 0.15);
      border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    }

    .compare-table thead .th-nim {
      background: rgba(16, 185, 129, 0.07);
      color: #34D399;
      border-radius: 0 12px 0 0;
      border: 1px solid rgba(16, 185, 129, 0.2);
      border-left: none;
      border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    }

    .compare-table tbody tr td {
      padding: 13px 20px;
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      vertical-align: middle;
    }

    .compare-table tbody tr:last-child td {
      border-bottom: none;
    }

    .compare-table tbody .td-trad {
      background: rgba(239, 68, 68, 0.03);
      color: var(--text-dim);
      border-left: 1px solid rgba(239, 68, 68, 0.12);
      border-right: 1px solid rgba(239, 68, 68, 0.12);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .compare-table tbody .td-nim {
      background: rgba(16, 185, 129, 0.04);
      color: var(--text);
      border-right: 1px solid rgba(16, 185, 129, 0.15);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Use CSS grid for row-by-row alignment */
    .compare-rows {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 0;
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .compare-row:last-child {
      border-bottom: none;
    }

    .compare-row .cr-trad {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 20px;
      font-size: 14px;
      color: var(--text-dim);
      background: rgba(239, 68, 68, 0.03);
      border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .compare-row .cr-nim {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 20px;
      font-size: 14px;
      color: var(--text);
      background: rgba(16, 185, 129, 0.04);
    }

    .cr-x {
      color: #F87171;
      font-weight: 800;
      flex-shrink: 0;
      font-size: 13px;
    }

    .cr-check {
      color: #10B981;
      font-weight: 800;
      flex-shrink: 0;
      font-size: 13px;
    }

    /* Column headers */
    .compare-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: 12px 12px 0 0;
      overflow: hidden;
      margin: 0 auto;
      max-width: 900px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-bottom: none;
    }

    .ch-trad {
      padding: 14px 20px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #F87171;
      background: rgba(239, 68, 68, 0.08);
      border-right: 1px solid rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ch-nim {
      padding: 14px 20px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #10B981;
      background: rgba(16, 185, 129, 0.08);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .compare-body {
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 0 0 12px 12px;
      overflow: hidden;
      margin: 0 auto;
      max-width: 900px;
    }

    .why-closer {
      margin-top: 36px;
      font-size: 16px;
      color: var(--text);
      font-weight: 600;
      text-align: center;
    }

    body[data-mode="light"] .compare-row .cr-trad {
      background: rgba(239, 68, 68, 0.04);
    }

    body[data-mode="light"] .compare-row .cr-nim {
      background: rgba(16, 185, 129, 0.05);
    }

    body[data-mode="light"] .ch-trad {
      background: rgba(239, 68, 68, 0.08);
    }

    body[data-mode="light"] .ch-nim {
      background: rgba(16, 185, 129, 0.08);
    }

    body[data-mode="light"] .compare-header,
    body[data-mode="light"] .compare-body {
      border-color: rgba(15, 18, 33, 0.1);
    }

    body[data-mode="light"] .compare-row {
      border-bottom-color: rgba(15, 18, 33, 0.06);
    }

    body[data-mode="light"] .compare-row .cr-trad {
      border-right-color: rgba(15, 18, 33, 0.08);
    }

    body[data-mode="light"] .why-section::before {
      opacity: 0.3;
    }

    /* ===== HOW IT WORKS PARALLAX ===== */
    .parallax-section {
      padding: 100px 0;
      background: var(--bg);
      position: relative;
    }

    .hiw-container {
      display: flex;
      gap: 40px;
      position: relative;
      align-items: flex-start;
    }

    .hiw-sticky-col {
      flex: 1;
      position: sticky;
      top: 120px;
      height: calc(100vh - 160px);
      max-height: 600px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 20px;
    }

    .hiw-scroll-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding: 40px 0 120px 0;
    }

    .hiw-dynamic-visual {
      margin-top: 40px;
      padding: 32px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(24px);
      position: relative;
      overflow: hidden;
    }

    .hiw-step-indicator {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 24px;
    }

    .hsi-label {
      font-size: 14px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .hsi-number {
      font-family: 'Manrope', sans-serif;
      font-size: 56px;
      font-weight: 900;
      line-height: 1;
      color: var(--text);
      transition: all 0.3s ease;
    }

    .hsi-total {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dim);
    }

    .hiw-progress-track {
      width: 100%;
      height: 6px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 10px;
      margin-bottom: 20px;
      overflow: hidden;
    }

    .hiw-progress-fill {
      height: 100%;
      width: 16.66%;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 10px;
      transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .hiw-visual-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      transition: opacity 0.3s ease;
    }

    .hiw-step-card {
      background: var(--bg-panel);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      transition: all 0.4s ease;
      opacity: 0.3;
      transform: scale(0.95);
    }

    .hiw-step-card.in-view {
      opacity: 1;
      transform: scale(1);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      border-color: rgba(16, 185, 129, 0.3);
    }

    .hsc-num {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Manrope', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--text-dim);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }

    .hiw-step-card.in-view .hsc-num {
      background: var(--bg);
      border-color: var(--primary);
      color: var(--primary);
      box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
    }

    .hsc-title {
      font-size: 24px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .hsc-desc {
      font-size: 15px;
      color: var(--text-dim);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    @media(max-width: 900px) {
      .hiw-container {
        flex-direction: column;
        gap: 0;
      }

      .hiw-sticky-col {
        position: relative;
        top: 0;
        height: auto;
        max-height: none;
        margin-bottom: 60px;
      }

      .hiw-sticky-content {
        padding: 0 24px;
      }

      .hiw-dynamic-visual {
        display: none;
      }

      .hiw-scroll-col {
        padding: 20px 0;
        gap: 60px;
        margin-left: 20px;
      }

      .hiw-step-card {
        opacity: 1;
        transform: none;
      }
    }

    body[data-mode="light"] .hiw-dynamic-visual {
      background: rgba(255, 255, 255, 0.7);
      border-color: rgba(15, 18, 33, 0.1);
      box-shadow: 0 24px 64px rgba(15, 18, 33, 0.08);
    }

    body[data-mode="light"] .hiw-progress-track {
      background: rgba(15, 18, 33, 0.06);
    }

    body[data-mode="light"] .hsc-num {
      background: #fff;
    }

    .vtl-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .vtl-pill {
      font-size: 11px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 100px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: var(--text-dim);
      transition: all 0.4s ease;
    }

    .hiw-step-card.in-view .vtl-pill {
      background: rgba(var(--primary-rgb), 0.1);
      border-color: rgba(var(--primary-rgb), 0.25);
      color: var(--primary);
    }

    /* ===== PROJECTS ===== */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .project-card {
      background: var(--bg-panel);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px;
    }

    .project-card .picon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 16px;
    }

    .project-card .ptitle {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 12px;
    }

    .project-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .project-card li {
      font-size: 13.5px;
      color: var(--text-dim);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .project-card li::before {
      content: '›';
      color: var(--secondary);
      font-weight: 700;
    }

    .projects-footer {
      margin-top: 28px;
      font-size: 14.5px;
      color: var(--text-dim);
    }

    /* ===== ARCHITECTS / MENTORS ===== */
    .mentor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .mentor-list {
      list-style: none;
    }

    .mentor-list li {
      display: flex;
      gap: 12px;
      font-size: 15px;
      color: var(--text);
      padding: 11px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mentor-list li::before {
      content: '◆';
      color: var(--primary);
      font-size: 10px;
      margin-top: 5px;
    }

    .mentor-quote {
      font-size: 15px;
      color: var(--text-dim);
      font-style: italic;
      margin-top: 24px;
      border-left: 2px solid var(--primary);
      padding-left: 16px;
    }

    .org-card {
      background: var(--bg-panel);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
    }

    .org-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .org-row:last-child {
      border-bottom: none;
    }

    .org-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 13px;
      flex-shrink: 0;
    }

    .org-info .org-name {
      font-size: 14px;
      font-weight: 700;
    }

    .org-info .org-role {
      font-size: 12px;
      color: var(--text-dim);
    }

    .org-badge {
      margin-left: auto;
      font-size: 11px;
      background: rgba(var(--primary-rgb), 0.15);
      color: var(--primary);
      padding: 4px 10px;
      border-radius: 100px;
      font-weight: 600;
    }

    /* ===== REPORTING MANAGER ===== */
    .manager-section {
      background: var(--bg-panel);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .manager-grid {
      display: grid;
      grid-template-columns: 35fr 65fr;
      gap: 60px;
      align-items: center;
    }

    .duty-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .duty-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--text-dim);
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px;
    }

    .duty-item .duty-icon {
      color: var(--secondary);
      font-weight: 700;
      flex-shrink: 0;
    }

    .manager-callout {
      margin-top: 28px;
      font-size: 15px;
      color: var(--text);
      background: rgba(var(--secondary-rgb), 0.06);
      border: 1px solid rgba(var(--secondary-rgb), 0.2);
      border-radius: 10px;
      padding: 16px 18px;
    }

    .manager-panel {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px;
    }

    .check-in-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 13px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13.5px;
    }

    .check-in-row:last-child {
      border-bottom: none;
    }

    .check-in-row .status-ok {
      color: var(--accent);
      font-weight: 600;
      font-size: 12px;
    }

    .check-in-row .status-due {
      color: var(--amber);
      font-weight: 600;
      font-size: 12px;
    }

    /* ===== PROGRESS TRACKING ===== */
    .track-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .track-card {
      background: var(--bg-panel);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px;
    }

    .track-card .tlbl {
      font-size: 12px;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }

    .track-card .tval {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 30px;
      margin-bottom: 6px;
    }

    .bar-bg {
      height: 7px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 100px;
      overflow: hidden;
      margin-top: 8px;
    }

    .bar-fill {
      height: 100%;
      border-radius: 100px;
    }

    /* ===== ROADMAP (steps) ===== */
    .roadmap-grid{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .roadmap-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 760px;
    }

    .road-step {
      display: flex;
      gap: 18px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      align-items: center;
    }

    .road-step:last-child {
      border-bottom: none;
    }

    .road-num {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 13px;
      color: var(--secondary);
      width: 38px;
      flex-shrink: 0;
    }

    .road-name {
      font-size: 15.5px;
      font-weight: 600;
    }

    .btn-brochure{
      background: var(--primary);
      border: none;
      color: #FFFFFF;
      padding: 9px 18px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 20px;
    }

    /* ===== FAQ ===== */

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-q {
      font-size: 15.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 20px 0;
      cursor: pointer;
      user-select: none;
      transition: color 0.15s ease;
    }

    .faq-q:hover {
      color: var(--primary-light);
    }

    .faq-q .qmark {
      color: var(--secondary);
      flex-shrink: 0;
    }

    .faq-q .faq-chevron {
      margin-left: auto;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease, background 0.15s ease;
    }

    .faq-item.open .faq-q .faq-chevron {
      transform: rotate(180deg);
      background: rgba(var(--primary-rgb), 0.14);
      border-color: rgba(var(--primary-rgb), 0.35);
    }

    .faq-item.open .faq-q {
      color: var(--text);
    }

    .faq-a {
      font-size: 14.5px;
      color: var(--text-dim);
      line-height: 1.6;
      padding-left: 24px;
      overflow: hidden;
      max-height: 0;
      padding-bottom: 0;
      transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding-bottom: 20px;
    }

    .final-lines {
      font-size: 17px;
      color: var(--text-dim);
      margin: 20px 0 36px;
      line-height: 1.8;
    }

    .final-lines strong {
      color: var(--text);
      font-weight: 700;
    }

    /* ===== CONTACT SECTION (Roboroid-style, light theme) ===== */
    .contact-section {
      background: #F7F8FA;
      padding: 60px 64px;
    }

    .contact-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.3fr 0.7fr 1fr;
      gap: 70px;
      align-items: start;
    }

    .contact-left .contact-logo-img {
      height: 44px;
      object-fit: contain;
      object-position: left center;
      margin-bottom: 24px;
    }

    .contact-left p {
      font-size: 15.5px;
      line-height: 1.75;
      color: #4B5566;
      max-width: 460px;
      margin-bottom: 28px;
    }

    .contact-discover-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .contact-discover-btn:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    .contact-right h3 {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 26px;
      color: #14171F;
      margin-bottom: 28px;
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .contact-info-row {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
    }

    .contact-info-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(var(--primary-rgb), 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-info-text {
      font-size: 15.5px;
      font-weight: 600;
      color: #20242E;
    }

    .contact-info-row:hover .contact-info-text {
      color: var(--primary);
    }

    .contact-info-row:hover .contact-info-icon {
      background: rgba(var(--primary-rgb), 0.18);
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .contact-section {
        padding: 60px 24px;
      }
    }

    .footer {
      padding: 30px 40px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      font-size: 12.5px;
      color: var(--text-dim);
    }

    /* ===== SIGNUP MODAL ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(5, 7, 16, 0.65);
      backdrop-filter: blur(4px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .modal-overlay.open {
      display: flex;
    }

    .modal-card {
      position: relative;
      width: 100%;
      max-width: 460px;
      background: var(--bg-panel);
      border: 1px solid var(--glass-border);
      border-radius: 18px;
      padding: 32px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
      max-height: 88vh;
    }

    .modal-close {
      position: absolute;
      top: 24px;
      right: 18px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: transparent;
      border: none;
      color: var(--primary);
      font-size: 18px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .modal-close:hover {
      opacity: 0.75;
    }

    .modal-eyebrow {
      font-size: 12px;
      color: var(--secondary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 8px;
    }

    .modal-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 24px;
      margin-bottom: 8px;
      padding-right: 24px;
    }

    .modal-sub {
      font-size: 14px;
      color: var(--text-dim);
      margin-bottom: 26px;
      line-height: 1.5;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 7px;
    }

    .form-input,
    .form-select {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      padding: 11px 14px;
      border-radius: 9px;
      outline: none;
      transition: border-color 0.15s ease;
    }

    .form-input:focus,
    .form-select:focus {
      border-color: var(--primary);
    }

    .form-select {
      appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238088AC' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
      background-repeat: no-repeat;
      background-position: right 14px center;
    }

    /* ── Custom Dropdown ── */
    .custom-select-wrap {
      position: relative;
      width: 100%;
    }

    .custom-select-trigger {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      padding: 11px 40px 11px 14px;
      border-radius: 9px;
      outline: none;
      cursor: pointer;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      transition: border-color 0.15s ease;
      box-sizing: border-box;
    }

    .custom-select-trigger.placeholder {
      color: var(--text-dim);
    }

    .custom-select-trigger:focus,
    .custom-select-trigger.open {
      border-color: var(--primary);
    }

    .custom-select-trigger svg {
      flex-shrink: 0;
      transition: transform 0.2s ease;
      opacity: 0.55;
    }

    .custom-select-trigger.open svg {
      transform: rotate(180deg);
      opacity: 1;
    }

    .custom-select-panel {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      background: var(--glass-bg, #1a1d2e);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      z-index: 9999;
      box-shadow: 0 12px 40px rgba(0,0,0,0.45);
      backdrop-filter: blur(16px);
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .custom-select-panel.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .custom-select-option {
      padding: 11px 16px;
      font-size: 13.5px;
      color: var(--text-dim);
      cursor: pointer;
      transition: background 0.12s ease, color 0.12s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .custom-select-option:not(:last-child) {
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .custom-select-option:hover {
      background: rgba(var(--primary-rgb), 0.1);
      color: var(--text);
    }

    .custom-select-option.selected {
      color: var(--primary);
      background: rgba(var(--primary-rgb), 0.07);
    }

    .custom-select-option .opt-check {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      color: var(--primary);
      transition: opacity 0.15s ease;
    }

    .custom-select-option.selected .opt-check {
      opacity: 1;
    }

    .form-group.has-error .custom-select-trigger {
      border-color: #F87171;
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-error {
      font-size: 12px;
      color: #F87171;
      margin-top: 5px;
      display: none;
    }

    .form-group.has-error .form-input,
    .form-group.has-error .form-select {
      border-color: #F87171;
    }

    .form-group.has-error .form-error {
      display: block;
    }

    .modal-submit {
      width: 100%;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      padding: 14px;
      border-radius: 9px;
      border: none;
      font-weight: 700;
      font-size: 14.5px;
      cursor: pointer;
      margin-top: 8px;
      transition: opacity 0.2s ease;
    }

    .modal-submit:disabled {
      opacity: 0.7;
      cursor: default;
    }

    .modal-note {
      font-size: 12px;
      color: var(--text-dim);
      text-align: center;
      margin-top: 16px;
      line-height: 1.5;
    }

    .modal-success {
      display: none;
      text-align: center;
      padding: 20px 0;
    }

    .modal-success.open {
      display: block;
    }

    .modal-success .success-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      margin: 0 auto 18px;
      background: rgba(16, 185, 129, 0.15);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
    }

    .modal-success h3 {
      font-family: 'Manrope', sans-serif;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .modal-success p {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.6;
    }

    @media (max-width: 640px) {
      .form-row-2 {
        grid-template-columns: 1fr;
      }

      .modal-card {
        padding: 26px 22px;
      }
    }

    @media (max-width: 1000px) {

      .compare-grid,
      .mentor-grid,
      .manager-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .projects-grid,
      .track-grid,
      .duty-grid,.roadmap-grid {
        grid-template-columns: 1fr 1fr;
      }

      .roadmap-grid {
        gap: 0px;
      }

      .roadmap-grid .roadmap-list:first-child .road-step:last-child{
        border-bottom: 1px solid var(--border);
      }

      .journey-track {
        flex-direction: column;
        align-items: flex-start;
      }

      .j-connector {
        display: none;
      }

      .j-stage {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 14px;
      }
    }

    @media (max-width: 640px) {

      .projects-grid,
      .track-grid,
      .duty-grid,.roadmap-grid {
        grid-template-columns: 1fr;
      }

      .roadmap-grid {
        gap: 0px;
      }

      .roadmap-grid .roadmap-list:first-child .road-step:last-child{
        border-bottom: 1px solid var(--border);
      }
    }

    @media (max-width: 360px) {
      section {
        padding: 36px 14px;
      }

      .wrap {
        padding: 0 14px;
      }

      .hero {
        padding: 40px 14px 16px;
      }

      .hiw-sticky-content {
        padding: 0 14px;
      }

      h1 {
        font-size: 26px;
      }

      h2 {
        font-size: 22px;
      }
    }
    /* ── Help Banner ── */
    .help-banner {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 99;
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--primary);
      color: #fff;
      padding: 12px 18px 12px 14px;
      border-radius: 100px;
      box-shadow: 0 8px 28px rgba(0, 174, 239, 0.35);
      font-family: 'Inter', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      animation: banner-in 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
      animation-delay: 1.2s;
    }

    .help-banner:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(0, 174, 239, 0.45);
    }

    .help-banner .hb-icon {
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .help-banner .hb-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .help-banner .hb-label {
      font-size: 11px;
      font-weight: 500;
      opacity: 0.85;
      letter-spacing: 0.02em;
    }

    .help-banner .hb-number {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    @keyframes banner-in {
      from { opacity: 0; transform: translateY(16px) scale(0.95); }
      to   { opacity: 1; transform: translateY(0)   scale(1); }
    }

    @media (max-width: 480px) {
      .help-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        border-radius: 14px;
        justify-content: center;
      }
    }

    /* ── Tech Stack Ticker ── */
    .ticker-strip {
      width: 100%;
      padding: 10px 0 ;
      overflow: hidden;
      position: relative;
      z-index: 10;
    }
 
    .ticker-inner {
      display: flex;
      align-items: center;
      height: 56px;
      position: relative;
    }
 
    .ticker-label {
      flex-shrink: 0;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dim);
      letter-spacing: 0.04em;
      white-space: nowrap;
      padding: 0 2px 0 24px;
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      z-index: 2;
      background: transparent;
    }
 
    .ticker-label::after {
      content: '';
      width: 1px;
      height: 20px;
      background: var(--border);
      margin-left: 4px;
    }
 
    .ticker-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--text-dim);
      flex-shrink: 0;
    }
 
    .ticker-track {
      display: flex;
      align-items: center;
      gap: 0;
      animation: ticker-scroll 18s linear infinite;
      will-change: transform;
    }
 
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 0 28px;
      white-space: nowrap;
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.01em;
      position: relative;
    }
 
    .ticker-item::after {
      content: '•';
      position: absolute;
      right: -2px;
      color: var(--text-dim);
      font-size: 10px;
      opacity: 0.4;
    }
 
    .ticker-item img,
    .ticker-item svg {
      width: 70px;
      height: 80px;
      object-fit: contain;
      flex-shrink: 0;
    }
 
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    @media (max-width: 640px) {
      .ticker-strip {
        padding: 10px 0;
        background: transparent;
      }
 
      .ticker-inner {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
      }
 
      .ticker-label {
        display: flex;
        font-size: 11px;
        padding: 0 16px 8px;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
      }
 
      .ticker-label::after {
        display: none;
      }
 
      .ticker-rows {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
 
      .ticker-track {
        animation-duration: 7s;
      }
 
      .ticker-item {
        padding: 0 16px;
        font-size: 12px;
      }

      .ticker-item img,
      .ticker-item svg {
        width: 28px;
        height: 28px;
      }

      .ticker-name {
        display: none;
      }
    }
