/* ============================================================
   HOME PAGE — Styles
   ============================================================ */

/* --- HERO --- */
.hero {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 4rem) clamp(1.5rem, 4vw, 4rem) 4rem;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: var(--content-wide);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(3rem, 6vw, 8rem);
}

.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--ember);
}

.hero-label span {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 600;
    line-height: 0.92;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-line {
    display: block;
}

.hero-italic {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.hero-period {
    color: var(--ember);
}

.hero-desc {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
}

/* Hero Visual */
.hero-visual {
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-phone {
    animation: float 6s ease-in-out infinite;
}

/* --- MARQUEE --- */
.marquee {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    background: var(--bg-secondary);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.marquee-dot {
    display: inline-block;
    width: 6px !important;
    height: 6px;
    border-radius: 50%;
    background: var(--ember) !important;
    -webkit-text-stroke: 0 !important;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- FEATURES GRID SECTION --- */
.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 4rem;
}

.features-grid {
    margin-top: 0;
}

/* --- HOW IT WORKS --- */
.how-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 4rem;
}

.step {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: border-color 0.4s ease, transform 0.4s var(--ease-smooth);
}

.step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    line-height: 1;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.step-text {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-connector::before {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--border-subtle), var(--gold-dim), var(--border-subtle));
}

/* --- VALUE SECTION --- */
.value-section {
    overflow: hidden;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.value-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.value-metric {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.value-metric-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
}

.value-metric-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
}

.value-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2.5rem;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: var(--border-hover);
}

.value-card-quote {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.value-card-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 196, 168, 0.2);
}

.value-card-name {
    font-weight: 500;
    font-size: 0.92rem;
}

.value-card-role {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* --- CTA SECTION --- */
.cta-section {
    padding: clamp(6rem, 14vh, 12rem) clamp(1.5rem, 4vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-label {
        justify-content: center;
    }

    .features-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        width: auto;
        height: 30px;
    }

    .step-connector::before {
        width: 1px;
        height: 100%;
    }

    .value-metrics {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .hero-visual {
        order: -1;
    }
}
