  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Space Grotesk', sans-serif;
    background: #060B14;
    color: #F1F5F9;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── ANNOUNCEMENT BAR ── */
  .announce-bar {
    background: #060B14;
    border-bottom: 1px solid rgba(0,255,136,.12);
    height: 42px; overflow: hidden;
    display: flex; align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .announce-bar::before,
  .announce-bar::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    width: 80px; z-index: 2; pointer-events: none;
  }
  .announce-bar::before { left: 0; background: linear-gradient(90deg, #060B14, transparent); }
  .announce-bar::after  { right: 0; background: linear-gradient(270deg, #060B14, transparent); }
  .ticker-track {
    display: flex; align-items: center;
    animation: ticker 60s linear infinite;
    white-space: nowrap; will-change: transform;
  }
  .ticker-track:hover { animation-play-state: paused; }
  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 32px; font-size: 12.5px; font-weight: 600;
    color: rgba(255,255,255,.7); white-space: nowrap;
  }
  .ticker-item a {
    color: #00FF88; font-weight: 700; text-decoration: none; transition: color .15s;
  }
  .ticker-item a:hover { color: #fff; }
  .ticker-sep {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,.2); flex-shrink: 0; margin: 0 4px;
  }
  .ticker-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(0,255,136,.1); border: 1px solid rgba(0,255,136,.25);
    color: #00FF88; font-size: 10px; font-weight: 800;
    letter-spacing: .07em; text-transform: uppercase;
    padding: 2px 8px; border-radius: 999px;
  }
  @keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }

  /* ── NAV ── */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 68px;
    background: rgba(5,10,20,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #1E293B;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,.3);
  }
  .nav-left { display: flex; align-items: center; gap: 14px; }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-icon {
    width: 36px; height: 36px; border-radius: 11px;
    flex-shrink: 0; object-fit: cover; display: block;
    box-shadow: 0 3px 10px rgba(0,255,136,.3);
  }
  .nav-logo-text { font-size: 15px; font-weight: 800; color: #F1F5F9; letter-spacing: -.4px; }
  .nav-tag {
    font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
    background: rgba(0,255,136,.08); color: #4ADE80; border: 1px solid rgba(0,255,136,.25);
  }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .nav-count {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; color: #00FF88; font-weight: 700;
    background: #0A0F1C; padding: 5px 12px; border-radius: 999px;
    border: 1px solid rgba(0,255,136,.25); white-space: nowrap;
  }
  .nav-count svg { flex-shrink: 0; }
  /* Guest buttons */
  .nav-btn-login {
    display: inline-flex; align-items: center;
    font-size: 13px; font-weight: 600; color: #CBD5E1;
    background: #121826; border: 1.5px solid #1E293B;
    padding: 7px 18px; border-radius: 999px; text-decoration: none;
    transition: border-color .2s, color .2s, box-shadow .2s;
    white-space: nowrap;
  }
  .nav-btn-login:hover { border-color: #00FF88; color: #00FF88; box-shadow: 0 0 0 3px rgba(0,255,136,.1); }
  .nav-btn-register {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: #0A0F1C;
    background: #00FF88;
    padding: 8px 20px; border-radius: 999px; text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,255,136,.3);
    transition: transform .2s, box-shadow .2s; white-space: nowrap;
    position: relative; overflow: hidden;
  }
  .nav-btn-register::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 60%);
    border-radius: inherit;
  }
  .nav-btn-register:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(0,255,136,.4); }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 7px;
    background: #00FF88; color: #0A0F1C;
    text-decoration: none; font-size: 13px; font-weight: 700;
    padding: 9px 18px; border-radius: 10px;
    transition: all .2s; white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0,255,136,.3);
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(0,255,136,.4); }
  /* ── USER DROPDOWN ── */
  .nav-profile {
    position: relative;
  }
  .nav-profile-btn {
    display: flex; align-items: center; gap: 0;
    background: linear-gradient(135deg, #00FF88, #00CC6E);
    border: none; border-radius: 999px; padding: 3px;
    cursor: pointer; outline: none; position: relative;
    box-shadow: 0 4px 14px rgba(0,255,136,.25);
    transition: box-shadow .2s, transform .15s;
  }
  .nav-profile-btn:hover { box-shadow: 0 0 20px rgba(0,255,136,.4); transform: translateY(-1px); }
  .nav-profile-btn-inner {
    display: flex; align-items: center; gap: 9px;
    background: #121826; border-radius: 999px;
    padding: 2px 10px 2px 2px;
  }
  .nav-avatar {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, #00FF88, #00CC6E);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
    overflow: hidden;
  }
  .nav-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .nav-profile-name {
    font-size: 13px; font-weight: 600; color: #F1F5F9; max-width: 110px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .nav-profile-chevron {
    transition: transform .2s; color: #94a3b8;
  }
  .nav-profile.open .nav-profile-chevron { transform: rotate(180deg); }
  .nav-dropdown {
    display: none; position: absolute; top: calc(100% + 12px); right: 0;
    background: #121826; border-radius: 18px; min-width: 250px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.3);
    border: 1px solid #1E293B;
    overflow: hidden; z-index: 999;
    transform-origin: top right;
    animation: none;
  }
  .nav-profile.open .nav-dropdown {
    display: block;
    animation: ddSlideIn .2s cubic-bezier(.34,1.3,.64,1) both;
  }
  @keyframes ddSlideIn {
    from { opacity: 0; transform: scale(.9) translateY(-8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
  .nav-dropdown-header {
    padding: 20px 18px 16px;
    background: linear-gradient(135deg, #050A14 0%, #0A1F18 100%);
    position: relative; overflow: hidden;
  }
  .nav-dropdown-header::before {
    content: ''; position: absolute; top: -20px; right: -20px;
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255,255,255,.08);
  }
  .nav-dropdown-header::after {
    content: ''; position: absolute; bottom: -30px; left: 10px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(255,255,255,.05);
  }
  .dd-header-inner { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
  .dd-avatar-lg {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,.22); border: 2px solid rgba(255,255,255,.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; font-weight: 800; color: #fff; flex-shrink: 0;
    overflow: hidden;
  }
  .dd-avatar-lg img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
  .dd-info { flex: 1; min-width: 0; }
  .dd-name { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dd-email { font-size: 11px; color: rgba(255,255,255,.7); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dd-badge { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; padding: 2px 8px; font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .4px; text-transform: uppercase; }
  .dd-body { padding: 8px; }
  .nav-dropdown-item {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 10px; font-size: 13px; font-weight: 500;
    color: #CBD5E1; cursor: pointer; transition: background .15s, transform .1s;
    border: none; background: none; width: 100%; text-align: left;
    text-decoration: none; border-radius: 10px; position: relative;
  }
  .nav-dropdown-item:hover { background: #1A2236; transform: translateX(2px); }
  .nav-dropdown-item .dd-icon {
    width: 32px; height: 32px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .nav-dropdown-item .dd-icon.indigo { background: rgba(0,255,136,.1); }
  .nav-dropdown-item .dd-icon.indigo svg { stroke: #00FF88; }
  .nav-dropdown-item .dd-icon.emerald { background: rgba(0,255,136,.1); }
  .nav-dropdown-item .dd-icon.emerald svg { stroke: #059669; }
  .nav-dropdown-item .dd-icon.rose { background: rgba(248,113,113,.1); }
  .nav-dropdown-item .dd-icon.rose svg { stroke: #e11d48; }
  .nav-dropdown-item .dd-label { flex: 1; }
  .nav-dropdown-item .dd-arrow {
    opacity: 0; transform: translateX(-4px);
    transition: opacity .15s, transform .15s; color: #94a3b8;
  }
  .nav-dropdown-item:hover .dd-arrow { opacity: 1; transform: translateX(0); }
  .nav-dropdown-item.danger .dd-label { color: #e11d48; }
  .nav-dropdown-divider { height: 1px; background: #1A2236; margin: 4px 8px; }

  /* ── TOOL LOCK (unpaid) ── */
  .tool-card-wrap { position: relative; }
  .tool-lock-overlay {
    position: absolute; inset: 0; border-radius: 16px;
    background: rgba(15,23,42,.55); backdrop-filter: blur(3px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; cursor: pointer; transition: background .2s;
  }
  .tool-lock-overlay:hover { background: rgba(15,23,42,.65); }
  .tool-lock-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(0,255,136,.15); display: flex; align-items: center; justify-content: center; }
  .tool-lock-label { font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .04em; }
  .upgrade-bar {
    background: linear-gradient(135deg, #060B14, #091A12);
    border-bottom: 1px solid rgba(0,255,136,.15);
    padding: 10px 24px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  }
  .upgrade-bar-text { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; }
  .upgrade-bar-text strong { color: #fff; }
  .upgrade-bar-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #00FF88 !important; color: #000000 !important;
    font-size: 12px; font-weight: 700; padding: 7px 16px; border-radius: 999px;
    text-decoration: none; box-shadow: 0 4px 12px rgba(0,255,136,.25);
    transition: transform .15s, box-shadow .15s;
  }
  .upgrade-bar-btn:hover { transform: translateY(-1px); box-shadow: 0 0 18px rgba(0,255,136,.4); color: #000000 !important; }
  .upgrade-bar-ghost-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.25);
    font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
    cursor: pointer; transition: background .15s;
  }
  .upgrade-bar-ghost-btn:hover { background: rgba(255,255,255,.2); }

  /* ── TRIAL BANNER ── */
  .trial-banner {
    background: linear-gradient(135deg, #064e3b, #065f46);
    border-bottom: 1px solid rgba(52,211,153,.3);
    padding: 9px 24px; display: none; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  }
  .trial-banner-text { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 500; }
  .trial-banner-text strong { color: #6ee7b7; }
  .trial-banner-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: #10b981; color: #fff;
    font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
    text-decoration: none; transition: background .15s;
  }
  .trial-banner-btn:hover { background: #059669; }

  /* ── TOOL PICKER MODAL ── */
  .tool-picker-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(2,6,23,.75); backdrop-filter: blur(8px);
    z-index: 9999; align-items: center; justify-content: center; padding: 20px;
  }
  .tool-picker-modal {
    background: #121826; border-radius: 20px;
    width: 100%; max-width: 780px; max-height: 88vh;
    display: flex; flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    overflow: hidden;
  }
  .tool-picker-head {
    padding: 28px 28px 20px; border-bottom: 1px solid #1E293B; flex-shrink: 0;
  }
  .tool-picker-head-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
  .tool-picker-title { font-size: 20px; font-weight: 800; color: #F1F5F9; margin-bottom: 4px; }
  .tool-picker-sub { font-size: 13px; color: #64748b; line-height: 1.5; }
  .tool-picker-close {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
    background: #1A2236; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #64748b; transition: background .15s;
  }
  .tool-picker-close:hover { background: #1A2236; color: #F1F5F9; }
  .tool-picker-progress { display: flex; align-items: center; gap: 12px; }
  .tool-picker-count { font-size: 13px; font-weight: 700; color: #00FF88; white-space: nowrap; min-width: 90px; }
  .tool-picker-bar-wrap { flex: 1; height: 6px; background: #1E293B; border-radius: 99px; overflow: hidden; }
  .tool-picker-bar { height: 100%; background: linear-gradient(90deg,#00FF88,#4ADE80); border-radius: 99px; transition: width .3s ease; width: 0; }
  .tool-picker-grid {
    flex: 1; overflow-y: auto; padding: 20px 24px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 10px;
  }
  .picker-item {
    border: 2px solid #1E293B; border-radius: 12px; padding: 14px 12px;
    cursor: pointer; transition: border-color .15s, background .15s, transform .1s;
    display: flex; flex-direction: column; gap: 6px; user-select: none; position: relative;
  }
  .picker-item:hover { border-color: rgba(0,255,136,.4); background: #0D1526; transform: translateY(-1px); }
  .picker-item.selected { border-color: #00FF88; background: #0A0F1C; }
  .picker-item.dimmed { opacity: .4; cursor: not-allowed; }
  .picker-item.dimmed:hover { transform: none; border-color: #1E293B; background: #121826; }
  .picker-item-emoji { font-size: 22px; line-height: 1; }
  .picker-item-name { font-size: 12px; font-weight: 600; color: #F1F5F9; line-height: 1.35; }
  .picker-item-check {
    position: absolute; top: 10px; right: 10px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #00FF88; display: none; align-items: center; justify-content: center;
  }
  .picker-item.selected .picker-item-check { display: flex; }
  .tool-picker-footer {
    padding: 16px 24px; border-top: 1px solid #1E293B; flex-shrink: 0;
    display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  }
  .picker-upgrade-btn {
    font-size: 13px; font-weight: 600; color: #00FF88;
    text-decoration: none; padding: 8px 16px; border-radius: 999px;
    border: 1.5px solid #c7d2fe; transition: background .15s;
  }
  .picker-upgrade-btn:hover { background: rgba(0,255,136,.08); }
  .picker-confirm-btn {
    background: #00FF88; color: #0A0F1C;
    font-size: 13px; font-weight: 700; padding: 10px 22px; border-radius: 999px;
    border: none; cursor: pointer; transition: opacity .15s, transform .1s;
    box-shadow: 0 4px 14px rgba(0,255,136,.3);
  }
  .picker-confirm-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
  .picker-confirm-btn:not(:disabled):hover { transform: translateY(-1px); }

  /* ── EDIT PROFILE MODAL ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(15,23,42,.6); backdrop-filter: blur(6px);
    z-index: 9999; align-items: center; justify-content: center;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: #121826; border-radius: 22px;
    box-shadow: 0 32px 80px rgba(0,0,0,.22);
    width: 100%; max-width: 480px; margin: 16px;
    overflow: hidden; animation: modalIn .22s cubic-bezier(.34,1.56,.64,1);
  }
  @keyframes modalIn {
    from { transform: scale(.92) translateY(12px); opacity: 0; }
    to   { transform: scale(1)   translateY(0);    opacity: 1; }
  }
  /* Modal top banner */
  .modal-banner {
    background: linear-gradient(135deg, #050A14 0%, #0A1F18 100%);
    padding: 28px 28px 22px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
  }
  .modal-banner::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,.12) 0%, transparent 70%);
  }
  .modal-banner-left { display: flex; align-items: center; gap: 16px; position: relative; }
  .modal-avatar {
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg, #00FF88, #00CC6E);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800; color: #fff; flex-shrink: 0;
    border: 3px solid rgba(255,255,255,.2);
    box-shadow: 0 6px 20px rgba(0,255,136,.2);
  }
  .modal-banner-info .mb-name  { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 3px; }
  .modal-banner-info .mb-email { font-size: 12px; color: rgba(255,255,255,.5); }
  .modal-banner-info .mb-badge {
    display: inline-flex; align-items: center; gap: 4px; margin-top: 6px;
    background: rgba(0,255,136,.15); border: 1px solid rgba(0,255,136,.3);
    color: #00FF88; font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 999px; letter-spacing: .04em;
  }
  .modal-close {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    border-radius: 9px; width: 34px; height: 34px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); transition: all .15s; position: relative;
  }
  .modal-close:hover { background: rgba(255,255,255,.2); color: #fff; }
  /* Tabs */
  .modal-tabs {
    display: flex; border-bottom: 1px solid #1E293B;
  }
  .modal-tab {
    flex: 1; padding: 14px; font-size: 13px; font-weight: 700;
    color: #94a3b8; background: none; border: none; cursor: pointer;
    border-bottom: 2px solid transparent; transition: all .2s;
    display: flex; align-items: center; justify-content: center; gap: 7px;
  }
  .modal-tab.active { color: #00FF88; border-bottom-color: #00FF88; }
  .modal-tab:hover:not(.active) { color: #CBD5E1; background: #161F30; }
  /* Tab panels */
  .modal-panel { display: none; padding: 22px 26px; }
  .modal-panel.active { display: block; }
  .modal-field { margin-bottom: 16px; }
  .modal-field label {
    display: block; font-size: 11px; font-weight: 700; color: #CBD5E1;
    margin-bottom: 7px; text-transform: uppercase; letter-spacing: .06em;
  }
  .modal-input-wrap { position: relative; }
  .modal-input-wrap svg {
    position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
    color: #94a3b8; pointer-events: none;
  }
  .modal-input-wrap input {
    width: 100%; padding: 11px 13px 11px 40px;
    border: 1.5px solid #1E293B; border-radius: 10px;
    font-size: 14px; font-family: inherit; outline: none;
    transition: border-color .2s, box-shadow .2s; color: #F1F5F9;
    background: #161F30;
  }
  .modal-input-wrap input:focus {
    border-color: #00FF88; background: #121826;
    box-shadow: 0 0 0 4px rgba(0,255,136,.08);
  }
  .modal-section-label {
    font-size: 11px; font-weight: 700; color: #94a3b8; letter-spacing: .08em;
    text-transform: uppercase; margin: 20px 0 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .modal-section-label::after {
    content: ''; flex: 1; height: 1px; background: #1A2236;
  }
  .modal-footer {
    padding: 16px 26px; border-top: 1px solid #1E293B;
    display: flex; gap: 10px; justify-content: flex-end; background: #161F30;
  }
  .modal-btn {
    padding: 10px 22px; border-radius: 10px; font-size: 14px;
    font-weight: 700; cursor: pointer; border: none; transition: all .2s;
    display: flex; align-items: center; gap: 7px;
  }
  .modal-btn.cancel { background: #1A2236; color: #CBD5E1; border: 1.5px solid #1E293B; }
  .modal-btn.cancel:hover { background: #243047; }
  .modal-btn.save {
    background: #00FF88; color: #0A0F1C;
    box-shadow: 0 4px 14px rgba(0,255,136,.3);
  }
  .modal-btn.save:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(0,255,136,.4); }
  .modal-btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }
  .modal-alert {
    border-radius: 10px; padding: 10px 14px; font-size: 13px;
    margin-bottom: 16px; display: none; align-items: center; gap: 8px;
  }
  .modal-alert.error   { background: rgba(248,113,113,.1); color: #F87171; border:1.5px solid #fecaca; }
  .modal-alert.success { background: rgba(0,255,136,.08); color:#4ADE80; border:1.5px solid rgba(0,255,136,.25); }
  .modal-alerts-wrap { padding: 0 26px; }
  /* Keep old IDs working */
  #modalError   { }
  #modalSuccess { }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(180deg, #040912 0%, #060B14 60%, #070D18 100%);
    padding: 88px 40px 80px; text-align: center;
    position: relative; overflow: visible;
  }
  .hero::before {
    content: ''; position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
    width: 900px; height: 550px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,255,136,.11) 0%, rgba(0,255,136,.03) 40%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); font-size: 11.5px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 6px 18px; border-radius: 999px; margin-bottom: 28px;
    backdrop-filter: blur(8px);
  }
  .hero h1 {
    font-size: clamp(32px, 5vw, 58px); font-weight: 900;
    color: #fff; letter-spacing: -.05em; line-height: 1.04;
    margin-bottom: 20px;
  }
  .hero h1 span {
    background: linear-gradient(90deg, #00FF88, #4ADE80);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 17px; color: rgba(255,255,255,.65); max-width: 540px;
    margin: 0 auto 40px; line-height: 1.75; font-weight: 400;
  }
  .hero-search-wrap {
    max-width: 580px; margin: 0 auto 48px; position: relative; z-index: 10;
  }
  .hero-search {
    display: flex; align-items: center;
    background: rgba(15,22,40,.9);
    border: 1.5px solid rgba(255,255,255,.08); border-radius: 999px;
    box-shadow: 0 2px 20px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
    transition: border-color .2s, box-shadow .2s, background .2s;
    padding: 0 6px 0 20px;
  }
  .hero-search:hover {
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 4px 28px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
    background: rgba(18,26,48,.95);
  }
  .hero-search:focus-within {
    border-color: rgba(255,255,255,.28);
    box-shadow: 0 4px 28px rgba(0,0,0,.5);
    background: rgba(12,20,38,.98);
  }
  .hero-search:focus-within svg.search-icon { color: #94A3B8; }
  .hero-search svg.search-icon { flex-shrink: 0; color: #475569; transition: color .2s; }
  .hero-search input {
    flex: 1; border: none; outline: none; background: transparent;
    padding: 14px 12px; font-size: 14px; color: #F1F5F9;
    font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  }
  .hero-search input:focus { outline: none; box-shadow: none; border: none; }
  .hero-search input::placeholder { color: #475569; font-weight: 400; }
  .search-btn {
    margin: 5px 0; padding: 9px 20px; border-radius: 999px; border: none;
    background: #00FF88; color: #0A0F1C; font-size: 13px; font-weight: 700;
    cursor: pointer; font-family: 'Space Grotesk', sans-serif; flex-shrink: 0;
    display: flex; align-items: center; gap: 6px; transition: transform .15s, box-shadow .15s;
  }
  .search-btn:hover { transform: translateY(-1px); box-shadow: 0 0 16px rgba(0,255,136,.4); }
  .hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap; position: relative; z-index: 1;
  }
  .hero-stat {
    display: flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    padding: 10px 18px; border-radius: 999px;
    transition: background .2s;
  }
  .hero-stat:hover { background: rgba(255,255,255,.16); }
  .hero-stat-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
  }
  .hero-stat-body { text-align: left; }
  .hero-stat-num {
    font-size: 16px; font-weight: 800; color: #fff;
    letter-spacing: -.02em; line-height: 1.1;
  }
  .hero-stat-label { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; line-height: 1.2; }

  /* ── FEATURED STRIP ── */
  .featured-section {
    background: linear-gradient(180deg, #0B1422 0%, #0D1526 60%, #0B1220 100%);
    border-top: 1px solid rgba(0,255,136,.1); border-bottom: 1px solid #1E293B;
    padding: 52px 40px;
  }
  .featured-section-inner { max-width: 1300px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .1em; color: #00FF88; margin-bottom: 20px; letter-spacing: .12em;
  }
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* ── TOOLS SECTION ── */
  .tools-section {
    background: #060B14;
    padding-bottom: 64px;
  }

  /* ── FILTER BAR ── */
  .filter-wrap {
    background: rgba(5,10,20,.95); border-bottom: 1px solid #1E293B;
    position: sticky; top: 64px; z-index: 90;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    backdrop-filter: blur(12px);
  }
  /* Single row: search */
  .filter-main-row {
    display: flex; align-items: center; gap: 0;
    max-width: 1300px; margin: 0 auto; padding: 0 40px;
    height: 54px;
  }
  /* Search wrapper */
  .fb-search-wrap { position: relative; flex-shrink: 0; width: 220px; }
  /* Suggestions dropdown */
  .fb-dropdown {
    display: none; position: absolute; top: calc(100% + 6px); left: 0;
    width: 320px; background: #121826;
    border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,.5); overflow: hidden;
    z-index: 200;
  }
  .fb-dropdown.open { display: block; }
  .fbd-item {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px; text-decoration: none; color: #E2E8F0;
    border-bottom: 1px solid rgba(255,255,255,.06); transition: background .12s;
  }
  .fbd-item:last-child { border-bottom: none; }
  .fbd-item:hover { background: rgba(255,255,255,.06); }
  .fbd-emoji { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }
  .fbd-body { flex: 1; min-width: 0; }
  .fbd-title { font-size: 13px; font-weight: 700; color: #F1F5F9; margin-bottom: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .fbd-desc { font-size: 11.5px; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .fbd-empty { padding: 16px 14px; font-size: 13px; color: #64748b; text-align: center; }
  /* Search box */
  .fb-search {
    display: flex; align-items: center; gap: 8px;
    background: rgba(18,24,38,.95); border: 2px solid #1E293B;
    border-radius: 14px; padding: 6px 10px 6px 14px;
    width: 100%; box-sizing: border-box; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    transition: border-color .2s, box-shadow .2s, background .2s;
  }
  .fb-search:focus-within {
    border-color: rgba(0,255,136,.5);
    box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 3px rgba(0,255,136,.08);
    background: #121826;
  }
  .fb-search svg { flex-shrink: 0; color: #475569; transition: color .2s; }
  .fb-search:focus-within svg { color: #94A3B8; }
  .fb-search input {
    flex: 1; border: none; background: transparent;
    font-size: 13px; color: #F1F5F9; min-width: 0; width: 100%;
    box-sizing: border-box; outline: none; padding: 4px 0;
    font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  }
  .fb-search input::placeholder { color: #475569; font-weight: 400; }
  .fb-search input[type="search"]::-webkit-search-decoration,
  .fb-search input[type="search"]::-webkit-search-cancel-button,
  .fb-search input[type="search"]::-webkit-search-results-button,
  .fb-search input[type="search"]::-webkit-search-results-decoration { display: none; }
  .fb-search input:-webkit-autofill { -webkit-box-shadow: 0 0 0 100px transparent inset !important; background: transparent !important; }
  .fb-clear {
    background: none; border: none; color: #64748b; cursor: pointer;
    font-size: 14px; line-height: 1; padding: 0; flex-shrink: 0;
    transition: color .15s;
  }
  .fb-clear:hover { color: #E2E8F0; }
  /* Separator */
  .fb-sep { width: 1px; height: 24px; background: rgba(255,255,255,.1); flex-shrink: 0; margin: 0 14px; }
  /* Filter buttons — scrollable, takes remaining space */
  .filter-bar {
    display: flex; align-items: center; gap: 6px;
    flex: 1; overflow-x: auto; scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06);
    color: #CBD5E1; font-size: 12.5px; font-weight: 600;
    cursor: pointer; font-family: 'Space Grotesk', sans-serif;
    transition: all .18s; white-space: nowrap; flex-shrink: 0;
  }
  .filter-btn:hover { border-color: rgba(0,255,136,.4); color: #00FF88; background: rgba(0,255,136,.08); }
  .filter-btn.active { background: #00FF88; border-color: #00FF88; color: #0A0F1C; box-shadow: 0 2px 12px rgba(0,255,136,.3); }
  .filter-count {
    font-size: 10.5px; font-weight: 700; padding: 1px 6px;
    border-radius: 999px;
  }
  .filter-btn.active .filter-count { background: rgba(10,15,28,.2); color: #0A0F1C; }
  .filter-btn:not(.active) .filter-count { background: rgba(255,255,255,.1); color: #94A3B8; }
  /* Popular — amber accent */
  .filter-btn-popular { border-color: rgba(251,191,36,.2); color: #FCD34D; }
  .filter-btn-popular:hover { background: rgba(251,191,36,.08) !important; border-color: rgba(251,191,36,.45) !important; color: #FCD34D !important; }
  .filter-btn-popular.active { background: #F59E0B !important; border-color: #F59E0B !important; color: #0A0F1C !important; box-shadow: 0 2px 12px rgba(245,158,11,.3) !important; }

  /* ── CATEGORY TILES ── */
  .cat-tiles {
    display: flex; gap: 8px; overflow-x: auto;
    scrollbar-width: none; flex: 1;
    align-items: center;
  }
  .cat-tiles::-webkit-scrollbar { display: none; }
  .cat-tile {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px;
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(255,255,255,.09);
    border-radius: 999px; cursor: pointer;
    transition: all .18s; white-space: nowrap; flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
  }
  .cat-tile:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.07); }
  .cat-tile.active {
    background: rgba(255,255,255,.07);
    border-color: var(--ci,#00FF88);
    box-shadow: 0 0 12px rgba(0,0,0,.25);
  }
  .ct-name {
    font-size: 13px; font-weight: 700; color: #ffffff;
    transition: color .18s;
  }
  .cat-tile:hover .ct-name { color: #E2E8F0; }
  .cat-tile.active .ct-name { color: var(--ci,#00FF88); }
  .ct-count {
    font-size: 11px; font-weight: 700;
    color: #ffffff; background: rgba(255,255,255,.08);
    border-radius: 999px; padding: 1px 7px;
    transition: all .18s;
  }
  .cat-tile.active .ct-count { background: var(--ci,#00FF88); color: #0A0F1C; }
  .ct-count:empty { display: none; }

  /* ── GRID ── */
  .grid-wrap {
    max-width: 1300px; margin: 0 auto;
    padding: 28px 40px 20px;
  }
  .grid-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
  }
  .results-label {
    font-size: 12.5px; color: #94a3b8; font-weight: 600;
    text-transform: uppercase; letter-spacing: .07em;
  }
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 16px;
  }

  /* ── TOOL CARD ── */
  .tool-card {
    background: linear-gradient(160deg, #161F30 0%, #121826 100%);
    border: 1.5px solid #1E293B;
    border-top: 3px solid var(--card-color, #00FF88);
    border-radius: 16px; padding: 22px 20px 18px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: all .2s; position: relative; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
  }
  .tool-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(180deg, rgba(255,255,255,.025) 0%, transparent 100%);
    pointer-events: none;
  }
  .tool-card:hover {
    border-color: var(--card-color, #00FF88);
    border-top-color: var(--card-color, #00FF88);
    box-shadow: 0 20px 48px rgba(0,0,0,.5), 0 4px 16px rgba(0,0,0,.3);
    transform: translateY(-4px);
    background: linear-gradient(160deg, #1A2438 0%, #141C2C 100%);
  }

  .card-top {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 14px;
  }
  .card-emoji {
    width: 50px; height: 50px; border-radius: 14px;
    background: var(--card-bg, rgba(0,255,136,.07));
    border: 1.5px solid var(--card-border, rgba(0,255,136,.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
    transition: transform .2s;
  }
  .tool-card:hover .card-emoji { transform: scale(1.1) rotate(-3deg); }

  .card-badges { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
  .card-badge {
    font-size: 10.5px; font-weight: 700; padding: 4px 11px;
    border-radius: 8px; letter-spacing: .03em;
    background: var(--card-bg, rgba(0,255,136,.06));
    color: var(--card-color, #00FF88);
    border: 1px solid var(--card-border, rgba(0,255,136,.15));
  }
  .card-hot {
    font-size: 10px; font-weight: 700; padding: 3px 9px;
    border-radius: 8px; letter-spacing: .03em;
    background: rgba(251,146,60,.1); color: #FB923C;
    border: 1px solid rgba(251,146,60,.25);
  }
  .card-new {
    font-size: 10px; font-weight: 700; padding: 3px 9px;
    border-radius: 8px; letter-spacing: .03em;
    background: rgba(0,255,136,.08); color: #4ADE80;
    border: 1px solid rgba(0,255,136,.25);
  }
  .card-title {
    font-size: 15px; font-weight: 800; color: #F1F5F9;
    margin-bottom: 8px; line-height: 1.3; letter-spacing: -.02em;
  }
  .card-desc {
    font-size: 13px; color: #64748b; line-height: 1.7;
    flex: 1; margin-bottom: 18px;
  }
  .card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 13px; border-top: 1px solid #1E293B;
    margin-top: auto;
  }
  .card-action {
    font-size: 12.5px; font-weight: 700; color: var(--card-color, #00FF88);
    display: flex; align-items: center; gap: 5px;
  }
  .card-action svg { transition: transform .15s; }
  .tool-card:hover .card-action svg { transform: translateX(5px); }
  .card-free {
    font-size: 11px; font-weight: 700; color: #4ADE80;
    background: rgba(0,255,136,.08); border: 1px solid rgba(0,255,136,.2);
    padding: 3px 10px; border-radius: 999px;
  }

  /* ── FAVOURITE HEART BUTTON on cards ── */
  .card-fav-btn {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: #161F30;
    border: 1.5px solid #1E293B;
    border-radius: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background .15s, border-color .15s, transform .15s;
    flex-shrink: 0;
    padding: 0;
  }
  .card-fav-btn:hover { background: rgba(248,113,113,.1); border-color: rgba(248,113,113,.4); transform: scale(1.1); }
  .card-fav-btn.fav-active { border-color: rgba(248,113,113,.4); background: rgba(248,113,113,.1); }
  @keyframes heartPop { 0%{transform:scale(1)} 50%{transform:scale(1.45)} 100%{transform:scale(1)} }
  .card-fav-btn.popping { animation: heartPop .25s cubic-bezier(.36,.07,.19,.97); }

  /* ── YOUR FAVOURITE TOOLS SECTION ── */
  .fav-section {
    max-width: 1280px; margin: 20px auto 12px; padding: 0 32px;
  }
  .fav-toggle-wrap { display: flex; align-items: center; gap: 12px; }
  .fav-toggle-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(244,63,94,.08);
    border: 1.5px solid #fda4af;
    border-radius: 14px; padding: 11px 20px;
    font-size: 13.5px; font-weight: 700; color: #F1F5F9;
    cursor: pointer; font-family: inherit;
    box-shadow: 0 2px 12px rgba(244,63,94,.14);
    transition: box-shadow .2s, transform .15s, background .2s;
    position: relative; overflow: hidden;
  }
  .fav-toggle-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(244,63,94,.08), transparent);
    opacity: 0; transition: opacity .2s;
  }
  .fav-toggle-btn:hover { box-shadow: 0 6px 24px rgba(244,63,94,.25); transform: translateY(-1px); }
  .fav-toggle-btn:hover::before { opacity: 1; }
  .fav-btn-heart {
    display: flex; align-items: center;
    animation: heartbeat 2.4s ease-in-out infinite;
  }
  @keyframes heartbeat {
    0%,100% { transform: scale(1); }
    14%      { transform: scale(1.25); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.15); }
    56%      { transform: scale(1); }
  }
  .fav-count-badge {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: #fff; font-size: 11px; font-weight: 800;
    min-width: 22px; height: 22px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 6px; box-shadow: 0 2px 6px rgba(244,63,94,.4);
  }
  .fav-hint { font-size: 12.5px; color: #00FF88; font-weight: 600; letter-spacing: -.01em; }
  .fav-chevron { color: #94a3b8; transition: transform .25s; margin-left: 2px; }
  .fav-chevron.open { transform: rotate(180deg); }

  .fav-panel {
    overflow: hidden; max-height: 0;
    transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .25s;
    opacity: 0;
  }
  .fav-panel.open { max-height: 1000px; opacity: 1; overflow: auto; }
  .fav-panel-inner {
    padding: 16px 0 6px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
  }
  .fav-mini-card {
    background: #121826;
    border: 1.5px solid #1E293B;
    border-radius: 14px;
    padding: 14px 16px;
    text-decoration: none;
    display: flex; align-items: center; gap: 12px;
    transition: border-color .15s, box-shadow .15s, transform .15s;
    box-shadow: 0 1px 4px rgba(15,23,42,.05);
    position: relative; overflow: hidden;
  }
  .fav-mini-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #f43f5e, #00FF88);
    opacity: 0; transition: opacity .2s;
  }
  .fav-mini-card:hover {
    border-color: rgba(0,255,136,.3);
    box-shadow: 0 6px 20px rgba(0,255,136,.08);
    transform: translateY(-2px);
  }
  .fav-mini-card:hover::before { opacity: 1; }
  .fav-mini-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(244,63,94,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 19px; flex-shrink: 0;
  }
  .fav-mini-name {
    font-size: 12.5px; font-weight: 700; color: #F1F5F9;
    line-height: 1.3; flex: 1; min-width: 0;
  }
  .fav-mini-arrow {
    color: #475569; flex-shrink: 0;
    transition: transform .15s, color .15s;
  }
  .fav-mini-card:hover .fav-mini-arrow { transform: translateX(3px); color: #00FF88; }

  /* ── NO RESULTS ── */
  .no-results { display: none; text-align: center; padding: 72px 20px; grid-column: 1 / -1; }
  .no-results.show { display: block; }
  .no-results-emoji { font-size: 48px; margin-bottom: 14px; }
  .no-results h3 { font-size: 17px; font-weight: 700; color: #F1F5F9; margin-bottom: 8px; }
  .no-results p { font-size: 13.5px; color: #64748b; }


  /* ── CTA BANNER ── */
  .cta-wrap { padding: 0 40px; max-width: 1380px; margin: 48px auto 64px; }
  .cta-banner {
    background: linear-gradient(135deg, #060C10 0%, #071A10 50%, #060B14 100%);
    border-radius: 28px; padding: 60px 64px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(0,255,136,.15);
    box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 80px rgba(0,255,136,.05);
    display: flex; align-items: center; gap: 64px;
  }
  .cta-banner::before {
    content: ''; position: absolute; top: 50%; left: 30%; transform: translate(-50%,-50%);
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,255,136,.09) 0%, transparent 65%);
    pointer-events: none;
  }
  .cta-banner::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  /* ── Left column ── */
  .cta-left { flex: 1; min-width: 0; position: relative; z-index: 1; }
  .cta-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,255,136,.1); border: 1px solid rgba(0,255,136,.25);
    color: #00FF88; font-size: 11px; font-weight: 700;
    letter-spacing: .09em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px; margin-bottom: 24px;
  }
  .cta-banner h2 {
    font-size: clamp(26px, 3vw, 42px); font-weight: 900;
    color: #fff; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 18px;
  }
  .cta-h2-accent {
    background: linear-gradient(90deg, #00FF88, #00CC6E);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .cta-left > p {
    font-size: 15.5px; color: rgba(255,255,255,.6);
    max-width: 420px; margin-bottom: 36px; line-height: 1.75;
  }
  .cta-btns {
    display: flex; align-items: center;
    gap: 12px; flex-wrap: wrap; position: relative; z-index: 1;
  }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #00FF88; color: #060B14;
    font-size: 15px; font-weight: 800; font-family: 'Space Grotesk', sans-serif;
    padding: 15px 32px; border-radius: 14px; text-decoration: none;
    box-shadow: 0 0 28px rgba(0,255,136,.35); transition: all .2s;
    position: relative; z-index: 1;
  }
  .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 0 44px rgba(0,255,136,.5); background: #00E676; }
  .cta-btn svg { transition: transform .15s; }
  .cta-btn:hover svg { transform: translateX(4px); }
  .cta-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,255,136,.08); color: #00FF88;
    border: 1.5px solid rgba(0,255,136,.4);
    font-size: 15px; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
    padding: 14px 28px; border-radius: 14px; text-decoration: none;
    transition: all .2s;
  }
  .cta-btn-outline:hover { background: rgba(0,255,136,.16); border-color: #00FF88; transform: translateY(-2px); box-shadow: 0 0 24px rgba(0,255,136,.2); }
  .cta-trust { margin-top: 22px; font-size: 12px; color: rgba(255,255,255,.35); font-weight: 500; position: relative; z-index: 1; }

  /* ── Right column: feature grid ── */
  .cta-right { flex: 0 0 420px; position: relative; z-index: 1; }
  .cta-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .cta-feat-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; padding: 18px 16px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    cursor: default;
  }
  .cta-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,255,136,.12);
    border-color: rgba(0,255,136,.25);
  }
  .cta-feat-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(0,255,136,.1); border: 1px solid rgba(0,255,136,.2);
    display: flex; align-items: center; justify-content: center;
    color: #00FF88; margin-bottom: 12px;
  }
  .cta-feat-title { font-size: 13px; font-weight: 800; color: #F1F5F9; margin-bottom: 4px; }
  .cta-feat-desc { font-size: 11.5px; color: #BCC9DC; line-height: 1.5; }

  /* ── FOOTER ── */
  footer {
    background: #030608;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 800px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), rgba(255,255,255,.5), rgba(255,255,255,.3), transparent);
  }
  footer::after {
    content: '';
    position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 350px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,255,136,.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .footer-inner { max-width: 960px; margin: 0 auto; padding: 72px 40px 0; position: relative; z-index: 1; }

  /* LOGO */
  .footer-logo {
    display: inline-flex; align-items: center; gap: 13px;
    text-decoration: none; justify-content: center; margin-bottom: 20px;
  }
  .footer-logo-icon {
    width: 48px; height: 48px; border-radius: 14px;
    object-fit: cover; display: block; flex-shrink: 0;
    box-shadow: 0 6px 24px rgba(0,255,136,.25);
  }
  .footer-logo-text { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -.4px; }
  .footer-logo-sub  { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 500; margin-top: 2px; }

  /* TAGLINE */
  .footer-tagline {
    font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.75;
    max-width: 500px; margin: 0 auto 32px;
  }
  .footer-tagline strong { color: #00FF88; }

  /* BADGES */
  .footer-badges {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 56px;
  }
  .footer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
  }
  .footer-badge.green { background: rgba(34,197,94,.15); color: #86efac; border: 1px solid rgba(34,197,94,.3); }
  .footer-badge.blue  { background: rgba(255,255,255,.12); color: #e0e7ff; border: 1px solid rgba(255,255,255,.2); }
  .footer-badge.amber { background: rgba(251,191,36,.12); color: #fde68a; border: 1px solid rgba(251,191,36,.25); }

  /* TOOL CARDS */
  .footer-tools-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 48px;
  }
  .footer-tool-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px; padding: 24px 28px;
    text-align: left; transition: background .2s, border-color .2s;
    backdrop-filter: blur(8px);
  }
  .footer-tool-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
  .footer-card-label {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .1em; color: #00FF88; margin-bottom: 14px;
  }
  .footer-card-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-card-links a {
    font-size: 13.5px; color: #94A3B8; text-decoration: none;
    font-weight: 500; transition: color .15s;
  }
  .footer-card-links a:hover { color: #fff; }

  /* CTA CARD */
  .footer-cta-card {
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px; padding: 36px 40px;
    margin-bottom: 48px; position: relative; overflow: hidden;
    backdrop-filter: blur(12px);
  }
  .footer-cta-card::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,.12) 0%, transparent 70%);
  }
  .footer-cta-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; color: #fcd34d;
    background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.2);
    padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
  }
  .footer-cta-title {
    font-size: 22px; font-weight: 900; color: #fff;
    letter-spacing: -.03em; margin-bottom: 8px;
  }
  .footer-cta-desc {
    font-size: 14px; color: rgba(255,255,255,.5);
    margin-bottom: 24px; max-width: 440px; margin-left: auto; margin-right: auto;
  }
  .footer-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .footer-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 700;
    background: #00FF88;
    color: #0A0F1C; text-decoration: none;
    padding: 11px 24px; border-radius: 12px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(0,255,136,.3);
  }
  .footer-cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(0,255,136,.4); color: #0A0F1C; }
  .footer-cta-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 700;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff; text-decoration: none;
    padding: 11px 24px; border-radius: 12px;
    transition: background .2s;
  }
  .footer-cta-btn-secondary:hover { background: rgba(255,255,255,.14); }

  /* BOTTOM BAR */
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
  }
  .footer-copy { font-size: 12.5px; color: rgba(255,255,255,.25); font-weight: 500; }
  .footer-copy a { color: #00FF88; text-decoration: none; transition: color .15s; }
  .footer-copy a:hover { color: #00FF88; }
  .footer-bottom-links { display: flex; align-items: center; gap: 24px; }
  .footer-bottom-link {
    font-size: 12.5px; color: rgba(255,255,255,.25); text-decoration: none;
    font-weight: 500; transition: color .15s;
  }
  .footer-bottom-link:hover { color: #00FF88; }

  /* ── ENGAGEMENT SECTION ── */
  .engage-wrap {
    background: #0D1526; border-bottom: 1px solid #1E293B;
    padding: 20px 40px; display: none;
  }
  .engage-inner { max-width: 1100px; margin: 0 auto; }

  /* Stats row */
  .engage-stats {
    display: flex; justify-content: center; align-items: stretch;
    gap: 0; margin: 0 auto 24px; max-width: 680px;
    background: #121826; border: 1px solid #1E293B; border-radius: 20px;
    overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.2);
  }
  .engage-stat {
    flex: 1; max-width: 220px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 20px 24px; gap: 10px; position: relative;
    transition: background .2s;
  }
  .engage-stat + .engage-stat::before {
    content: ''; position: absolute; left: 0; top: 20%; height: 60%;
    width: 1px; background: #1E293B;
  }
  .engage-stat:hover { background: #161F30; }
  .engage-stat-icon {
    width: 46px; height: 46px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .engage-stat-val { font-size: 26px; font-weight: 900; color: #F1F5F9; letter-spacing: -.04em; line-height: 1; }
  .engage-stat-lbl { font-size: 11.5px; color: #64748b; font-weight: 600; margin-top: 2px; text-transform: uppercase; letter-spacing: .05em; }

  /* Progress bar */
  .engage-progress-wrap { margin-bottom: 16px; }
  .engage-progress-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
  }
  .engage-progress-title { font-size: 13px; font-weight: 700; color: #F1F5F9; }
  .engage-progress-pct   { font-size: 13px; font-weight: 800; color: #00FF88; }
  .engage-progress-bar {
    height: 8px; background: #1E293B; border-radius: 999px; overflow: hidden;
  }
  .engage-progress-fill {
    height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, #00FF88, #4ADE80);
    transition: width 1s cubic-bezier(.4,0,.2,1);
    width: 0%;
  }
  .engage-progress-sub { font-size: 11.5px; color: #94a3b8; margin-top: 6px; }

  /* Badges */
  .engage-badges-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
  .engage-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700; transition: transform .2s;
  }
  .engage-badge:hover { transform: scale(1.04); }
  .engage-badge.locked { background: #1A2236; color: #94a3b8; border: 1.5px dashed #cbd5e1; }
  .engage-badge.unlocked { background: rgba(0,255,136,.1); color: #4ADE80; border: 1.5px solid rgba(0,255,136,.25); box-shadow: 0 2px 8px rgba(0,255,136,.1); }
  .engage-badge.gold { background: rgba(251,191,36,.1); color: #FBBF24; border: 1.5px solid rgba(251,191,36,.25); box-shadow: 0 2px 8px rgba(217,119,6,.15); }
  .engage-badge.green { background: rgba(0,255,136,.1); color: #4ADE80; border: 1.5px solid rgba(0,255,136,.25); }

  /* Bottom row */
  .engage-bottom {
    display: flex; justify-content: center;
  }

  /* Tool of the Day */
  .engage-totd {
    width: 100%; max-width: 600px;
    background: linear-gradient(135deg, #060C10 0%, #0A1F18 100%);
    border: 1px solid rgba(0,255,136,.18);
    border-radius: 18px; padding: 28px 32px; min-height: 110px;
    display: flex; align-items: center; gap: 20px;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,255,136,.07);
  }
  .engage-totd::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .engage-totd-emoji {
    font-size: 36px; flex-shrink: 0; display: block;
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(0,255,136,.08); border: 1px solid rgba(0,255,136,.15);
    display: flex; align-items: center; justify-content: center;
  }
  .engage-totd-body { flex: 1; min-width: 0; }
  .engage-totd-label {
    font-size: 9.5px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .1em; color: #fcd34d; margin-bottom: 4px;
    display: flex; align-items: center; gap: 5px;
  }
  .engage-totd-name { font-size: 15px; font-weight: 900; color: #fff; letter-spacing: -.02em; margin-bottom: 3px; }
  .engage-totd-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }
  .engage-totd-btn {
    display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
    font-size: 12.5px; font-weight: 700; color: #0A0F1C;
    background: #00FF88; border: none;
    padding: 9px 18px; border-radius: 10px; text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 3px 12px rgba(0,255,136,.3);
  }
  .engage-totd-btn:hover { background: #00e87a; transform: translateY(-1px); }

  /* Guest CTA */
  .engage-guest {
    background: linear-gradient(135deg, #060C10, #0A1F18 50%, #060B14);
    border-top: 1px solid #1E293B; border-bottom: 1px solid #1E293B;
    padding: 36px 40px; display: none; text-align: center;
  }
  .engage-guest-inner { max-width: 640px; margin: 0 auto; }
  .engage-guest-title { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.03em; margin-bottom: 8px; }
  .engage-guest-sub { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 24px; }
  .engage-guest-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
  .engage-guest-pill { font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
  .engage-guest-pill.p1 { background: rgba(0,255,136,.1); color: #4ADE80; border: 1px solid rgba(0,255,136,.25); }
  .engage-guest-pill.p2 { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
  .engage-guest-pill.p3 { background: rgba(251,191,36,.12); color: #fcd34d; border: 1px solid rgba(251,191,36,.22); }
  .engage-guest-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .engage-guest-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 700; color: #fff;
    background: #00FF88; color: #060B14 !important;
    padding: 12px 28px; border-radius: 12px; text-decoration: none;
    box-shadow: 0 4px 18px rgba(0,255,136,.3); transition: transform .2s, box-shadow .2s;
  }
  .engage-guest-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(0,255,136,.4); }
  .engage-guest-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 700; color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    padding: 12px 28px; border-radius: 12px; text-decoration: none;
    transition: background .2s;
  }
  .engage-guest-btn-secondary:hover { background: rgba(255,255,255,.18); }

  @media (max-width: 900px) {
    .engage-stats { grid-template-columns: 1fr 1fr; }
    .engage-bottom { grid-template-columns: 1fr; }
    .engage-wrap, .engage-guest { padding: 24px 20px; }
  }
  @media (max-width: 500px) {
    .engage-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .engage-wrap { padding: 22px 16px; }
    .engage-guest { padding: 30px 18px; }
  }

  /* ── RECOMMENDATIONS WIDGET ── */
  .recs-section {
    padding: 0 40px 32px;
  }
  .recs-inner {
    max-width: 1300px; margin: 0 auto;
  }
  .recs-heading {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 700; color: #CBD5E1;
    margin-bottom: 14px;
    letter-spacing: -.01em;
  }
  .recs-heading-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #0A0F1C; color: #00FF88;
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 999px;
    border: 1px solid rgba(0,255,136,.25);
  }
  .recs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .rec-card {
    display: flex; align-items: flex-start; gap: 12px;
    background: #121826;
    border: 1px solid #1E293B;
    border-radius: 14px;
    padding: 16px 18px;
    text-decoration: none;
    transition: box-shadow .18s, border-color .18s, transform .18s;
    cursor: pointer;
  }
  .rec-card:hover {
    box-shadow: 0 6px 24px rgba(0,255,136,.08);
    border-color: rgba(0,255,136,.35);
    transform: translateY(-2px);
  }
  .rec-emoji {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
    border: 1px solid rgba(0,255,136,.25);
  }
  .rec-body { flex: 1; min-width: 0; }
  .rec-name {
    font-size: 13.5px; font-weight: 700; color: #F1F5F9;
    margin-bottom: 3px; letter-spacing: -.01em;
  }
  .rec-reason {
    font-size: 12px; color: #64748b; line-height: 1.5;
    margin-bottom: 10px;
  }
  .rec-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, #00FF88, #00CC6E);
    color: #fff; font-size: 12px; font-weight: 700;
    padding: 6px 14px; border-radius: 8px;
    border: none; cursor: pointer; text-decoration: none;
    transition: opacity .15s;
  }
  .rec-btn:hover { opacity: .88; }
  @media (max-width: 900px) {
    .recs-grid { grid-template-columns: 1fr; }
    .recs-section { padding: 0 20px 24px; }
  }

  /* ── FEEDBACK FORM ── */
  .feedback-wrap {
    background: #060B14; padding: 64px 40px;
    border-top: 1px solid #1E293B;
  }
  .feedback-card {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 420px 1fr;
    border-radius: 28px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 4px 20px rgba(0,0,0,.2);
  }

  /* LEFT PANEL */
  .fb-left {
    background: linear-gradient(160deg, #050A14 0%, #091A12 50%, #060C10 100%);
    padding: 48px 40px; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .fb-left::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .fb-left::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,204,110,.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .fb-left-top { position: relative; z-index: 1; }
  .fb-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 999px; margin-bottom: 22px;
  }
  .fb-title {
    font-size: clamp(22px, 2vw, 28px); font-weight: 900;
    color: #fff; letter-spacing: -.04em; line-height: 1.2;
    margin-bottom: 14px;
  }
  .fb-sub {
    font-size: 14px; color: #BCC9DC !important; line-height: 1.72;
    margin-bottom: 36px;
  }
  .fb-features { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
  .fb-feat {
    display: flex; align-items: center; gap: 12px;
    font-size: 13.5px; color: rgba(255,255,255,.85); font-weight: 500;
  }
  .fb-feat-icon {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .fb-feat-icon.green  { background: rgba(34,197,94,.18);  border: 1px solid rgba(34,197,94,.3); }
  .fb-feat-icon.blue   { background: rgba(59,130,246,.18); border: 1px solid rgba(59,130,246,.3); }
  .fb-feat-icon.purple { background: rgba(0,255,136,.12); border: 1px solid rgba(0,255,136,.25); }
  .fb-feat-text { line-height: 1.3; }
  .fb-feat-text strong { display: block; font-weight: 700; font-size: 13px; color: #fff; }
  .fb-feat-text span { font-size: 11.5px; color: #BCC9DC !important; }
  .fb-left-bottom {
    position: relative; z-index: 1;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px; padding: 18px 20px; margin-top: 40px;
    display: flex; align-items: center; gap: 14px;
  }
  .fb-avatar {
    width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #00FF88, #00CC6E);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .fb-quote-text { font-size: 12.5px; color: #BCC9DC !important; line-height: 1.5; font-style: italic; }
  .fb-quote-author { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 4px; font-weight: 600; }

  /* RIGHT PANEL */
  .fb-right {
    background: #121826; padding: 44px 40px;
  }
  .fb-form-title {
    font-size: 18px; font-weight: 800; color: #F1F5F9;
    letter-spacing: -.03em; margin-bottom: 24px;
  }
  .fb-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-bottom: 14px;
  }
  .fb-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
  .fb-row .fb-field { margin-bottom: 0; }
  .fb-label {
    font-size: 12px; font-weight: 700; color: #CBD5E1;
    text-transform: uppercase; letter-spacing: .06em;
  }
  .fb-req { color: #ef4444; }
  .fb-input {
    width: 100%; padding: 13px 16px; font-size: 14px;
    font-family: 'Space Grotesk', sans-serif; color: #F1F5F9;
    background: #161F30; border: 1.5px solid #1E293B;
    border-radius: 12px; outline: none;
    transition: all .18s;
  }
  .fb-input:focus {
    background: #121826;
    border-color: #00FF88;
    box-shadow: 0 0 0 4px rgba(0,255,136,.08);
  }
  .fb-input::placeholder { color: #475569; }
  .fb-select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 38px;
  }
  .fb-textarea { resize: none; min-height: 120px; line-height: 1.65; }
  .fb-submit-row { margin-top: 20px; }
  .fb-btn {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #00FF88;
    color: #060B14; font-size: 15px; font-weight: 700;
    font-family: 'Space Grotesk', sans-serif; padding: 15px 28px;
    border-radius: 14px; border: none; cursor: pointer;
    transition: all .2s; box-shadow: 0 6px 20px rgba(0,255,136,.3);
    letter-spacing: -.01em;
  }
  .fb-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(0,255,136,.4);
  }
  .fb-btn:active:not(:disabled) { transform: translateY(0); }
  .fb-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
  .fb-success {
    display: flex; align-items: center; gap: 16px;
    background: rgba(0,255,136,.08);
    border: 1.5px solid rgba(0,255,136,.25); border-radius: 16px;
    padding: 18px 20px; margin-top: 16px;
  }
  .fb-success-icon { font-size: 28px; flex-shrink: 0; }
  .fb-success-title { font-size: 15px; font-weight: 800; color: #4ADE80; margin-bottom: 3px; }
  .fb-success-sub { font-size: 13px; color: #4ADE80; }
  .fb-error {
    background: rgba(248,113,113,.1); border: 1.5px solid #fecaca;
    border-radius: 12px; padding: 14px 18px; margin-top: 14px;
    font-size: 13px; color: #F87171; font-weight: 600;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .featured-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .announce-bar { height: 38px; }
    .ticker-track { animation-duration: 90s; }
    nav { padding: 0 24px; height: 60px; }
    .nav-cta { display: none; }
    .hero { padding: 52px 20px 48px; }
    .hero-stat { padding: 0 20px; }
    .featured-section { padding: 36px 20px; }
    .tools-grid { gap: 18px; }
    .grid-wrap { padding-left: 16px; padding-right: 16px; }
    .featured-grid { grid-template-columns: 1fr; }
    .filter-wrap { top: 56px; }
    .filter-main-row { padding: 0 16px; }
    .fb-search { width: 180px; }
    .cat-tiles { gap: 7px; }
    .grid-wrap { padding-left: 16px; padding-right: 16px; }
    .tools-grid { grid-template-columns: 1fr; }
    .feedback-wrap { padding: 32px 16px; }
    .feedback-card { grid-template-columns: 1fr; }
    .fb-left { padding: 36px 28px; }
    .fb-left-bottom { display: none; }
    .fb-right { padding: 32px 28px; }
    .fb-row { grid-template-columns: 1fr; }
    .cta-wrap { padding: 0 16px; margin: 36px auto 48px; }
    .cta-banner { padding: 44px 28px; flex-direction: column; gap: 40px; }
    .cta-right { flex: none; width: 100%; }
    .footer-inner { padding: 48px 20px 0; }
    .footer-tools-grid { grid-template-columns: 1fr; }
    .footer-cta-card { padding: 28px 20px; }
    .footer-bottom { justify-content: center; text-align: center; }

    /* ── Favourites ── */
    .fav-section { padding: 0 16px; }
    .fav-toggle-wrap { flex-wrap: wrap; gap: 10px; }
    .fav-toggle-btn { width: 100%; justify-content: center; padding: 12px 16px; font-size: 13px; border-radius: 12px; }
    .fav-hint { font-size: 12px; }
  }
  @media (max-width: 480px) {
    /* ── Nav ── */
    nav { padding: 0 16px; height: 56px; }
    .nav-btn-login { display: none; }

    /* ── Announce bar ── */
    .announce-bar { height: 36px; }
    .ticker-track { animation-duration: 120s; }
    .ticker-item { padding: 0 16px; font-size: 11px; }

    /* ── Hero ── */
    .hero {
      padding: 28px 16px 24px;
      text-align: center;
      overflow: hidden;
    }
    .hero-eyebrow {
      font-size: 10px; padding: 5px 12px; margin-bottom: 16px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      max-width: 100%;
    }
    .hero h1 {
      font-size: clamp(22px, 6.5vw, 28px);
      margin-bottom: 12px;
      word-break: break-word;
      overflow-wrap: break-word;
    }
    /* Hide the <br> on mobile so title flows as one block */
    .hero h1 br { display: none; }
    .hero-sub {
      font-size: 12.5px; line-height: 1.6;
      margin: 0 auto 22px;
      padding: 0;
      max-width: 100%;
      box-sizing: border-box;
      word-break: break-word;
    }

    /* Search — full width, no overflow */
    .hero-search-wrap {
      width: 100%; max-width: 100%;
      margin: 0 auto 22px; padding: 0;
      box-sizing: border-box;
    }
    .hero-search { border-radius: 12px; width: 100%; box-sizing: border-box; }
    .hero-search svg { margin-left: 13px; width: 14px; height: 14px; flex-shrink: 0; }
    .hero-search input { padding: 12px 10px; font-size: 13px; min-width: 0; }

    /* Hero stats — 3 compact pills in one row */
    .hero-stats {
      display: flex; flex-wrap: nowrap;
      gap: 6px; justify-content: center;
    }
    .hero-stat {
      padding: 7px 10px; gap: 5px;
      flex: 1; min-width: 0; max-width: 120px;
      border-radius: 12px;
    }
    .hero-stat-icon { width: 22px; height: 22px; font-size: 11px; flex-shrink: 0; }
    .hero-stat-body { min-width: 0; }
    .hero-stat-num { font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .hero-stat-label { font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* ── Filter bar ── */
    .filter-wrap { top: 52px; }
    .filter-main-row { padding: 0 12px; height: 46px; }
    .fb-search { width: 140px; height: 32px; }
    .fb-search input { font-size: 12px; }
    .cat-tiles { gap: 6px; }
    .cat-tile { padding: 7px 13px; }
    .ct-name { font-size: 12px; }
    .ct-count { font-size: 10.5px; padding: 1px 6px; }

    /* ── Grid ── */
    .grid-wrap { padding: 14px 12px; }
    .tools-grid { gap: 16px; }

    /* ── Favourites ── */
    .fav-section { padding: 0 12px; }
    .fav-toggle-btn { padding: 11px 14px; font-size: 12.5px; border-radius: 11px; }
    .fav-count-badge { min-width: 20px; height: 20px; font-size: 10px; }

    /* ── Tool card ── */
    .tool-card { padding: 16px 14px 13px; border-radius: 14px; }
    .card-top { margin-bottom: 10px; }
    .card-emoji { width: 42px; height: 42px; font-size: 20px; border-radius: 11px; }
    .card-badge { font-size: 9.5px; padding: 3px 8px; }
    .card-new, .card-hot { font-size: 9.5px; padding: 3px 8px; }
    .card-title { font-size: 14px; margin-bottom: 6px; }
    .card-desc { font-size: 12px; line-height: 1.6; margin-bottom: 12px; }
    .card-footer { padding-top: 10px; }
    .card-action { font-size: 11.5px; }
    .card-free { font-size: 10px; padding: 3px 8px; }
    #guestBanner { display: none !important; }

    /* ── Guest banner ── */

    /* ── Featured section ── */
    .featured-section { padding: 22px 14px; }
    .fc-title { font-size: 15px; }
    .fc-desc { font-size: 12.5px; }

    /* ── Engagement section ── */
    .engage-wrap { padding: 20px 14px; }
    .engage-stats { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
    .engage-stat { padding: 12px 12px; gap: 10px; border-radius: 12px; }
    .engage-stat-icon { width: 36px; height: 36px; font-size: 17px; border-radius: 10px; }
    .engage-stat-val { font-size: 18px; }
    .engage-stat-lbl { font-size: 10.5px; }
    .engage-progress-wrap { margin-bottom: 16px; }
    .engage-bottom { gap: 12px; }
    .engage-try-next { padding: 16px; border-radius: 14px; }
    .engage-tool-row { padding: 9px 11px; }
    .engage-tool-emoji { font-size: 17px; width: 28px; }
    .engage-tool-name { font-size: 12px; }
    .engage-tool-desc { font-size: 10.5px; }
    .engage-try-btn { font-size: 10.5px; padding: 4px 10px; }
    .engage-totd { padding: 18px 16px; border-radius: 14px; }
    .engage-totd-emoji { font-size: 26px; margin-bottom: 8px; }
    .engage-totd-name { font-size: 14px; }
    .engage-totd-desc { font-size: 11.5px; margin-bottom: 14px; }
    .engage-section-title { font-size: 12px; margin-bottom: 10px; }
    .engage-badges-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 7px;
      margin-bottom: 16px;
    }
    .engage-badge {
      font-size: 11px; padding: 6px 10px;
      border-radius: 10px;
      justify-content: flex-start;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    /* ── Guest CTA ── */
    .engage-guest { padding: 28px 16px; }
    .engage-guest-title { font-size: 18px; }
    .engage-guest-sub { font-size: 12.5px; margin-bottom: 18px; }
    .engage-guest-pills { gap: 7px; margin-bottom: 18px; }
    .engage-guest-pill { font-size: 11px; padding: 5px 12px; }
    .engage-guest-btns { gap: 8px; flex-direction: column; align-items: center; }
    .engage-guest-btn-primary,
    .engage-guest-btn-secondary { font-size: 13px; padding: 11px 22px; width: 100%; max-width: 280px; justify-content: center; }

    /* ── Feedback ── */
    .fb-left { padding: 24px 18px; }
    .fb-right { padding: 22px 18px; }

    /* ── CTA banner ── */
    .cta-wrap { padding: 0 12px; }
    .cta-banner { padding: 28px 18px; border-radius: 20px; gap: 32px; }
    .cta-feat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .cta-feat-card { padding: 14px 12px; }
    .cta-feat-title { font-size: 12px; }
    .cta-feat-desc { font-size: 11px; }

    /* ── Footer ── */
    .footer-inner { padding: 32px 14px 0; }
    .footer-cta-card { padding: 20px 16px; border-radius: 16px; }
    .footer-bottom-links { gap: 14px; }
    .footer-tagline { font-size: 12.5px; }
    .footer-badges { gap: 7px; flex-wrap: wrap; justify-content: center; }

    /* ── Recommendations ── */
    .recs-section { padding: 14px; }
    .rec-card { padding: 12px 14px; gap: 10px; }
    .rec-emoji { font-size: 22px; width: 38px; height: 38px; }
    .rec-name { font-size: 12.5px; }
    .rec-reason { font-size: 11px; }
    .rec-btn { font-size: 11px; padding: 5px 12px; }

  }

  /* ── 390 px — Nav badge spacing + compact register btn ── */
  @media (max-width: 390px) {
    nav { padding: 0 16px; height: 54px; }
    .nav-right { gap: 10px; }
    .nav-count {
      padding: 4px 9px;
      font-size: 10px;
      gap: 3px;
    }
    .nav-count svg { width: 10px; height: 10px; flex-shrink: 0; }
    .nav-btn-register {
      padding: 7px 12px;
      font-size: 11.5px;
      gap: 5px;
    }
    .nav-btn-register svg { width: 11px; height: 11px; }
  }

  /* ── 320 px — Edit Profile Modal fixes ── */
  @media (max-width: 360px) {
    .modal { margin: 8px; border-radius: 18px; }

    .modal-banner { padding: 14px 14px 12px; }
    .modal-banner-left { gap: 10px; }
    .modal-avatar { width: 44px; height: 44px; font-size: 18px; border-width: 2px; }
    .modal-banner-info .mb-name  { font-size: 13px; }
    .modal-banner-info .mb-email { font-size: 11px; word-break: break-all; }
    .modal-banner-info .mb-badge { font-size: 9px; padding: 2px 6px; margin-top: 4px; }
    .modal-close { width: 28px; height: 28px; border-radius: 7px; }

    .modal-tab { padding: 10px 6px; font-size: 12px; gap: 5px; }
    .modal-tab svg { width: 12px; height: 12px; }

    .modal-alerts-wrap { padding: 0 14px; }

    .modal-panel { padding: 16px 14px; }
    .modal-section-label { margin: 14px 0 10px; }

    .modal-footer {
      padding: 12px 14px;
      flex-direction: column;
      gap: 8px;
    }
    .modal-btn {
      width: 100%;
      justify-content: center;
      padding: 10px 16px;
      font-size: 13px;
    }
  }

  /* ═══════════════════════════════════════════════════════
     EcomSpy — DARK THEME + SPACE GROTESK + GREEN ACCENT
     Bg: #0A0F1C | Card: #121826 | Border: #1E293B | Green: #00FF88
  ═══════════════════════════════════════════════════════ */

  /* ── Base ── */
  *, body, button, input, select, textarea {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
  }
  body { background: #0A0F1C !important; color: #E2E8F0; }

  /* ── Logo ── */
  .logo-ecom { font-weight: 400; color: #CBD5E1; }
  .logo-spy  { font-weight: 700; color: #00FF88; }
  .nav-logo-text { color: #E2E8F0 !important; font-size: 16px !important; }
  .nav-logo-icon {
    box-shadow: 0 3px 10px rgba(0,255,136,.35) !important;
  }

  /* ── Announce bar ── */
  .announce-bar {
    background: #060C10 !important;
    border-bottom: 1px solid rgba(0,255,136,.1) !important;
  }
  .announce-bar::before { background: linear-gradient(90deg, #060C10, transparent) !important; }
  .announce-bar::after  { background: linear-gradient(270deg, #060C10, transparent) !important; }
  .ticker-badge { background: rgba(0,255,136,.12) !important; border-color: rgba(0,255,136,.28) !important; color: #00FF88 !important; }
  .ticker-item { color: rgba(255,255,255,.45) !important; }
  .ticker-item a { color: #00FF88 !important; }

  /* ── Nav ── */
  nav {
    background: rgba(6,12,16,.97) !important;
    border-bottom: 1px solid #1E293B !important;
    box-shadow: 0 1px 24px rgba(0,0,0,.5) !important;
  }
  .nav-count { background: rgba(0,255,136,.08) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.18) !important; }
  .nav-btn-login { background: transparent !important; border-color: #E2E8F0 !important; color: #64748B !important; }
  .nav-btn-login:hover { border-color: #00FF88 !important; color: #00FF88 !important; box-shadow: 0 0 0 3px rgba(0,255,136,.08) !important; }
  .nav-btn-register { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: 0 4px 14px rgba(0,255,136,.4) !important; }
  .nav-btn-register::after { display: none !important; }
  .nav-btn-register:hover { transform: translateY(-1px) !important; box-shadow: 0 0 20px rgba(0,255,136,.45) !important; }
  .nav-profile-btn { background: #00FF88 !important; box-shadow: 0 4px 14px rgba(0,255,136,.35) !important; }
  .nav-profile-btn-inner { background: #0D1520 !important; }
  .nav-profile-name { color: #E2E8F0 !important; }
  .nav-avatar { background: linear-gradient(135deg, #00FF88, #00CC6A) !important; color: #0A0F1C !important; }
  .nav-profile-chevron { color: #00FF88 !important; }
  .nav-dropdown { background: #0D1520 !important; border: 1px solid #1E293B !important; box-shadow: 0 24px 60px rgba(0,0,0,.8) !important; }
  .nav-dropdown-header { background: linear-gradient(135deg, #071810 0%, #0A1E14 100%) !important; }
  .dd-badge { background: rgba(0,255,136,.12) !important; border-color: rgba(0,255,136,.25) !important; color: #00FF88 !important; }
  .nav-dropdown-item { color: #94A3B8 !important; }
  .nav-dropdown-item:hover { background: #1E293B !important; }
  .nav-dropdown-item .dd-icon.indigo { background: rgba(0,255,136,.1) !important; }
  .nav-dropdown-item .dd-icon.indigo svg { stroke: #00FF88 !important; }
  .nav-dropdown-item .dd-icon.emerald { background: rgba(0,255,136,.1) !important; }
  .nav-dropdown-item .dd-icon.emerald svg { stroke: #00FF88 !important; }
  .nav-dropdown-divider { background: #1E293B !important; }
  .nav-cta { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: 0 3px 12px rgba(0,255,136,.35) !important; }
  .nav-cta:hover { box-shadow: 0 0 20px rgba(0,255,136,.5) !important; }
  .nav-tag { background: rgba(0,255,136,.1) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.2) !important; }

  /* ── Hero ── */
  .hero {
    background: linear-gradient(160deg, #0A0F1C 0%, #071810 45%, #050F08 70%, #0A0F1C 100%) !important;
    border-bottom: 1px solid rgba(0,255,136,.06);
  }
  .hero::before { background: radial-gradient(circle, rgba(0,255,136,.13) 0%, transparent 70%) !important; }
  .hero::after  { background: radial-gradient(circle, rgba(0,200,90,.07) 0%, transparent 70%) !important; }
  .hero-eyebrow { background: rgba(0,255,136,.08) !important; border-color: rgba(0,255,136,.22) !important; color: rgba(0,255,136,.85) !important; }
  .hero h1 span {
    background: linear-gradient(90deg, #00FF88, #00E676, #4ADE80) !important;
    -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important;
  }
  .hero-sub { color: #BCC9DC !important; }
  .hero-search { background: rgba(15,22,40,.9) !important; border: 1.5px solid rgba(255,255,255,.08) !important; box-shadow: 0 2px 20px rgba(0,0,0,.4) !important; }
  .hero-search:hover { background: rgba(18,26,48,.95) !important; border-color: rgba(255,255,255,.18) !important; box-shadow: 0 4px 28px rgba(0,0,0,.5) !important; }
  .hero-search:focus-within { background: rgba(12,20,38,.98) !important; border-color: rgba(255,255,255,.28) !important; box-shadow: 0 4px 28px rgba(0,0,0,.5) !important; }
  .hero-search input { color: #E2E8F0 !important; background: transparent !important; border: none !important; }
  .hero-search input:focus { outline: none !important; box-shadow: none !important; border: none !important; }
  .search-btn { background: #00FF88 !important; color: #0A0F1C !important; }
  .hero-search input::placeholder { color: #CBD5E1 !important; }
  .hero-search svg { color: #CBD5E1 !important; }
  .hero-search:focus-within svg.search-icon { color: #94A3B8 !important; }
  .hero-search .search-btn svg { color: #0A0F1C !important; stroke: #0A0F1C !important; }
  .hero-stat { background: rgba(0,255,136,.06) !important; border-color: rgba(0,255,136,.15) !important; }
  .hero-stat:hover { background: rgba(0,255,136,.1) !important; }
  .hero-stat-icon { background: rgba(0,255,136,.1) !important; }
  .hero-stat-label { color: rgba(255,255,255,.38) !important; }

  /* ── Featured section ── */
  .featured-section { background: #0D1520 !important; border-bottom: 1px solid #1E293B !important; }
  .section-label { color: #CBD5E1 !important; }
  .featured-card.fc-indigo { background: linear-gradient(135deg, #0B1828, #0D1F35) !important; border-color: rgba(0,255,136,.18) !important; }
  .featured-card.fc-indigo:hover { box-shadow: 0 16px 48px rgba(0,255,136,.1) !important; border-color: rgba(0,255,136,.38) !important; }
  .featured-card.fc-pink { background: linear-gradient(135deg, #180C20, #1E1028) !important; border-color: rgba(236,72,153,.18) !important; }
  .featured-card.fc-pink:hover { box-shadow: 0 16px 48px rgba(236,72,153,.1) !important; }
  .featured-card.fc-emerald { background: linear-gradient(135deg, #0B1812, #0D1E18) !important; border-color: rgba(0,255,136,.22) !important; }
  .featured-card.fc-emerald:hover { box-shadow: 0 16px 48px rgba(0,255,136,.1) !important; border-color: rgba(0,255,136,.42) !important; }
  .fc-title { color: #E2E8F0 !important; }
  .fc-desc  { color: #64748B !important; }
  .fc-indigo .fc-icon { background: linear-gradient(135deg, #00FF88, #00CC6A) !important; box-shadow: 0 4px 14px rgba(0,255,136,.35) !important; }
  .fc-indigo .fc-icon svg { stroke: #0A0F1C !important; }
  .fc-indigo .fc-badge { background: rgba(0,255,136,.1) !important; color: #00FF88 !important; }
  .fc-indigo .fc-cta { color: #00FF88 !important; }
  .fc-free { color: #00FF88 !important; background: rgba(0,255,136,.08) !important; border-color: rgba(0,255,136,.22) !important; }

  /* ── Filter bar ── */
  .filter-wrap { background: #0D1520 !important; border-bottom: 1px solid #1E293B !important; box-shadow: none !important; }
  .cat-tile { background: rgba(255,255,255,.02) !important; border-color: rgba(255,255,255,.07) !important; }
  .cat-tile:hover { background: rgba(255,255,255,.05) !important; border-color: rgba(255,255,255,.13) !important; }
  .ct-name { color: #ffffff !important; }
  .cat-tile:hover .ct-name { color: #CBD5E1 !important; }
  .fb-search { background: rgba(255,255,255,.05) !important; border-color: rgba(255,255,255,.1) !important; }
  .fb-search:focus-within { background: rgba(255,255,255,.08) !important; border-color: rgba(0,255,136,.4) !important; }

  /* ── Tools section ── */
  .tools-section { background: #0A0F1C !important; }
  .results-label { color: #CBD5E1 !important; }

  /* ── Tool cards ── */
  .tool-card {
    background: #121826 !important;
    border: 1.5px solid #1E293B !important;
    border-top: 3.5px solid var(--card-color, #00FF88) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.25) !important;
  }
  .tool-card:hover {
    box-shadow: 0 16px 48px -4px rgba(0,0,0,.6), 0 0 0 1px var(--card-color, #00FF88) !important;
    border-color: var(--card-color, #00FF88) !important;
  }
  .card-title { color: #E2E8F0 !important; }
  .card-desc  { color: #BCC9DC !important; }
  .card-footer { border-top-color: #E2E8F0 !important; }
  .card-hot { background: rgba(194,65,12,.15) !important; color: #FB923C !important; border-color: rgba(194,65,12,.25) !important; }
  .card-new { background: rgba(0,255,136,.08) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.2) !important; }
  .card-free { color: #00FF88 !important; background: rgba(0,255,136,.07) !important; border-color: rgba(0,255,136,.18) !important; }
  .card-fav-btn { background: #1A2235 !important; border-color: #E2E8F0 !important; }
  .card-fav-btn:hover { background: rgba(244,63,94,.1) !important; border-color: rgba(244,63,94,.4) !important; }
  .card-fav-btn.fav-active { background: rgba(244,63,94,.12) !important; border-color: rgba(244,63,94,.45) !important; }
  .no-results h3 { color: #E2E8F0 !important; }
  .no-results p  { color: #94A3B8 !important; }

  /* ── Favourites ── */
  .fav-toggle-btn { background: #121826 !important; border-color: #E2E8F0 !important; color: #E2E8F0 !important; box-shadow: 0 2px 12px rgba(0,0,0,.3) !important; }
  .fav-toggle-btn::before { display: none !important; }
  .fav-hint { color: #00FF88 !important; }
  .fav-mini-card { background: #121826 !important; border-color: #E2E8F0 !important; }
  .fav-mini-name { color: #E2E8F0 !important; }
  .fav-mini-icon { background: rgba(0,255,136,.1) !important; }
  .fav-mini-arrow { color: #E2E8F0 !important; }
  .fav-mini-card:hover .fav-mini-arrow { color: #00FF88 !important; }

  /* ── Tool lock / upgrade ── */
  .tool-lock-icon { background: #00FF88 !important; }
  .tool-lock-icon svg { stroke: #0A0F1C !important; }
  .upgrade-bar { background: linear-gradient(135deg, #071810, #0A1E14) !important; border-bottom-color: rgba(0,255,136,.18) !important; }
  .upgrade-bar-btn { background: #00FF88 !important; color: #000000 !important; box-shadow: 0 4px 12px rgba(0,255,136,.4) !important; }

  /* ── Tool picker modal ── */
  .tool-picker-overlay { background: rgba(2,6,12,.88) !important; }
  .tool-picker-modal { background: #0D1520 !important; box-shadow: 0 24px 80px rgba(0,0,0,.7) !important; }
  .tool-picker-head { border-bottom-color: #E2E8F0 !important; }
  .tool-picker-title { color: #E2E8F0 !important; }
  .tool-picker-sub { color: #94A3B8 !important; }
  .tool-picker-close { background: #1E293B !important; color: #94A3B8 !important; }
  .tool-picker-close:hover { background: #2D3F55 !important; color: #E2E8F0 !important; }
  .tool-picker-count { color: #00FF88 !important; }
  .tool-picker-bar-wrap { background: #1E293B !important; }
  .tool-picker-bar { background: linear-gradient(90deg, #00FF88, #00CC6A) !important; }
  .picker-item { background: #121826 !important; border-color: #E2E8F0 !important; }
  .picker-item:hover { border-color: rgba(0,255,136,.38) !important; background: rgba(0,255,136,.05) !important; }
  .picker-item.selected { border-color: #00FF88 !important; background: rgba(0,255,136,.08) !important; }
  .picker-item-name { color: #E2E8F0 !important; }
  .picker-item-check { background: #00FF88 !important; }
  .picker-item-check svg { stroke: #0A0F1C !important; }
  .tool-picker-footer { border-top-color: #E2E8F0 !important; }
  .picker-upgrade-btn { color: #00FF88 !important; border-color: rgba(0,255,136,.28) !important; }
  .picker-upgrade-btn:hover { background: rgba(0,255,136,.06) !important; }
  .picker-confirm-btn { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: 0 4px 14px rgba(0,255,136,.4) !important; }

  /* ── Edit profile modal ── */
  .modal-overlay { background: rgba(6,10,16,.85) !important; }
  .modal { background: #0D1520 !important; box-shadow: 0 32px 80px rgba(0,0,0,.7) !important; }
  .modal-banner { background: linear-gradient(135deg, #071810, #0A1E14) !important; }
  .modal-close { background: rgba(255,255,255,.08) !important; border-color: rgba(255,255,255,.12) !important; }
  .modal-tabs { border-bottom-color: #E2E8F0 !important; }
  .modal-tab { color: #CBD5E1 !important; }
  .modal-tab.active { color: #00FF88 !important; border-bottom-color: #00FF88 !important; }
  .modal-tab:hover:not(.active) { color: #94A3B8 !important; background: #1E293B !important; }
  .modal-field label { color: #94A3B8 !important; }
  .modal-input-wrap svg { color: #CBD5E1 !important; }
  .modal-input-wrap input { background: #121826 !important; border-color: #E2E8F0 !important; color: #E2E8F0 !important; }
  .modal-input-wrap input:focus { border-color: #00FF88 !important; box-shadow: 0 0 0 4px rgba(0,255,136,.1) !important; }
  .modal-section-label { color: #CBD5E1 !important; }
  .modal-section-label::after { background: #1E293B !important; }
  .modal-footer { background: #121826 !important; border-top-color: #E2E8F0 !important; }
  .modal-btn.cancel { background: #1E293B !important; color: #64748B !important; border-color: #2D3F55 !important; }
  .modal-btn.cancel:hover { background: #2D3F55 !important; }
  .modal-btn.save { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: 0 4px 14px rgba(0,255,136,.35) !important; }
  .modal-btn.save:hover { box-shadow: 0 0 20px rgba(0,255,136,.42) !important; }
  .modal-alert.success { background: rgba(0,255,136,.08) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.22) !important; }

  /* ── Engagement section ── */
  .engage-wrap { background: #0D1520 !important; border-bottom-color: #E2E8F0 !important; }
  .engage-stat { background: #121826 !important; border-color: #E2E8F0 !important; box-shadow: 0 2px 8px rgba(0,0,0,.25) !important; }
  .engage-stat:hover { box-shadow: 0 8px 24px rgba(0,0,0,.35) !important; }
  .engage-stat-val { color: #E2E8F0 !important; }
  .engage-stat-lbl { color: #CBD5E1 !important; }
  .engage-progress-title { color: #64748B !important; }
  .engage-progress-pct { color: #00FF88 !important; }
  .engage-progress-bar { background: #1E293B !important; }
  .engage-progress-fill { background: linear-gradient(90deg, #00FF88, #00CC6A) !important; }
  .engage-progress-sub { color: #CBD5E1 !important; }
  .engage-try-next { background: #121826 !important; border-color: #E2E8F0 !important; box-shadow: 0 2px 8px rgba(0,0,0,.2) !important; }
  .engage-section-title { color: #94A3B8 !important; }
  .engage-tool-row { background: #0D1520 !important; border-color: #E2E8F0 !important; }
  .engage-tool-row:hover { background: rgba(0,255,136,.04) !important; border-color: rgba(0,255,136,.2) !important; }
  .engage-tool-name { color: #E2E8F0 !important; }
  .engage-tool-desc { color: #CBD5E1 !important; }
  .engage-try-btn { background: rgba(0,255,136,.1) !important; color: #00FF88 !important; border: 1px solid rgba(0,255,136,.2) !important; }
  .engage-try-btn:hover { background: rgba(0,255,136,.18) !important; }
  .engage-totd { background: linear-gradient(135deg, #071810, #0A2018) !important; border: 1px solid rgba(0,255,136,.18) !important; }
  .engage-totd::before { background: radial-gradient(circle, rgba(0,255,136,.15) 0%, transparent 70%) !important; }
  .engage-totd-label { color: rgba(0,255,136,.75) !important; }
  .engage-totd-name { color: #E2E8F0 !important; }
  .engage-totd-desc { color: rgba(255,255,255,.45) !important; }
  .engage-totd-btn { background: #00FF88 !important; color: #0A0F1C !important; border: none !important; box-shadow: 0 4px 14px rgba(0,255,136,.35) !important; }
  .engage-totd-btn:hover { box-shadow: 0 0 20px rgba(0,255,136,.45) !important; }
  .engage-badge.locked { background: #121826 !important; color: #CBD5E1 !important; border-color: #E2E8F0 !important; }
  .engage-badge.unlocked { background: rgba(0,255,136,.1) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.25) !important; box-shadow: 0 2px 8px rgba(0,255,136,.15) !important; }
  .engage-badge.gold { background: rgba(251,191,36,.1) !important; color: #FCD34D !important; border-color: rgba(251,191,36,.22) !important; }
  .engage-badge.green { background: rgba(0,255,136,.1) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.22) !important; }

  /* ── Guest engagement ── */
  .engage-guest { background: linear-gradient(160deg, #060C10, #071810, #060C10) !important; }
  .engage-guest-title { color: #E2E8F0 !important; }
  .engage-guest-sub { color: rgba(255,255,255,.42) !important; }
  .engage-guest-pill.p1 { background: rgba(0,255,136,.1) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.22) !important; }
  .engage-guest-pill.p2 { background: rgba(0,255,136,.08) !important; color: #4ADE80 !important; border-color: rgba(0,255,136,.18) !important; }
  .engage-guest-pill.p3 { background: rgba(251,191,36,.1) !important; color: #FCD34D !important; border-color: rgba(251,191,36,.2) !important; }
  .engage-guest-btn-primary { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: 0 4px 18px rgba(0,255,136,.4) !important; }
  .engage-guest-btn-primary:hover { box-shadow: 0 0 24px rgba(0,255,136,.5) !important; }
  .engage-guest-btn-secondary { border-color: #E2E8F0 !important; color: #94A3B8 !important; background: transparent !important; }
  .engage-guest-btn-secondary:hover { background: #1E293B !important; color: #94A3B8 !important; }

  /* ── Recommendations ── */
  .recs-section { background: #0A0F1C !important; }
  .recs-heading { color: #64748B !important; }
  .recs-heading-badge { background: rgba(0,255,136,.08) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.2) !important; }
  .rec-card { background: #121826 !important; border-color: #E2E8F0 !important; }
  .rec-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.4) !important; border-color: rgba(0,255,136,.35) !important; }
  .rec-emoji { background: rgba(0,255,136,.08) !important; border-color: rgba(0,255,136,.18) !important; }
  .rec-name { color: #E2E8F0 !important; }
  .rec-reason { color: #94A3B8 !important; }
  .rec-btn { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: none !important; }
  .rec-btn:hover { opacity: .88 !important; }

  /* ── Feedback section ── */
  .feedback-wrap { background: #0A0F1C !important; border-top-color: #E2E8F0 !important; }
  .fb-left { background: linear-gradient(160deg, #071810, #0A1E14, #060C10) !important; }
  .fb-left::before { background: radial-gradient(circle, rgba(0,255,136,.12) 0%, transparent 70%) !important; }
  .fb-left::after  { background: radial-gradient(circle, rgba(0,200,90,.07) 0%, transparent 70%) !important; }
  .fb-eyebrow { background: rgba(0,255,136,.1) !important; border-color: rgba(0,255,136,.22) !important; color: rgba(0,255,136,.85) !important; }
  .fb-left-bottom { background: rgba(0,255,136,.05) !important; border-color: rgba(0,255,136,.12) !important; }
  .fb-avatar { background: linear-gradient(135deg, #00FF88, #00CC6A) !important; }
  .fb-right { background: #121826 !important; }
  .fb-form-title { color: #E2E8F0 !important; }
  .fb-label { color: #94A3B8 !important; }
  .fb-input { background: #0D1520 !important; border-color: #1E293B !important; color: #E2E8F0 !important; font-family: 'Space Grotesk', sans-serif !important; }
  .fb-input:focus { background: #0D1520 !important; border-color: #00FF88 !important; box-shadow: 0 0 0 4px rgba(0,255,136,.1) !important; }
  .fb-input::placeholder { color: #475569 !important; }
  .fb-btn { background: #00FF88 !important; color: #0A0F1C !important; font-family: 'Space Grotesk', sans-serif !important; box-shadow: 0 6px 20px rgba(0,255,136,.4) !important; }
  .fb-btn:hover:not(:disabled) { box-shadow: 0 0 28px rgba(0,255,136,.5) !important; }

  /* ── CTA banner ── */
  .cta-banner { background: linear-gradient(135deg, #060F08, #0A2010, #07150E) !important; border: 1px solid rgba(0,255,136,.14) !important; box-shadow: 0 24px 80px rgba(0,0,0,.4) !important; }
  .cta-banner::before { background: radial-gradient(circle, rgba(0,255,136,.12) 0%, transparent 70%) !important; }
  .cta-banner::after  { background: radial-gradient(circle, rgba(0,200,90,.07) 0%, transparent 70%) !important; }
  .cta-eyebrow { background: rgba(0,255,136,.1) !important; border-color: rgba(0,255,136,.2) !important; color: rgba(0,255,136,.88) !important; }
  .cta-btn { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: 0 0 28px rgba(0,255,136,.38) !important; }
  .cta-btn:hover { background: #00E676 !important; box-shadow: 0 0 44px rgba(0,255,136,.55) !important; }
  .cta-btn svg { stroke: #0A0F1C !important; }
  .cta-btn-outline { background: rgba(0,255,136,.08) !important; border-color: rgba(0,255,136,.4) !important; color: #00FF88 !important; }
  .cta-btn-outline:hover { background: rgba(0,255,136,.16) !important; border-color: #00FF88 !important; box-shadow: 0 0 24px rgba(0,255,136,.2) !important; }
  .cta-feat-card { background: rgba(255,255,255,.04) !important; border-color: rgba(255,255,255,.08) !important; }
  .cta-feat-card:hover { border-color: rgba(0,255,136,.25) !important; box-shadow: 0 8px 32px rgba(0,255,136,.12) !important; }
  .cta-feat-icon { background: rgba(0,255,136,.1) !important; border-color: rgba(0,255,136,.2) !important; color: #00FF88 !important; }
  .cta-feat-title { color: #F1F5F9 !important; }
  .cta-feat-desc { color: #BCC9DC !important; }

  /* ── Footer ── */
  footer { background: #060C0A !important; border-top: 1px solid rgba(0,255,136,.1) !important; }
  footer::before { background: linear-gradient(90deg, transparent, rgba(0,255,136,.18), rgba(0,255,136,.32), rgba(0,255,136,.18), transparent) !important; }
  footer::after  { background: radial-gradient(ellipse, rgba(0,255,136,.08) 0%, transparent 70%) !important; }
  .footer-logo-icon { box-shadow: 0 6px 24px rgba(0,255,136,.4) !important; }
  .footer-logo-text { color: #E2E8F0 !important; }
  .footer-tagline strong { color: #00FF88 !important; }
  .footer-badge.green { background: rgba(0,255,136,.1) !important; color: #00FF88 !important; border-color: rgba(0,255,136,.22) !important; }
  .footer-card-label { color: #00FF88 !important; }
  .footer-card-links a { color: rgba(255,255,255,.38) !important; }
  .footer-card-links a:hover { color: #00FF88 !important; }
  .footer-tool-card { background: rgba(0,255,136,.03) !important; border-color: rgba(0,255,136,.1) !important; }
  .footer-tool-card:hover { background: rgba(0,255,136,.07) !important; border-color: rgba(0,255,136,.22) !important; }
  .footer-cta-card { background: rgba(0,0,0,.35) !important; border-color: rgba(0,255,136,.14) !important; }
  .footer-cta-card::before { background: radial-gradient(circle, rgba(0,255,136,.1) 0%, transparent 70%) !important; }
  .footer-cta-badge { color: #00FF88 !important; background: rgba(0,255,136,.08) !important; border-color: rgba(0,255,136,.18) !important; }
  .footer-cta-btn-primary { background: #00FF88 !important; color: #0A0F1C !important; box-shadow: 0 4px 18px rgba(0,255,136,.4) !important; }
  .footer-cta-btn-primary:hover { box-shadow: 0 0 28px rgba(0,255,136,.52) !important; color: #0A0F1C !important; }
  .footer-copy a { color: #00FF88 !important; }
  .footer-bottom { border-top-color: rgba(0,255,136,.1) !important; }

