:root {
    --bg-color: #08060f;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --luma-pink: #f472b6;
    --luma-purple: #a855f7;
    --luma-pink-soft: rgba(244, 114, 182, 0.15);
    --luma-purple-soft: rgba(168, 85, 247, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-bg-strong: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ======================== */
/*   BACKGROUND AURA        */
/* ======================== */
.aura-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 20%, #1a0d2e 0%, #08060f 70%);
}

.aura-blob {
    position: absolute;
    filter: blur(140px);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 25s infinite ease-in-out alternate;
}

.blob-1 {
    top: -15%;
    left: -5%;
    width: 50vw;
    height: 50vw;
    background: rgba(244, 114, 182, 0.2);
}

.blob-2 {
    bottom: -25%;
    right: -15%;
    width: 60vw;
    height: 60vw;
    background: rgba(168, 85, 247, 0.18);
    animation-delay: -7s;
}

.blob-3 {
    top: 50%;
    left: 40%;
    width: 35vw;
    height: 35vw;
    background: rgba(244, 114, 182, 0.12);
    animation-delay: -12s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(3%, 6%) scale(1.08); }
}

/* ======================== */
/*   NAVIGATION              */
/* ======================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--luma-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--luma-pink), var(--luma-purple));
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

.apple-icon {
    font-size: 1.1em;
    margin-right: 0.3rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(8, 6, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
}

/* ======================== */
/*   BUTTONS                 */
/* ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--luma-pink), var(--luma-purple));
    color: white;
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(244, 114, 182, 0.45);
}

.btn-secondary {
    background: var(--glass-bg-strong);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

/* ======================== */
/*   HERO SECTION            */
/* ======================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--luma-pink-soft);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--luma-pink);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--luma-pink), #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--luma-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ======================== */
/*   iPhone CSS Frame        */
/* ======================== */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(60px);
    animation: pulse-glow 4s infinite ease-in-out alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.iphone-frame {
    width: 286px;
    height: 620px;
    background: #1a1a1a;
    border-radius: 48px;
    border: 3px solid #333;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 0 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    transform: rotateY(-8deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.iphone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
}

/* ======================== */
/*   TRUST STRIP             */
/* ======================== */
.trust-strip {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    background: var(--glass-bg);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-content span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ======================== */
/*   SECTION COMMON          */
/* ======================== */
.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--luma-purple-soft);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--luma-purple);
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ======================== */
/*   FEATURES SECTION        */
/* ======================== */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.features-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 4rem;
}

.feature-showcase {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.feature-showcase.reverse {
    flex-direction: row-reverse;
}

.feature-text-content {
    flex: 1;
}

.feature-text-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-text-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-visual .phone-glow {
    width: 200px;
    height: 400px;
    opacity: 0.5;
}

.feature-iphone {
    width: 260px;
    height: 564px;
    background: #1a1a1a;
    border-radius: 44px;
    border: 3px solid #333;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-iphone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 41px;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pink-glow {
    background: var(--luma-pink-soft);
}

.purple-glow {
    background: var(--luma-purple-soft);
}

.feature-icon {
    font-size: 1.6rem;
}

/* ======================== */
/*   HOW IT WORKS            */
/* ======================== */
.how-it-works {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem 8rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--luma-pink), var(--luma-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--luma-pink), transparent);
    margin: 1rem 0 1rem 40px;
    opacity: 0.3;
}

/* ======================== */
/*   APP SHOWCASE            */
/* ======================== */
.app-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 8rem;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    perspective: 1200px;
}

.gallery-phone {
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-phone:hover {
    transform: translateY(-12px);
}

.gallery-iphone {
    width: 207px;
    height: 450px;
    background: #1a1a1a;
    border-radius: 36px;
    border: 3px solid #333;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-phone:hover .gallery-iphone {
    box-shadow: 
        0 25px 50px rgba(244, 114, 182, 0.2),
        0 0 0 1px rgba(244, 114, 182, 0.1);
    border-color: rgba(244, 114, 182, 0.3);
}

.gallery-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 33px;
}

.gallery-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ======================== */
/*   DOWNLOAD CTA            */
/* ======================== */
.cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem;
    text-align: center;
}

.cta-panel {
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(60px);
    pointer-events: none;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 5rem 2rem;
    border-radius: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-panel h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.glass-panel p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ======================== */
/*   FOOTER                  */
/* ======================== */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.8rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ======================== */
/*   REVEAL ANIMATIONS       */
/* ======================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.reveal.active, .reveal-delay.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== */
/*   RESPONSIVE              */
/* ======================== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        gap: 3rem;
    }
    
    .hero-title { font-size: 2.8rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    
    .iphone-frame {
        width: 260px;
        height: 530px;
        transform: none;
    }
    
    .section-header h2 { font-size: 2.2rem; }
    
    .features-showcase-container {
        gap: 6rem;
    }
    
    .feature-showcase, .feature-showcase.reverse {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }
    
    .feature-icon-wrapper {
        margin: 0 auto 1.5rem;
    }
    
    .feature-iphone {
        width: 220px;
        height: 477px;
    }
    
    .feature-visual .phone-glow {
        width: 150px;
        height: 300px;
    }
    
    .step { flex-direction: column; align-items: center; text-align: center; }
    .step-line { margin: 1rem auto; }
    .step-number { min-width: auto; }
    
    .footer-top { flex-direction: column; }
    .footer-nav { gap: 2rem; }
    
    .glass-panel h2 { font-size: 2rem; }
    
    .trust-content { gap: 1.5rem; }
}

/* ======================== */
/*   LEGAL & SUPPORT PAGES   */
/* ======================== */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.document-container {
    max-width: 900px;
    margin: 0 auto 6rem;
    padding: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--luma-pink);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(244, 114, 182, 0.15);
}

.legal-text h2:first-of-type {
    margin-top: 2rem;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-text p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
    color: var(--text-secondary);
    list-style: none;
    padding-left: 0;
}

.legal-text li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-text li::before {
    content: '•';
    color: var(--luma-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-text .critical-box {
    background: rgba(244, 114, 182, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

.legal-text .critical-box p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.legal-text .critical-box p:last-child {
    margin-bottom: 0;
}

.legal-text .last-updated {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--luma-pink);
}

/* Support Form */
.support-container {
    max-width: 600px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    border-color: var(--luma-pink);
    background: rgba(255, 255, 255, 0.08);
}

textarea.glass-input {
    min-height: 150px;
    resize: vertical;
}

.support-email-direct {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.support-email-direct a {
    color: var(--luma-pink);
    text-decoration: none;
    font-weight: 600;
}

.support-email-direct a:hover {
    text-decoration: underline;
}
