:root {
    --bg-dark: #050505;
    --bg-panel: rgba(15, 15, 15, 0.7);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --brand-primary: #ff7300;
    --brand-secondary: #ffbb00;
    --glow-color: rgba(255, 115, 0, 0.5);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Background Glow Blobs */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.4;
    animation: pulse 8s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-primary), transparent 70%);
    top: -200px;
    left: -200px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brand-secondary), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.1) translate(50px, 50px); opacity: 0.5; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

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

.logo-text {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--brand-primary);
    text-shadow: 0 0 15px var(--glow-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--glow-color);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--brand-secondary);
}

.nav-cta {
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
    padding: 8px 24px;
    border-radius: 30px;
    color: #000 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 20px rgba(255, 115, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 115, 0, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 10;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.logo-wrapper {
    position: relative;
    width: 700px;
    height: 700px;
    max-width: 50vw;
    max-height: 50vw;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    /* Blend mode makes the black background of the image disappear, leaving only the glow */
    mix-blend-mode: screen; 
    /* Mask out the harsh square edges of the image to blend it flawlessly */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 70%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 70%);
    filter: drop-shadow(0 0 50px rgba(255, 115, 0, 0.8)) brightness(1.2);
    animation: floatBig 8s ease-in-out infinite;
}

@keyframes floatBig {
    0% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1.05) translateY(-20px); }
    100% { transform: scale(1) translateY(0px); }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--brand-primary), transparent 60%);
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
    animation: pulseGlowBig 4s ease-in-out infinite alternate;
}

@keyframes pulseGlowBig {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

/* Phone Mockup */
.bg-logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.phone-mockup {
    position: relative;
    z-index: 10;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #050505;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        -20px 20px 50px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 115, 0, 0.3);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}


.screen-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05); /* slightly scale to push white screenshot corners out of bounds */
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--brand-primary);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
    position: relative;
    z-index: 10;
}

.hero-title span {
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
    color: #000;
    box-shadow: 0 0 20px rgba(255, 115, 0, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 115, 0, 0.6);
}

.btn-google {
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.btn-google:hover {
    background: #111;
    border-color: rgba(255, 115, 0, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 115, 0, 0.4);
}

.btn-google .google-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.btn-google .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-google .btn-text span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    line-height: 1;
    margin-bottom: 2px;
}

.btn-google .btn-text strong {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-large {
    padding: 12px 32px;
}

.btn-large.btn-google {
    padding: 14px 36px;
}

.btn-large .google-icon {
    width: 38px;
    height: 38px;
}

.btn-large .btn-text span {
    font-size: 0.75rem;
}

.btn-large .btn-text strong {
    font-size: 1.6rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: fadeInOut 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.features-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 115, 0, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 115, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.icon-glow {
    filter: drop-shadow(0 0 10px rgba(255, 115, 0, 0.4));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Tech Specs */
.tech-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tech-item {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 115, 0, 0.1);
    border-color: rgba(255, 115, 0, 0.3);
}

.tech-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tech-value {
    color: var(--brand-primary);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    text-align: center;
}

.glass-panel {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 115, 0, 0.05);
    border: 1px solid rgba(255, 115, 0, 0.2);
    border-radius: 30px;
    padding: 80px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(255, 115, 0, 0.1) inset;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reveal Animations */
.reveal, .reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.reveal-nav {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease-out;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 60px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .features-layout {
        flex-direction: column;
        gap: 60px;
    }

    .logo-wrapper {
        width: 500px;
        height: 500px;
        max-width: 80vw;
        max-height: 80vw;
    }
    
    .phone-mockup {
        transform: rotateY(0) rotateX(0);
        animation: floatPhoneMobile 6s ease-in-out infinite;
    }
    
    @keyframes floatPhoneMobile {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none; /* simple mobile behavior */
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Support Page Styles */
.support-container {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(15px);
}

.guide-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.guide-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.guide-title {
    color: var(--brand-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guide-step {
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--brand-secondary);
    transition: transform 0.3s ease;
}

.guide-step:hover {
    transform: translateX(10px);
    background: rgba(255, 115, 0, 0.05);
}

.guide-step h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.guide-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}
