:root {
    --bg-color: #F8F9FA;
    --surface-color: #FFFFFF;
    --text-primary: #111111;
    --text-secondary: #555555;
    --accent-pink: #FF007F;
    --accent-purple: #9D4EDD;
    --accent-blue: #00F0FF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
}
.orb-1 {
    top: -10%; left: -5%;
    width: 500px; height: 500px;
    background: var(--accent-pink);
    animation: drift 15s ease-in-out infinite alternate;
}
.orb-2 {
    bottom: 20%; right: -10%;
    width: 600px; height: 600px;
    background: var(--accent-blue);
    animation: drift 20s ease-in-out infinite alternate-reverse;
}
.orb-3 {
    top: 40%; left: 30%;
    width: 400px; height: 400px;
    background: var(--accent-purple);
    opacity: 0.2;
    animation: drift 25s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Typography & Helpers */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 40px;
    border-radius: 12px;
}
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.badge {
    font-size: 0.7rem;
    color: var(--accent-pink);
    background: rgba(255,0,127,0.15);
    border: 1px solid rgba(255,0,127,0.3);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(1px);
}
.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}
.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}
.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    border-radius: 60px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    box-shadow: 0 8px 25px rgba(255,0,128,0.4);
}
.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(255,0,128,0.6);
}
.btn-glow {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.1);
}
.btn-glow:hover {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 50px;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-content {
    flex: 1;
}
.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.trusted-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.avatars {
    display: flex;
}
.avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -10px;
}
.avatars img:first-child {
    margin-left: 0;
}

/* Hero Visual (3D Mockup simulation) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}
.floating-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: #FFFFFF;
    border-radius: 40px;
    border: 8px solid #E0E0E0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1), 0 0 100px rgba(255,0,128,0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    animation: float-mockup 6s ease-in-out infinite alternate;
}
@keyframes float-mockup {
    0% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
    100% { transform: rotateY(-10deg) rotateX(2deg) translateY(-20px); }
}
.mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #F8F9FA, #E9ECEF);
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-preview-img {
    width: 150px;
    height: 150px;
    border-radius: 35px;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.scan-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-pink);
    box-shadow: 0 0 15px var(--accent-pink);
    animation: scan 3s linear infinite;
}
@keyframes scan {
    0% { top: -10%; }
    100% { top: 110%; }
}
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.card-1 {
    top: 20%; right: -50px;
    animation: float-card 4s ease-in-out infinite alternate;
}
.card-1 i { color: var(--accent-purple); }
.card-2 {
    bottom: 25%; left: -60px;
    animation: float-card 5s ease-in-out infinite alternate-reverse;
}
.card-2 i { color: var(--accent-blue); }

@keyframes float-card {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Sections Common */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(0,0,0,0.02);
}
.f-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.f-icon.pink { background: rgba(255,0,127,0.1); color: var(--accent-pink); }
.f-icon.blue { background: rgba(0,240,255,0.1); color: var(--accent-blue); }
.f-icon.purple { background: rgba(157,78,221,0.1); color: var(--accent-purple); }
.f-icon.green { background: rgba(0,255,128,0.1); color: #00FF80; }

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.step-item {
    text-align: center;
    z-index: 2;
    flex: 1;
}
.step-number {
    width: 80px; height: 80px;
    background: var(--surface-color);
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(157,78,221,0.3);
}
.step-item h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.step-item p { color: var(--text-secondary); }
.step-divider {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    position: relative;
    top: -40px;
}

/* Download Section */
.download-section {
    padding: 100px 5%;
}
.download-card {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255,0,128,0.1), rgba(0,240,255,0.05));
}
.download-card h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.download-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}
.small-text {
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    opacity: 0.7;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 5%;
    margin-top: 50px;
}
.footer-content {
    max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-content p { color: var(--text-secondary); }
.footer-links a {
    color: var(--text-secondary); text-decoration: none; margin-left: 1.5rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent-pink); }

/* Responsive */
@media (max-width: 1000px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .trusted-by { justify-content: center; }
    .hero-visual { margin-top: 3rem; }
    .floating-card { display: none; }
    .steps-container { flex-direction: column; gap: 3rem; }
    .step-divider { display: none; }
    .download-card h2 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links a { margin: 0 0.8rem; }
}
