  /* ═══════════════════════════════════
     NAVBAR
  ═══════════════════════════════════ */
  .ct-navbar {
      background: rgba(7, 9, 10, 0.88) !important;
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--ct-border);
      padding: 0 !important;
      height: 66px;
  }

  .ct-navbar .navbar-brand {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--ct-text);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .brand-icon {
      width: 32px;
      height: 32px;
      background: var(--ct-green);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      box-shadow: 0 0 16px rgba(22, 163, 74, 0.4);
  }

  .ct-navbar .nav-link {
      font-size: 0.83rem;
      font-weight: 500;
      color: var(--ct-muted) !important;
      transition: color 0.2s;
      padding: 0.4rem 0.75rem !important;
  }

  .ct-navbar .nav-link:hover {
      color: var(--ct-text) !important;
  }

  .ct-navbar .dropdown-menu {
      background: var(--ct-surface2);
      border: 1px solid var(--ct-border);
      border-radius: 10px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }

  .ct-navbar .dropdown-item {
      font-size: 0.83rem;
      color: var(--ct-muted);
      transition: all 0.15s;
  }

  .ct-navbar .dropdown-item:hover {
      background: var(--ct-green-glow);
      color: var(--ct-green-light);
  }

  /* ── BUTTONS ── */
  .btn-ct-primary {
      background: var(--ct-green);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 9px 20px;
      transition: all 0.22s;
      box-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }

  .btn-ct-primary:hover {
      background: var(--ct-green-light);
      box-shadow: 0 0 32px rgba(34, 197, 94, 0.5);
      transform: translateY(-1px);
      color: #fff;
  }

  .btn-ct-ghost {
      background: transparent;
      color: var(--ct-green-light);
      border: 1px solid var(--ct-green-border);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 9px 20px;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }

  .btn-ct-ghost:hover {
      background: var(--ct-green-glow);
      border-color: var(--ct-green);
      color: var(--ct-green-light);
  }

  .btn-ct-outline {
      background: transparent;
      color: var(--ct-muted);
      border: 1px solid var(--ct-border);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      padding: 9px 20px;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
  }

  .btn-ct-outline:hover {
      border-color: var(--ct-green-border);
      color: var(--ct-text);
      background: var(--ct-green-glow);
  }

  .btn-xl {
      padding: 14px 28px !important;
      font-size: 0.95rem !important;
      border-radius: 10px !important;
  }

  /* ═══════════════════════════════════
     TICKER
  ═══════════════════════════════════ */
  .ct-ticker {
      background: var(--ct-surface);
      border-bottom: 1px solid var(--ct-border);
      overflow: hidden;
      padding: 11px 0;
      white-space: nowrap;
  }

  .ticker-track {
      display: inline-flex;
      animation: ticker-scroll 36s linear infinite;
  }

  @keyframes ticker-scroll {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }

  .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 24px;
      border-right: 1px solid var(--ct-border);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
  }

  .t-sym {
      color: var(--ct-text);
      font-weight: 600;
  }

  .t-price {
      color: var(--ct-muted);
  }

  .t-up {
      color: var(--ct-green-light);
  }

  .t-dn {
      color: var(--ct-red);
  }

  /* ═══════════════════════════════════
     SECTION LABELS
  ═══════════════════════════════════ */
  .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ct-green);
      margin-bottom: 14px;
  }

  .section-eyebrow::before {
      content: '';
      width: 18px;
      height: 1px;
      background: var(--ct-green);
  }

  .section-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(1.5rem, 4vw, 2.3rem);
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--ct-text);
      margin-bottom: 14px;
  }

  .section-sub {
      font-size: 1rem;
      color: var(--ct-muted);
      line-height: 1.7;
      max-width: 540px;
  }

  /* ═══════════════════════════════════
     HERO
  ═══════════════════════════════════ */
  .ct-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 30px 0 60px;
      overflow: hidden;
  }

  .hero-bg-glow {
      position: absolute;
      inset: 0;
      background:
          radial-gradient(ellipse 65% 65% at 15% 55%, rgba(22, 163, 74, 0.13) 0%, transparent 60%),
          radial-gradient(ellipse 40% 40% at 85% 15%, rgba(22, 163, 74, 0.06) 0%, transparent 55%);
      pointer-events: none;
  }

  .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(22, 163, 74, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(22, 163, 74, 0.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 80% 80% at 15% 55%, black 0%, transparent 70%);
      pointer-events: none;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid var(--ct-green-border);
      background: rgba(22, 163, 74, 0.07);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--ct-green-light);
      letter-spacing: 0.06em;
      margin-bottom: 24px;
  }

  .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ct-green-light);
      animation: pulse-anim 2s ease-in-out infinite;
  }

  @keyframes pulse-anim {

      0%,
      100% {
          opacity: 1;
          box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
      }

      50% {
          opacity: 0.7;
          box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
      }
  }

  .hero-h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 5.5vw, 3rem);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -0.03em;
      color: var(--ct-text);
  }

  .hero-h1 .accent {
      color: var(--ct-green-light);
      display: block;
  }

  .hero-desc {
      font-size: 1.05rem;
      color: var(--ct-muted);
      line-height: 1.75;
      max-width: 490px;
  }

  .hero-stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--ct-text);
      line-height: 1;
  }

  .hero-stat-num span {
      color: var(--ct-green-light);
  }

  .hero-stat-label {
      font-size: 0.72rem;
      color: var(--ct-dim);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: 4px;
  }

  /* ── Market Feed Card ── */
  .market-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
      animation: fadeUp 0.8s ease 0.2s both;
  }

  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(28px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .hero-left-col {
      animation: fadeUp 0.8s ease both;
  }

  .mcard-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: var(--ct-surface2);
      border-bottom: 1px solid var(--ct-border);
  }

  .mcard-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--ct-text);
  }

  .live-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(22, 163, 74, 0.1);
      border: 1px solid var(--ct-green-border);
      border-radius: 100px;
      padding: 3px 10px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--ct-green-light);
      letter-spacing: 0.1em;
  }

  .live-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ct-green-light);
      animation: pulse-anim 1.6s ease-in-out infinite;
  }

  .mcard-tabs {
      display: flex;
      padding: 10px 18px 0;
      gap: 2px;
      border-bottom: 1px solid var(--ct-border);
  }

  .mcard-tab {
      padding: 6px 14px;
      border-radius: 6px 6px 0 0;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--ct-dim);
      cursor: pointer;
      transition: all 0.18s;
      border: 1px solid transparent;
      border-bottom: none;
      margin-bottom: -1px;
      user-select: none;
  }

  .mcard-tab.active {
      background: var(--ct-bg);
      color: var(--ct-green-light);
      border-color: var(--ct-green-border);
      border-bottom-color: var(--ct-bg);
  }

  .mcard-tab:not(.active):hover {
      color: var(--ct-muted);
  }

  .mcard-row {
      display: flex;
      align-items: center;
      padding: 10px 18px;
      gap: 8px;
      transition: background 0.15s;
      cursor: pointer;
  }

  .mcard-row:hover {
      background: var(--ct-surface2);
  }

  .mcard-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--ct-surface3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      color: var(--ct-green-light);
      flex-shrink: 0;
  }

  .mcard-sym {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--ct-text);
  }

  .mcard-full {
      font-size: 0.7rem;
      color: var(--ct-dim);
  }

  .mcard-price {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.82rem;
      color: var(--ct-text);
      margin-left: auto;
      flex-shrink: 0;
  }

  .mcard-change {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      font-weight: 500;
      padding: 2px 8px;
      border-radius: 5px;
      flex-shrink: 0;
      min-width: 62px;
      text-align: right;
  }

  .chg-up {
      color: var(--ct-green-light);
      background: rgba(22, 163, 74, 0.1);
  }

  .chg-dn {
      color: var(--ct-red);
      background: rgba(239, 68, 68, 0.1);
  }

  .stat-mini {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 12px;
      padding: 16px 18px;
  }

  .stat-mini-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--ct-green);
      letter-spacing: 0.1em;
      margin-bottom: 6px;
  }

  .stat-mini-val {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--ct-text);
  }

  .stat-mini-sub {
      font-size: 0.72rem;
      color: var(--ct-dim);
      margin-top: 2px;
  }

  /* ═══════════════════════════════════
     FEATURE STRIP
  ═══════════════════════════════════ */
  .feature-strip {
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border);
  }

  .fstrip-item {
      padding: 36px 28px;
      border-right: 1px solid var(--ct-border);
      height: 100%;
  }

  .fstrip-item:last-child {
      border-right: none;
  }

  .fstrip-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--ct-green-glow);
      border: 1px solid var(--ct-green-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 16px;
  }

  .fstrip-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--ct-text);
      margin-bottom: 8px;
  }

  .fstrip-desc {
      font-size: 0.82rem;
      color: var(--ct-muted);
      line-height: 1.55;
  }

  /* ═══════════════════════════════════
     WHY US
  ═══════════════════════════════════ */
  .why-section {
      background: var(--ct-bg2);
      border-bottom: 1px solid var(--ct-border);
  }

  .why-card {
      background: var(--ct-bg2);
      border: 1px solid var(--ct-border);
      border-top: 2px solid transparent;
      border-radius: 0;
      padding: 32px 24px;
      height: 100%;
      transition: all 0.25s;
      position: relative;
  }

  .why-card:hover {
      background: var(--ct-surface);
      border-top-color: var(--ct-green);
  }

  .why-icon {
      width: 46px;
      height: 46px;
      background: var(--ct-green-glow);
      border: 1px solid var(--ct-green-border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 18px;
  }

  .why-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--ct-text);
      margin-bottom: 8px;
  }

  .why-desc {
      font-size: 0.83rem;
      color: var(--ct-muted);
      line-height: 1.6;
  }

  /* ═══════════════════════════════════
     SECURITY
  ═══════════════════════════════════ */
  .sec-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 14px;
      padding: 22px 18px;
      height: 100%;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
  }

  .sec-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(22, 163, 74, 0.05) 0%, transparent 65%);
      pointer-events: none;
  }

  .sec-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(22, 163, 74, 0.1);
  }

  .sec-icon {
      font-size: 1.5rem;
      margin-bottom: 12px;
      display: block;
  }

  .sec-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--ct-text);
      margin-bottom: 6px;
  }

  .sec-desc {
      font-size: 0.78rem;
      color: var(--ct-dim);
      line-height: 1.55;
  }

  .protection-note {
      background: rgba(22, 163, 74, 0.06);
      border: 1px solid var(--ct-green-border);
      border-radius: 12px;
      padding: 16px 18px;
      font-size: 0.82rem;
      color: var(--ct-green-light);
      line-height: 1.6;
  }

  /* ═══════════════════════════════════
     MARKETS
  ═══════════════════════════════════ */
  .markets-section {
      background: var(--ct-bg2);
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border);
  }

  .market-tile {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 14px;
      padding: 28px 16px;
      text-align: center;
      cursor: pointer;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
  }

  .market-tile::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light));
      transform: scaleX(0);
      transition: transform 0.28s;
  }

  .market-tile:hover {
      border-color: var(--ct-green-border);
      background: var(--ct-surface2);
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(22, 163, 74, 0.1);
  }

  .market-tile:hover::after {
      transform: scaleX(1);
  }

  .tile-emoji {
      font-size: 2.2rem;
      display: block;
      margin-bottom: 12px;
  }

  .tile-name {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--ct-text);
      margin-bottom: 4px;
  }

  .tile-count {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      color: var(--ct-green);
  }

  /* ═══════════════════════════════════
     ACCOUNTS
  ═══════════════════════════════════ */
  .account-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 18px;
      padding: 28px 22px;
      height: 100%;
      transition: all 0.28s;
      position: relative;
      overflow: hidden;
  }

  .account-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-4px);
      box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  }

  .account-card.featured {
      border-color: var(--ct-green);
      box-shadow: 0 0 0 1px var(--ct-green), 0 20px 56px rgba(22, 163, 74, 0.18);
  }

  .account-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light));
  }

  .featured-tag {
      display: inline-block;
      background: var(--ct-green);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 12px;
  }

  .acc-name {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--ct-text);
  }

  .acc-type {
      font-size: 0.78rem;
      color: var(--ct-dim);
      margin-top: 2px;
  }

  .acc-price {
      margin: 20px 0;
      padding: 16px 0;
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border);
  }

  .price-num {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 2rem;
      color: var(--ct-green-light);
  }

  .price-lbl {
      font-size: 0.72rem;
      color: var(--ct-dim);
      margin-top: 2px;
  }

  .acc-features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: flex;
      flex-direction: column;
      gap: 9px;
  }

  .acc-features li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 0.82rem;
      color: var(--ct-muted);
      line-height: 1.4;
  }

  .feat-check {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(22, 163, 74, 0.12);
      border: 1px solid var(--ct-green-border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 8px;
      color: var(--ct-green-light);
  }

  .btn-acc-primary {
      display: block;
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      background: var(--ct-green);
      color: #fff;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 18px rgba(22, 163, 74, 0.32);
      cursor: pointer;
  }

  .btn-acc-primary:hover {
      background: var(--ct-green-light);
      box-shadow: 0 4px 28px rgba(34, 197, 94, 0.5);
      transform: translateY(-1px);
      color: #fff;
  }

  .btn-acc-ghost {
      display: block;
      width: 100%;
      padding: 12px;
      border-radius: 10px;
      background: transparent;
      color: var(--ct-muted);
      border: 1px solid var(--ct-border);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
  }

  .btn-acc-ghost:hover {
      border-color: var(--ct-green-border);
      color: var(--ct-text);
      background: var(--ct-green-glow);
  }

  /* ═══════════════════════════════════
     PLATFORMS
  ═══════════════════════════════════ */
  .platforms-section {
      background: var(--ct-bg2);
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border);
  }

  .platform-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 16px;
      padding: 32px 26px;
      height: 100%;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
  }

  .platform-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at bottom right, rgba(22, 163, 74, 0.05) 0%, transparent 60%);
      pointer-events: none;
  }

  .platform-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(22, 163, 74, 0.08);
  }

  .platform-tag {
      display: inline-block;
      background: rgba(22, 163, 74, 0.09);
      border: 1px solid var(--ct-green-border);
      color: var(--ct-green);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 6px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 18px;
  }

  .platform-name {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.35rem;
      color: var(--ct-text);
      margin-bottom: 10px;
  }

  .platform-desc {
      font-size: 0.855rem;
      color: var(--ct-muted);
      line-height: 1.65;
      margin-bottom: 22px;
  }

  .pf-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 26px;
  }

  .pf-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--ct-muted);
  }

  .pf-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--ct-green);
      flex-shrink: 0;
  }

  /* ═══════════════════════════════════
     CTA
  ═══════════════════════════════════ */
  .cta-section {
      position: relative;
      overflow: hidden;
  }

  .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(22, 163, 74, 0.09) 0%, transparent 70%);
      pointer-events: none;
  }

  .cta-box {
      background: var(--ct-surface);
      border: 1px solid var(--ct-green-border);
      border-radius: 24px;
      padding: 60px 48px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 80px rgba(22, 163, 74, 0.1);
  }

  .cta-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--ct-green), transparent);
  }

  .cta-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.025em;
      color: var(--ct-text);
      margin-bottom: 14px;
  }

  .cta-sub {
      font-size: 1rem;
      color: var(--ct-muted);
      line-height: 1.65;
      max-width: 500px;
      margin: 0 auto 34px;
  }

  /* ═══════════════════════════════════
     FOOTER
  ═══════════════════════════════════ */
  .ct-footer {
      background: var(--ct-bg2);
      border-top: 1px solid var(--ct-border);
  }

  .footer-brand-text {
      font-size: 0.83rem;
      color: var(--ct-dim);
      line-height: 1.65;
      margin-top: 14px;
      max-width: 260px;
  }

  .footer-heading {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--ct-text);
      letter-spacing: 0.02em;
      margin-bottom: 16px;
  }

  .footer-links {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-links li a {
      font-size: 0.82rem;
      color: var(--ct-dim);
      text-decoration: none;
      transition: color 0.18s;
  }

  .footer-links li a:hover {
      color: var(--ct-green-light);
  }

  .footer-divider {
      border-color: var(--ct-border) !important;
  }

  .footer-bottom-text {
      font-size: 0.75rem;
      color: var(--ct-dim);
  }

  .footer-legal a {
      font-size: 0.75rem;
      color: var(--ct-dim);
      text-decoration: none;
      transition: color 0.18s;
  }

  .footer-legal a:hover {
      color: var(--ct-green-light);
  }

  /* ═══════════════════════════════════
     REVEAL ANIMATION
  ═══════════════════════════════════ */
  .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: none;
  }


  .ct-navbar .navbar-brand img {
      width: 100%;
      max-width: 180px;
  }

  .navbar-brand img {
      width: 100%;
      max-width: 240px;
  }


  .forex-hero {
      position: relative;
      padding: 130px 0 30px;
      text-align: center;
      overflow: hidden;
  }



  .forex-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid var(--ct-green-border);
      background: rgba(22, 163, 74, 0.07);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--ct-green-light);
      letter-spacing: 0.07em;
      margin-bottom: 22px;
  }

  .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ct-green-light);
      animation: pulse-anim 2s ease-in-out infinite;
  }

  @keyframes pulse-anim {

      0%,
      100% {
          opacity: 1;
          box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
      }

      50% {
          opacity: .7;
          box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
      }
  }

  .forex-hero h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2.6rem, 5.5vw, 3rem);
      line-height: 1.06;
      letter-spacing: -0.03em;
      color: var(--ct-text);
      margin-bottom: 20px;
  }

  .forex-hero h1 .hl {
      color: var(--ct-green-light);
  }

  .forex-hero-sub {
      font-size: 1rem;
      color: var(--ct-muted);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto 36px;
  }

  /* Hero stat strip */
  .hero-stat-strip {
      display: flex;
      gap: 0;
      justify-content: center;
      border: 1px solid var(--ct-border);
      border-radius: 14px;
      overflow: hidden;
      max-width: 640px;
      margin: 0 auto;
  }

  .hss-item {
      flex: 1;
      padding: 18px 12px;
      text-align: center;
      border-right: 1px solid var(--ct-border);
      background: var(--ct-surface);
  }

  .hss-item:last-child {
      border-right: none;
  }

  .hss-val {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.35rem;
      color: var(--ct-green-light);
      line-height: 1;
  }

  .hss-lbl {
      font-size: 0.72rem;
      color: var(--ct-dim);
      margin-top: 4px;
      letter-spacing: 0.03em;
  }

  /* ════════════════════════════
     WHY TRADE FOREX
  ════════════════════════════ */
  .why-forex {
      background: var(--ct-bg2);
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border);
  }

  .wf-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 14px;
      padding: 28px 22px;
      height: 100%;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
  }

  .wf-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
  }

  .wf-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(22, 163, 74, 0.1);
  }

  .wf-card:hover::before {
      transform: scaleX(1);
  }

  .wf-icon {
      width: 46px;
      height: 46px;
      background: var(--ct-green-glow);
      border: 1px solid var(--ct-green-border);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 16px;
  }

  .wf-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.93rem;
      color: var(--ct-text);
      margin-bottom: 8px;
  }

  .wf-desc {
      font-size: 0.82rem;
      color: var(--ct-muted);
      line-height: 1.6;
  }

  /* ════════════════════════════
     FOREX PAIRS
  ════════════════════════════ */
  .pairs-section {}

  .pairs-category-label {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--ct-green-light);
      margin-bottom: 16px;
      margin-top: 40px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .pairs-category-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--ct-border);
  }

  .pair-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 12px;
      padding: 18px 16px;
      transition: all 0.22s;
      cursor: pointer;
      height: 100%;
  }

  .pair-card:hover {
      border-color: var(--ct-green-border);
      background: var(--ct-surface2);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(22, 163, 74, 0.09);
  }

  .pair-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
  }

  .pair-flags {
      position: relative;
      width: 36px;
      height: 24px;
      flex-shrink: 0;
  }

  .pair-flag {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--ct-surface3);
      border: 2px solid var(--ct-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      position: absolute;
  }

  .pair-flag:first-child {
      left: 0;
      top: 0;
      z-index: 2;
  }

  .pair-flag:last-child {
      left: 14px;
      top: 0;
      z-index: 1;
  }

  .pair-sym {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      color: var(--ct-text);
  }

  .pair-name {
      font-size: 0.7rem;
      color: var(--ct-dim);
      margin-top: 1px;
  }

  .pair-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
  }

  .pstat-label {
      font-size: 0.65rem;
      color: var(--ct-dim);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 2px;
      font-family: 'JetBrains Mono', monospace;
  }

  .pstat-val {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ct-green-light);
  }

  .pstat-val.neutral {
      color: var(--ct-text);
  }

  /* ════════════════════════════
     CONDITIONS / ACCOUNT TABLE
  ════════════════════════════ */
  .conditions-section {
      background: var(--ct-bg2);
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border);
  }

  .cond-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
  }

  .cond-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-3px);
      box-shadow: 0 14px 48px rgba(0, 0, 0, 0.35);
  }

  .cond-card.featured {
      border-color: var(--ct-green);
      box-shadow: 0 0 0 1px var(--ct-green), 0 16px 48px rgba(22, 163, 74, 0.15);
  }

  .cond-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light));
  }

  .cond-featured-tag {
      display: inline-block;
      background: var(--ct-green);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.62rem;
      font-weight: 700;
      padding: 2px 9px;
      border-radius: 100px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 10px;
  }

  .cond-name {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--ct-text);
      margin-bottom: 16px;
  }

  .cond-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--ct-border);
  }

  .cond-row:last-of-type {
      border-bottom: none;
  }

  .cond-key {
      font-size: 0.8rem;
      color: var(--ct-muted);
  }

  .cond-val {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ct-text);
  }

  .cond-val.green {
      color: var(--ct-green-light);
  }

  /* ════════════════════════════
     FOREX HERO
  ════════════════════════════ */




  .forex-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid var(--ct-green-border);
      background: rgba(22, 163, 74, 0.07);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--ct-green-light);
      letter-spacing: 0.07em;
      margin-bottom: 22px;
  }

  .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ct-green-light);
      animation: pulse-anim 2s ease-in-out infinite;
  }

  @keyframes pulse-anim {

      0%,
      100% {
          opacity: 1;
          box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
      }

      50% {
          opacity: .7;
          box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
      }
  }




  .app_lsit {
      padding: 0;
      list-style: none;
  }

  .app_lsit li {
      font-size: 14px;
      margin: 5px 0px;
      color: var(--ct-muted);
  }

  .app_lsit li i {
      color: var(--ct-green);
  }


  .wf-card .wf-title_s {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 25px;
      color: var(--ct-text);
      margin-bottom: 15px;
  }

  .wf-card .applse {
      list-style: none;
      padding: 0;
  }

  .wf-card .applse li {
      font-size: 15px;
      color: var(--ct-muted);
      margin: 20px 0 0 0px;
      display: flex;
      gap: 10px;
  }

  .wf-card .applse li i {
      color: var(--ct-green);
      font-size: 22px;
  }

  .wf-card .applse li h4 {
      font-size: 16px;
      color: #ddd;
      margin-bottom: 2px;
  }

  .wf-card .applse li p {
      font-size: 13px;
      margin: 0;
  }

  ul.applse {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  ul.applse li {
      font-size: 15px;
      margin: 5px 0px;
      color: var(--ct-muted);
  }

  ul.applse li i {
      color: var(--ct-green);
  }

  .acc-info-list {
      margin-bottom: 20px;
  }

  .acc-info-list .acc-info-item {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      font-weight: 300;
      border-bottom: 1px solid #80808038;
      padding: 7px 0px;
  }

  .acc-info-list .acc-info-item span {
      color: var(--ct-muted);
  }

  .acc-info-list .acc-info-item strong {
      color: var(--ct-green);
  }

  .plan-badge.badge-blue {
      background: linear-gradient(45deg, #2563eb, #3b82f6);
      font-size: 11px;
      padding: 5px;
      border-radius: 30px;
      text-align: center;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 700;
      font-family: 'JetBrains Mono', monospace;
  }

  .plan-badge.badge-pink {
      background: linear-gradient(45deg, #ec4899, #a855f7);
      font-size: 11px;
      padding: 5px;
      border-radius: 30px;
      text-align: center;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 700;
      font-family: 'JetBrains Mono', monospace;
  }

  .plan-badge.badge-green {
      background: linear-gradient(45deg, #10b981, #22c55e);
      font-size: 11px;
      padding: 5px;
      border-radius: 30px;
      text-align: center;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 700;
      font-family: 'JetBrains Mono', monospace;
  }

  .margin_tables_ .comparison-table-wrap {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 20px;
      transition: all 0.25s;
      position: relative;
  }

  .margin_tables_ thead tr th {
      background: var(--ct-green);
      padding: 13px 15px;
      text-align: center;
  }

  .margin_tables_ thead tr th:first-child {
      border-radius: 10px 0px 0px 0px;
  }

  .margin_tables_ thead tr th:last-child {
      border-radius: 0px 10px 0px 0px;
  }

  .margin_tables_ tbody tr td {
      font-size: 14px;
      color: var(--ct-muted);
      background: #00000000;
      text-align: center;
  }

  .margin_tables_ tbody tr:last-child,
  .margin_tables_ tbody tr:last-child td {
      border-bottom: 0;
  }

  .sec-card ul {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 10px;
      margin-top: 15px;
  }

  .sec-card ul li {
      font-size: 10px;
      color: var(--ct-green);
      border-radius: 100px;
      padding: 3px 13px;
      background: var(--ct-green-glow);
      border: 1px solid var(--ct-green-border);
  }


  /* ── FAQ CONTENT ── */
  .faq-group {
      margin-bottom: 48px;
  }


  /* ── ACCORDION ── */
  .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .faq-item {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color .2s;
  }

  .faq-item:hover {
      border-color: rgba(22, 163, 74, .2);
  }

  .faq-item.open {
      border-color: var(--ct-green-border);
  }

  .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
  }

  .faq-q-text {
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .9rem;
      color: var(--ct-text);
      line-height: 1.45;
      flex: 1;
  }

  .faq-item.open .faq-q-text {
      color: var(--ct-green-light);
  }

  .faq-toggle {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      flex-shrink: 0;
      background: var(--ct-surface3);
      border: 1px solid var(--ct-border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .25s;
      color: var(--ct-muted);
      font-size: .75rem;
  }

  .faq-item.open .faq-toggle {
      background: var(--ct-green);
      border-color: var(--ct-green);
      color: #fff;
      transform: rotate(45deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .38s cubic-bezier(.4, 0, .2, 1), padding .3s ease;
      padding: 0 20px;
  }

  .faq-item.open .faq-answer {
      max-height: 400px;
      padding: 0 20px 18px;
  }

  .faq-answer-inner {
      font-size: .875rem;
      color: var(--ct-muted);
      line-height: 1.75;
      padding-top: 4px;
      border-top: 1px solid var(--ct-border);
      padding-top: 14px;
  }

  .faq-answer-inner a {
      color: var(--ct-green-light);
      text-decoration: underline;
      text-decoration-color: rgba(34, 197, 94, .3);
  }

  .faq-answer-inner a:hover {
      color: var(--ct-green-light);
      text-decoration-color: var(--ct-green-light);
  }

  .faq-answer-inner ul {
      padding-left: 18px;
      margin: 10px 0 0;
  }

  .faq-answer-inner ul li {
      margin-bottom: 6px;
  }

  .faq-answer-inner strong {
      color: var(--ct-text);
  }


  .icon_tables i {
      align-items: center;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      font-size: 19px !important;
      border-radius: 8px;
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      color: var(--ct-green) !important;
  }

  .margin_tables_ tbody tr td .btn-outline-primary {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      color: var(--ct-green) !important;
      font-size: 12px;
  }

  .margin_tables_ table {
      border: 1px solid #9d9d9d12;
      border-radius: 15px;
  }


  .tier-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 20px;
      padding: 0;
      overflow: hidden;
      height: 100%;
      transition: all .3s;
      position: relative;
  }

  .tier-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  }

  /* top gradient bar */
  .tier-card-bar {
      height: 3px;
      width: 100%;
  }

  .tier-card-bar.bronze {
      background: linear-gradient(90deg, #92400e, #d97706, #fbbf24);
  }

  .tier-card-bar.silver {
      background: linear-gradient(90deg, #16a34a, #22c55e, #86efac);
  }

  .tier-card-bar.gold {
      background: linear-gradient(90deg, #7c3aed, #a855f7, #c084fc);
  }

  .tier-card.featured {
      border-color: var(--ct-green);
      box-shadow: 0 0 0 1px var(--ct-green), 0 20px 56px rgba(22, 163, 74, 0.18);
  }

  .tier-card.featured .tier-card-bar {
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light), #86efac);
  }

  .tier-card-body {
      padding: 28px 26px 32px;
  }

  /* icon badge */
  .tier-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      position: relative;
  }

  .tier-icon.bronze {
      background: linear-gradient(135deg, #92400e, #f59e0b);
      box-shadow: 0 8px 24px rgba(245, 158, 11, .25);
  }

  .tier-icon.silver {
      background: linear-gradient(135deg, #16a34a, #22c55e);
      box-shadow: 0 8px 24px rgba(34, 197, 94, .25);
  }

  .tier-icon.gold {
      background: linear-gradient(135deg, #7c3aed, #a855f7);
      box-shadow: 0 8px 24px rgba(168, 85, 247, .25);
  }

  .tier-popular {
      display: inline-block;
      background: var(--ct-green);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: .62rem;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 100px;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 14px;
  }

  .tier-deposit {
      font-family: 'JetBrains Mono', monospace;
      font-size: .7rem;
      font-weight: 600;
      color: var(--ct-dim);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 6px;
  }

  .tier-pct {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 4px;
      display: flex;
      align-items: baseline;
      gap: 8px;
  }

  .tier-pct .num {
      font-size: 4.5rem;
      color: var(--ct-text);
  }

  .tier-pct .pct-sym {
      font-size: 2rem;
      color: var(--ct-text);
  }

  .tier-pct .word {
      font-size: 1.1rem;
      color: var(--ct-muted);
      font-weight: 600;
  }

  .tier-max {
      font-size: .8rem;
      color: var(--ct-muted);
      margin-bottom: 24px;
  }

  .tier-max span {
      color: var(--ct-green-light);
      font-weight: 600;
  }

  .tier-divider {
      height: 1px;
      background: var(--ct-border);
      margin-bottom: 22px;
  }

  .tier-features {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 28px;
  }

  .tier-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .875rem;
      color: var(--ct-muted);
      line-height: 1.4;
  }

  .feat-ico {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      color: var(--ct-green-light);
      background: rgba(22, 163, 74, .12);
      border: 1px solid rgba(22, 163, 74, .25);
  }

  .btn-tier-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px;
      border-radius: 10px;
      background: var(--ct-green);
      color: #fff;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      text-decoration: none;
      transition: all .22s;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(22, 163, 74, .32);
  }

  .btn-tier-primary:hover {
      background: var(--ct-green-light);
      box-shadow: 0 4px 30px rgba(34, 197, 94, .5);
      transform: translateY(-1px);
      color: #fff;
  }

  .btn-tier-ghost {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 13px;
      border-radius: 10px;
      background: transparent;
      color: var(--ct-muted);
      border: 1px solid var(--ct-border);
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 500;
      text-decoration: none;
      transition: all .22s;
      cursor: pointer;
  }

  .btn-tier-ghost:hover {
      border-color: var(--ct-green-border);
      color: var(--ct-text);
      background: var(--ct-green-glow);
  }

  /* disclaimer note */
  .bonus-note {
      background: rgba(22, 163, 74, .06);
      border: 1px solid var(--ct-green-border);
      border-radius: 12px;
      padding: 16px 22px;
      font-size: .82rem;
      color: var(--ct-muted);
      line-height: 1.65;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
  }

  .bonus-note i {
      color: var(--ct-green-light);
      margin-right: 6px;
  }



  .step-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 18px;
      padding: 32px 26px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: all .25s;
  }

  .step-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(22, 163, 74, .1);
  }

  .step-num {
      position: absolute;
      top: 20px;
      right: 22px;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 4rem;
      color: rgba(255, 255, 255, .04);
      line-height: 1;
      user-select: none;
  }

  .step-card:hover .step-num {
      color: rgba(22, 163, 74, .07);
  }

  .step-icon {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      margin-bottom: 20px;
      background: var(--ct-green-glow);
      border: 1px solid var(--ct-green-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
  }

  .step-num-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--ct-green);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: .65rem;
      font-weight: 700;
      margin-bottom: 12px;
  }

  .step-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--ct-text);
      margin-bottom: 8px;
  }

  .step-desc {
      font-size: .875rem;
      color: var(--ct-muted);
      line-height: 1.65;
  }

  /* ═══════════════════════════════════════════
     TERMS & CONDITIONS
  ═══════════════════════════════════════════ */
  .terms-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 16px;
      padding: 32px 28px;
  }

  .terms-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--ct-text);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .terms-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--ct-green-glow);
      border: 1px solid var(--ct-green-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
  }

  .terms-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .terms-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .875rem;
      color: var(--ct-muted);
      line-height: 1.65;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--ct-border);
  }

  .terms-list li:last-child {
      border-bottom: none;
      padding-bottom: 0;
  }

  .terms-bullet {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ct-green);
      flex-shrink: 0;
      margin-top: 7px;
  }

  .register-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      color: var(--ct-green-light);
      text-decoration: none;
      transition: gap .2s;
  }

  .bonus-hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(22, 163, 74, .03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(22, 163, 74, .03) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 75%);
      pointer-events: none;
  }

  .bonus-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(22, 163, 74, 0.12) 0%, transparent 65%),
          radial-gradient(ellipse 40% 40% at 20% 80%, rgba(234, 179, 8, 0.05) 0%, transparent 55%);
      pointer-events: none;
  }

  .tine {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
  }

  .tine span {
      color: var(--ct-muted);
      font-size: 13px;
      text-transform: capitalize;
  }

  .tine a {
      font-size: 14px;
      text-decoration: none;
      color: var(--ct-green);
  }

  #faqContent {
      margin: 0px 190px;
  }



  /* ═══════════════════════════════════════════
     STRATEGY CARDS
  ═══════════════════════════════════════════ */
  .strat-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 18px;
      padding: 0;
      overflow: hidden;
      height: 100%;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      position: relative;
      cursor: pointer;
      display: flex;
      flex-direction: column;
  }

  .strat-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(22, 163, 74, .15);
  }

  /* subtle inner glow on hover */
  .strat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(22, 163, 74, .06) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .3s;
      pointer-events: none;
      z-index: 0;
  }

  .strat-card:hover::before {
      opacity: 1;
  }

  /* card top accent line */
  .strat-card-top {
      height: 2px;
      width: 100%;
      background: linear-gradient(90deg, transparent, var(--ct-green-border), transparent);
      transition: background .3s;
  }

  .strat-card:hover .strat-card-top {
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light), var(--ct-green));
  }

  .strat-card-body {
      padding: 24px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
      position: relative;
      z-index: 1;
  }

  /* icon + badge row */
  .strat-card-header-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 18px;
  }

  .strat-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--ct-surface2), var(--ct-surface3));
      border: 1px solid var(--ct-border);
      transition: all .3s;
  }

  .strat-card:hover .strat-icon {
      background: linear-gradient(135deg, rgba(22, 163, 74, .15), rgba(22, 163, 74, .08));
      border-color: var(--ct-green-border);
      box-shadow: 0 0 20px rgba(22, 163, 74, .2);
  }

  .strat-name {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--ct-text);
      margin-bottom: 8px;
      line-height: 1.2;
      transition: color .2s;
  }

  .strat-card:hover .strat-name {
      color: #fff;
  }

  .strat-desc {
      font-size: .875rem;
      color: var(--ct-muted);
      line-height: 1.65;
      margin-bottom: 22px;
      flex: 1;
  }

  /* stat boxes */
  .strat-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 24px;
  }

  .strat-stat {
      background: var(--ct-surface2);
      border: 1px solid var(--ct-border);
      border-radius: 10px;
      padding: 12px 14px;
      transition: all .25s;
  }

  .strat-card:hover .strat-stat {
      border-color: rgba(22, 163, 74, .15);
  }

  .ss-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: .62rem;
      font-weight: 500;
      color: var(--ct-dim);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 5px;
  }

  .ss-val {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      color: var(--ct-text);
  }

  .ss-val.win {
      color: var(--ct-green-light);
  }

  /* learn link */
  .strat-learn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: 'DM Sans', sans-serif;
      font-size: .875rem;
      font-weight: 600;
      color: var(--ct-green-light);
      text-decoration: none;
      transition: gap .2s, color .2s;
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid var(--ct-border);
  }

  .strat-learn i {
      transition: transform .2s;
  }

  .strat-learn:hover {
      color: #fff;
      gap: 11px;
  }

  .strat-learn:hover i {
      transform: translateX(3px);
  }

  /* ═══ MINI SPARKLINE ═══ */
  .strat-sparkline {
      height: 36px;
      margin-bottom: 14px;
      overflow: hidden;
      border-radius: 6px;
      opacity: .6;
      transition: opacity .3s;
  }

  .strat-card:hover .strat-sparkline {
      opacity: 1;
  }

  .strat-sparkline svg {
      width: 100%;
      height: 100%;
  }

  /* ═══ DIFFICULTY METERS ═══ */
  .diff-meter {
      display: flex;
      gap: 4px;
      align-items: center;
      margin-top: 6px;
  }

  .diff-dot {
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: var(--ct-surface3);
      transition: background .2s;
  }

  .diff-dot.active.beginner {
      background: var(--ct-green-light);
  }

  .diff-dot.active.intermediate {
      background: #fbbf24;
  }

  .diff-dot.active.advanced {
      background: #f87171;
  }

  .level-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-family: 'JetBrains Mono', monospace;
      font-size: .62rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 100px;
      letter-spacing: .07em;
      text-transform: uppercase;
  }

  .level-beginner {
      background: rgba(22, 163, 74, .12);
      color: var(--ct-green-light);
      border: 1px solid rgba(22, 163, 74, .3);
  }

  .level-intermediate {
      background: rgba(245, 158, 11, .1);
      color: #fbbf24;
      border: 1px solid rgba(245, 158, 11, .28);
  }

  .level-advanced {
      background: rgba(239, 68, 68, .1);
      color: #f87171;
      border: 1px solid rgba(239, 68, 68, .28);
  }


  /* ════════════════════════════════════
     HERO
  ════════════════════════════════════ */
  .tut-hero {
      position: relative;
      text-align: center;
      padding: 96px 0 64px;
      overflow: hidden
  }

  .tut-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(22, 163, 74, .11) 0%, transparent 65%);
      pointer-events: none
  }

  .tut-hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(22, 163, 74, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(22, 163, 74, .03) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 75%);
      pointer-events: none
  }

  .tut-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 16px;
      border-radius: 100px;
      border: 1px solid var(--ct-green-border);
      background: var(--ct-green-glow);
      font-family: 'JetBrains Mono', monospace;
      font-size: .68rem;
      font-weight: 600;
      color: var(--ct-green-light);
      letter-spacing: .07em;
      margin-bottom: 22px
  }

  .pulse-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ct-green-light);
      animation: pulse-anim 2s ease-in-out infinite
  }

  @keyframes pulse-anim {

      0%,
      100% {
          opacity: 1;
          box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)
      }

      50% {
          opacity: .7;
          box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
      }
  }

  .tut-hero h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
          font-size: clamp(2.6rem, 5.5vw, 3rem);
      line-height: 1.05;
      letter-spacing: -.03em;
      color: var(--ct-text);
      margin-bottom: 16px
  }

  .tut-hero h1 .hl {
      color: var(--ct-green-light)
  }

  .tut-hero-sub {
      font-size: 1.05rem;
      color: var(--ct-muted);
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto 40px
  }

  /* ── search bar ── */
  .tut-search-wrap {
      position: relative;
      max-width: 500px;
      margin: 0 auto 40px
  }

  .tut-search {
      width: 100%;
      padding: 14px 52px 14px 18px;
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 12px;
      color: var(--ct-text);
      font-family: 'DM Sans', sans-serif;
      font-size: .92rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s
  }

  .tut-search::placeholder {
      color: var(--ct-dim)
  }

  .tut-search:focus {
      border-color: var(--ct-green-border);
      box-shadow: 0 0 0 3px rgba(22, 163, 74, .1)
  }

  .tut-search-ico {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--ct-dim);
      font-size: 1rem;
      pointer-events: none
  }

  /* ════════════════════════════════════
     FILTER PILLS
  ════════════════════════════════════ */
  .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 0
  }

  .filter-pill {
      padding: 8px 20px;
      border-radius: 100px;
      border: 1px solid var(--ct-border);
      background: var(--ct-surface2);
      font-size: .83rem;
      font-weight: 500;
      color: var(--ct-muted);
      cursor: pointer;
      transition: all .2s;
      user-select: none;
      display: inline-flex;
      align-items: center;
      gap: 6px
  }

  .filter-pill:hover {
      border-color: var(--ct-green-border);
      color: var(--ct-text)
  }

  .filter-pill.active {
      background: var(--ct-green-glow);
      border-color: var(--ct-green);
      color: var(--ct-green-light)
  }

  /* ════════════════════════════════════
     STATS STRIP
  ════════════════════════════════════ */
  .stats-strip {
      background: var(--ct-bg2);
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border)
  }

  .sstrip-item {
      padding: 24px 20px;
      border-right: 1px solid var(--ct-border);
      text-align: center;
      transition: background .18s
  }

  .sstrip-item:last-child {
      border-right: none
  }

  .sstrip-item:hover {
      background: var(--ct-surface)
  }

  .sstrip-val {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.7rem;
      color: var(--ct-green-light);
      line-height: 1
  }

  .sstrip-lbl {
      font-size: .7rem;
      color: var(--ct-dim);
      margin-top: 5px;
      letter-spacing: .05em;
      text-transform: uppercase;
      font-family: 'JetBrains Mono', monospace
  }

  /* ════════════════════════════════════
     CATEGORY BADGE (on cards)
  ════════════════════════════════════ */
  .cat-badge {
      display: inline-flex;
      align-items: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: .62rem;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 6px;
      letter-spacing: .06em;
      text-transform: uppercase
  }

  .cat-platform {
      background: rgba(59, 130, 246, .12);
      color: #60a5fa;
      border: 1px solid rgba(59, 130, 246, .25)
  }

  .cat-technical {
      background: rgba(168, 85, 247, .12);
      color: #c084fc;
      border: 1px solid rgba(168, 85, 247, .25)
  }

  .cat-strategy {
      background: rgba(22, 163, 74, .12);
      color: var(--ct-green-light);
      border: 1px solid var(--ct-green-border)
  }

  .cat-risk {
      background: rgba(239, 68, 68, .1);
      color: #f87171;
      border: 1px solid rgba(239, 68, 68, .25)
  }

  .cat-psychology {
      background: rgba(245, 158, 11, .1);
      color: #fbbf24;
      border: 1px solid rgba(245, 158, 11, .25)
  }

  /* ════════════════════════════════════
     VIDEO CARDS
  ════════════════════════════════════ */
  .vid-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 18px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      cursor: pointer;
      position: relative;
  }

  .vid-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .45), 0 0 0 1px rgba(22, 163, 74, .12);
  }

  /* thumbnail area */
  .vid-thumb {
      position: relative;
      overflow: hidden;
      background: var(--ct-surface2);
      height: 200px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* animated gradient bg per category */
  .vid-thumb.t-platform {
      background: linear-gradient(135deg, #0a1628 0%, #0d2240 50%, #0a1628 100%);
  }

  .vid-thumb.t-technical {
      background: linear-gradient(135deg, #130a1e 0%, #1e0a30 50%, #130a1e 100%);
  }

  .vid-thumb.t-strategy {
      background: linear-gradient(135deg, #061410 0%, #0c2018 50%, #061410 100%);
  }

  .vid-thumb.t-risk {
      background: linear-gradient(135deg, #180808 0%, #250c0c 50%, #180808 100%);
  }

  .vid-thumb.t-psychology {
      background: linear-gradient(135deg, #1a1200 0%, #281b00 50%, #1a1200 100%);
  }

  /* grid dot pattern overlay */
  .vid-thumb::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
  }

  /* centre icon */
  .thumb-icon {
      font-size: 3rem;
      z-index: 1;
      position: relative;
      filter: drop-shadow(0 0 20px currentColor);
      transition: all .35s;
      opacity: .65;
  }

  .vid-card:hover .thumb-icon {
      opacity: 1;
      transform: scale(1.12);
  }

  /* play overlay */
  .thumb-play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, .5);
      backdrop-filter: blur(2px);
      opacity: 0;
      transition: opacity .28s;
      z-index: 2;
  }

  .vid-card:hover .thumb-play {
      opacity: 1
  }

  .play-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--ct-green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #fff;
      box-shadow: 0 0 30px rgba(22, 163, 74, .5);
      transition: transform .25s;
  }

  .vid-card:hover .play-btn {
      transform: scale(1.1)
  }

  /* duration pill */
  .thumb-dur {
      position: absolute;
      bottom: 12px;
      right: 12px;
      z-index: 3;
      background: rgba(0, 0, 0, .85);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: .72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 6px;
      letter-spacing: .04em;
  }

  /* new badge */
  .thumb-new {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 3;
      background: var(--ct-green);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: .6rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 5px;
      letter-spacing: .08em;
      text-transform: uppercase;
  }

  /* card body */
  .vid-body {
      padding: 18px 18px 22px;
      display: flex;
      flex-direction: column;
      flex: 1
  }

  .vid-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px
  }

  .vid-views {
      font-family: 'JetBrains Mono', monospace;
      font-size: .72rem;
      color: var(--ct-dim);
      display: flex;
      align-items: center;
      gap: 4px
  }

  .vid-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      color: var(--ct-text);
      margin-bottom: 6px;
      line-height: 1.3;
      transition: color .2s
  }

  .vid-card:hover .vid-title {
      color: #fff
  }

  .vid-desc {
      font-size: .82rem;
      color: var(--ct-muted);
      line-height: 1.55;
      margin-bottom: 16px;
      flex: 1
  }

  .vid-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--ct-border);
      margin-top: auto;
  }

  .vid-author {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      color: var(--ct-dim)
  }

  .author-ava {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ct-green), var(--ct-green-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .6rem;
      color: #fff;
      font-weight: 700;
      flex-shrink: 0
  }

  .vid-watch {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--ct-green-light);
      text-decoration: none;
      transition: gap .18s;
  }

  .vid-watch:hover {
      color: var(--ct-green-light);
      gap: 9px
  }

  .vid-watch i {
      transition: transform .18s
  }

  .vid-watch:hover i {
      transform: translateX(2px)
  }

  /* progress bar (for "in progress" cards) */
  .vid-progress-bar {
      height: 2px;
      background: var(--ct-surface3);
      border-radius: 1px;
      margin-top: 0;
      overflow: hidden
  }

  .vid-progress-fill {
      height: 100%;
      border-radius: 1px;
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light));
      transition: width .4s
  }

  /* ════════════════════════════════════
     FEATURED CARD (wide)
  ════════════════════════════════════ */
  .vid-card-featured {
      background: var(--ct-surface);
      border: 1px solid var(--ct-green-border);
      border-radius: 18px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      cursor: pointer;
      transition: all .3s;
      position: relative;
      box-shadow: 0 0 0 1px rgba(22, 163, 74, .12);
  }

  .vid-card-featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light))
  }

  .vid-card-featured:hover {
      border-color: var(--ct-green);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(22, 163, 74, .15)
  }

  .feat-thumb {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #061410 0%, #0e2a1a 50%, #061410 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 240px;
  }

  .feat-thumb::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 22px 22px;
      pointer-events: none
  }

  .feat-thumb-icon {
      font-size: 4rem;
      opacity: .55;
      z-index: 1;
      filter: drop-shadow(0 0 24px rgba(34, 197, 94, .4));
      transition: all .35s
  }

  .vid-card-featured:hover .feat-thumb-icon {
      opacity: .9;
      transform: scale(1.08)
  }

  .feat-body {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center
  }

  .feat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(22, 163, 74, .1);
      border: 1px solid var(--ct-green-border);
      border-radius: 100px;
      padding: 4px 12px;
      font-family: 'JetBrains Mono', monospace;
      font-size: .65rem;
      font-weight: 600;
      color: var(--ct-green-light);
      letter-spacing: .07em;
      margin-bottom: 16px
  }

  .feat-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--ct-text);
      margin-bottom: 10px;
      line-height: 1.2
  }

  .feat-desc {
      font-size: .88rem;
      color: var(--ct-muted);
      line-height: 1.65;
      margin-bottom: 22px
  }

  .feat-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 24px
  }

  .feat-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: .68rem;
      color: var(--ct-dim);
      background: var(--ct-surface2);
      border: 1px solid var(--ct-border);
      padding: 3px 10px;
      border-radius: 6px
  }

  @media(max-width:768px) {
      .vid-card-featured {
          grid-template-columns: 1fr
      }
  }

  /* ════════════════════════════════════
     PROGRESS SECTION
  ════════════════════════════════════ */
  .progress-section {
      background: var(--ct-bg2);
      border-top: 1px solid var(--ct-border);
      border-bottom: 1px solid var(--ct-border)
  }

  .progress-card {
      background: var(--ct-surface);
      border: 1px solid var(--ct-border);
      border-radius: 14px;
      padding: 20px 18px;
      transition: all .22s
  }

  .progress-card:hover {
      border-color: var(--ct-green-border);
      transform: translateY(-2px)
  }

  .pc-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      color: var(--ct-text);
      margin-bottom: 4px
  }

  .pc-sub {
      font-size: .75rem;
      color: var(--ct-dim);
      margin-bottom: 12px
  }

  .pc-bar {
      height: 4px;
      background: var(--ct-surface3);
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 8px
  }

  .pc-fill {
      height: 100%;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--ct-green), var(--ct-green-light))
  }

  .pc-meta {
      display: flex;
      justify-content: space-between;
      font-family: 'JetBrains Mono', monospace;
      font-size: .68rem;
      color: var(--ct-dim)
  }


  .section-eyebrow {
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--green);
    }

    /* ── Cards ── */
    .g-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }
    .g-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--green-dim) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s;
      pointer-events: none;
    }
    .g-card:hover {
      border-color: rgba(22,163,74,0.45);
      box-shadow: 0 0 30px var(--green-glow), 0 8px 32px rgba(0,0,0,0.5);
      transform: translateY(-3px);
    }
    .g-card:hover::before { opacity: 1; }

    /* ── Icon badges ── */
    .icon-badge {
      width: 48px;
      height: 48px;
      border-radius: 0.75rem;
      background: var(--green-dim);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: var(--green-light);
      flex-shrink: 0;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .g-card:hover .icon-badge {
      background: rgba(22,163,74,0.22);
      box-shadow: 0 0 14px var(--green-glow);
    }

    /* ── Action links ── */
    .action-link {
      font-family: 'Syne', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--green-light);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: gap 0.2s, color 0.2s;
    }
    .action-link:hover { gap: 0.6rem; color: #4ade80; }

    /* ── Divider ── */
    .g-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
      margin: 0.75rem 0;
    }

    /* ── Form controls ── */
    .form-card {
      background: var(--bg-card2);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 2.2rem 2rem;
    }

    .form-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .form-control, .form-select {
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid var(--border-subtle) !important;
      border-radius: 0.65rem !important;
      color: var(--text-primary) !important;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      padding: 0.65rem 0.9rem;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s !important;
    }
    .form-control::placeholder { color: rgba(122,171,138,0.45); }
    .form-control:focus, .form-select:focus {
      border-color: var(--green) !important;
      box-shadow: 0 0 0 3px rgba(22,163,74,0.18) !important;
      background: rgba(22,163,74,0.05) !important;
      outline: none !important;
    }
    .form-select option { background: #0e1a16; }

    textarea.form-control { resize: none; min-height: 130px; }

    /* ── Send button ── */
    .btn-send {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: linear-gradient(90deg, var(--green) 0%, #15803d 100%);
      color: #fff;
      border: none;
      border-radius: 0.75rem;
      padding: 0.8rem 1.5rem;
      width: 100%;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.3s, transform 0.2s;
      cursor: pointer;
    }
    .btn-send::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.10) 50%, transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }
    .btn-send:hover {
      box-shadow: 0 0 28px var(--green-glow), 0 4px 16px rgba(0,0,0,0.4);
      transform: translateY(-1px);
    }
    .btn-send:hover::after { transform: translateX(100%); }
    .btn-send:active { transform: translateY(0); }

    /* ── Stat chips ── */
    .stat-chip {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 0.9rem;
      padding: 1.1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .stat-chip:hover {
      border-color: rgba(22,163,74,0.4);
      box-shadow: 0 0 20px var(--green-glow);
    }
    .stat-chip-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }
    .stat-chip-value {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
    }
    .stat-chip-icon {
      color: var(--green);
      font-size: 1.4rem;
      opacity: 0.75;
    }

    /* ── Address section ── */
    .address-tag {
      font-family: 'Syne', sans-serif;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green);
      border: 1px solid var(--border);
      border-radius: 0.35rem;
      padding: 0.15rem 0.5rem;
      display: inline-block;
      margin-bottom: 0.5rem;
    }

    /* ── Animations ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .anim { opacity: 0; animation: fadeUp 0.55s ease forwards; }
    .anim-1 { animation-delay: 0.05s; }
    .anim-2 { animation-delay: 0.15s; }
    .anim-3 { animation-delay: 0.25s; }
    .anim-4 { animation-delay: 0.35s; }
    .anim-5 { animation-delay: 0.45s; }

    /* ── Pulse dot ── */
    .pulse-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-light);
      box-shadow: 0 0 0 0 var(--green-glow);
      animation: pulse 2s infinite;
      vertical-align: middle;
      margin-right: 0.35rem;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 var(--green-glow); }
      70%  { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
      100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
    }

    /* ── Success toast ── */
    #toast-success {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--bg-card);
      border: 1px solid var(--green);
      border-radius: 0.9rem;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.88rem;
      color: var(--text-primary);
      box-shadow: 0 0 30px var(--green-glow);
      z-index: 9999;
      transform: translateY(120%);
      transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    #toast-success.show { transform: translateY(0); }

    .blog_icon {
    width: 70px;
    height: 70px;
    background: var(--ct-green-glow);
    border: 1px solid var(--ct-green-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 16px;
    color: var(--ct-green-light);
}

.text_mute{
    font-size: 1rem;
    color: var(--ct-muted);
    margin: 0;
}

 /* ── Timeline wrapper ── */
    .timeline {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
    }

    /* The vertical line */
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      transform: translateX(-50%);
      background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--green) 8%,
        var(--green) 92%,
        transparent 100%
      );
      opacity: 0.35;
      z-index: 0;
    }

    /* ── Each row ── */
    .tl-row {
      display: flex;
      align-items: center;
      position: relative;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp 0.6s ease forwards;
    }
    .tl-row:nth-child(1) { animation-delay: 0.1s; }
    .tl-row:nth-child(2) { animation-delay: 0.22s; }
    .tl-row:nth-child(3) { animation-delay: 0.34s; }
    .tl-row:nth-child(4) { animation-delay: 0.46s; }
    .tl-row:nth-child(5) { animation-delay: 0.58s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Right-side card (odd) */
    .tl-row.right .tl-card {
      margin-left: auto;
      text-align: right;
    }
    /* Left-side card (even) */
    .tl-row.left .tl-card {
      margin-right: auto;
      text-align: left;
    }

    .tl-card {
      width: calc(50% - 36px);
      background: linear-gradient(135deg, rgba(22,163,74,0.06) 0%, rgba(14,26,22,0.95) 60%);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.4rem 1.6rem;
      position: relative;
      z-index: 1;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      cursor: default;
      backdrop-filter: blur(6px);
    }
    .tl-card:hover {
      border-color: rgba(22,163,74,0.5);
      box-shadow: 0 0 32px var(--green-glow), 0 8px 32px rgba(0,0,0,0.5);
      transform: translateY(-3px) scale(1.01);
    }

    /* Shine sweep on hover */
    .tl-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.55s ease;
    }
    .tl-card:hover::after { transform: translateX(100%); }

    /* Year */
    .tl-year {
      font-family: 'Syne', sans-serif;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: var(--green-light);
      margin-bottom: 0.3rem;
      display: block;
    }

    /* Title */
    .tl-title {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.35rem;
      line-height: 1.3;
    }

    /* Description */
    .tl-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Tag pill */
    .tl-tag {
      display: inline-block;
      font-family: 'Syne', sans-serif;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--green);
      border: 1px solid var(--border);
      border-radius: 0.35rem;
      padding: 0.1rem 0.45rem;
      margin-bottom: 0.5rem;
    }

    /* Center dot */
    .tl-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--green);
      border: 2px solid var(--bg-base);
      box-shadow: 0 0 0 3px var(--green-glow), 0 0 18px var(--green-glow);
      z-index: 2;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .tl-row:hover .tl-dot {
      box-shadow: 0 0 0 5px var(--green-glow), 0 0 28px rgba(22,163,74,0.6);
      transform: translateX(-50%) scale(1.25);
    }

    /* Icon inside dot area */
    .tl-icon-wrap {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── Bottom stats ── */
    .stat-bar {
      max-width: 760px;
      margin: 3rem auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      opacity: 0;
      animation: fadeUp 0.6s ease 0.75s forwards;
    }

    .stat-item {
      background: linear-gradient(135deg, rgba(22,163,74,0.07), rgba(14,26,22,0.9));
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.2rem 1.4rem;
      text-align: center;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .stat-item:hover {
      border-color: rgba(22,163,74,0.45);
      box-shadow: 0 0 24px var(--green-glow);
      transform: translateY(-2px);
    }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--green-light);
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }

    /* ── Header animation ── */
    .header-anim {
      opacity: 0;
      animation: fadeUp 0.55s ease 0.05s forwards;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .timeline::before { left: 18px; }
      .tl-dot { left: 18px; }
      .tl-icon-wrap { left: 18px; }
      .tl-row.right .tl-card,
      .tl-row.left .tl-card {
        width: calc(100% - 46px);
        margin-left: 46px;
        text-align: left;
      }
      .tl-row.right .tl-card { margin-right: 0; }
      .stat-bar { grid-template-columns: 1fr; }
    }


    @media(max-width:991px){
        .navbar-collapse {
    background: #090c0c;
    padding: 15px 15px 20px 15px;
}
    }


    /* ── Tab Nav Bar ── */
    .calc-nav {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2.5rem;
    }

    .calc-tab {
      font-family: 'Syne', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.6rem 1.25rem;
      border-radius: 0.65rem;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
    }
    .calc-tab:hover {
      border-color: var(--border);
      color: var(--text);
      background: var(--green-dim);
    }
    .calc-tab.active {
      background: linear-gradient(90deg, var(--green) 0%, #15803d 100%);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 0 20px var(--green-glow), 0 4px 14px rgba(0,0,0,0.4);
    }
    .calc-tab i { font-size: 0.95rem; }

    /* ── Main card ── */
    .calc-card {
      max-width: 520px;
      margin: 0 auto;
      background: linear-gradient(145deg, rgba(22,163,74,0.06) 0%, var(--bg-card) 50%);
      border: 1px solid var(--border);
      border-radius: 1.25rem;
      padding: 2rem 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      animation: fadeUp 0.45s ease both;
    }
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(20px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .calc-card::before {
      content:'';
      position:absolute; top:0; left:0; right:0; height:1px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      opacity: 0.5;
    }

    /* Live badge */
    .live-badge {
      position: absolute;
      top: 1.1rem; right: 1.25rem;
      display: flex; align-items: center; gap: 0.35rem;
      font-size: 0.72rem; font-weight: 500;
      color: var(--muted);
    }
    .live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--green-light);
      box-shadow: 0 0 0 0 var(--green-glow);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 var(--green-glow); }
      70%  { box-shadow: 0 0 0 7px rgba(22,163,74,0); }
      100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
    }

    /* Card header */
    .card-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 0.2rem;
    }
    .card-sub {
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    /* ── Form ── */
    .form-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.35rem;
      display: block;
    }
    .form-control, .form-select {
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid var(--border) !important;
      border-radius: 0.65rem !important;
      color: var(--text) !important;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.93rem;
      padding: 0.65rem 0.9rem;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s !important;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--green) !important;
      box-shadow: 0 0 0 3px rgba(22,163,74,0.18) !important;
      background: rgba(22,163,74,0.05) !important;
      outline: none !important;
    }
    .form-control::placeholder { color: rgba(122,171,138,0.4); }
    .form-select option { background: #0e1a16; }

    /* Row inputs with icon */
    .input-icon-wrap { position: relative; }
    .input-icon {
      position: absolute;
      right: 0.85rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--green);
      font-size: 0.9rem;
      opacity: 0.7;
      pointer-events: none;
    }

    /* ── Result box ── */
    .result-box {
      border-radius: 0.85rem;
      padding: 1.1rem 1.3rem;
      background: linear-gradient(90deg, var(--green) 0%, #15803d 100%);
      position: relative;
      overflow: hidden;
      margin-top: 1.25rem;
      transition: box-shadow 0.3s;
    }
    .result-box:hover {
      box-shadow: 0 0 32px var(--green-glow);
    }
    .result-box::after {
      content:'';
      position:absolute;
      top:-60%; right:-40px;
      width:120px; height:200%;
      background: rgba(255,255,255,0.06);
      transform: rotate(20deg);
      pointer-events:none;
    }
    .result-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      margin-bottom: 0.25rem;
    }
    .result-value {
      font-family: 'DM Mono', monospace;
      font-size: 2rem;
      font-weight: 500;
      color: #fff;
      letter-spacing: -0.01em;
      line-height: 1;
    }
    .result-tag {
      position: absolute;
      right: 1.1rem;
      bottom: 1rem;
      font-family: 'Syne', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,0.55);
    }

    /* ── Footer note ── */
    .calc-note {
      text-align: center;
      font-size: 0.74rem;
      color: rgba(122,171,138,0.55);
      margin-top: 1.1rem;
      font-family: 'DM Mono', monospace;
    }

    /* ── Divider ── */
    .g-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
      margin: 1.25rem 0;
    }

    /* ── Panel hidden/show ── */
    .calc-panel { display: none; animation: fadeUp 0.35s ease both; }
    .calc-panel.active { display: block; }

    /* ── Secondary result chips ── */
    .chip-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.75rem; }
    .chip {
      flex: 1;
      min-width: 120px;
      background: rgba(22,163,74,0.08);
      border: 1px solid var(--border);
      border-radius: 0.65rem;
      padding: 0.65rem 0.9rem;
      text-align: center;
    }
    .chip-label {
      font-family: 'Syne', sans-serif;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }
    .chip-val {
      font-family: 'DM Mono', monospace;
      font-size: 0.9rem;
      color: var(--green-light);
      font-weight: 500;
    }