/* /Components/RoadmapStep.razor.rz.scp.css */
.step[b-t22dofqsx1] {
    display: flex;
    flex-direction: column; /* Ensure text stacks properly */
    justify-content: space-between; /* Evenly distribute content */
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
}

    .step:hover[b-t22dofqsx1] {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .step img[b-t22dofqsx1] {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

.step-content[b-t22dofqsx1] {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex-grow: 1; /* Ensures all step contents stretch to fill the card */
}

    .step-content h3[b-t22dofqsx1] {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .step-content p[b-t22dofqsx1] {
        font-size: 0.9rem;
        color: #555;
        flex-grow: 1; /* Makes sure all steps have equal text space */
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.site-shell[b-gs0bi0ihb8] {
    min-height: 100vh;
    background: var(--surface);
}

main[b-gs0bi0ihb8] {
    min-height: 100vh;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.site-header[b-lollnzgh8k] {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 4.75rem;
    padding: 0.8rem clamp(1rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(15, 41, 54, 0.12);
    background: rgba(250, 252, 249, 0.92);
    backdrop-filter: blur(18px);
}

.brand[b-lollnzgh8k] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
    text-decoration: none;
}

.brand img[b-lollnzgh8k] {
    width: 2.15rem;
    height: 2.15rem;
    object-fit: contain;
}

.brand span[b-lollnzgh8k] {
    display: grid;
    line-height: 1.05;
}

.brand strong[b-lollnzgh8k] {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0;
}

.brand small[b-lollnzgh8k] {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.primary-nav[b-lollnzgh8k] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link[b-lollnzgh8k] {
    border-radius: 999px;
    color: var(--ink);
    font-weight: 700;
    padding: 0.55rem 0.85rem;
    text-decoration: none;
}

.nav-link:hover[b-lollnzgh8k],
.nav-link.active[b-lollnzgh8k] {
    background: rgba(10, 104, 116, 0.1);
    color: var(--blue-deep);
}

.contact-link[b-lollnzgh8k] {
    background: var(--ink);
    color: var(--foam);
}

.contact-link:hover[b-lollnzgh8k],
.contact-link.active[b-lollnzgh8k] {
    background: var(--blue-deep);
    color: white;
}

.nav-toggle[b-lollnzgh8k] {
    display: none;
    border: 1px solid rgba(15, 41, 54, 0.14);
    border-radius: 8px;
    background: white;
    padding: 0.55rem;
}

.nav-toggle span[b-lollnzgh8k] {
    display: block;
    width: 1.25rem;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
}

@media (max-width: 760px) {
    .site-header[b-lollnzgh8k] {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-toggle[b-lollnzgh8k] {
        display: block;
    }

    .primary-nav[b-lollnzgh8k] {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 0.5rem;
    }

    .primary-nav.collapsed[b-lollnzgh8k] {
        display: none;
    }

    .nav-link[b-lollnzgh8k] {
        border-radius: 8px;
    }
}
/* /Pages/About.razor.rz.scp.css */
.about-hero[b-qy4ewnamg5] {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(120deg, rgba(3, 20, 29, 0.88), rgba(10, 104, 116, 0.68)),
        url('/images/dive1.jpg') center / cover;
    color: white;
}

.about-hero h1[b-qy4ewnamg5] {
    max-width: 14ch;
    color: white;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.94;
    margin: 0;
}

.about-hero p:not(.eyebrow)[b-qy4ewnamg5] {
    max-width: 48rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.credential-grid[b-qy4ewnamg5] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
    background: var(--foam);
}

.credential-grid article[b-qy4ewnamg5] {
    background: white;
    border-radius: 8px;
    padding: 1.35rem;
    box-shadow: var(--shadow-soft);
}

.credential-grid span[b-qy4ewnamg5] {
    color: var(--blue-mid);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

.credential-grid h2[b-qy4ewnamg5] {
    margin: 0.45rem 0;
}

.credential-grid p[b-qy4ewnamg5],
.copy-stack p[b-qy4ewnamg5],
.ratings-copy p[b-qy4ewnamg5] {
    color: var(--muted);
    line-height: 1.75;
}

.about-section[b-qy4ewnamg5],
.ratings-section[b-qy4ewnamg5] {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.about-section h2[b-qy4ewnamg5],
.ratings-section h2[b-qy4ewnamg5] {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.98;
}

.ratings-section[b-qy4ewnamg5] {
    background: white;
}

.ratings-list[b-qy4ewnamg5] {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ratings-list li[b-qy4ewnamg5] {
    border-left: 4px solid var(--brass);
    border-radius: 8px;
    background: var(--surface);
    padding: 1rem 1.15rem;
    color: var(--ink);
    font-weight: 700;
}

@media (max-width: 820px) {
    .credential-grid[b-qy4ewnamg5],
    .about-section[b-qy4ewnamg5],
    .ratings-section[b-qy4ewnamg5] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Classes.razor.rz.scp.css */
.classes-hero[b-htxtu8jlno] {
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem) 2rem;
    background: var(--surface);
}

.classes-hero h1[b-htxtu8jlno] {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.95;
}

.classes-hero p:not(.eyebrow)[b-htxtu8jlno] {
    max-width: 46rem;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-top: 1rem;
}

.shop-link[b-htxtu8jlno] {
    display: inline-flex;
    margin-top: 1.25rem;
    border: 1px solid rgba(15, 41, 54, 0.18);
    border-radius: 8px;
    color: var(--blue-deep);
    font-weight: 900;
    padding: 0.75rem 1rem;
    text-decoration: none;
}

.shop-link:hover[b-htxtu8jlno] {
    background: var(--foam);
}

.classes-page[b-htxtu8jlno] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    gap: 1rem;
    padding: 2rem clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.class-card[b-htxtu8jlno] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(15, 41, 54, 0.1);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.card-header[b-htxtu8jlno] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    background: var(--ink);
    color: white;
}

.card-header img[b-htxtu8jlno] {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 0.35rem;
}

.card-header h2[b-htxtu8jlno] {
    margin: 0;
    color: white;
    font-size: 1.2rem;
}

.class-card ul[b-htxtu8jlno] {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.class-card li + li[b-htxtu8jlno] {
    border-top: 1px solid rgba(15, 41, 54, 0.08);
}

.class-card a[b-htxtu8jlno] {
    display: block;
    padding: 0.9rem 1.1rem;
    color: var(--blue-deep);
    font-weight: 750;
    text-decoration: none;
}

.class-card a:hover[b-htxtu8jlno] {
    background: rgba(10, 104, 116, 0.08);
}

.loading-state[b-htxtu8jlno] {
    padding: 4rem;
    text-align: center;
    color: var(--muted);
}
/* /Pages/Contact.razor.rz.scp.css */
.contact-page[b-95dbee66g0] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    min-height: calc(100vh - 4.75rem);
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
    background:
        linear-gradient(120deg, rgba(250, 252, 249, 0.94), rgba(238, 246, 243, 0.9)),
        url('/images/dive1.jpg') center / cover;
}

.contact-page h1[b-95dbee66g0] {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.94;
}

.contact-page p:not(.eyebrow)[b-95dbee66g0] {
    max-width: 42rem;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-top: 1.25rem;
}

.contact-card[b-95dbee66g0] {
    display: grid;
    gap: 1rem;
    margin: 0;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-strong);
}

.contact-card h2[b-95dbee66g0] {
    margin: 0;
    color: white;
}

.contact-card p[b-95dbee66g0] {
    display: grid;
    gap: 0.25rem;
    margin: 0;
}

.contact-card strong[b-95dbee66g0] {
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}

.contact-card a[b-95dbee66g0] {
    color: white;
    font-weight: 800;
}

@media (max-width: 760px) {
    .contact-page[b-95dbee66g0] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.hero-section[b-m7zzs18l8h] {
    position: relative;
    min-height: calc(100vh - 4.75rem);
    display: grid;
    align-items: center;
    padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
    overflow: hidden;
    color: white;
}

.hero-background[b-m7zzs18l8h] {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 20, 29, 0.88), rgba(3, 20, 29, 0.46) 58%, rgba(3, 20, 29, 0.72)),
        url('/images/dive1.jpg') center / cover;
    transform: scale(1.01);
}

.hero-content[b-m7zzs18l8h] {
    position: relative;
    z-index: 1;
    max-width: 52rem;
}

.hero-content h1[b-m7zzs18l8h] {
    max-width: 13ch;
    color: white;
    font-size: clamp(3.2rem, 8vw, 7rem);
    line-height: 0.92;
    margin: 0;
}

.hero-subtitle[b-m7zzs18l8h] {
    max-width: 46rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
    margin: 1.5rem 0 0;
}

.hero-actions[b-m7zzs18l8h] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.credential-panel[b-m7zzs18l8h] {
    position: absolute;
    z-index: 2;
    left: clamp(1rem, 5vw, 5rem);
    right: clamp(1rem, 5vw, 5rem);
    bottom: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
}

.credential-panel span[b-m7zzs18l8h] {
    padding: 1rem;
    color: white;
    font-weight: 800;
    text-align: center;
}

.section-grid[b-m7zzs18l8h] {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-grid h2[b-m7zzs18l8h],
.split-section h2[b-m7zzs18l8h] {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 0.96;
}

.feature-grid[b-m7zzs18l8h] {
    display: grid;
    gap: 1rem;
}

.feature-grid article[b-m7zzs18l8h] {
    border-left: 4px solid var(--brass);
    background: white;
    border-radius: 8px;
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-soft);
}

.feature-grid h3[b-m7zzs18l8h] {
    margin: 0 0 0.45rem;
}

.feature-grid p[b-m7zzs18l8h] {
    margin: 0;
    color: var(--muted);
}

.proof-band[b-m7zzs18l8h] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--ink);
    color: white;
}

.proof-band div[b-m7zzs18l8h] {
    padding: clamp(1.5rem, 4vw, 3rem);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-band strong[b-m7zzs18l8h] {
    display: block;
    color: var(--brass);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1;
}

.proof-band span[b-m7zzs18l8h] {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.split-section[b-m7zzs18l8h] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
    gap: 2rem;
    align-items: stretch;
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.split-section p:not(.eyebrow)[b-m7zzs18l8h] {
    max-width: 48rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.cta-card[b-m7zzs18l8h] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 18rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(145deg, var(--blue-deep), var(--blue-mid));
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-strong);
}

.cta-card span[b-m7zzs18l8h] {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.cta-card strong[b-m7zzs18l8h] {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.05;
}

@media (max-width: 820px) {
    .credential-panel[b-m7zzs18l8h],
    .section-grid[b-m7zzs18l8h],
    .proof-band[b-m7zzs18l8h],
    .split-section[b-m7zzs18l8h] {
        grid-template-columns: 1fr;
    }

    .credential-panel[b-m7zzs18l8h] {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
    }

    .hero-section[b-m7zzs18l8h] {
        min-height: auto;
    }
}
/* /Pages/Roadmap.razor.rz.scp.css */
.roadmap-hero[b-3npv4ducuh] {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 4vw, 3rem);
    background:
        linear-gradient(115deg, rgba(3, 20, 29, 0.9), rgba(6, 70, 83, 0.72)),
        url('/images/dive1.jpg') center / cover;
    color: white;
}

.roadmap-hero h1[b-3npv4ducuh] {
    max-width: 13ch;
    margin: 0;
    color: white;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.94;
}

.roadmap-hero p:not(.eyebrow)[b-3npv4ducuh] {
    max-width: 48rem;
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.14rem;
    line-height: 1.78;
}

.shop-band[b-3npv4ducuh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem clamp(1rem, 5vw, 5rem);
    background: var(--brass);
    color: var(--ink);
}

.shop-band div[b-3npv4ducuh] {
    display: grid;
    gap: 0.2rem;
}

.shop-band span[b-3npv4ducuh],
.lane-header span[b-3npv4ducuh],
.path-start span[b-3npv4ducuh] {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-band strong[b-3npv4ducuh] {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 1.05;
}

.shop-band a[b-3npv4ducuh] {
    flex: 0 0 auto;
    border: 1px solid rgba(15, 41, 54, 0.28);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 900;
    padding: 0.75rem 1rem;
    text-decoration: none;
}

.pathway[b-3npv4ducuh] {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
    background: var(--surface);
}

.path-start[b-3npv4ducuh] {
    position: relative;
    max-width: 38rem;
    margin: 0 auto clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(15, 41, 54, 0.12);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
    text-align: center;
}

.path-start[b-3npv4ducuh]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4rem;
    width: 2px;
    height: 4rem;
    background: linear-gradient(var(--brass), rgba(202, 166, 90, 0));
}

.path-start span[b-3npv4ducuh] {
    color: var(--blue-mid);
}

.path-start h2[b-3npv4ducuh],
.lane h2[b-3npv4ducuh],
.decision-strip h2[b-3npv4ducuh] {
    margin: 0.35rem 0 0;
}

.path-start p[b-3npv4ducuh] {
    margin: 0.75rem auto 0;
    max-width: 30rem;
    color: var(--muted);
    line-height: 1.7;
}

.path-lanes[b-3npv4ducuh] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.lane[b-3npv4ducuh] {
    display: grid;
    border: 1px solid rgba(15, 41, 54, 0.1);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.lane-header[b-3npv4ducuh] {
    min-height: 10.5rem;
    display: grid;
    align-content: end;
    gap: 0.35rem;
    padding: 1.25rem;
    color: white;
}

.lane-header h2[b-3npv4ducuh] {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 0.98;
}

.lane-header span[b-3npv4ducuh] {
    color: rgba(255, 255, 255, 0.78);
}

.recreational .lane-header[b-3npv4ducuh] {
    background: linear-gradient(145deg, var(--blue-deep), var(--blue-mid));
}

.technical .lane-header[b-3npv4ducuh] {
    background: linear-gradient(145deg, #171f25, #475866);
}

.professional .lane-header[b-3npv4ducuh] {
    background: linear-gradient(145deg, #543f13, var(--brass));
}

.lane ol[b-3npv4ducuh] {
    display: grid;
    counter-reset: path-step;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lane li[b-3npv4ducuh] {
    position: relative;
    counter-increment: path-step;
    display: grid;
    gap: 0.35rem;
    padding: 1.15rem 1.25rem 1.15rem 3.2rem;
    border-top: 1px solid rgba(15, 41, 54, 0.08);
}

.lane li[b-3npv4ducuh]::before {
    content: counter(path-step);
    position: absolute;
    left: 1.15rem;
    top: 1.1rem;
    display: grid;
    place-items: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: var(--foam);
    color: var(--blue-deep);
    font-size: 0.78rem;
    font-weight: 900;
}

.lane li.gate[b-3npv4ducuh] {
    background: rgba(202, 166, 90, 0.14);
}

.lane li.gate[b-3npv4ducuh]::before {
    background: var(--brass);
    color: var(--ink);
}

.lane strong[b-3npv4ducuh] {
    color: var(--ink);
}

.lane p[b-3npv4ducuh] {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.decision-strip[b-3npv4ducuh] {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
    background: var(--ink);
    color: white;
}

.decision-strip h2[b-3npv4ducuh] {
    color: white;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.98;
}

.decision-strip p:not(.eyebrow)[b-3npv4ducuh] {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
}

@media (max-width: 980px) {
    .path-lanes[b-3npv4ducuh],
    .decision-strip[b-3npv4ducuh] {
        grid-template-columns: 1fr;
    }

    .path-start[b-3npv4ducuh]::after {
        display: none;
    }

    .shop-band[b-3npv4ducuh] {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-band a[b-3npv4ducuh] {
        text-align: center;
    }
}
