
/* Container styling */
.growth-container {
    padding: 100px 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(5, 5, 5); /* Matches body background */
}

.growth-header {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 100vw
}

.ripple-system {
    position: relative;
    width: 100%;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Individual Layer Styling */
.ripple-layer {
    background-color: #111;
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ripple-layer:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary); /* Uses green from style-basics */
}

/* Stage Number Background Decoration */
.stage-number {
    font-family: 'Londrina Solid', sans-serif;
    font-size: 4rem;
    color: rgba(206, 249, 151, 0.05); /* Very subtle primary color */
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 0;
}

/* Active Stage Highlight (Stage 1) */
.stage-active {
    border: 2px solid rgb(254, 89, 52); /* Coral from vision-page */
    background: linear-gradient(145deg, #111, #1a0a05);
    box-shadow: 0 10px 30px rgba(254, 89, 52, 0.15);
}

.stage-active h2 {
    color: rgb(254, 89, 52) !important;
}

.current-label {
    background-color: rgb(254, 89, 52);
    color: white;
    padding: 4px 12px;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-family: Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Future Stage Dulling */
.stage-future {
    opacity: 0.7;
}

/* List styling matching vision page */
.main-stage-text {
    margin-top: 1.5rem;
    list-style: none;
    padding-left: 0;
    border-top: 1px solid #222;
    padding-top: 1rem;
}

.main-stage-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.main-stage-text li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Concentric Ripple Effect (Desktop) */
@media (min-width: 992px) {
    #s1 { width: 60%; align-self: center; }
    #s2 { width: 70%; align-self: center; }
    #s3 { width: 80%; align-self: center; }
    #s4 { width: 90%; align-self: center; }
    #s5 { width: 100%; align-self: center; }
}