:root {
    --bg-dark: #121212;
    --bg-panel: #1e1e1e;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent: #00d1b2; /* Bulma Teal */
    --accent-hover: #00b89c;
    --border: #333;
    --font-main: 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'Courier New', monospace;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-darker { background-color: #0a0a0a; }

/* Navigation */
.navbar {
    background: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.text-accent { color: var(--accent); }

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-small:hover {
    background: var(--accent);
    color: #000;
}

/* Hero Section */
/* --- HERO SECTION UPDATE --- */

.hero {
    padding: 80px 0; /* Reduced top padding slightly */
    border-bottom: 1px solid var(--border);
    overflow: hidden; /* Prevents tall image from scrolling page horizontally */
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12 Column Grid */
    align-items: center; /* Vertically center the text against the tall image */
    position: relative;
}

/* LEFT SIDE (TEXT) */
.hero-text { 
    grid-column: 1 / 9; /* Spans from start to col 9 (overlaps image) */
    grid-row: 1;
    z-index: 10; /* Bring to front */
    padding: 40px 40px 40px 0; /* Right padding ensures text doesn't hit edge of glass */
}

/* The glass effect for readability over the screenshot */
.glass-panel {
    background: linear-gradient(90deg, var(--bg-dark) 60%, rgba(18,18,18,0.85) 100%);
    backdrop-filter: blur(8px); /* Blurs the image behind the text */
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
}

/* RIGHT SIDE (IMAGE) */
.hero-image { 
    grid-column: 6 / -1; /* Starts at col 6 (under text) to end */
    grid-row: 1;
    z-index: 1; /* Send to back */
    
    /* Tall image handling */
    display: flex;
    justify-content: center;
    perspective: 1000px; /* Optional: adds depth if you rotate */
}

/* BROWSER WINDOW STYLING */
.browser-window {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6); /* Deeper shadow */
    overflow: hidden;
    border: 1px solid #333;
    width: 100%;
    
    /* Optional: Slight tilt to make it look dynamic */
    /* transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease; */
}

.browser-window:hover {
    transform: rotateY(0deg) rotateX(0deg); /* Flattens on hover */
}

.browser-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #1a1a1a;
}

.browser-dots { display: flex; gap: 6px; }
.browser-address-bar {
    background: #1a1a1a;
    color: #888;
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: monospace;
    flex-grow: 1;
    text-align: center;
}

.app-shot {
    display: block;
    width: 100%;
    height: auto;
    max-height: 800px; /* Cap it just in case it's absurdly tall */
    object-fit: cover;
    object-position: top;
}

/* --- UPDATED MOBILE --- */
@media (max-width: 960px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        padding: 0;
        background: none; /* Remove glass effect on mobile */
        backdrop-filter: none;
    }

    .hero-image {
        width: 100%;
    }
    
    .browser-window {
        transform: none; /* Remove 3D tilt on mobile */
    }
    
    .cta-group {
        justify-content: center;
    }
}
/* Features */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2rem; letter-spacing: 2px; }
.divider { width: 60px; height: 4px; background: var(--accent); margin: 20px auto; }

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

.feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 30px;
    transition: transform 0.2s;
}

.feature-card:hover { border-color: var(--accent); }

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Specs */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spec-list {
    list-style: none;
    margin-top: 30px;
}

.spec-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.code-block {
    background: #000;
    border: 1px solid var(--border);
    padding: 20px;
    font-family: var(--font-mono);
    color: var(--accent);
    width: 100%;
}

/* Pricing */
.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-panel);
    border: 1px solid var(--accent);
    text-align: center;
}

.pricing-header {
    background: rgba(0, 209, 178, 0.1);
    padding: 40px;
    border-bottom: 1px solid var(--border);
}

.version { 
    font-size: 0.8rem; 
    background: var(--bg-dark); 
    padding: 2px 8px; 
    vertical-align: middle; 
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
}

.currency { font-size: 1rem; color: var(--text-muted); }

.pricing-body { padding: 40px; }

.check-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.check-list li { margin-bottom: 10px; }
.check-list i { color: var(--accent); margin-right: 10px; }

.disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.disclaimer a { color: var(--text-muted); text-decoration: underline; }

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
    .cta-group { justify-content: center; }
    .split-layout { flex-direction: column; }
    .navbar .container { flex-direction: column; gap: 20px; }
    .nav-links { margin-left: 0; }
    h1 { font-size: 2.5rem; }
}

/* style.css - Append this to the bottom */

/* Text Pages (Terms, Privacy) */
.content-page {
    padding: 120px 0 80px; /* Extra top padding for fixed navbar */
    min-height: 80vh;
}

.legal-doc {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-doc h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-doc h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.legal-doc p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.legal-doc ul {
    margin-bottom: 20px;
    margin-left: 20px;
    color: var(--text-muted);
}

.legal-doc li { margin-bottom: 10px; }

/* Contact Page specific */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.support-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 40px;
    text-align: center;
}

.support-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 30px;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

.faq-question {
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .legal-doc { padding: 30px; }
    .support-grid { grid-template-columns: 1fr; }
}

/* Terminal Styling */
.terminal-window {
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
    border: 1px solid #333;
}

.terminal-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.terminal-title {
    margin-left: auto;
    margin-right: auto;
    color: #888;
    font-size: 0.8rem;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.terminal-body {
    padding: 20px;
    color: #e0e0e0;
}

.terminal-body code {
    display: block;
    line-height: 1.6;
}

.prompt { color: #27c93f; font-weight: bold; }
.log-info { color: #4fa6ff; font-weight: bold; }
.log-success { color: #27c93f; font-weight: bold; }
.comment { color: #666; }