/* ====================================
   WAYPOINT ACADEMY STYLESHEET
   GitHub Pages compatible, no build steps
   ==================================== */

/* ====================================
   RESET & BASE
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #142240;
    --cloud: #F3F6FC;
    --accent: #1C4F9C;
    --accent-light: #E3EDFF;
    --accent-glow: rgba(28, 79, 156, 0.28);
    --accent-deep: #0A2E6D;
    --rules: #E5E7EB;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #111827;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-deep);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   LAYOUT
   ==================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

/* ====================================
   HEADER
   ==================================== */

.site-header {
    z-index: 1000;
    background: transparent;
    background-color: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 32px -20px rgba(10, 46, 109, 0.45);
}

.utility-bar {
    background: transparent;
    background-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(12, 44, 102, 0.08);
}

.utility-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    line-height: 0;
    text-decoration: none;
    isolation: isolate;
}

.logo-mark {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
    transform: scale(1.04);
    filter: drop-shadow(0 10px 18px rgba(12, 44, 102, 0.25));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.utility-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    letter-spacing: 0.01em;
}

.utility-link.highlight {
    color: var(--accent-deep);
    font-weight: 600;
}

.utility-link.active {
    color: var(--accent-deep);
    font-weight: 600;
}

.utility-link:hover,
.utility-link:focus-visible {
    color: var(--accent);
}

.utility-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.utility-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(12, 44, 102, 0.12);
    background: var(--cloud);
    color: var(--accent-deep);
    cursor: pointer;
    transition: var(--transition);
}

.utility-search:hover,
.utility-search:focus-visible {
    background: var(--accent-light);
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: var(--transition);
}

.primary-nav {
    position: relative;
    background: var(--accent-deep);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0;
}

.main-nav {
    width: 100%;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    justify-content: center;
}

.main-nav a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.75rem 0;
    position: relative;
    display: inline-block;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.35rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.mobile-nav-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid rgba(12, 44, 102, 0.08);
    box-shadow: 0 24px 48px -32px rgba(10, 46, 109, 0.35);
}

.mobile-nav-menu.open {
    display: block;
}

.mobile-nav {
    padding: 1.5rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid rgba(12, 44, 102, 0.08);
}

.mobile-nav-links li:last-child a {
    border-bottom: none;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible,
.mobile-nav-links a.active {
    color: var(--accent);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 44, 102, 0.08);
}

.mobile-nav-actions .utility-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(12, 44, 102, 0.12);
    color: var(--accent-deep);
    font-weight: 600;
}

.mobile-nav-actions .utility-link.highlight {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.mobile-nav-actions .utility-link.active {
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-nav-actions .utility-link:hover,
.mobile-nav-actions .utility-link:focus-visible {
    color: var(--accent);
    border-color: var(--accent);
}

@media (min-width: 901px) {
    .mobile-nav-menu {
        display: none !important;
    }
}

.mobile-nav-panel {
    position: fixed;
    inset: 0;
    background: rgba(8, 22, 46, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1600;
    pointer-events: none;
}

.mobile-nav-panel.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    width: min(320px, 100%);
    background: var(--white);
    color: var(--ink);
    padding: 1.75rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: -12px 0 32px rgba(12, 44, 102, 0.25);
    max-height: 100vh;
    overflow-y: auto;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
    color: var(--accent);
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid rgba(12, 44, 102, 0.08);
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible,
.mobile-nav-links a.active {
    color: var(--accent);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-actions .utility-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(12, 44, 102, 0.12);
    color: var(--accent-deep);
    font-weight: 600;
}

.mobile-nav-actions .utility-link.highlight {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.mobile-nav-actions .utility-link.active {
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-nav-actions .utility-link:hover,
.mobile-nav-actions .utility-link:focus-visible {
    color: var(--accent);
    border-color: var(--accent);
}

body.mobile-nav-open {
    overflow: hidden;
}

.header-search-panel {
    display: none;
    background: rgba(227, 237, 255, 0.65);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(12, 44, 102, 0.08);
}

.header-search-panel.active {
    display: block;
}

.header-search-panel .container {
    padding: 1.25rem 1.5rem;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(12, 44, 102, 0.2);
    background: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(28, 79, 156, 0.18);
    outline: none;
}

.search-submit {
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
}

.search-close {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(-50%);
}

.search-close:hover,
.search-close:focus-visible {
    color: var(--accent-deep);
}

/* ====================================
   BUTTONS
   ==================================== */


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background-size: 100% auto;
    color: var(--accent-deep);
}

.btn::after {
    content: none;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent-deep), var(--accent), #7FB6FF);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 30px -18px rgba(20, 66, 138, 0.75);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-position: center;
    box-shadow: 0 18px 40px -16px rgba(20, 66, 138, 0.85);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-deep);
    border-color: rgba(12, 44, 102, 0.22);
    box-shadow: 0 10px 26px -20px rgba(12, 44, 102, 0.38);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 18px 36px -16px rgba(12, 44, 102, 0.52);
}

.btn-text {
    background: transparent;
    color: var(--accent-deep);
    border: 1px solid rgba(12, 44, 102, 0.2);
    padding: 0.625rem 0.75rem;
}

.btn-text:hover,
.btn-text:focus-visible {
    color: var(--white);
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    box-shadow: 0 16px 34px -18px rgba(12, 44, 102, 0.4);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* ====================================
   HERO
   ==================================== */

.hero {
    padding: 6rem 0;
    background:
        linear-gradient(160deg, rgba(143, 182, 255, 0.22) 0%, rgba(223, 233, 255, 0.72) 55%, rgba(255, 255, 255, 0.95) 100%),
        url('../img/icthys.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    z-index: 0;
    color: var(--ink);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(12, 33, 70, 0.32) 0%, rgba(12, 33, 70, 0.16) 45%, rgba(255, 255, 255, 0.45) 100%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
}

.hero-badge {
    flex-shrink: 0;
    padding: 1.25rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 28px 70px -40px rgba(6, 27, 64, 0.55);
}

.hero-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    cursor: default;
}

.hero-logo-wrap::before {
    content: "";
    position: absolute;
    inset: -1.5%;
    border-radius: 42%;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.12) 34%,
            rgba(255, 255, 255, 0.03) 54%,
            rgba(255, 255, 255, 0) 74%);
    filter: blur(3px);
    z-index: -1;
    pointer-events: none;
}

.hero-logo-wrap::after {
    content: "";
    position: absolute;
    inset: -14%;
    border-radius: 45%;
    background: radial-gradient(circle at center,
            rgba(76, 137, 214, 0.28) 0%,
            rgba(76, 137, 214, 0.16) 40%,
            rgba(76, 137, 214, 0) 78%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -2;
    pointer-events: none;
}

.hero-logo-wrap:hover::after,
.hero-logo-wrap:focus-visible::after {
    opacity: 1;
}

.hero-logo {
    width: 520px;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
    background: transparent;
    transition: none;
}

.hero-content {
    max-width: 520px;
    margin-left: auto;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--accent);
    text-shadow:
        0 10px 35px rgba(10, 46, 109, 0.28),
        0 0 12px rgba(255, 255, 255, 0.68),
        0 0 34px rgba(255, 255, 255, 0.9);
}

.hero-tagline {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    font-style: italic;
    color: var(--accent-deep);
    letter-spacing: 0.06em;
    text-transform: none;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
}

.hero-subtext {
    font-size: 1.35rem;
    color: #000;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.hero-support {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-actions .btn {
    isolation: isolate;
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-actions .btn:hover,
.hero-actions .btn:focus-visible {
    transform: translate3d(0, -4px, 0) scale(1.035);
}

.hero-actions .btn::before {
    content: "";
    position: absolute;
    inset: -140% 45% auto -45%;
    width: 165%;
    height: 165%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.25) 45%, transparent 70%);
    opacity: 0;
    transform: translate3d(-35%, -15%, 0) scale(0.85);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-actions .btn:hover::before,
.hero-actions .btn:focus-visible::before {
    opacity: 1;
    transform: translate3d(5%, -10%, 0) scale(1);
}

.hero-actions .btn-primary {
    background: linear-gradient(130deg, #4d8dff 0%, #1c4f9c 55%, #0a2e6d 100%);
    color: var(--white);
    border-color: rgba(12, 44, 102, 0.35);
    box-shadow: 0 14px 38px -16px rgba(16, 54, 112, 0.65);
    z-index: 1;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus-visible {
    background-position: right center;
    box-shadow: 0 18px 46px -18px rgba(16, 54, 112, 0.78);
    color: var(--white);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-deep);
    border-color: rgba(12, 44, 102, 0.28);
    box-shadow: 0 12px 30px -22px rgba(12, 44, 102, 0.45);
    z-index: 1;
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(221, 231, 255, 0.94) 40%, rgba(175, 205, 255, 0.9) 100%);
    color: var(--accent-deep);
    border-color: rgba(12, 44, 102, 0.35);
}

/* ====================================
   PAGE HERO
   ==================================== */

.page-hero {
    padding: 4rem 0 3rem;
    background: radial-gradient(circle at top, rgba(143, 182, 255, 0.2), transparent 55%), var(--cloud);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    z-index: 0;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 182, 255, 0.25), transparent 65%);
    filter: blur(0px);
    animation: orbit 14s linear infinite;
    opacity: 0.8;
    z-index: -1;
}

.page-hero::before {
    top: -120px;
    left: -120px;
}

.page-hero::after {
    bottom: -140px;
    right: -120px;
    animation-direction: reverse;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ====================================
   FEATURES
   ==================================== */

.features {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 50%;
    color: var(--accent);
}

.feature-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ====================================
   HOW IT WORKS MINI
   ==================================== */

.how-it-works-mini {
    background: var(--cloud);
}

.how-it-works-mini h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gray-400);
}

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

/* ====================================
   PROGRAMS PREVIEW
   ==================================== */

.programs-preview {
    background: var(--white);
}

.programs-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--rules);
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
}

.card-hover:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.cert-details {
    margin-top: 0.75rem;
}

.cert-details summary {
    cursor: pointer;
}

.cert-outline {
    list-style: none;
    margin: 0.75rem 0 0.5rem;
    padding: 0;
}

.cert-outline li {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--rules);
}

.cert-outline li:last-child {
    border-bottom: 0;
}

.cert-total {
    margin-top: 0.5rem;
    color: var(--gray-700);
}

.courses-section .container > h2 {
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
    line-height: 1.25;
}

.courses-section .container > h2:first-of-type {
    margin-top: 0;
}

.courses-section .course-list + h2 {
    margin-top: 3.5rem;
}

/* ====================================
   SECURITY CALLOUT
   ==================================== */

.security-callout {
    background: var(--accent-light);
    padding: 3rem 0;
}

.callout-box {
    background: var(--white);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.callout-box h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.callout-box p {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* ====================================
   WHO WE SERVE
   ==================================== */

.who-we-serve {
    background: var(--white);
}

.who-we-serve h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.large-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.large-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--rules);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.large-list li:last-child {
    border-bottom: none;
}

/* ====================================
   KPI BAND
   ==================================== */

.kpi-band {
    background: var(--ink);
    color: var(--white);
    padding: 3rem 0;
}

.kpi-band h3 {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.kpi-item {
    padding: 1rem;
}

.kpi-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 8px 24px rgba(10, 46, 109, 0.35);
    margin-bottom: 0.5rem;
}

.kpi-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ====================================
   DONOR PITCH
   ==================================== */

.donor-pitch {
    background: var(--cloud);
    padding: 4rem 0;
}

.pitch-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pitch-content h2 {
    margin-bottom: 1.5rem;
}

.pitch-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.pitch-stat {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.125rem;
    line-height: 1.5;
}

.pitch-stat strong {
    color: var(--accent);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.legal-statement {
    background: var(--accent-light);
    padding: 2.75rem 0;
}

.legal-statement p {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    text-align: center;
}

/* ====================================
   PROGRAMS PAGE
   ==================================== */

.programs-section,
.tracks-section {
    background: var(--white);
}

.section-intro {
    max-width: 800px;
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0 auto 3rem;
    text-align: center;
}

.program-grid,
.track-grid {
    display: grid;
    gap: 2rem;
}

.program-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(230, 244, 254, 0.6));
    padding: 2.75rem;
    border-radius: 18px;
    border: 1px solid rgba(45, 155, 240, 0.18);
    box-shadow: 0 25px 45px -35px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 0;
}

.program-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(143, 182, 255, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.program-card:hover,
.program-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px -40px rgba(18, 118, 194, 0.65);
}

.program-card:hover::before,
.program-card:focus-within::before {
    opacity: 1;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-code {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 10px 25px -18px rgba(18, 118, 194, 0.8);
}

.program-card h2 {
    margin-bottom: 0;
}

.program-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.program-card h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
}

.program-card ul {
    list-style: none;
    margin-left: 0;
}

.program-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.program-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.track-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.track-card {
    background: var(--white);
    border: 2px solid var(--rules);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.track-featured {
    border-color: var(--accent);
    background: var(--accent-light);
}

.track-card h3 {
    margin-bottom: 1rem;
}

.track-features {
    list-style: none;
    margin-left: 0;
}

.track-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--rules);
}

.track-features li:last-child {
    border-bottom: none;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* ====================================
   COURSES PAGE
   ==================================== */

.courses-section {
    background: var(--white);
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.course-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(230, 244, 254, 0.55));
    padding: 2.25rem;
    border-radius: 18px;
    border: 1px solid rgba(45, 155, 240, 0.2);
    box-shadow: 0 20px 40px -35px rgba(15, 23, 42, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 0;
}

.course-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(143, 182, 255, 0.35);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.course-card:hover,
.course-card:focus-within {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px -40px rgba(18, 118, 194, 0.55);
}

.course-card:hover::after,
.course-card:focus-within::after {
    opacity: 1;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-header h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.course-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-open {
    background: var(--accent-light);
    color: var(--accent);
}

.badge-secure {
    background: #FFF4E6;
    color: #D97706;
}

.course-meta {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.course-instructor {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-deep);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.course-outcomes {
    list-style: none;
    margin-left: 0;
}

.course-outcomes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.course-outcomes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.course-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: var(--accent-light);
    border-radius: 8px;
    text-align: center;
}

.course-note p {
    margin-bottom: 0;
    color: var(--gray-700);
}

/* ====================================
   FACULTY PAGE
   ==================================== */

.faculty-section {
    background: var(--white);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faculty-card {
    text-align: center;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.95), rgba(230, 244, 254, 0.5));
    padding: 2.5rem 2rem 2.25rem;
    border-radius: 20px;
    border: 1px solid rgba(45, 155, 240, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.45);
    z-index: 0;
}

.faculty-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(143, 182, 255, 0.15), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.faculty-card:hover,
.faculty-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px -38px rgba(18, 118, 194, 0.55);
}

.faculty-card:hover::after,
.faculty-card:focus-within::after {
    opacity: 1;
}

.faculty-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 30% 30%, rgba(143, 182, 255, 0.35), transparent 70%), var(--gray-200);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4), 0 12px 25px -18px rgba(15, 23, 42, 0.45);
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-card h3 {
    margin-bottom: 0.25rem;
}

.faculty-role {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.faculty-bio {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.faculty-courses {
    text-align: left;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(45, 155, 240, 0.16);
    box-shadow: 0 18px 40px -35px rgba(15, 23, 42, 0.4);
}

.faculty-courses h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-deep);
    margin-bottom: 0.75rem;
}

.faculty-course-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.faculty-course-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.faculty-course-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
}

.faculty-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: var(--cloud);
    border-radius: 8px;
    text-align: center;
}

.mentor-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mentor-card {
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.96), rgba(230, 244, 254, 0.45));
    padding: 2.25rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 155, 240, 0.18);
    box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.mentor-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 30% 30%, rgba(143, 182, 255, 0.22), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.mentor-card:hover,
.mentor-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px -38px rgba(18, 118, 194, 0.55);
}

.mentor-card:hover::before,
.mentor-card:focus-within::before {
    opacity: 1;
}

.mentor-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mentor-card ul {
    list-style: none;
    margin-left: 0;
}

.mentor-card li {
    padding: 0.5rem 0;
    color: var(--gray-700);
}

/* ====================================
   ABOUT PAGE
   ==================================== */

.about-hero {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(28, 79, 156, 0.25), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(12, 44, 102, 0.35), transparent 60%),
                linear-gradient(135deg, rgba(12, 44, 102, 0.92), rgba(28, 79, 156, 0.78));
    color: var(--white);
    overflow: hidden;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.88);
}

.mission-verse {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    max-width: 580px;
}

.mission-verse .verse-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.mission-verse .verse-ref {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.mission-section {
    background: var(--white);
}

.mission-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.mission-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(227, 237, 255, 0.6));
    border-radius: 18px;
    padding: 2.5rem;
    border: 1px solid rgba(45, 155, 240, 0.16);
    box-shadow: 0 24px 50px -35px rgba(15, 23, 42, 0.45);
}

.mission-card h2,
.mission-card h3 {
    margin-bottom: 1rem;
}

.mission-card ul {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--gray-700);
}

.mission-card li {
    padding: 0.4rem 0;
}

.mission-rhythm {
    background: linear-gradient(200deg, rgba(12, 44, 102, 0.08), rgba(227, 237, 255, 0.85));
}

.tuition-banner {
    background: linear-gradient(135deg, rgba(20, 34, 64, 0.96), rgba(28, 79, 156, 0.88));
    color: var(--white);
    padding: 4rem 0;
}

.tuition-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 35px 80px -45px rgba(12, 28, 64, 0.8);
    backdrop-filter: blur(4px);
}

.tuition-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.tuition-card p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.ethos-section {
    background: var(--cloud);
}

.ethos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.ethos-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 244, 254, 0.5));
    border-radius: 18px;
    padding: 2.25rem;
    border: 1px solid rgba(28, 79, 156, 0.16);
    box-shadow: 0 20px 45px -35px rgba(15, 23, 42, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ethos-card:hover,
.ethos-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 32px 60px -38px rgba(18, 118, 194, 0.6);
}

.faith-section {
    background: var(--white);
}

.faith-header {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.creed-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.75rem 2.5rem;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(12, 44, 102, 0.12), rgba(45, 155, 240, 0.12));
    border: 1px solid rgba(12, 44, 102, 0.16);
    box-shadow: 0 28px 60px -40px rgba(12, 44, 102, 0.35);
    text-align: center;
}

.creed-card h3 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent-deep);
}

.creed-card p {
    margin: 0.35rem 0;
    font-size: 1.05rem;
    color: var(--gray-800);
}

.creed-card p:last-child {
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.about-cta {
    background: linear-gradient(160deg, rgba(12, 44, 102, 0.08), rgba(28, 79, 156, 0.12));
}

.cta-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.75rem;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 26px 70px -38px rgba(18, 118, 194, 0.45);
    border: 1px solid rgba(45, 155, 240, 0.18);
}

.cta-card p {
    color: var(--gray-700);
    margin-bottom: 2rem;
}

/* ====================================
   LOGIN PAGE (NO LOGIN NOTICE)
   ==================================== */

.no-login-section {
    background: var(--white);
}

.no-login-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.no-login-card {
    background: linear-gradient(175deg, rgba(255, 255, 255, 0.95), rgba(230, 244, 254, 0.55));
    border-radius: 18px;
    padding: 2.25rem;
    border: 1px solid rgba(45, 155, 240, 0.14);
    box-shadow: 0 24px 55px -38px rgba(15, 23, 42, 0.45);
}

.no-login-card h2 {
    margin-bottom: 1rem;
}

.no-login-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.no-login-card li {
    color: var(--gray-700);
    position: relative;
    padding-left: 1.4rem;
}

.no-login-card li::before {
    content: "☉";
    position: absolute;
    left: 0;
    top: -0.1rem;
    color: var(--accent);
    font-size: 1rem;
}

.no-login-card strong {
    color: var(--accent-deep);
}

.no-login-card a {
    font-weight: 600;
}

.no-login-note {
    margin-top: 1.25rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ====================================
   HOW IT WORKS PAGE
   ==================================== */

.timeline-section,
.language-access,
.security-waypoints {
    background: var(--white);
}

.timeline-section h2,
.security-waypoints h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    margin-left: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-item {
    background: var(--cloud);
    padding: 1.5rem;
    border-radius: 8px;
}

.security-item h4 {
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.security-item p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

.security-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1rem;
    color: var(--gray-600);
}

/* ====================================
   DONORS PAGE
   ==================================== */

.giving-tiers,
.impact-section {
    background: var(--white);
}

.giving-tiers h2,
.impact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.96), rgba(230, 244, 254, 0.5));
    padding: 3.25rem 2.5rem 2.75rem;
    border-radius: 20px;
    border: 1px solid rgba(45, 155, 240, 0.18);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 24px 48px -36px rgba(15, 23, 42, 0.45);
    overflow: hidden;
    z-index: 0;
}

.tier-card::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(143, 182, 255, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.tier-card:hover,
.tier-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 32px 72px -42px rgba(18, 118, 194, 0.5);
}

.tier-card:hover::before,
.tier-card:focus-within::before {
    opacity: 1;
}

.tier-featured {
    border-color: rgba(45, 155, 240, 0.45);
    background: linear-gradient(200deg, rgba(143, 182, 255, 0.18), rgba(230, 244, 254, 0.6));
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: var(--white);
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 12px 28px -20px rgba(18, 118, 194, 0.7);
}

.tier-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1rem;
}

.tier-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.tier-card > p {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.tier-card ul {
    list-style: none;
    margin-left: 0;
}

.tier-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
}

.tier-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.impact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--cloud);
    padding: 2rem;
    border-radius: 8px;
    flex-wrap: wrap;
}

.impact-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.impact-arrow {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.impact-result {
    font-size: 1.125rem;
    color: var(--gray-700);
    text-align: center;
}

.impact-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
}

.give-cta {
    background: var(--accent-light);
    padding: 4rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

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

/* ====================================
   FAQ PAGE
   ==================================== */

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(45, 155, 240, 0.18);
    padding: 1.5rem 1.75rem;
    border-radius: 18px;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.95), rgba(230, 244, 254, 0.45));
    box-shadow: 0 16px 36px -34px rgba(15, 23, 42, 0.4);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(143, 182, 255, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover,
.faq-item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -36px rgba(18, 118, 194, 0.45);
}

.faq-item:hover::before,
.faq-item:focus-within::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list details {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(28, 79, 156, 0.18);
    box-shadow: 0 18px 40px -32px rgba(15, 23, 42, 0.35);
    margin-bottom: 1.25rem;
    padding: 1.5rem 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-list details[open] {
    transform: translateY(-4px);
    box-shadow: 0 28px 55px -32px rgba(18, 118, 194, 0.35);
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(28, 79, 156, 0.12);
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cloud);
    border-radius: 8px;
    font-size: 1.125rem;
}

/* ====================================
   CONTACT PAGE
   ==================================== */

.contact-section,
.contact-form-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-col h2 {
    margin-bottom: 1rem;
}

.contact-col p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.25rem;
}

.contact-email a {
    color: var(--accent);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-form,
.verify-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 1.75rem;
    transition: var(--transition);
}

.form-group::before {
    content: "";
    position: absolute;
    inset: 0.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(19, 115, 205, 0.08), rgba(45, 155, 240, 0.18));
    opacity: 0;
    transform: scale(0.98);
    transition: var(--transition);
    z-index: -1;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-600);
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    pointer-events: none;
    padding: 0 0.35rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 1.125rem 0.875rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: linear-gradient(135deg, rgba(230, 244, 254, 0.35), rgba(255, 255, 255, 0.9));
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
    transition: color 0.2s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(17, 24, 39, 0.35);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(45, 155, 240, 0.1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 10px 35px -12px var(--accent-glow), 0 0 0 2px rgba(45, 155, 240, 0.25);
    background: linear-gradient(135deg, rgba(230, 244, 254, 0.85), rgba(255, 255, 255, 0.95));
}

.form-group:focus-within::before,
.form-group.is-focused::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 40px -24px rgba(15, 118, 229, 0.45);
}

.form-group.is-focused label,
.form-group.has-value label {
    transform: translateY(-1.6rem) scale(0.85);
    color: var(--accent-deep);
    box-shadow: none;
}

.form-group select {
    appearance: none;
    background-image: linear-gradient(135deg, rgba(230, 244, 254, 0.35), rgba(255, 255, 255, 0.9)), url('data:image/svg+xml,%3Csvg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M3 5L7 9L11 5" stroke="%231276C2" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-help {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 9rem;
}

.form-privacy {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: 1rem;
    background: var(--cloud);
    border-radius: 6px;
    margin-top: 1rem;
}

/* ====================================
   LOGIN PAGE
   ==================================== */

.login-section {
    background: var(--white);
}

.login-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}


.login-card {
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.96), rgba(230, 244, 254, 0.55));
    padding: 2.75rem;
    border-radius: 18px;
    border: 1px solid rgba(45, 155, 240, 0.2);
    box-shadow: 0 24px 48px -36px rgba(15, 23, 42, 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 0;
}

.login-card::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(143, 182, 255, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.login-card:hover,
.login-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -40px rgba(18, 118, 194, 0.5);
}

.login-card:hover::before,
.login-card:focus-within::before {
    opacity: 1;
}

.login-secure {
    border-color: #D97706;
    background: #FFF4E6;
}

.login-card h2 {
    margin-bottom: 1rem;
}

.login-card > p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.login-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.login-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.login-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.login-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--gray-600);
}

.login-help {
    text-align: center;
    margin-top: 3rem;
    padding: 2.25rem;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.95), rgba(230, 244, 254, 0.45));
    border-radius: 16px;
    border: 1px solid rgba(45, 155, 240, 0.18);
    box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
}


.login-help::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at var(--mouse-x, 30%) var(--mouse-y, 30%), rgba(143, 182, 255, 0.22), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.login-help:hover::before,
.login-help:focus-within::before {
    opacity: 1;
}

.login-help h3 {
    margin-bottom: 0.75rem;
}

/* ====================================
   VERIFY PAGE
   ==================================== */

.verify-section {
    background: var(--white);
}

.verify-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.verify-result {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 8px;
}

.verify-success {
    background: var(--accent-light);
    border: 2px solid var(--accent);
}

.verify-error {
    background: #FEF2F2;
    border: 2px solid #DC2626;
}

.verify-result h3 {
    margin-bottom: 1rem;
}

.verify-result p {
    margin-bottom: 0.5rem;
}

.verify-info {
    margin-top: 3rem;
    padding: 2.25rem;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.95), rgba(230, 244, 254, 0.45));
    border-radius: 16px;
    border: 1px solid rgba(45, 155, 240, 0.18);
    box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.verify-info::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(143, 182, 255, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.verify-info:hover::before,
.verify-info:focus-within::before {
    opacity: 1;
}

.verify-info h3 {
    margin-bottom: 1rem;
}

.verify-info ul {
    margin-bottom: 1rem;
}

.verify-note {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* ====================================
   FOOTER
   ==================================== */

.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-mission {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray-300);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-light);
}

.footer-legal {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
}

.non-accreditation-notice {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ====================================
   INTERACTIVE ENHANCEMENTS
   ==================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-deep), #7FB6FF);
    width: 0;
    z-index: 2000;
    transition: width 0.2s ease-out;
    box-shadow: 0 0 12px rgba(143, 182, 255, 0.65);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.neon-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 182, 255, 0.6), transparent);
    margin: 3rem auto;
    max-width: 320px;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) scale(1);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

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

@media (max-width: 900px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        background-position: center top;
        padding: 5rem 0 4rem;
    }

    .hero .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-badge {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 18px 48px -32px rgba(6, 27, 64, 0.45);
    }

    .hero-logo {
        width: 200px;
    }

    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtext {
        font-size: 1.125rem;
        color: rgba(15, 27, 52, 0.85);
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        color: var(--ink);
    }

    .hero-tagline,
    .hero-support {
        color: var(--gray-700);
    }

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

    .utility-links {
        display: none;
    }

    .utility-actions {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .primary-nav {
        display: none;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .search-submit {
        width: 100%;
    }

    .search-close {
        position: static;
        align-self: flex-end;
        transform: none;
        margin-top: -0.25rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .timeline-item {
        flex-direction: column;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3.5rem 0;
    }

    .hero-logo {
        width: 160px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-row {
        flex-direction: column;
    }

    .cta-row .btn {
        width: 100%;
    }
}
