/* ========================================
   PROJECT 1M PAGE - Mobile First
   Mirrors about.css patterns & dark theme
   ======================================== */

/* -------------------------------------------------
   SCROLL ANIMATIONS
   ------------------------------------------------- */

/* Base hidden states */
[data-animate] {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-up"] {
    transform: translateY(36px);
}

[data-animate="scale-up"] {
    transform: scale(0.88) translateY(24px);
}

[data-animate="fade-in"] {
    transform: none;
}

/* Revealed state */
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* -------------------------------------------------
   CONTINUOUS ANIMATIONS
   ------------------------------------------------- */

/* Hero badge shimmer */
@keyframes badge-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.p1m-hero__badge {
    background-image: linear-gradient(
        90deg,
        rgba(173, 235, 231, 0) 0%,
        rgba(173, 235, 231, 0.12) 50%,
        rgba(173, 235, 231, 0) 100%
    );
    background-size: 200% 100%;
    animation: badge-shimmer 4s ease-in-out infinite;
}

/* Ripple dot pulse ring */
@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.35); opacity: 0; }
}

.p1m-ripple__dot::after {
    animation: dot-pulse 3s ease-in-out infinite;
}

/* Section icon float */
@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.p1m-section-icon {
    animation: icon-float 3.5s ease-in-out infinite;
}

/* Ripple trail line draw animation */
.p1m-ripple__flow::after {
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.p1m-ripple__flow--drawn::after {
    transform: scaleX(1);
}

/* Vertical trail line draw (mobile) */
.p1m-ripple__step::before {
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.p1m-ripple__step.is-visible::before {
    transform: scaleY(1);
}

/* Glow orb intensify on card hover */
.p1m-track-card__glow {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.p1m-track-card:hover .p1m-track-card__glow {
    transform: scale(1.15);
}

/* Vision stat number glow on reveal */
@keyframes number-glow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 30px rgba(173, 235, 231, 0.3); }
    100% { text-shadow: none; }
}

.p1m-vision__stat.is-visible .p1m-vision__number {
    animation: number-glow 2s ease-in-out 0.5s;
}

/* Proven stat accent line shimmer */
@keyframes accent-shimmer {
    0% { opacity: 0.2; background-position: -100% center; }
    50% { opacity: 0.6; }
    100% { opacity: 0.2; background-position: 200% center; }
}

.p1m-proven__stat.is-visible::before {
    background-size: 200% 100%;
    animation: accent-shimmer 3s ease-in-out 0.3s;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    [data-animate],
    .p1m-hero__badge,
    .p1m-ripple__dot::after,
    .p1m-section-icon,
    .p1m-ripple__flow::after,
    .p1m-ripple__step::before {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Page Background */
body.page-template-page-project1m,
body.page-template-page-project1m main,
body.page-template-page-project1m .project1m-page,
.page-template-page-project1m {
    background-color: #1D1D1D !important;
}

a{
  color: #ffffff;
  text-decoration: none;
}

.project1m-page {
    color: #ffffff;
    font-family: "Eudoxus Sans", sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.project1m-ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.project1m-container {
    position: relative;
    z-index: 1;
}

.project1m-page .cta-banner {
    display: none !important;
}

/* -------------------------------------------------
   SHARED: Section Headers (matches about.css)
   ------------------------------------------------- */
.p1m-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.p1m-section-icon {
    width: auto;
    height: auto;
}

.p1m-section-title {
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 115%;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    text-align: center;
}

/* Shared body text */
.p1m-body-text {
    font-family: "Rethink Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 175%;
    color: #C3C3C3;
    margin: 0 0 24px;
}

.p1m-body-text:last-child {
    margin-bottom: 0;
}

.p1m-body-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

/* Buttons (shared) */
.p1m-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.01em;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
}

.p1m-btn:hover {
    opacity: 0.9;
}

.p1m-btn--primary {
    background-color: #ADEBE7;
    color: #1D1D1D;
    border: none;
    font-weight: 600;
}

.p1m-btn--secondary {
    background-color: #212121;
    color: #fff;
    border: 1px solid rgba(255, 241, 235, 0.2);
}

/* -------------------------------------------------
   HERO
   ------------------------------------------------- */
.p1m-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 16px 85px;
    position: relative;
    z-index: 2;
}

.p1m-hero__label {
    font-family: "Rethink Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ADEBE7;
    margin: 0;
    opacity: 0.7;
}

.p1m-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.p1m-hero__title {
    font-family: "Unbounded", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 110%;
    color: #FEF9F6;
    text-align: center;
    margin: 0;
}

.p1m-hero__title-line {
    display: inline;
}

.p1m-hero__title-line--accent {
    color: #ADEBE7;
}

.p1m-hero__subtitle {
    font-family: "Rethink Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: -0.01em;
    color: #C3C3C3;
    opacity: 0.6;
    text-align: center;
    margin: 0;
    max-width: 600px;
}

.p1m-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    margin-bottom: 24px;
}

.p1m-hero__badge {
    display: inline-block;
    font-family: "Rethink Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #ADEBE7;
    border: 1px solid rgba(173, 235, 231, 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    opacity: 0.8;
}

/* -------------------------------------------------
   ABOUT
   ------------------------------------------------- */
.p1m-about {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-about__content {
    max-width: 720px;
    text-align: center;
}

.p1m-about__heading {
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0 0 16px;
    text-align: center;
}

.p1m-about__content .p1m-body-text {
    text-align: center;
}

/* -------------------------------------------------
   THE VISION
   ------------------------------------------------- */
.p1m-vision {
    background-color: #212121;
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-vision__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 960px;
    margin-bottom: 40px;
}

.p1m-vision__stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    background: rgba(29, 29, 29, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

/* Top accent line */
.p1m-vision__stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ADEBE7, transparent);
    opacity: 0.4;
}

.p1m-vision__number {
    font-family: "Unbounded", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: #ADEBE7;
    margin-bottom: 12px;
}

.p1m-vision__label {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 165%;
    color: #C3C3C3;
    opacity: 0.8;
    max-width: 260px;
}

/* -------------------------------------------------
   THE RIPPLE EFFECT (step flow with trailing line)
   ------------------------------------------------- */
.p1m-ripple {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-ripple__heading {
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 135%;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 12px;
}

.p1m-body-text--centered {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Flow container — vertical on mobile */
.p1m-ripple__flow {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1060px;
}

/* Each step: dot on the left rail, card to the right */
.p1m-ripple__step {
    position: relative;
    padding-left: 68px;
    padding-bottom: 40px;
}

.p1m-ripple__step:last-child {
    padding-bottom: 0;
}

/* Vertical trailing line from each dot to the next */
.p1m-ripple__step::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: -4px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(173, 235, 231, 0.35), rgba(173, 235, 231, 0.06));
}

.p1m-ripple__step:last-child::before {
    display: none;
}

/* Numbered dot on the rail */
.p1m-ripple__dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ADEBE7 0%, #7DD3CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1D1D1D;
    z-index: 2;
    box-shadow:
        0 0 0 6px rgba(173, 235, 231, 0.08),
        0 0 24px rgba(173, 235, 231, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Pulse ring around dots */
.p1m-ripple__dot::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(173, 235, 231, 0.1);
}

/* Step card */
.p1m-ripple__card {
    background: rgba(33, 33, 33, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.p1m-ripple__card:hover {
    transform: translateY(-3px);
    border-color: rgba(173, 235, 231, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 32px rgba(173, 235, 231, 0.04);
}

.p1m-ripple__card-tag {
    display: inline-block;
    font-family: "Rethink Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ADEBE7;
    background: rgba(173, 235, 231, 0.08);
    border: 1px solid rgba(173, 235, 231, 0.12);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.p1m-ripple__card-title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 135%;
    color: #FFFFFF;
    margin: 0 0 8px;
}

.p1m-ripple__card-desc {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 175%;
    color: #C3C3C3;
    opacity: 0.8;
    margin: 0;
}

/* -------------------------------------------------
   MID-PAGE CTA
   ------------------------------------------------- */
.p1m-midcta {
    padding: 60px 16px;
    display: flex;
    justify-content: center;
}

.p1m-midcta__inner {
    background-image: url('../images/gradient-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 56px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

.p1m-midcta__title {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.p1m-midcta__desc {
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 175%;
    color: #C3C3C3;
    opacity: 0.8;
    max-width: 520px;
    margin: 0 0 28px;
}

.p1m-midcta__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

/* -------------------------------------------------
   THREE TRACKS
   ------------------------------------------------- */
.p1m-tracks-section {
    background-color: #212121;
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-tracks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1060px;
}

/* --- Track Card: glassmorphic surface with glow orb --- */
.p1m-track-card {
    position: relative;
    background: rgba(29, 29, 29, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    z-index: 0;
}

.p1m-track-card:hover {
    transform: translateY(-6px);
    border-color: rgba(173, 235, 231, 0.2);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(173, 235, 231, 0.06);
}

/* Ambient glow orb behind each card */
.p1m-track-card__glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: -1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.p1m-track-card:hover .p1m-track-card__glow {
    opacity: 0.55;
}

/* Per-card glow colours & positions */
.p1m-track-card--educator .p1m-track-card__glow {
    background: #ADEBE7;
    top: -60px;
    right: -40px;
}

.p1m-track-card--student .p1m-track-card__glow {
    background: #ADEBE7;
    top: -40px;
    left: -40px;
}

.p1m-track-card--school .p1m-track-card__glow {
    background: #ED7221;
    bottom: -40px;
    right: -40px;
}

/* Top accent line */
.p1m-track-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ADEBE7, transparent);
    opacity: 0.5;
    border-radius: 2px;
}

.p1m-track-card--school::before {
    background: linear-gradient(90deg, transparent, #ED7221, transparent);
}

.p1m-track-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.p1m-track-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(173, 235, 231, 0.08);
    border: 1px solid rgba(173, 235, 231, 0.15);
    border-radius: 16px;
    flex-shrink: 0;
    position: relative;
}

/* Icon ring glow */
.p1m-track-card__icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    border: 1px solid rgba(173, 235, 231, 0.06);
}

.p1m-track-card--school .p1m-track-card__icon {
    background: rgba(237, 114, 33, 0.08);
    border-color: rgba(237, 114, 33, 0.15);
}

.p1m-track-card--school .p1m-track-card__icon::after {
    border-color: rgba(237, 114, 33, 0.06);
}

.p1m-track-card__label {
    font-family: "Rethink Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ADEBE7;
    margin: 0;
}

.p1m-track-card--school .p1m-track-card__label {
    color: #ED7221;
}

.p1m-track-card__title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 135%;
    color: #FFFFFF;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.p1m-track-card__desc {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 175%;
    color: #C3C3C3;
    opacity: 0.8;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

/* Benefits list section */
.p1m-track-card__benefits {
    margin-bottom: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    position: relative;
    z-index: 1;
}

.p1m-track-card__benefits-heading {
    font-family: "Rethink Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 14px;
}

.p1m-track-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p1m-track-card__list li {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 155%;
    color: #C3C3C3;
    padding-left: 22px;
    position: relative;
}

.p1m-track-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(173, 235, 231, 0.2);
    border: 1.5px solid #ADEBE7;
}

.p1m-track-card--school .p1m-track-card__list li::before {
    background: rgba(237, 114, 33, 0.15);
    border-color: #ED7221;
}

/* CTA button — glassmorphic footer strip */
.p1m-track-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1D1D1D;
    background: #ADEBE7;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.p1m-track-card--school .p1m-track-card__cta {
    background: #ED7221;
    color: #FFFFFF;
}

.p1m-track-card__cta:hover {
    box-shadow: 0 6px 24px rgba(173, 235, 231, 0.25);
    transform: translateY(-1px);
}

.p1m-track-card--school .p1m-track-card__cta:hover {
    box-shadow: 0 6px 24px rgba(237, 114, 33, 0.25);
}

.p1m-track-card__cta span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.p1m-track-card__cta:hover span {
    transform: translateX(4px);
}

/* -------------------------------------------------
   MORE THAN JUST TRAINING
   ------------------------------------------------- */
.p1m-movement {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-movement__heading {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 40px;
    max-width: 600px;
}

.p1m-movement__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 900px;
}

.p1m-movement__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    background: rgba(33, 33, 33, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.p1m-movement__item:hover {
    transform: translateY(-3px);
    border-color: rgba(173, 235, 231, 0.12);
    background: rgba(33, 33, 33, 0.7);
}

/* Left accent stripe */
.p1m-movement__item::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ADEBE7, rgba(173, 235, 231, 0.1));
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.p1m-movement__item:hover::before {
    opacity: 1;
}

.p1m-movement__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(173, 235, 231, 0.06);
    border: 1px solid rgba(173, 235, 231, 0.1);
    border-radius: 14px;
    flex-shrink: 0;
    position: relative;
}

/* Outer ring */
.p1m-movement__icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    border: 1px solid rgba(173, 235, 231, 0.04);
}

.p1m-movement__text {
    flex: 1;
    min-width: 0;
}

.p1m-movement__title {
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0 0 6px;
}

.p1m-movement__desc {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
    color: #C3C3C3;
    opacity: 0.7;
    margin: 0;
}

/* -------------------------------------------------
   SUPPORT THE MISSION
   ------------------------------------------------- */
.p1m-support {
    background-color: #212121;
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-support__heading {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 40px;
    max-width: 600px;
}

.p1m-support__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 32px;
}

.p1m-support__card {
    position: relative;
    background: rgba(29, 29, 29, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px 28px;
    text-align: left;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.p1m-support__card:hover {
    transform: translateY(-4px);
    border-color: rgba(173, 235, 231, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(173, 235, 231, 0.04);
}

/* Large faded watermark number */
.p1m-support__card-watermark {
    position: absolute;
    top: -8px;
    right: 12px;
    font-family: "Unbounded", sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.p1m-support__card-tag {
    display: inline-block;
    font-family: "Rethink Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ADEBE7;
    background: rgba(173, 235, 231, 0.08);
    border: 1px solid rgba(173, 235, 231, 0.12);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.p1m-support__card-title {
    font-family: "Unbounded", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 135%;
    color: #FFFFFF;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

.p1m-support__card-desc {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 175%;
    color: #C3C3C3;
    opacity: 0.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.p1m-support__note {
    font-family: "Rethink Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0 0 20px;
}

.p1m-support__btn {
    width: auto;
    max-width: none;
}

/* -------------------------------------------------
   A PROVEN MODEL (social proof stats)
   ------------------------------------------------- */
.p1m-proven {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-proven__heading {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 12px;
    max-width: 600px;
}

.p1m-proven__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 900px;
}

.p1m-proven__stat {
    position: relative;
    background: rgba(29, 29, 29, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    overflow: hidden;
}

.p1m-proven__stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ADEBE7, transparent);
    opacity: 0.4;
}

.p1m-proven__stat-number {
    font-family: "Unbounded", sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #ADEBE7;
    line-height: 1;
}

.p1m-proven__stat-label {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    color: #C3C3C3;
    opacity: 0.7;
}

.p1m-proven__note {
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 560px;
    margin: 28px 0 0;
    line-height: 165%;
}

/* -------------------------------------------------
   FAQs (uses native <details>)
   ------------------------------------------------- */
.p1m-faq {
    padding: 50px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p1m-faq__list {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.p1m-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p1m-faq__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.p1m-faq__question {
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 150%;
    color: #FFFFFF;
    padding: 20px 32px 20px 0;
    cursor: pointer;
    position: relative;
    list-style: none;
}

/* Remove default marker */
.p1m-faq__question::-webkit-details-marker {
    display: none;
}

.p1m-faq__question::marker {
    display: none;
    content: "";
}

/* Custom chevron */
.p1m-faq__question::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 2px solid #ADEBE7;
    border-bottom: 2px solid #ADEBE7;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.25s ease;
}

.p1m-faq__item[open] .p1m-faq__question::after {
    transform: translateY(-40%) rotate(-135deg);
}

.p1m-faq__answer {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 175%;
    color: #C3C3C3;
    opacity: 0.85;
    margin: 0;
    padding: 0 0 20px;
}

.p1m-faq__answer a {
    color: #ADEBE7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.p1m-faq__answer a:hover {
    opacity: 0.8;
}

/* -------------------------------------------------
   FOOTER CTA (reuses about contact-questions-section)
   ------------------------------------------------- */
.p1m-cta.contact-questions-section {
    padding: 100px 15px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.p1m-cta .contact-questions-container {
    background-image: url('../images/gradient-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #212121;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 80px 15px;
    box-sizing: border-box;
}

.p1m-cta .contact-questions-title {
    font-family: "Unbounded", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0 0 28px;
    max-width: 560px;
}

.p1m-cta .mini-wave-orange {
    width: auto;
    height: auto;
    margin-bottom: 16px;
}

.p1m-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    margin-bottom: 32px;
}

.p1m-cta .btn-contact-questions {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ED7221;
    border-radius: 12px;
    padding: 14px 24px;
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 115%;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: 100%;
    max-width: 280px;
    text-align: center;
    box-sizing: border-box;
}

.p1m-cta .btn-contact-questions--outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.p1m-cta .btn-contact-questions:hover {
    opacity: 0.9;
}

.p1m-cta__contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.p1m-cta__contact-link {
    font-family: "Rethink Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.p1m-cta__contact-link:hover {
    color: #ADEBE7;
}

.p1m-cta__contact-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 13px;
}

/* -------------------------------------------------
   ENROLLMENT MODAL
   ------------------------------------------------- */
.p1m-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.p1m-modal--open {
    display: flex;
}

.p1m-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.p1m-modal__dialog {
    position: relative;
    background-color: #1D1D1D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.p1m-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.p1m-modal__close:hover {
    color: #ffffff;
}

.p1m-modal__title {
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0 0 6px;
}

.p1m-modal__subtitle {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    color: #C3C3C3;
    opacity: 0.7;
    margin: 0 0 28px;
}

/* Form */
.p1m-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p1m-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.p1m-form__label {
    font-family: "Rethink Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.p1m-form__label span {
    color: #ADEBE7;
}

.p1m-form__label small {
    font-weight: 400;
    opacity: 0.6;
}

.p1m-form__input {
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #262626;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.p1m-form__input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.p1m-form__input:focus {
    border-color: #ADEBE7;
}

.p1m-form__textarea {
    resize: vertical;
    min-height: 80px;
}

.p1m-form__submit {
    font-family: "Rethink Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1D;
    background-color: #ADEBE7;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    cursor: pointer;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    margin-top: 4px;
}

.p1m-form__submit:hover {
    opacity: 0.9;
    box-shadow: 0 4px 16px rgba(173, 235, 231, 0.2);
}

.p1m-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.p1m-form__status {
    font-family: "Rethink Sans", sans-serif;
    font-size: 14px;
    text-align: center;
    margin: 0;
    min-height: 20px;
}

.p1m-form__status--success {
    color: #ADEBE7;
}

.p1m-form__status--error {
    color: #ED7221;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* 480px+ */
@media (min-width: 480px) {
    .p1m-hero__title {
        font-size: 2.75rem;
    }

    .p1m-movement__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p1m-support__cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .p1m-proven__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .p1m-vision__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 768px+ (Tablet) */
@media (min-width: 768px) {
    .p1m-hero {
        padding: 80px 72px 100px;
    }

    .p1m-hero__title {
        font-size: 42px;
    }


    .p1m-hero__title-line {
        display: block;
    }

    .p1m-hero__buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .p1m-btn {
        width: auto;
        max-width: none;
        padding: 16px 32px;
    }

    .p1m-about {
        padding: 80px 72px;
    }

    .p1m-about__heading {
        font-size: 28px;
    }

    .p1m-vision {
        padding: 80px 72px;
    }

    .p1m-vision__grid {
        gap: 20px;
    }

    .p1m-vision__stat {
        padding: 36px 24px;
    }

    .p1m-vision__number {
        font-size: 56px;
    }

    .p1m-ripple {
        padding: 80px 72px;
    }

    .p1m-ripple__heading {
        font-size: 28px;
    }

    /* Switch to horizontal flow on tablet+ */
    .p1m-ripple__flow {
        flex-direction: row;
        align-items: flex-start;
    }

    /* Horizontal trailing line spanning all dots */
    .p1m-ripple__flow::after {
        content: "";
        position: absolute;
        top: 23px;
        left: calc(100% / 6);
        right: calc(100% / 6);
        height: 2px;
        background: linear-gradient(to right, rgba(173, 235, 231, 0.4), rgba(173, 235, 231, 0.15), rgba(173, 235, 231, 0.4));
        z-index: 1;
    }

    .p1m-ripple__step {
        flex: 1;
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 72px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Hide vertical line segments */
    .p1m-ripple__step::before {
        display: none;
    }

    /* Center dots on horizontal rail */
    .p1m-ripple__dot {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }

    .p1m-ripple__card {
        text-align: center;
    }

    .p1m-midcta {
        padding: 80px 72px;
    }

    .p1m-midcta__inner {
        padding: 64px 40px;
    }

    .p1m-midcta__title {
        font-size: 26px;
    }

    .p1m-midcta__buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .p1m-proven {
        padding: 80px 72px;
    }

    .p1m-proven__heading {
        font-size: 26px;
    }

    .p1m-proven__stats {
        gap: 20px;
    }

    .p1m-tracks-section {
        padding: 80px 72px;
    }

    .p1m-tracks {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .p1m-track-card {
        padding: 36px 28px 28px;
    }

    .p1m-track-card__glow {
        width: 220px;
        height: 220px;
    }

    .p1m-movement {
        padding: 80px 72px;
    }

    .p1m-movement__heading {
        font-size: 26px;
    }

    .p1m-support {
        padding: 80px 72px;
    }

    .p1m-support__heading {
        font-size: 26px;
    }

    .p1m-support__cards {
        gap: 20px;
    }

    .p1m-support__card {
        padding: 36px 28px;
    }

    .p1m-faq {
        padding: 80px 72px;
    }

    .p1m-faq__question {
        font-size: 16px;
    }

    .p1m-cta.contact-questions-section {
        padding-left: 72px;
        padding-right: 72px;
    }

    .p1m-cta .contact-questions-title {
        font-size: 28px;
    }

    .p1m-cta__buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .p1m-cta .btn-contact-questions {
        width: auto;
        max-width: none;
    }

    .p1m-section-title {
        font-size: 23px;
    }

    .project1m-ripples {
        height: 500px;
        width: 100%;
    }
}

/* 1024px+ (Desktop) */
@media (min-width: 1024px) {
    .p1m-hero {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }


    .p1m-about {
        margin-bottom: 7rem;
    }

    .p1m-hero__title {
        font-size: 64px;
        max-width: 900px;
    }

    .p1m-hero__subtitle {
        max-width: 680px;
    }

    .p1m-about__heading {
        font-size: 32px;
    }

    .p1m-body-text {
        font-size: 17px;
    }

    .p1m-vision__number {
        font-size: 64px;
    }

    .p1m-vision__label {
        font-size: 15px;
    }

    .p1m-track-card {
        padding: 40px 32px 32px;
    }

    .p1m-track-card__glow {
        width: 260px;
        height: 260px;
        filter: blur(100px);
    }

    .p1m-track-card__title {
        font-size: 20px;
    }

    .p1m-track-card__desc,
    .p1m-track-card__list li {
        font-size: 15px;
    }

    .p1m-track-card__cta {
        padding: 16px 24px;
        font-size: 15px;
    }

    .p1m-movement__title {
        font-size: 16px;
    }

    .p1m-movement__desc {
        font-size: 15px;
    }

    .p1m-support__card-watermark {
        font-size: 120px;
    }

    .p1m-support__card-title {
        font-size: 19px;
    }

    .p1m-support__card-desc {
        font-size: 15px;
    }

    .p1m-faq__answer {
        font-size: 15px;
    }

    .p1m-ripple__heading {
        font-size: 32px;
    }

    .p1m-ripple__step {
        padding-top: 80px;
    }

    .p1m-ripple__dot {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .p1m-ripple__flow::after {
        top: 25px;
    }

    .p1m-ripple__card {
        padding: 28px;
    }

    .p1m-ripple__card-title {
        font-size: 20px;
    }

    .p1m-ripple__card-desc {
        font-size: 15px;
    }

    .p1m-midcta__title {
        font-size: 28px;
    }

    .p1m-midcta__desc {
        font-size: 16px;
    }

    .p1m-proven__heading {
        font-size: 28px;
    }

    .p1m-proven__stat-number {
        font-size: 42px;
    }

    .p1m-proven__stat-label {
        font-size: 15px;
    }

    .p1m-proven__note {
        font-size: 16px;
    }
}

/* 1200px+ */
@media (min-width: 1200px) {
    .p1m-hero__title {
        font-size: 72px;
    }

    .p1m-tracks {
        max-width: 1100px;
    }

    .p1m-movement__grid,
    .p1m-support__cards {
        max-width: 1000px;
    }

    .p1m-ripple__flow {
        max-width: 1100px;
    }

    .p1m-midcta__inner {
        max-width: 1000px;
    }

    .p1m-proven__stats {
        max-width: 1000px;
    }

    .p1m-faq__list {
        max-width: 800px;
    }
}

/* -------------------------------------------------
   TEXT LINK CTA (Tertiary)
   ------------------------------------------------- */
.p1m-hero__text-link {
    color: #ADEBE7;
    text-decoration: underline;
    font-size: 14px;
    margin-top: 12px;
    display: inline-block;
    font-family: "Eudoxus Sans", sans-serif;
    transition: opacity 0.2s ease;
}

.p1m-hero__text-link:hover {
    opacity: 0.8;
}