  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E6B8;
    --navy: #0A0F1E;
    --navy-mid: #111827;
    --navy-light: #1E2A45;
    --slate: #2D3A55;
    --white: #FAFAF8;
    --muted: #8A95A8;
    --green: #2ECC8A;
    --red-accent: #E85D5D;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ---- NOISE TEXTURE OVERLAY ---- */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    transition: all 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .logo-mark {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--navy);
    flex-shrink: 0;
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .logo-text span { color: var(--gold); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }

  .btn-outline {
    padding: 0.55rem 1.3rem;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 6px;
    color: var(--gold);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
  }

  .btn-gold {
    padding: 0.55rem 1.3rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 6px;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
  }

  .btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 5% 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
      radial-gradient(ellipse 60% 80% at 10% 80%, rgba(46, 204, 138, 0.04) 0%, transparent 60%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  }

  /* Floating orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
  }

  .orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
    top: -100px; right: -100px;
    animation-delay: 0s;
  }

  .orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(46, 204, 138, 0.08), transparent 70%);
    bottom: -50px; left: 10%;
    animation-delay: -3s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.03); }
  }

  /* Grid lines background */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    animation: fadeUp 0.9s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    background: rgba(201, 168, 76, 0.06);
  }

  .badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
  }

  h1 .accent {
    color: var(--gold);
    position: relative;
    display: inline-block;
  }

  h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
  }

  .btn-hero {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
  }

  .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
  }

  .btn-hero-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .stat {
    display: flex;
    flex-direction: column;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.3rem;
    letter-spacing: 0.04em;
  }

  .hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    animation: fadeUp 1s 0.3s ease both;
  }

  /* ---- INVESTMENT CARD (hero visual) ---- */
  .inv-card {
    background: rgba(30, 42, 69, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
  }

  .inv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .inv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
  }

  .inv-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
  }

  .live-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--green);
    font-family: 'DM Mono', monospace;
  }

  .live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s infinite;
  }

  .opportunity-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
  }

  .opp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(10, 15, 30, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s;
  }

  .opp-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.04);
  }

  .opp-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .opp-info { flex: 1; }

  .opp-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
  }

  .opp-sector {
    font-size: 0.72rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
  }

  .opp-return {
    text-align: right;
  }

  .opp-pct {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
    font-family: 'DM Mono', monospace;
  }

  .opp-amount {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.15rem;
  }

  .progress-bar-wrap {
    margin-top: 0.6rem;
  }

  .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    transition: width 1.5s ease;
  }

  /* ---- FLOATING MINI CARD ---- */
  .mini-card {
    position: absolute;
    background: rgba(20, 28, 50, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    animation: floatCard 4s ease-in-out infinite;
  }

  .mini-card-1 {
    top: -20px; left: -60px;
    animation-delay: -1s;
  }

  .mini-card-2 {
    bottom: -20px; right: -40px;
    animation-delay: -2.5s;
  }

  @keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .mini-label {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.3rem;
  }

  .mini-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
  }

  .mini-change {
    font-size: 0.7rem;
    color: var(--green);
    font-family: 'DM Mono', monospace;
  }

  /* ---- SECTION COMMONS ---- */
  section { padding: 6rem 5%; }

  .section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .section-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
    font-weight: 300;
  }

  /* ---- TRUST STRIP ---- */
  .trust-strip {
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.015);
  }

  .trust-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
  }

  .trust-logos {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .trust-logo-item {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.25);
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .trust-logo-item:hover { color: rgba(255,255,255,0.5); }

  /* ---- HOW IT WORKS ---- */
  .how-section {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
  }

  .how-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
  }

  .how-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 0.4rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .tab-btn {
    padding: 0.65rem 1.8rem;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }

  .tab-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 600;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .step-card {
    position: relative;
    padding: 2rem 1.6rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s;
  }

  .step-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.03);
    transform: translateY(-4px);
  }

  .step-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    opacity: 0.7;
  }

  .step-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }

  .step-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }

  .step-connector {
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0.25;
    font-size: 1rem;
    z-index: 1;
  }

  /* ---- OPPORTUNITIES ---- */
  .opps-section { background: var(--navy); }

  .opps-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }

  .filter-btn.active, .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
  }

  .opps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .opp-card {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
  }

  .opp-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }

  .opp-card-img {
    height: 140px;
    position: relative;
    overflow: hidden;
  }

  .opp-card-img-inner {
    display: none;
  }

  .opp-card-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'DM Mono', monospace;
  }

  .badge-new {
    background: rgba(46, 204, 138, 0.15);
    color: var(--green);
    border: 1px solid rgba(46, 204, 138, 0.3);
  }

  .badge-hot {
    background: rgba(232, 93, 93, 0.15);
    color: var(--red-accent);
    border: 1px solid rgba(232, 93, 93, 0.3);
  }

  .badge-closing {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
  }

  .opp-card-body {
    padding: 1.4rem;
  }

  .opp-card-sector {
    font-size: 0.7rem;
    color: var(--gold);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .opp-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .opp-card-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-weight: 300;
  }

  .opp-card-metrics {
    display: flex;
    gap: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
  }

  .metric { flex: 1; min-width: 70px; }

  .metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
  }

  .metric-key {
    font-size: 0.68rem;
    color: var(--muted);
    margin-top: 0.1rem;
    letter-spacing: 0.04em;
  }

  .opp-card-footer {
    padding: 0 1.4rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .opp-raised-bar { flex: 1; }

  .raised-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
  }

  .raised-track {
    height: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 3px;
    overflow: hidden;
  }

  .raised-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
  }

  .invest-btn {
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 8px;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
  }

  .invest-btn:hover {
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    transform: translateY(-1px);
  }

  .view-all-wrap {
    text-align: center;
    margin-top: 1rem;
  }

  /* ---- CATEGORY TABS ---- */
  .cat-tabs-wrap {
    overflow-x: auto;
    margin-bottom: 2.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-tabs-wrap::-webkit-scrollbar { display: none; }

  .cat-tabs {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    padding-bottom: 0.25rem;
  }

  .cat-tab {
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
  }

  .cat-tab:hover {
    border-color: rgba(201,168,76,0.4);
    color: var(--white);
  }

  .cat-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: transparent;
    color: var(--navy);
    font-weight: 600;
  }

  /* ---- PHOTO CARDS ---- */
  .opp-card-img {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: var(--slate);
  }

  .opp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .opp-card:hover .opp-card-img img {
    transform: scale(1.07);
  }

  .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,15,30,0.55) 100%);
    pointer-events: none;
  }

  .cat-pill {
    position: absolute;
    bottom: 10px;
    left: 12px;
    padding: 0.22rem 0.7rem;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: 'DM Mono', monospace;
    background: rgba(10,15,30,0.75);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    backdrop-filter: blur(6px);
  }

  /* Card hidden state for filtering */
  .opp-card.hidden {
    display: none;
  }

  /* ---- WHY SECTION ---- */
  .why-section {
    background: var(--navy-mid);
    overflow: hidden;
    position: relative;
  }

  .why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
  }

  .feature-text p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* Dashboard mockup */
  .dashboard-mock {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    position: relative;
  }

  .mock-topbar {
    background: rgba(10,15,30,0.8);
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .mock-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
  }

  .mock-body {
    padding: 1.5rem;
  }

  .mock-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 1.5rem;
  }

  .mock-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    opacity: 0.7;
    animation: barGrow 1.5s ease both;
  }

  @keyframes barGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
  }

  .mock-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .mock-stat {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .mock-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
  }

  .mock-stat-key {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 0.2rem;
  }

  .mock-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mock-list-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
  }

  .mock-avatar {
    width: 28px; height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }

  .mock-line {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
  }

  .mock-pill {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-family: 'DM Mono', monospace;
    font-weight: 500;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials-section { background: var(--navy); }

  .testi-header { text-align: center; margin-bottom: 3.5rem; }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .testi-card {
    padding: 2rem;
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    transition: all 0.3s;
    position: relative;
  }

  .testi-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-3px);
  }

  .testi-quote {
    font-size: 2.5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 0.8;
    margin-bottom: 0.8rem;
    opacity: 0.5;
  }

  .testi-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .testi-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
  }

  .testi-role {
    font-size: 0.73rem;
    color: var(--muted);
    margin-top: 0.15rem;
  }

  .stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    letter-spacing: 2px;
  }

  /* ---- CTA SECTION ---- */
  .cta-section {
    padding: 7rem 5%;
    position: relative;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
      var(--navy-mid);
  }

  .cta-box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 28px;
    backdrop-filter: blur(10px);
  }

  .cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .cta-box p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-large {
    padding: 1rem 2.4rem;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
  }

  .btn-large-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
  }

  .btn-large-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
  }

  .btn-large-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
  }

  .btn-large-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.35);
  }

  /* ---- FOOTER ---- */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 5% 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .footer-brand p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
    font-weight: 300;
  }

  .social-links {
    display: flex;
    gap: 0.7rem;
  }

  .social-link {
    width: 36px; height: 36px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--muted);
    transition: all 0.2s;
  }

  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
  }

  .footer-col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.2rem;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
  }

  .footer-links a:hover { color: var(--white); }

  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
  }

  .footer-bottom span { color: var(--gold); }

  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }

  .footer-legal a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--white); }

  /* ---- MOBILE NAV MENU ---- */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 30, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(20px);
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--gold); }

  .mobile-close {
    position: absolute;
    top: 1.5rem; right: 5%;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
  }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 1024px) {
    .hero-visual { display: none; }
    .why-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    h1 { font-size: 2.4rem; }
    .hero { padding-top: 6rem; }
    .hero-stats { gap: 1.5rem; }

    section { padding: 4rem 5%; }

    .opps-header { flex-direction: column; align-items: flex-start; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }

    .cta-box { padding: 2.5rem 1.5rem; }
  }

  @media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn-hero { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .tabs { flex-direction: column; width: 100%; }
    .tab-btn { text-align: center; }
  }
/* ---- INVEST MODAL ---- */
.invest-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.invest-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.invest-modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--white);
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.input-group {
  margin-bottom: 1.2rem;
}

.input-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
}
/* ---- AUTH PAGES ---- */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.auth-visual {
  flex: 1;
  position: relative;
  display: none;
  background: var(--navy-mid);
}

@media (min-width: 900px) {
  .auth-visual {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 4rem;
  }
}

.auth-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,15,30,0.9) 0%, rgba(10,15,30,0.1) 100%);
}

.auth-quote {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.auth-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--white);
}

.auth-quote span {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.auth-form-container {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3rem 8%;
  position: relative;
  background: var(--navy);
}

.auth-logo {
  position: absolute;
  top: 2.5rem;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.auth-header {
  margin-bottom: 2.5rem;
  margin-top: 3rem;
}

.auth-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-form .input-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: flex;
  justify-content: space-between;
}

.forgot-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}

.auth-form input {
  background: rgba(255,255,255,0.02);
  padding: 1rem 1.2rem;
  font-size: 1rem;
}

.auth-submit {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.auth-divider::before { margin-right: 1rem; }
.auth-divider::after { margin-left: 1rem; }

.social-auth {
  display: flex;
  gap: 1rem;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-social:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}

.auth-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* User type toggle for signup */
.user-type-toggle {
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 0.3rem;
  margin-bottom: 1.8rem;
}

.type-btn {
  flex: 1;
  padding: 0.8rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}

.type-btn.active {
  background: var(--navy-light);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =========================================
   WhatsApp Floating Widget
   ========================================= */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Positioned on the left so it doesn't overlap Chatway on the right */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    margin-top: 15px;
}

.wa-float-btn:hover {
    transform: scale(1.1);
}

.wa-popup {
    background: #fff;
    width: 250px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: waSlideUp 0.5s ease forwards;
    animation-delay: 2s; /* Delays popup for 2 seconds after load */
    opacity: 0;
    transform: translateY(20px);
}

.wa-popup-header {
    background: #0a0f1e;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.wa-close {
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.wa-popup-body {
    padding: 20px;
    color: #333;
    font-size: 0.95rem;
    background: #f9f9f9;
}

.wa-popup-btn {
    display: block;
    text-align: center;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 10px 15px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes waSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}