/* ========================================
   LODEEM Landing Page Styles
   ======================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #64748b;
    --accent: #f59e0b;
    --rust-orange: #ce422b;
    --success: #10b981;
    --background: #ffffff;
    --surface: #f8fafc;
    --border: #e2e8f0;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo {
    font-size: 28px;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links .btn-primary {
    color: white !important;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface);
    border-radius: 50px;
    font-size: 14px !important;
}

.lang-link:hover {
    background: var(--border);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
    border-color: var(--secondary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.rust-badge, .speed-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.rust-badge {
    background: linear-gradient(135deg, #fef3e2 0%, #fed7aa 100%);
    color: var(--rust-orange);
}

.speed-badge {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--primary);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========================================
   Waitlist Signup Banner
   ======================================== */

.waitlist-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    border-bottom: 1px solid var(--border);
}

.waitlist-content {
    text-align: center;
}

.waitlist-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 16px 24px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s;
}

.waitlist-form input[type="email"]:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.waitlist-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-form .btn {
    padding: 16px 32px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

.waitlist-form .btn:hover {
    background: var(--surface);
    transform: translateY(-1px);
}

.waitlist-form .btn-loading {
    display: inline-flex;
    align-items: center;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.waitlist-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    margin-bottom: 8px;
}

.waitlist-note span {
    font-weight: 600;
    color: white;
}

.waitlist-discount {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #fcd34d;
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 8px;
}

.waitlist-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    display: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-message.success {
    display: block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.waitlist-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 640px) {
    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form .btn {
        width: 100%;
    }
}

.hero-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--surface) 0%, #e2e8f0 100%);
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.placeholder-content svg {
    opacity: 0.5;
}

.placeholder-content span {
    font-size: 14px;
    font-weight: 500;
}

.dashboard-preview {
    box-shadow: var(--shadow-xl);
    border: none;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   Tech Banner
   ======================================== */

.tech-banner {
    padding: 40px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tech-banner .container {
    text-align: center;
}

.tech-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.tech-icon {
    font-size: 24px;
}

/* ========================================
   Why Rust Section
   ======================================== */

.why-rust {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.rust-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: 100px 0;
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 32px;
}

.feature-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.feature-card > p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.feature-list li:first-child {
    border-top: none;
}

.feature-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    margin-right: 10px;
}

/* ========================================
   Screenshots Section
   ======================================== */

.screenshots {
    padding: 100px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.screenshot-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s;
}

.screenshot-card:hover {
    box-shadow: var(--shadow-lg);
}

.screenshot-card.main {
    grid-row: span 2;
}

.screenshot-card .image-placeholder {
    margin-bottom: 16px;
    aspect-ratio: 16/10;
}

.screenshot-card.main .image-placeholder {
    aspect-ratio: 4/3;
}

.screenshot-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.screenshot-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========================================
   Performance Section
   ======================================== */

.performance {
    padding: 100px 0;
    background: var(--surface);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--surface);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.comparison-table th.highlight {
    background: var(--primary);
    color: white;
}

.comparison-table td {
    font-size: 15px;
}

.comparison-table td.highlight {
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   Pro Features Section
   ======================================== */

.pro-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
}

.pro-features .section-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.pro-features .section-header h2 {
    color: #1e293b;
}

.pro-features .section-header p {
    color: #64748b;
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pro-feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pro-feature-card:hover {
    background: white;
    border-color: #f59e0b;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pro-feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.pro-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.pro-feature-benefit {
    font-size: 1rem;
    font-weight: 500;
    color: #b45309;
    margin-bottom: 12px;
}

.pro-feature-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.pro-feature-card code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    color: #475569;
}

@media (max-width: 992px) {
    .pro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pro-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    position: relative;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.3s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary), var(--shadow-xl);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 20px;
    border-radius: 50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.pricing-features li.disabled {
    color: var(--text-light);
}

.check {
    color: var(--success);
    font-weight: 700;
}

.x {
    color: var(--text-light);
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 24px;
}

/* ========================================
   Download Section
   ======================================== */

.download {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: white;
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.download > .container > .download-content > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.download-buttons {
    margin-bottom: 24px;
}

.download-buttons .btn {
    background: white;
    color: var(--primary) !important;
}

.download-buttons .btn:hover {
    background: var(--surface);
    transform: translateY(-2px);
}

.download-buttons .btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.download-buttons .btn small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.download-info {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    opacity: 0.8;
}

.platform {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 80px 0 40px;
    background: var(--text);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 16px;
}

.footer-brand .nav-brand .brand-name {
    color: white;
}

.rust-note {
    margin-top: 8px !important;
    font-size: 13px !important;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Roadmap Styles
   ======================================== */

.roadmap-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 18px;
    color: var(--text-muted);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-section {
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--border);
}

.roadmap-section:last-child {
    border-bottom: none;
}

.roadmap-phase {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
}

.roadmap-item {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border-left: 4px solid var(--border);
}

.roadmap-item.completed {
    border-left-color: var(--success);
}

.roadmap-item.in-progress {
    border-left-color: var(--primary);
}

.roadmap-item.planned {
    border-left-color: var(--accent);
}

.roadmap-item.future {
    border-left-color: var(--text-light);
}

.roadmap-status {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.roadmap-item.completed .roadmap-status {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.roadmap-item.in-progress .roadmap-status {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.roadmap-item.planned .roadmap-status {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.roadmap-item.future .roadmap-status {
    background: rgba(148, 163, 184, 0.1);
    color: var(--text-light);
}

.roadmap-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.roadmap-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.roadmap-feedback {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    background: var(--surface);
    border-radius: var(--radius-lg);
}

.roadmap-feedback h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.roadmap-feedback p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.roadmap-disclaimer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.roadmap-disclaimer p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .rust-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .screenshot-card.main {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .rust-benefits {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-card.main {
        grid-column: span 1;
    }
    
    .tech-logos {
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .download h2 {
        font-size: 32px;
    }
}


/* ========================================
   Image Modal
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation-name: zoom;
    animation-duration: 0.3s;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: auto;
    margin-top: 10px;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Make images clickable */
.hero-image img,
.screenshot-card img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-image img:hover,
.screenshot-card img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}
