:root {
    --primary: #ff6a00;
    --primary-dark: #e55d00;
    --bg: #ffffff;
    --bg-alt: #f8f9fc;
    --text-main: #0f1724;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px -10px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.nav-container {
    width: 100%;              /* Fixes the alignment issue */
    max-width: 1100px;        /* Matches the rest of the site content */
    margin: 0 auto;           /* Centers it */
    padding: 0 24px;          /* Adds space on the sides */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;                  /* Ensures it starts at left edge */
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 16px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-main); }
.logo-img { height: 36px; width: auto; } /* Sized perfectly for icon.ico */
.logo-text { font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-light); font-weight: 500; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-main); }
.nav-btn { background: var(--text-main); color: white; padding: 10px 24px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.nav-btn:hover { background: var(--primary); }

/* SPLIT HERO SECTION */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 0%, #fff5ed 0%, #ffffff 70%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--border);
    padding: 6px 16px; border-radius: 100px;
    font-size: 13px; font-weight: 500; color: var(--text-light);
    margin-bottom: 32px;
}
.badge-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2); }

.hero h1 { font-size: 56px; line-height: 1.1; font-weight: 800; letter-spacing: -2px; margin-bottom: 24px; }
.gradient-text {
    background: linear-gradient(135deg, var(--primary), #ff9900);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 18px; color: var(--text-light); margin-bottom: 40px; max-width: 480px; }

.btn-primary {
    background: var(--primary); color: white; padding: 16px 32px;
    border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 16px;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
    transition: transform 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); }
.version-text { display: block; margin-top: 16px; font-size: 13px; color: var(--text-light); }

/* VISUAL UI */
.hero-visual { position: relative; height: 400px; }
.glass-panel {
    width: 100%; max-width: 500px; height: 320px;
    background: white; border: 1px solid var(--border);
    border-radius: 16px; box-shadow: var(--shadow);
    position: absolute; right: 0; top: 20px;
    overflow: hidden; z-index: 2;
}
.panel-header { padding: 16px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 16px; }
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
.dots span:nth-child(1) { background: #ef4444; }
.dots span:nth-child(2) { background: #f59e0b; }
.dots span:nth-child(3) { background: #10b981; }
.panel-title { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.panel-body { height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%); }

.scan-circle { width: 100px; height: 100px; border: 2px solid #f0f0f0; border-radius: 50%; position: relative; margin-bottom: 20px; }
.scan-line { width: 100%; height: 2px; background: var(--primary); position: absolute; top: 50%; box-shadow: 0 0 10px var(--primary); animation: scan 2s infinite linear; }
@keyframes scan { 0% {top:0; opacity:0;} 50% {opacity:1;} 100% {top:100%; opacity:0;} }

.status-row { display: flex; gap: 30px; }
.status-item { display: flex; flex-direction: column; align-items: center; }
.label { font-size: 11px; color: var(--text-light); text-transform: uppercase; margin-bottom: 4px; }
.value { font-weight: 700; color: var(--text-main); font-size: 14px; }
.value.active { color: #10b981; }

/* Floating Cards */
.float-card {
    position: absolute; background: white; padding: 12px 20px;
    border-radius: 8px; box-shadow: var(--shadow-hover);
    border: 1px solid var(--border); font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 10px; z-index: 3;
}
.file-card { bottom: 20px; left: -20px; animation: float 6s infinite ease-in-out; }
.usb-card { top: 0px; right: -30px; animation: float 6s infinite ease-in-out 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* FEATURES */
.features { padding: 100px 0; background: white; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.section-header p { font-size: 18px; color: var(--text-light); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card { padding: 40px; background: white; border: 1px solid var(--border); border-radius: 16px; transition: all 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.icon-box { width: 48px; height: 48px; background: #fff5ed; color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* DEVELOPER */
.developer-section { padding: 100px 0; background: #0f1724; color: white; }
.dev-content { max-width: 700px; margin: 0 auto; text-align: center; }
.mono-label { font-family: monospace; color: var(--primary); font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 24px; }
.dev-content h2 { font-size: 42px; font-weight: 800; margin-bottom: 8px; }
.highlight-p { font-size: 22px; font-weight: 600; color: white; margin-bottom: 24px; }
.dev-content p { font-size: 18px; color: #cbd5e1; line-height: 1.8; margin-bottom: 24px; }
.tech-stack { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.tech-stack span { padding: 8px 16px; border: 1px solid #334155; border-radius: 100px; font-size: 14px; color: #e2e8f0; }

/* FAQ */
.faq-card { display: flex; gap: 20px; align-items: flex-start; padding: 32px; }
.faq-icon { font-size: 24px; background: #fff5ed; color: var(--primary); width: 48px; height: 48px; min-width: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.faq-content h3 { font-size: 17px; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.faq-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* FOOTER */
footer { padding: 80px 0 40px; background: var(--bg-alt); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; }
.brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-light); font-size: 14px; }
.footer-contact h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text-main); }
.footer-contact a { display: block; color: var(--text-light); text-decoration: none; margin-bottom: 8px; font-size: 15px; }
.footer-contact a:hover { color: var(--primary); }
.contact-text { display: block; color: var(--text-light); font-size: 15px; margin-bottom: 8px; }
.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-light); font-weight: 500; }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { margin-bottom: 60px; }
    .hero-actions { justify-content: center; }
    .hero-visual { justify-content: center; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .grid { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; gap: 40px; }
    .nav-links { display: none; }
}

@media (min-width: 768px) {
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
}