/* RESET & VARIABLES */
:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-main: #FFFFFF;
    --text-muted: #AAAAAA;
    --accent: #00E676; /* Your NeoTorch Green */
    --accent-glow: rgba(0, 230, 118, 0.2);
}

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

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

h1, h2, h3, h4, .logo { font-family: 'Montserrat', sans-serif; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* HIGHLIGHTS */
.highlight { color: var(--accent); }

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(18,18,18,0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.logo { font-weight: 900; font-size: 1.5rem; letter-spacing: -1px; }

.links a {
    margin-left: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.links a:hover { color: var(--accent); }

/* HERO SECTION */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #222 0%, #121212 70%);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 900; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }

.cta-button {
    background: var(--accent);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* FEATURED PROJECT */
.featured-project { padding: 100px 50px; background: var(--bg-card); }

.project-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.project-info { flex: 1; }
.project-image { flex: 1; display: flex; justify-content: center; }

/* Phone Mockup Placeholder */
.placeholder-phone {
    width: 280px;
    height: 580px;
    background: #000;
    border: 4px solid #444;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    font-size: 4rem;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

h2 { font-size: 3rem; margin: 10px 0 5px; }
.subtitle { font-size: 1.5rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }

.feature-list li { margin-bottom: 10px; font-size: 1.1rem; }

.store-button {
    display: inline-block;
    margin-top: 30px;
    border: 2px solid var(--text-muted);
    padding: 12px 30px;
    border-radius: 8px;
    color: var(--text-main);
}
.store-button:hover { border-color: var(--accent); color: var(--accent); }

/* UPCOMING GRID */
.upcoming { padding: 100px 50px; max-width: 1100px; margin: 0 auto; }
.upcoming h3 { font-size: 2rem; margin-bottom: 40px; text-align: center; }

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

.card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.2s;
    border: 1px solid #333;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); }

.card-icon { font-size: 3rem; margin-bottom: 20px; }
.card h4 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }

.status {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.coming-soon { color: #FF9800; }
.in-dev { color: #2196F3; }
.hiring { color: var(--accent); }

/* FOOTER */
footer {
    background: #000;
    padding: 80px 50px 30px;
    border-top: 1px solid #333;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.footer-col h5 { margin-bottom: 20px; color: var(--text-muted); }
.footer-col a { display: block; margin-bottom: 10px; color: #666; }
.footer-col a:hover { color: #fff; }

.copyright { text-align: center; color: #444; font-size: 0.8rem; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .project-container { flex-direction: column-reverse; text-align: center; }
    .project-image { margin-bottom: 40px; }
    .footer-content { flex-direction: column; gap: 40px; }
    nav { padding: 20px; }
    .links { display: none; } /* Ideally add hamburger menu here */
}
