/* ===========================================
   SnapHookups - Cyberpunk Aurora Style
   Dark Neon / Aurora Gradient Theme
   Mobile-First Responsive Design
   =========================================== */

/* CSS Variables */
:root {
    /* Dark backgrounds */
    --bg-primary: #19191f;
    --bg-secondary: #1d1f28;
    --bg-tertiary: #252830;
    
    /* Neon accent colors */
    --neon-pink: #ff6b9d;
    --neon-purple: #c44cff;
    --neon-cyan: #00d4ff;
    --neon-magenta: #ff2d92;
    
    /* Text colors */
    --text-primary: #f6f6f7;
    --text-secondary: rgba(246, 246, 247, 0.82);
    --text-muted: rgba(246, 246, 247, 0.55);
    
    /* Glass effects */
    --glass-bg: rgba(25, 25, 31, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.4);
    
    /* Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 50%, var(--neon-cyan) 100%);
    
    /* Spacing */
    --container-max: 1140px;
    --section-padding: 80px;
    --card-radius: 20px;
    --btn-radius: 50px;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.cyber-aurora {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    line-height: 1.2;
}

.neon-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
}

/* Main Content */
.snap-main {
    position: relative;
    margin-top: 80px;
}

/* Section Container */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

/* Aurora Background Effects */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    will-change: transform;
}

.aurora-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.aurora-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
}

.aurora-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    top: 40%;
    right: 10%;
}

/* =====================
   HERO SECTION
   ===================== */
.snap-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 40px 20px 60px;
    overflow: hidden;
}

.snap-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(196, 76, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #00ff88;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: var(--font-weight-black);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Features List */
.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--neon-cyan);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Neon Buttons */
.btn-neon-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-neon);
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 0 20px rgba(196, 76, 255, 0.4);
}

.btn-neon-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(196, 76, 255, 0.6);
}

.btn-neon-primary .btn-icon {
    width: 20px;
    height: 20px;
}

.btn-neon-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(196, 76, 255, 0.1);
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--btn-radius);
    border: 1px solid rgba(196, 76, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-neon-outline:hover {
    background: rgba(196, 76, 255, 0.2);
    border-color: rgba(196, 76, 255, 0.6);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* =====================
   HERO MAP WITH AVATARS
   ===================== */
.hero-map-container {
    width: 100%;
}

.map-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.map-pulse {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.map-visual {
    position: relative;
    height: 260px;
    background: 
        linear-gradient(rgba(25, 25, 31, 0.85), rgba(25, 25, 31, 0.75)),
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px),
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px);
}

.map-avatars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-avatar {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    animation: avatarFadeIn 0.5s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes avatarFadeIn {
    to { opacity: 1; }
}

img.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    background: var(--bg-tertiary);
}

.avatar-distance {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    background: rgba(25, 25, 31, 0.9);
    padding: 2px 6px;
    border-radius: 8px;
}

.avatar-status {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

/* Center Avatar (YOU) */
.center-avatar .avatar-you {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(196, 76, 255, 0.5);
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: radarPulse 3s ease-out infinite;
}

.radar-ring.delay {
    animation-delay: 1.5s;
}

@keyframes radarPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Map Footer Stats */
.map-footer {
    display: flex;
    justify-content: space-around;
    padding: 14px 18px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.map-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(196, 76, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-dot::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-purple);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* =====================
   SOCIAL PROOF BAR
   ===================== */
.snap-social-proof {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* =====================
   WELCOME SECTION
   ===================== */
.snap-welcome {
    padding: 60px 0;
    text-align: center;
}

.welcome-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(196, 76, 255, 0.15);
    border: 1px solid rgba(196, 76, 255, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-normal);
}

.welcome-tag:hover {
    background: rgba(196, 76, 255, 0.25);
    border-color: rgba(196, 76, 255, 0.5);
    transform: translateY(-2px);
}

.welcome-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.welcome-tagline strong {
    color: var(--text-primary);
}

/* =====================
   FEATURES SECTION
   ===================== */
.snap-features {
    padding: var(--section-padding) 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 28px 24px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 76, 255, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =====================
   HOW IT WORKS SECTION
   ===================== */
.snap-how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.snap-how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: var(--font-weight-black);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 2px solid rgba(196, 76, 255, 0.4);
    border-radius: 50%;
}

.step-content {
    flex: 1;
    padding: 20px;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================
   MORE FEATURES SECTION
   ===================== */
.snap-more-features {
    padding: var(--section-padding) 0;
}

.more-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
}

.mini-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    transition: var(--transition-normal);
}

.mini-feature:hover {
    border-color: rgba(196, 76, 255, 0.3);
}

.mini-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.mini-content h3 {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 6px;
}

.mini-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* =====================
   USERS SECTION
   ===================== */
.snap-users {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.snap-users::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.users-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.user-card {
    position: relative;
    padding: 16px;
    text-align: center;
    transition: var(--transition-normal);
}

.user-card:hover {
    transform: scale(1.03);
}

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    background: var(--bg-tertiary);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.user-distance {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.user-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin: 0 auto;
}

.user-badge.verified {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-cyan);
}

.user-badge.rating {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
}

.user-badge.responsive {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.user-status {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
}

.user-status.online {
    background: #00ff88;
}

.user-status.away {
    background: #ffaa00;
}

.users-cta {
    text-align: center;
}

.users-cta-text {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* =====================
   SAFETY SECTION
   ===================== */
.snap-safety {
    padding: var(--section-padding) 0;
    position: relative;
}

.safety-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.safety-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.safety-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-normal);
}

.safety-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
}

.safety-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--neon-cyan);
}

.safety-icon svg {
    width: 100%;
    height: 100%;
}

.safety-text-content h3 {
    font-size: 0.95rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 4px;
}

.safety-text-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.safety-badge {
    padding: 32px 24px;
    text-align: center;
}

.badge-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.safety-badge h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.safety-badge > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-secondary);
}

/* =====================
   FAQ SECTION
   ===================== */
.snap-faq {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--neon-pink);
}

.faq-icon {
    width: 22px;
    height: 22px;
    color: var(--neon-purple);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================
   FINAL CTA SECTION
   ===================== */
.snap-cta-final {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.snap-cta-final .section-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    padding: 40px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.cta-content > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

.cta-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =====================
   ANIMATIONS
   ===================== */
.animate-target {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.features-grid .animate-target:nth-child(1) { transition-delay: 0ms; }
.features-grid .animate-target:nth-child(2) { transition-delay: 80ms; }
.features-grid .animate-target:nth-child(3) { transition-delay: 160ms; }
.features-grid .animate-target:nth-child(4) { transition-delay: 240ms; }
.features-grid .animate-target:nth-child(5) { transition-delay: 320ms; }
.features-grid .animate-target:nth-child(6) { transition-delay: 400ms; }

/* =====================
   RESPONSIVE - TABLET
   ===================== */
@media (min-width: 640px) {
    .section-title {
        font-size: 2.3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        max-width: 400px;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .welcome-tag {
        font-size: 0.95rem;
        padding: 11px 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .more-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .users-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-visual {
        height: 300px;
    }
    
    img.avatar-img {
        width: 46px;
        height: 46px;
    }
    
    .proof-items {
        gap: 40px;
    }
    
    .proof-number {
        font-size: 1.8rem;
    }
}

/* =====================
   RESPONSIVE - DESKTOP
   ===================== */
@media (min-width: 1024px) {
    :root {
        --section-padding: 100px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .snap-hero {
        padding: 60px 40px 80px;
    }
    
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        flex: 1;
        text-align: left;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-features {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .hero-map-container {
        flex: 1;
        max-width: 480px;
    }
    
    .map-visual {
        height: 340px;
    }
    
    img.avatar-img {
        width: 50px;
        height: 50px;
    }
    
    .center-avatar .avatar-you {
        width: 56px;
        height: 56px;
        font-size: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .feature-card {
        padding: 32px 28px;
    }
    
    .steps-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .step-item {
        flex: 1;
        min-width: 220px;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 14px;
    }
    
    .more-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .users-showcase {
        grid-template-columns: repeat(6, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .safety-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .safety-text {
        flex: 2;
    }
    
    .safety-text .section-title {
        text-align: left;
    }
    
    .safety-intro {
        text-align: left;
    }
    
    .safety-badge {
        flex: 1;
        position: sticky;
        top: 120px;
    }
    
    .faq-container {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-content {
        padding: 56px 48px;
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
}

/* =====================
   HEADER CYBER STYLE
   ===================== */
body.cyber-aurora header {
    background: rgba(25, 25, 31, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

body.cyber-aurora .logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
}

body.cyber-aurora .logo-text {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-black);
    font-size: 1.4rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.cyber-aurora .cta_signup {
    background: var(--gradient-neon);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: var(--btn-radius);
    font-weight: var(--font-weight-bold);
    font-size: 0.85rem;
    box-shadow: 0 0 15px rgba(196, 76, 255, 0.4);
    transition: var(--transition-normal);
}

body.cyber-aurora .cta_signup:hover {
    box-shadow: 0 0 25px rgba(196, 76, 255, 0.6);
    transform: translateY(-2px);
}

body.cyber-aurora .cta_signin {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(196, 76, 255, 0.4);
    padding: 10px 22px;
    border-radius: var(--btn-radius);
    font-weight: var(--font-weight-medium);
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

body.cyber-aurora .cta_signin:hover {
    background: rgba(196, 76, 255, 0.1);
    border-color: rgba(196, 76, 255, 0.6);
}

/* Mobile Header */
@media (max-width: 640px) {
    body.cyber-aurora .logo-img {
        height: 32px;
        max-width: 140px;
    }
    
    body.cyber-aurora .logo-text {
        font-size: 1.15rem;
    }
    
    body.cyber-aurora .cta_signup,
    body.cyber-aurora .cta_signin {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body.cyber-aurora .logo-img {
        height: 28px;
        max-width: 110px;
    }
}

/* =====================
   FOOTER CYBER STYLE
   ===================== */
body.cyber-aurora .footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    position: relative;
}

body.cyber-aurora .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
}

body.cyber-aurora .footer-column h3 {
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
}

body.cyber-aurora .footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

body.cyber-aurora .footer-links a:hover {
    color: var(--neon-pink);
}

body.cyber-aurora .social-link {
    background: rgba(196, 76, 255, 0.1);
    border: 1px solid rgba(196, 76, 255, 0.2);
    color: var(--text-primary);
    transition: var(--transition-normal);
}

body.cyber-aurora .social-link:hover {
    background: var(--gradient-neon);
    border-color: transparent;
    transform: translateY(-3px);
}

body.cyber-aurora .footer-bottom {
    border-top-color: var(--glass-border);
    color: var(--text-muted);
}

body.cyber-aurora .category-toggle {
    color: var(--neon-pink) !important;
}

body.cyber-aurora .category-toggle:hover {
    color: var(--neon-purple) !important;
}

/* Hide unnecessary elements */
body.cyber-aurora hr {
    display: none;
}

body.cyber-aurora .article-nav,
body.cyber-aurora .mobile-nav-toggle,
body.cyber-aurora .mobile-nav-menu {
    display: none !important;
}
