/* =========================================================================
   Together by ZortVibes - Landing Page Styles
   ========================================================================= */

:root {
    /* Color Palette matching ZortVibes */
    --bg-dark: #070709;
    --bg-darker: #040406;
    --neon-purple: #a200ff;
    --neon-purple-dim: rgba(162, 0, 255, 0.4);
    --neon-pink: #e100ff;
    --text-main: #f5f5f7;
    --text-muted: #a1a1aa;
    --white: #ffffff;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);

    /* Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

/* Reset & Basics */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Grid background */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
}

/* Typography Utilities */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-neon);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(162, 0, 255, 0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(162, 0, 255, 0.6);
}
.btn-glass {
    background: var(--glass-bg);
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-xl { padding: 1.2rem 2.5rem; font-size: 1.2rem; }

/* ================== NAVBAR ================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.logo-icon { width: 32px; height: 32px; object-fit: contain; }
.logo-text { height: 24px; object-fit: contain; }
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--neon-purple); }
.nav-links .btn-nav {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
}
.nav-links .btn-nav:hover {
    background: var(--gradient-neon);
    border-color: transparent;
}
.hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px;
}
.hamburger span {
    width: 25px; height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}
.nav-mobile {
    display: none;
    background: var(--bg-dark);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    border-bottom: 1px solid var(--glass-border);
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

/* ================== HERO ================== */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.hero-glow {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}
.hero-glow-1 { top: 20%; left: -100px; background: var(--neon-purple); }
.hero-glow-2 { bottom: 10%; right: -100px; background: var(--neon-pink); }

.badge-together {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 8px; height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--glass-border); }

/* Phone Mockups (CSS only) */
.phone-mockup-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}
.phone-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 500px;
    background: radial-gradient(circle, var(--neon-purple-dim) 0%, transparent 70%);
    z-index: 0;
}
.phone-mockup {
    position: absolute;
    width: 280px; height: 580px;
    background: #111;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 0 2px #333;
    z-index: 2;
}
.phone-back {
    top: -20px; left: 20%;
    transform: rotate(-10deg) scale(0.9);
    z-index: 1;
    opacity: 0.8;
}
.phone-front {
    top: 20px; right: 20%;
    transform: rotate(5deg);
    border: 1px solid rgba(162, 0, 255, 0.3);
}
.phone-screen {
    width: 100%; height: 100%;
    background: #0a0a0f;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
/* UI Mockups */
.app-ui-mini { padding: 20px; }
.app-header-mini { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; }
.avatar-mini { width: 40px; height: 40px; border-radius: 50%; background: #333; }
.text-mini { height: 8px; background: #333; border-radius: 4px; margin-bottom: 5px; }
.wall-post-mini { background: #1a1a24; padding: 15px; border-radius: 15px; margin-bottom: 15px; }
.album-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.album-img-mini { height: 100px; border-radius: 10px; }

.app-ui-main { padding: 40px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; }
.app-title-mini { font-size: 1.2rem; font-weight: 700; margin-bottom: 40px; }
.heart-counter { margin-bottom: 40px; }
.heart-icon-big { font-size: 4rem; color: var(--neon-pink); filter: drop-shadow(0 0 20px var(--neon-pink)); margin-bottom: 10px; }
.days-counter { font-size: 1.5rem; font-weight: 800; }
.days-label { font-size: 0.8rem; color: var(--text-muted); }
.nudge-row { display: flex; gap: 15px; margin-bottom: 40px; }
.nudge-btn { width: 50px; height: 50px; border-radius: 25px; background: #1a1a24; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.active-nudge { background: var(--gradient-neon); }
.surprise-card { background: rgba(162, 0, 255, 0.1); border: 1px solid var(--neon-purple-dim); padding: 15px; border-radius: 15px; width: 100%; font-size: 0.9rem; font-weight: 500; }

.keychain-float {
    position: absolute;
    bottom: 50px; left: 0;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
.keychain-badge { background: var(--neon-purple); color: white; font-size: 0.7rem; font-weight: 800; padding: 3px 8px; border-radius: 10px; position: absolute; top: -10px; right: -10px; z-index: 4; }
.keychain-body { width: 80px; height: 120px; background: #111; border-radius: 20px; border: 1px solid #333; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.keychain-icon { font-size: 2rem; color: var(--text-muted); margin-bottom: 10px; }
.nfc-waves { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.nfc-wave { width: 20px; height: 3px; background: var(--neon-purple); border-radius: 2px; }
.nfc-wave:nth-child(2) { width: 30px; opacity: 0.7; }
.nfc-wave:nth-child(3) { width: 40px; opacity: 0.4; }
.keychain-label { text-align: center; margin-top: 10px; font-weight: 600; font-size: 0.9rem; }

@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; gap: 2rem; }
    .hero-content h1 { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-stats { justify-content: center; }
    .phone-back { left: 10%; }
    .phone-front { right: 10%; }
}

/* ================== FEATURES ================== */
.features-section, .how-section, .shop-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-block; padding: 0.4rem 1rem; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-muted); }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(162, 0, 255, 0.3); background: rgba(255, 255, 255, 0.05); }
.feature-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(162, 0, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.feature-card p { color: var(--text-muted); flex-grow: 1; }
.feature-link { margin-top: 1.5rem; color: var(--neon-purple); text-decoration: none; font-weight: 600; display: inline-block; }
.feature-link:hover { text-decoration: underline; }
.feature-card-large { grid-column: span 2; position: relative; overflow: hidden; }
@media (max-width: 768px) { .feature-card-large { grid-column: span 1; } }

.feature-preview-counter {
    margin-top: 2rem;
    background: rgba(0,0,0,0.3); padding: 1.5rem; border-radius: 16px; border: 1px solid var(--glass-border);
    display: inline-flex; align-items: baseline; gap: 10px;
}
.counter-num { font-size: 2.5rem; font-weight: 900; background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ================== HOW IT WORKS ================== */
.how-section { position: relative; }
.how-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(225, 0, 255, 0.05) 0%, transparent 60%); z-index: -1; }
.steps-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; text-align: center; }
.step-card { flex: 1; position: relative; }
.step-num { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.03); position: absolute; top: -30px; left: 50%; transform: translateX(-50%); z-index: -1; line-height: 1; }
.step-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }
.step-arrow { color: var(--glass-border); font-size: 1.5rem; margin-top: 25px; }
@media (max-width: 992px) { .steps-grid { flex-direction: column; gap: 3rem; } .step-arrow { transform: rotate(90deg); margin: 0 auto; } }

/* ================== SHOP ================== */
.shipping-banner {
    background: rgba(162, 0, 255, 0.1);
    border: 1px solid rgba(162, 0, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}
.shipping-banner i { color: var(--neon-purple); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.product-card:hover { transform: translateY(-10px); border-color: rgba(162, 0, 255, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.product-image {
    width: 100%; height: 350px;
    object-fit: cover;
    background: #111;
    position: relative;
}
.product-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--neon-purple);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.product-info { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.product-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.product-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 1.5rem; }
.price-current { font-size: 2rem; font-weight: 800; color: var(--neon-purple); }
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 1.1rem; }
.product-desc { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.5; }
.product-includes { margin-bottom: 2rem; flex-grow: 1; }
.product-includes li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.8rem; font-size: 0.9rem; color: #ddd; }
.product-includes i { color: #00ff88; margin-top: 3px; }
.btn-buy { width: 100%; text-align: center; }

/* ================== DOWNLOAD ================== */
.download-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    background: rgba(162, 0, 255, 0.03);
}
.download-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 800px; height: 100%; background: radial-gradient(ellipse at top, rgba(162, 0, 255, 0.1) 0%, transparent 70%); z-index: -1; }
.download-content { max-width: 700px; margin: 0 auto; }
.download-content h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.download-content p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 3rem; }
.download-note { font-size: 0.85rem !important; color: #666 !important; margin-top: 1.5rem !important; margin-bottom: 0 !important; }

/* ================== FOOTER ================== */
.footer {
    border-top: 1px solid var(--glass-border);
    background: #040406;
    padding: 4rem 2rem 1rem;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem;
}
.footer-brand p { color: var(--text-muted); margin: 1.5rem 0; font-size: 0.9rem; max-width: 300px; }
.logo-icon-sm { width: 24px; height: 24px; }
.logo-text-sm { height: 18px; }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover { background: var(--gradient-neon); border-color: transparent; transform: translateY(-3px); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { margin-bottom: 1.5rem; font-size: 1rem; color: var(--white); }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--neon-purple); }
.footer-bottom { text-align: center; padding-top: 3rem; margin-top: 3rem; border-top: 1px solid var(--glass-border); color: #666; font-size: 0.85rem; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; } .footer-links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer-links { grid-template-columns: 1fr; } }
