/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

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

/* Header */
.header {
    background: #1f1f1f;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.header h1 {
    font-size: 1.8rem;
    color: #ff9800; /* Rust lang color-ish */
}

.tagline {
    font-size: 0.9rem;
    color: #aaa;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
}

.development-notice {
    background: rgba(255, 152, 0, 0.15);
    border: 1px solid #ff9800;
    border-radius: 5px;
    padding: 12px 20px;
    margin-bottom: 30px;
    display: inline-block;
}

.development-notice p {
    margin: 0;
    color: #ff9800;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
}

.hero .engineer-note {
    font-size: 0.9rem;
    color: #888;
    font-family: monospace;
    max-width: 700px;
    margin: -20px auto 40px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn.primary {
    background-color: #ff9800;
    color: #121212;
}

.btn.primary:hover {
    background-color: #e68900;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #ff9800;
    color: #ff9800;
}

.btn.secondary:hover {
    background-color: rgba(255, 152, 0, 0.1);
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #181818;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

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

.feature-card {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #ff9800;
}

.feature-card p {
    color: #bbb;
}

/* Business & Developers Sections */
.business, .developers {
    padding: 70px 0;
}

.business {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.developers {
    background-color: #151515;
}

.business h2, .developers h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.text-block h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 10px;
    border-left: 3px solid #ff9800;
    padding-left: 15px;
}

.text-block p {
    padding-left: 18px;
    color: #ccc;
    font-size: 1.1rem;
}

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

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 6px;
    border-top: 2px solid #333;
}

.tech-item:hover {
    border-top-color: #ff9800;
    background: rgba(255, 255, 255, 0.05);
}

.tech-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tech-item p {
    font-family: monospace;
    color: #aaa;
    font-size: 0.95rem;
}

/* What It Is Section */
.what-it-is {
    padding: 70px 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}

.what-it-is h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #fff;
}

.what-it-is .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.what-it-is ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-it-is ul li {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 8px 0 8px 20px;
    border-left: 2px solid #333;
    margin-bottom: 6px;
}

/* Status Section */
.status {
    padding: 60px 0;
    background-color: #151515;
    text-align: center;
    border-bottom: 1px solid #333;
}

.status h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.status p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

/* Architecture Section */
.architecture {
    padding: 60px 0;
    background-color: #121212;
}

.architecture h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.arch-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arch-step {
    background: #1f1f1f;
    padding: 25px;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
}

.arch-step h3 {
    color: #fff;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 20px 0;
    text-align: center;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #222;
}

.footer-nav {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff9800;
}

/* Header Row with Navigation */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-link {
    color: #ff9800;
    text-decoration: none;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.header-nav a {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-nav a:hover,
.header-nav a.active {
    color: #ff9800;
}

/* News / Blog Section */
.news-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
}

.news-hero h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.news-hero p {
    color: #aaa;
    font-size: 1.1rem;
}

.news-list {
    padding: 50px 0 80px;
    background-color: #151515;
}

.news-post {
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 35px 40px;
    margin-bottom: 40px;
    border-left: 4px solid #ff9800;
}

.news-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-post-meta time {
    color: #888;
}

.news-tag {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-post h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
}

.news-post-body p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-post-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.news-post-body ul li {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 10px 0 10px 20px;
    border-left: 2px solid #333;
    margin-bottom: 10px;
}

.news-post-body ul li strong {
    color: #ff9800;
}

/* Links in content */
.text-block a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s;
}

.text-block a:hover {
    color: #e68900;
    text-decoration: underline;
}

/* Roadmap Section */
.roadmap-section {
    padding: 50px 0 80px;
    background-color: #151515;
}

.roadmap-phase {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.roadmap-phase-future {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #333;
}

.roadmap-phase-desc {
    color: #999;
    font-size: 1.05rem;
    margin-bottom: 35px;
}

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

.roadmap-card {
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 28px 30px;
    border-top: 3px solid #333;
}

.roadmap-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.roadmap-card p {
    color: #bbb;
    font-size: 0.98rem;
    line-height: 1.6;
}

.roadmap-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.status-done {
    border-top-color: #66bb6a;
}

.status-done .roadmap-status {
    background: rgba(102, 187, 106, 0.12);
    color: #66bb6a;
}

.status-wip {
    border-top-color: #ff9800;
}

.status-wip .roadmap-status {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
}

.status-planned {
    border-top-color: #42a5f5;
}

.status-planned .roadmap-status {
    background: rgba(66, 165, 245, 0.12);
    color: #42a5f5;
}

.status-idea {
    border-top-color: #ab47bc;
}

.status-idea .roadmap-status {
    background: rgba(171, 71, 188, 0.12);
    color: #ce93d8;
}

.roadmap-highlights {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.roadmap-highlights li {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 4px 0 4px 16px;
    border-left: 2px solid #444;
    margin-bottom: 4px;
}
