/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-content {
    padding: 80px 0 60px;
    max-width: 720px;
}

.hero-tag {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--green-glow); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-typed {
    color: var(--green);
    position: relative;
}

.hero-typed::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--green);
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-grid {
    display: flex;
    gap: 4rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    animation: fadeUp 0.6s 0.4s ease both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
    pointer-events: none;
    animation: fadeIn 1s 0.5s ease both;
}

/* ── MANIFESTO STRIP ── */
.manifesto-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 0;
    background: var(--dark);
}

.manifesto-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-dim);
    text-align: center;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ── PRODUCTS PREVIEW ── */
.product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 2.5rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.product-card:hover .product-arrow {
    color: var(--green);
    transform: translateX(4px);
}

.product-status {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.product-status.live {
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(57, 167, 81, 0.2);
}

.product-status.dev {
    background: rgba(255, 170, 0, 0.08);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.2);
}

.product-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.product-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.product-tech {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.product-tech span {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 3px 10px;
}

.product-arrow {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    transition: all 0.2s;
}

/* ── APPROACH ── */
.approach {
    background: var(--dark);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.approach-left {
    position: sticky;
    top: 120px;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.approach-item:first-child {
    border-top: 1px solid var(--border);
}

.approach-num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--green);
    min-width: 30px;
    padding-top: 2px;
}

.approach-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.approach-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-box .section-label {
    justify-content: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.cta-desc {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

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

    .approach-left {
        position: static;
    }

    .hero-actions {
        flex-direction: column;
    }
}
