/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

:root {
    --bg-color: #06061e;
    --text-primary: #ffffff;
    --text-secondary: #a0a5c0;
    --accent-cyan: #00e5ff;
    --accent-green: #00e676;
    --accent-purple: #7c4dff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.07);
}

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

/* Background Gradients (Decorative) */
.bg-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(6, 6, 30, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.12) 0%, rgba(6, 6, 30, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Header & Navigation */
header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #fff, #b8bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-cyan);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 150px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    align-self: flex-start;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
}

.cta-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-cyan), #00b0ff);
    color: #030310;
    text-decoration: none;
    font-weight: 750;
    font-size: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 16px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

/* Feature Graphic Frame */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-wrapper {
    width: 100%;
    max-width: 440px;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid var(--card-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #0d0d36;
    transition: transform 0.5s ease;
}

.graphic-wrapper:hover {
    transform: translateY(-5px) scale(1.02);
}

.graphic-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.section-header h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 16px;
}

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

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.05);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* Screenshots Slider */
.screenshots-section {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 100px 24px;
}

.screenshots-container {
    max-width: 1200px;
    margin: 0 auto;
}

.screenshots-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.screenshots-scroll::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.screenshot-item {
    flex: 0 0 240px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Section */
footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
}

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

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

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Privacy Page / Terms Styling */
.text-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 24px;
}

.text-container h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-container h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-cyan);
}

.text-container p, .text-container ul {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

.text-container ul {
    padding-left: 20px;
}

.text-container li {
    margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 20px;
    }
    
    .badge, .cta-group {
        align-self: center;
    }
    
    .hero-desc {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 16px;
    }
    
    nav {
        gap: 20px;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 10px auto 0;
    }
    
    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
