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

html {
    /* smooth scroll handled via JS for offset */
}

body {
    background-color: #050505;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    cursor: default;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(5, 5, 5, 0.5);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.privacy-link:hover {
    color: #00ff80;
    opacity: 1;
}

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

.nav-wrapper::before {
    content: '';
    width: 1px;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

nav a:hover {
    color: #00ff80;
    opacity: 1;
    letter-spacing: -0.01em;
}

main {
    position: relative;
    z-index: 10;
    width: 100%;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 1.5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    text-align: center;
    width: 100%;
}

h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    opacity: 0.95;
    margin: 0;
    line-height: 1.1;
}

.section-title {
    color: #ffffff;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -0.04em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* App Subsection Styles */
.app-details {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.app-subsection {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.app-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 1rem;
}

.app-icon.large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.app-icon.large svg {
    width: 40px;
    height: 40px;
}

.app-info h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.app-info .tagline {
    color: #00ff80;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.detail-box {
    width: 100% !important;
    max-width: none !important;
    padding: 2rem !important;
}

.detail-box h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-box h4 svg {
    width: 20px;
    height: 20px;
    stroke: #00ff80 !important;
    filter: drop-shadow(0 0 5px rgba(0, 255, 128, 0.3));
}

.detail-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-box li {
    color: #a1a1a1;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    padding-left: 1.25rem;
}

.detail-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00ff80;
}

.app-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-left: 1rem;
    width: 100%;
}

.play-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid rgba(0, 255, 128, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 14px;
    color: #00ff80;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-store-btn:hover {
    background: rgba(0, 255, 128, 0.15);
    border-color: rgba(0, 255, 128, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.15);
}

.play-store-btn svg {
    width: 18px;
    height: 18px;
    stroke: #00ff80 !important;
}

@media (max-width: 768px) {
    .app-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
        gap: 1.5rem;
    }
    
    .play-store-btn {
        width: 100%;
        justify-content: center;
    }
    
    .app-info h3 {
        font-size: 2rem;
    }

    .app-details {
        gap: 5rem;
    }
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
}

.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.feature-link:hover {
    opacity: 0.9;
}

.glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(0, 255, 128, 0.2);
    padding: 2rem;
    border-radius: 24px;
    width: 475px;
    text-align: left;
    transition: border-color 0.4s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.app-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    flex-shrink: 0;
}

.app-icon svg {
    stroke: #ffffff !important;
    fill: none !important;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    opacity: 0.9;
}

.box-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.glass-box h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.03em;
}

.glass-box p {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-icon svg {
    stroke: #ffffff !important;
    fill: none !important;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    opacity: 0.9;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    flex-grow: 1;
}

.timeline-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #a1a1a1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.timeline-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-icon {
    stroke: #ffffff !important;
    fill: none !important;
    width: 16px;
    height: 16px;
    opacity: 0.7;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.2));
}

.timeline-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.6;
}

/* Contact Styles */
.contact-card-single {
    width: 100% !important;
    max-width: 600px !important;
    border: 1px solid rgba(0, 255, 128, 0.4) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.row-icon {
    width: 20px;
    height: 20px;
    stroke: #00ff80 !important;
    fill: none !important;
    opacity: 0.8;
}

.row-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.row-info .label {
    color: #00ff80;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00ff80;
}

.location-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Glow Background */
.glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 80, 0.15) 0%, rgba(0, 100, 40, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    filter: blur(80px);
    transition: transform 0.1s ease-out;
}

.cursor-aura {
    position: fixed;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 128, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
        height: auto;
    }

    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        position: relative;
    }

    .privacy-link {
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
        padding: 0.5rem 0;
        order: 1;
    }

    .nav-wrapper {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .nav-wrapper::before {
        display: none;
    }

    .menu-toggle {
        display: block;
        padding: 0.5rem;
        margin-right: -0.5rem;
    }

    nav#main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(30px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
    }

    nav#main-nav.active {
        right: 0;
    }

    nav#main-nav ul {
        flex-direction: column;
        gap: 3rem;
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    }

    nav#main-nav.active ul {
        opacity: 1;
        transform: scale(1);
    }

    nav#main-nav a {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    section {
        padding: 6rem 1rem !important;
        min-height: auto;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 2.5rem !important;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .hero-content {
        gap: 3rem;
        width: 100%;
    }

    .features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    .feature-link {
        width: 100%;
    }

    .glass-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        box-sizing: border-box;
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .app-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    
    .app-info h3 {
        font-size: 1.75rem !important;
    }

    .app-details {
        gap: 4rem;
    }

    .app-subsection {
        gap: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .timeline-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .contact-card-single {
        padding: 1.5rem !important;
    }

    .contact-row {
        gap: 1rem;
    }

    .contact-link, .location-text {
        font-size: 1.1rem;
    }
}
