/* ========================================
   HIBA — Award-Winning Quality CSS
   Inspired by: Stripe, Linear, Apple
======================================== */

:root {
    --bg: #080810;
    --bg-elevated: rgba(20, 20, 35, 0.6);
    --bg-hover: rgba(40, 40, 60, 0.5);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #f0f0f5;
    --text-muted: #a0a0b0;
    --text-subtle: #606070;
    --accent: #b8d4e8;
    --accent-gold: #c9a66b;
    --accent-glow: rgba(184, 212, 232, 0.15);
    --border: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Newsreader', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain Texture */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 1000;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 8rem 6rem;
    gap: 4rem;
}

.hero-eyebrow {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Buttons - Glassmorphism */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(184, 212, 232, 0.9), rgba(150, 180, 210, 0.8));
    color: #0a0a15;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 212, 232, 0.3);
    background: linear-gradient(135deg, rgba(200, 225, 245, 1), rgba(170, 200, 230, 0.9));
}

.btn-secondary {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    color: var(--text);
}

/* Clean Logo Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-glass {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 8s ease-in-out infinite;
}

.logo-img {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(201, 166, 107, 0.25));
    transition: transform 0.4s ease;
}

.logo-glass:hover .logo-img {
    transform: scale(1.05);
}

.logo-glow {
    display: none;
}

.logo-glass::after {
    display: none;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 10rem 8rem;
    background: var(--bg-elevated);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    padding: 2.5rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.about-card:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.about-number {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== DEMO ===== */
.demo {
    padding: 10rem 8rem;
}

.demo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.demo-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.demo-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.demo-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Quick Try Chips */
.guide-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.chip {
    padding: 0.6rem 1.2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover {
    background: var(--bg-hover);
    border-color: var(--accent);
    color: var(--text);
}

/* Modern Chat Box */
.chat-box {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent) 0%, #8b6914 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.chat-status {
    font-size: 0.75rem;
    color: #4ade80;
}

.chat-messages {
    height: 350px;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Message Bubbles */
.msg {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.msg-bot {
    align-self: flex-start;
}

.msg-user {
    align-self: flex-end;
}

.msg-bubble {
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.msg-bot .msg-bubble {
    background: #2a2a2a;
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.msg-user .msg-bubble {
    background: var(--accent);
    color: #000;
    border-bottom-right-radius: 4px;
}

.msg-time {
    font-size: 0.65rem;
    color: var(--text-subtle);
    margin-top: 0.3rem;
    padding: 0 0.5rem;
}

.msg-user .msg-time {
    text-align: right;
}

/* Chat Input */
.chat-input-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
}

.chat-input-area input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: #2a2a2a;
    border: none;
    border-radius: 25px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.chat-input-area input::placeholder {
    color: var(--text-subtle);
}

.chat-input-area input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 166, 107, 0.3);
}

.chat-input-area button {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

.chat-input-area button svg {
    color: #000;
}

/* Info Bar */
.demo-info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    margin-bottom: 3rem;
}

.demo-status {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

.config-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.config-btn:hover {
    border-color: var(--accent);
    color: var(--text);
}

/* Format Guide */
.format-guide {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.format-guide h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.format-guide p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Demo Guide */
.demo-guide {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: left;
}

.demo-guide h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.guide-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.guide-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.guide-icon {
    font-size: 1.5rem;
}

.guide-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.guide-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.code-block {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    overflow-x: auto;
    white-space: pre;
    margin: 1rem 0;
}

.guide-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(201, 166, 107, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

/* ===== CONTRIBUTE ===== */
.contribute {
    padding: 10rem 8rem;
    background: var(--bg-elevated);
    text-align: center;
}

.contribute h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contribute>.contribute-content>p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.contribute-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 8rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.footer-copy {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--bg-elevated);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.modal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-content>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-content input {
    width: 100%;
    padding: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--accent);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== ROADMAP ===== */
.roadmap {
    padding: 10rem 8rem;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 5rem;
}

.roadmap-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.roadmap-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.roadmap-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.roadmap-item {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 3rem;
    position: relative;
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    flex-shrink: 0;
    z-index: 1;
    transition: all 0.3s ease;
}

.roadmap-item.completed .roadmap-marker {
    background: var(--accent);
    border-color: var(--accent);
}

.roadmap-item.active .roadmap-marker {
    background: var(--text);
    border-color: var(--text);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.roadmap-content {
    flex: 1;
    padding-top: 2px;
}

.roadmap-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.roadmap-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.roadmap-item:not(.completed):not(.active) .roadmap-content h3,
.roadmap-item:not(.completed):not(.active) .roadmap-content p {
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 8rem 2rem 4rem;
    }

    .hero-subtitle {
        margin: 0 auto 3rem;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        order: -1;
    }

    .logo-img {
        width: 250px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .nav,
    .about,
    .demo,
    .contribute,
    .footer,
    .roadmap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .roadmap-timeline {
        max-width: 100%;
    }

    .roadmap-item {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo-img {
        width: 200px;
    }

    .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Timeline mobile */
    .roadmap {
        padding: 4rem 1.5rem;
    }

    .roadmap-header h2 {
        font-size: 2rem;
    }

    .roadmap-timeline::before {
        left: 8px;
    }

    .roadmap-item {
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .roadmap-marker {
        width: 18px;
        height: 18px;
    }

    .roadmap-content h3 {
        font-size: 1.1rem;
    }

    .roadmap-content p {
        font-size: 0.9rem;
    }

    /* About section mobile */
    .about {
        padding: 4rem 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }
}

/* ===== NEW MULTI-PAGE STYLES ===== */

/* Stats Section */
.stats {
    padding: 4rem 8rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    padding: 12rem 8rem 6rem;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Story Content */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.story-section {
    margin-bottom: 4rem;
}

.story-section h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.story-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-section ul {
    color: var(--text-muted);
    line-height: 2;
    margin-left: 1.5rem;
}

.story-section.center {
    text-align: center;
}

.mission-text {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.struggles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.struggle-card {
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.struggle-card h3 {
    margin-bottom: 0.5rem;
}

.struggle-card p {
    margin: 0;
    font-size: 0.9rem;
}

/* Demo Options */
.demo-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 8rem 6rem;
    flex-wrap: wrap;
}

.demo-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    backdrop-filter: blur(12px);
}

.demo-card.primary {
    border-color: var(--accent);
}

.demo-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.demo-card h2 {
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.demo-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.demo-note {
    display: block;
    margin-top: 1rem;
    color: var(--text-subtle);
    font-size: 0.8rem;
}

/* Try Section */
.try-section {
    padding: 4rem 8rem;
    text-align: center;
}

.try-section h2 {
    font-family: var(--font-serif);
    margin-bottom: 2rem;
}

.try-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.try-chip {
    padding: 0.8rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.try-note {
    color: var(--text-subtle);
    font-style: italic;
}

/* Roadmap Section */
.roadmap-section {
    padding: 0 8rem 6rem;
}

/* Download Section */
.download-section {
    padding: 0 8rem 4rem;
    text-align: center;
}

.download-section h2 {
    font-family: var(--font-serif);
    margin-bottom: 2rem;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    width: 280px;
    backdrop-filter: blur(12px);
}

.download-card.recommended {
    border-color: var(--accent);
}

.download-card .badge {
    background: var(--accent);
    color: var(--bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.download-card h3 {
    margin: 1rem 0 0.5rem;
}

.download-card .size {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.download-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Install Section */
.install-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.install-section h2 {
    font-family: var(--font-serif);
    text-align: center;
    margin-bottom: 2rem;
}

.install-method {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.install-method h3 {
    margin-bottom: 1rem;
}

.install-method ol {
    color: var(--text-muted);
    line-height: 2;
    margin-left: 1.5rem;
}

.install-method pre {
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-top: 1rem;
}

.install-method code {
    color: var(--accent);
    font-family: monospace;
}

/* Prompt Section */
.prompt-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    text-align: center;
}

.prompt-section h2 {
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.prompt-section>p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.prompt-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: left;
}

.prompt-box code {
    color: var(--text);
    font-family: monospace;
    white-space: pre-wrap;
}

/* Active nav link */
.nav-links a.active {
    color: var(--accent);
}

/* Responsive for new elements */
@media (max-width: 900px) {
    .page-hero {
        padding: 10rem 2rem 4rem;
    }

    .demo-options,
    .download-section,
    .try-section,
    .roadmap-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .struggles-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 2rem;
    }
}