/* ===== Growth Page ===== */

.center {
    text-align: center;
}

.intro {
    margin-top: 10px;
    color: #cfcfcf;
}

.growth-hero {
    padding: 90px 0;
    background:
        radial-gradient(800px 300px at 20% 0%, rgba(201,169,110,0.12), transparent 60%),
        linear-gradient(180deg, #0f0f0f, #151515);
}

.growth-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #2a2a2a;
    font-size: 12px;
    color: #cfcfcf;
    margin-bottom: 16px;
}

.growth-title {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 14px;
}

.growth-title span {
    color: var(--gold);
}

.growth-sub {
    max-width: 700px;
    color: #cfcfcf;
}

.growth-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Steps */
.growth-steps {
    margin-top: 36px;
    display: grid;
    gap: 18px;
}

.g-step {
    background: #121212;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 20px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.g-step:hover {
    border-color: rgba(201,169,110,0.45);
    transform: translateY(-2px);
}

.g-step span {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.g-step h3 {
    margin: 8px 0;
}

.g-step p {
    color: #cfcfcf;
}

/* Bars */
.growth-bars {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #bdbdbd;
}

.bar {
    height: 10px;
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 999px;
    overflow: hidden;
    margin: 6px 0;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(201,169,110,0.25), rgba(201,169,110,0.95));
    animation: grow 1.2s ease forwards;
}

.fill-1 { width: 45%; }
.fill-2 { width: 70%; }
.fill-3 { width: 92%; }

@keyframes grow {
    from { width: 0; }
}

/* Manifest */
.manifest {
    background: #121212;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.manifest p {
    font-size: clamp(18px, 2vw, 22px);
}

.manifest .gold {
    color: var(--gold);
    margin-top: 10px;
}

.cta-bottom {
    margin-top: 22px;
}

/* Mobile */
@media (max-width: 720px) {
    .growth-hero {
        padding: 60px 0;
    }
}
