:root {
    --bg: #0a0a0f;
    --bg2: #10101a;
    --bg3: #15152a;
    --purple: #5b21b6;
    --violet: #7c3aed;
    --accent: #a855f7;
    --pink: #ec4899;
    --gold: #fbbf24;
    --text: #f1f0ff;
    --muted: #8b89b0;
    --card-bg: #13132a;
    --border: rgba(124,58,237,0.25);
    --glow: rgba(168,85,247,0.35);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  .nav-cta a{ text-decoration: none;}

  .logo_img{ width: 215px;}
  .mb-3{ margin-bottom: 5rem;}
  .mt-3{ margin-top: 5rem;}
  .feature-desc p{ margin-bottom: 15px;}
  .bp_div{ width: 100%;}
  .bp_div img{ width: 100%;}

  /* Custom cursor */
  .cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, opacity 0.2s;
    mix-blend-mode: screen;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all 0.15s ease;
    opacity: 0.5;
  }

  /* Noise 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:9990; opacity:.4;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 72px;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
  }
  .nav-logo span { -webkit-text-fill-color: var(--gold); }
  .nav-links { display: flex; gap: 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;
    position: relative;
  }
  .nav-links a::after {
    content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px;
    background: var(--accent); transform: scaleX(0); transition: transform 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-cta {
    display: flex; gap: 0.75rem;
  }
  .btn-ghost {
    padding: 0.5rem 1.25rem; border-radius: 99px;
    border: 1px solid var(--border); background: transparent;
    color: var(--text); font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem; font-weight: 500; cursor: none;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
  .btn-primary {
    padding: 0.5rem 1.25rem; border-radius: 99px;
    border: none; background: linear-gradient(135deg, var(--violet), var(--pink));
    color: #fff; font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem; font-weight: 600; cursor: none;
    transition: all 0.2s; box-shadow: 0 0 20px rgba(168,85,247,0.3);
  }
  .btn-primary:hover { transform: scale(1.04); box-shadow: 0 0 32px rgba(168,85,247,0.5); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
  .hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed; top: 72px; right: -100%; 
    width: 100%; max-width: 320px; height: calc(100vh - 72px);
    background: rgba(16,16,26,0.98); backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 999; transition: right 0.3s ease;
    overflow-y: auto; padding: 2rem 1.5rem;
  }
  .mobile-menu.active { right: 0; }
  .mobile-menu-links { list-style: none; margin-bottom: 2rem; }
  .mobile-menu-links li { margin-bottom: 0.5rem; }
  .mobile-menu-links a {
    display: block; padding: 0.85rem 1rem; border-radius: 12px;
    color: var(--text); text-decoration: none; font-size: 1rem;
    font-weight: 500; transition: all 0.2s;
    border: 1px solid transparent;
  }
  .mobile-menu-links a:hover, .mobile-menu-links a:active {
    background: rgba(168,85,247,0.1); border-color: var(--border);
    color: var(--accent);
  }
  .mobile-menu-divider {
    height: 1px; background: var(--border); margin: 1.5rem 0;
  }
  .mobile-menu-auth { }
  .mobile-menu-auth .btn-primary,
  .mobile-menu-auth .btn-ghost {
    width: 100%; margin-bottom: 0.75rem; padding: 0.85rem;
    font-size: 0.95rem; cursor: pointer;
  }
  .mobile-menu-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 998; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu-backdrop.active { opacity: 1; pointer-events: all; }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 100px 5% 60px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.25; animation: float 8s ease-in-out infinite;
  }
  .orb1 { width: 600px; height: 600px; background: var(--purple); top: -200px; right: -100px; animation-delay: 0s; }
  .orb2 { width: 400px; height: 400px; background: var(--pink); bottom: -100px; left: -100px; animation-delay: 3s; }
  .orb3 { width: 300px; height: 300px; background: var(--violet); top: 40%; left: 40%; animation-delay: 1.5s; }
  @keyframes float {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
  }
  .hero-content { position: relative; z-index: 1; flex: 1; max-width: 900px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; border-radius: 99px;
    border: 1px solid rgba(168,85,247,0.4);
    background: rgba(168,85,247,0.1);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease forwards;
  }
  .hero-badge::before { content:'💜'; font-size:0.9rem; }
  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.7s 0.1s ease forwards; opacity: 0;
  }
  .hero h1 .line2 {
    background: linear-gradient(135deg, var(--accent) 30%, var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .hero p {
    margin: 1.5rem 0 2.5rem; color: var(--muted); font-size: 1.1rem;
    line-height: 1.7;  
    animation: fadeInUp 0.7s 0.2s ease forwards; opacity: 0;
  }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease forwards; opacity: 0;
  }
  .btn-lg {
    padding: 0.9rem 2rem; font-size: 1rem; font-weight: 600;
    border-radius: 99px; font-family: 'DM Sans', sans-serif; cursor: none;
    transition: all 0.2s;
  }
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3.5rem;
    animation: fadeInUp 0.7s 0.4s ease forwards; opacity: 0;
  }
  .stat-item { }
  .stat-num {
    font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .stat-label { color: var(--muted); font-size: 0.8rem; margin-top: 0.1rem; }

  /* CARD STACK */
  .hero-cards {
    position: relative; z-index: 1; flex: 0 0 380px;
    height: 520px; margin-left: auto;
    animation: fadeInRight 0.8s 0.2s ease forwards; opacity: 0;
  }
  @keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
  @keyframes fadeInUp { from { opacity:0; transform:translateY(25px); } to { opacity:1; transform:translateY(0); } }

  .profile-card {
    position: absolute; width: 310px; border-radius: 24px;
    overflow: hidden; cursor: none;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
  }
  .profile-card.card-back2 {
    top: 20px; left: 30px;
    transform: rotate(-6deg) scale(0.95);
    z-index: 1; opacity: 0.7;
    background: var(--bg3);
  }
  .profile-card.card-back1 {
    top: 10px; left: 18px;
    transform: rotate(-2deg) scale(0.97);
    z-index: 2; opacity: 0.85;
    background: var(--bg3);
  }
  .profile-card.card-front {
    top: 0; left: 0; z-index: 3;
    transform: rotate(0deg) scale(1);
  }
  .profile-card img {
    width: 100%; height: 420px; object-fit: cover; display: block;
    pointer-events: none;
  }
  .card-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  }
  .card-name {
    font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700;
  }
  .card-meta { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.2rem; }
  .card-tags { display: flex; gap: 0.4rem; margin-top: 0.6rem; flex-wrap: wrap; }
  .tag {
    padding: 0.2rem 0.6rem; border-radius: 99px; font-size: 0.7rem; font-weight: 600;
    background: rgba(124,58,237,0.5); border: 1px solid rgba(168,85,247,0.4);
  }
  .card-actions {
    display: flex; justify-content: center; gap: 1rem;
    padding: 1rem; background: var(--card-bg);
  }
  .action-btn {
    width: 52px; height: 52px; border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; cursor: none; transition: all 0.2s;
  }
  .action-btn:hover { transform: scale(1.15); }
  .btn-skip { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); }
  .btn-like { background: linear-gradient(135deg, var(--violet), var(--pink)); box-shadow: 0 0 20px rgba(168,85,247,0.4); }
  .btn-super { background: rgba(251,191,36,0.15); border: 1px solid rgba(251,191,36,0.3); }

  /* Swipe indicators */
  .swipe-like, .swipe-nope {
    position: absolute; top: 30px; padding: 0.4rem 1rem;
    border-radius: 8px; font-family: 'Syne', sans-serif;
    font-size: 1.4rem; font-weight: 800; letter-spacing: 0.05em;
    z-index: 10; opacity: 0; transition: opacity 0.15s;
    pointer-events: none;
  }
  .swipe-like { left: 20px; border: 3px solid #22c55e; color: #22c55e; transform: rotate(-10deg); }
  .swipe-nope { right: 20px; border: 3px solid #ef4444; color: #ef4444; transform: rotate(10deg); }

  /* Section shared */
  section { padding: 100px 5%; }
  .section-label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
    margin-bottom: 1rem;
  }
  .section-sub { color: var(--muted); max-width: 480px; line-height: 1.7; }

  /* PROFILES GRID */
  .profiles-section { background: var(--bg2); }
  .profiles-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
  .profiles-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .profile-mini {
    border-radius: 20px; overflow: hidden; position: relative;
    aspect-ratio: 3/4; cursor: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
  }
  .profile-mini:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,0.5); }
  .profile-mini img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .profile-mini:hover img { transform: scale(1.06); }
  .profile-mini-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 55%);
  }
  .profile-mini-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem;
  }
  .profile-mini-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; }
  .profile-mini-sub { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin-top: 0.2rem; }
  .profile-mini-badge {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
  }
  .online-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e; border: 2px solid var(--bg);
    display: inline-block; margin-right: 0.3rem;
  }

  /* FEATURES */
  .features-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .feature-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content:''; position:absolute; top:-60px; right:-60px;
    width:160px; height:160px; border-radius:50%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
  .feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
    box-shadow: 0 8px 20px rgba(124,58,237,0.35);
  }
  .feature-title {
    font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700;
    margin-bottom: 0.6rem;
  }
  .feature-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

  /* HOW IT WORKS */
  .how-section { background: var(--bg2); }
  .how-steps {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem; margin-top: 3.5rem;
    position: relative;
  }
  .step-card { text-align: center; padding: 2rem 1.5rem; position: relative; }
  .step-num {
    font-family: 'Syne', sans-serif; font-size: 4rem; font-weight: 800;
    background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(236,72,153,0.15));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
  }
  .step-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0.5rem auto 1rem;
    box-shadow: 0 0 30px rgba(124,58,237,0.4);
  }
  .step-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
  .step-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .testimonial-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 1.8rem;
    transition: transform 0.3s;
  }
  .testimonial-card:hover { transform: translateY(-4px); }
  .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
  .testimonial-text { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.4rem; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
  .author-avatar {
    width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--accent);
  }
  .author-name { font-weight: 600; font-size: 0.9rem; }
  .author-location { color: var(--muted); font-size: 0.78rem; }

  /* AUTH MODAL */
  .auth-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .auth-overlay.active { opacity: 1; pointer-events: all; }
  .auth-modal {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 28px; width: 100%; max-width: 440px;
    padding: 2.5rem; position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(124,58,237,0.1);
  }
  .auth-overlay.active .auth-modal { transform: scale(1) translateY(0); }
  .modal-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
    background: transparent; color: var(--muted); font-size: 1.1rem;
    cursor: none; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }
  .modal-close:hover { color: var(--text); border-color: var(--accent); }
  .auth-logo {
    font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
  }
  .auth-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
  .auth-tabs {
    display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1.8rem;
  }
  .auth-tab {
    flex: 1; padding: 0.7rem; text-align: center; cursor: none;
    border: none; background: transparent; color: var(--muted);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
    transition: color 0.2s; position: relative;
  }
  .auth-tab.active { color: var(--accent); }
  .auth-tab.active::after {
    content:''; position:absolute; bottom:-1px; left:0; right:0; height:2px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
  }
  .form-group { margin-bottom: 1.1rem; }
  .form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
  .form-input {
    width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
    border: 1px solid var(--border); background: rgba(255,255,255,0.04);
    color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  }
  .form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168,85,247,0.15); }
  .form-input::placeholder { color: rgba(139,137,176,0.5); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .btn-auth {
    width: 100%; padding: 0.95rem; border-radius: 12px;
    border: none; background: linear-gradient(135deg, var(--violet), var(--pink));
    color: #fff; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
    cursor: none; transition: all 0.2s; margin-top: 0.5rem;
    box-shadow: 0 8px 24px rgba(124,58,237,0.4);
  }
  .btn-auth:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124,58,237,0.5); }
  .form-divider {
    text-align: center; color: var(--muted); font-size: 0.82rem;
    margin: 1.2rem 0; position: relative;
  }
  .form-divider::before, .form-divider::after {
    content:''; position:absolute; top:50%;
    width: 38%; height: 1px; background: var(--border);
  }
  .form-divider::before { left:0; }
  .form-divider::after { right:0; }
  .social-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .btn-social {
    padding: 0.7rem; border-radius: 10px; border: 1px solid var(--border);
    background: transparent; color: var(--text); font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem; font-weight: 500; cursor: none; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .btn-social:hover { border-color: var(--accent); background: rgba(168,85,247,0.08); }

  /* CTA SECTION */
  .cta-section {
    text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content:''; position:absolute; inset:0;
    background: radial-gradient(ellipse at center, rgba(124,58,237,0.2) 0%, transparent 70%);
  }
  .cta-section .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }

  /* FOOTER */
  footer {
    background: var(--bg2); border-top: 1px solid var(--border);
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand {}
  .footer-logo {
    font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
  }
  .footer-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
  .footer-socials { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
  .social-icon {
    width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    text-decoration: none; transition: all 0.2s;
  }
  .social-icon:hover { border-color: var(--accent); background: rgba(168,85,247,0.15); transform: translateY(-2px); }
  .footer-col h4 {
    font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; color: var(--text);
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.6rem; }
  .footer-col a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--text); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--muted); font-size: 0.82rem;
  }
  .footer-bottom a { color: var(--muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--accent); }

  /* SCROLL ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Responsive */
  @media(max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding: 120px 5% 60px; }
    .hero-content { max-width: 100%; }
    .hero p { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-cards { flex: none; margin: 3rem auto 0; height: 480px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .profiles-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }
  @media(max-width: 600px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-cards { width: 300px; }
    .profile-card { width: 280px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .profiles-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
    .auth-modal { margin: 0 1rem; padding: 2rem 1.5rem; }
    section { padding: 60px 5%; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .stat-num { font-size: 1.5rem; }
  }
