/* --- Variables & Reset --- */
:root {
    /* Palette */
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #e2e8f0;
    --text-muted: #94a1b2;
    --accent-lime: #a3e635;
    --accent-purple: #8b5cf6;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--accent-lime);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--accent-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.header__nav {
    display: none; /* Mobile first hidden */
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__cta {
    display: none; /* Show on desktop */
}

.header__burger {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
}

/* Desktop Nav */
@media (min-width: 992px) {
    .header__nav {
        display: block;
    }

    .header__menu {
        display: flex;
        gap: 32px;
    }

    .header__link {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-muted);
        position: relative;
    }

    .header__link:hover {
        color: var(--accent-lime);
    }
    
    .header__link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-lime);
        transition: var(--transition);
    }

    .header__link:hover::after {
        width: 100%;
    }

    .header__item--mobile-only {
        display: none;
    }

    .header__cta {
        display: inline-flex;
    }

    .header__burger {
        display: none;
    }
}

/* Mobile Menu Active State (via JS) */
.header__nav.is-active {
    display: flex;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.header__nav.is-active .header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 1.2rem;
}

/* --- Main Placeholder --- */
.main {
    padding-top: var(--header-height);
    min-height: 60vh; /* Temporary */
}

/* --- Footer --- */
.footer {
    background-color: #0B1120;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.footer__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer__title {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer__link:hover {
    color: var(--accent-lime);
    padding-left: 5px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer__icon {
    width: 20px;
    height: 20px;
    color: var(--accent-purple);
    flex-shrink: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #475569;
}

/* Tablet & Desktop Footer */
@media (min-width: 768px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__container {
        grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    padding: 120px 0 60px; /* Top padding compensates header */
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Side */
.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(163, 230, 53, 0.1); /* Lime tint */
    color: var(--accent-lime);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(163, 230, 53, 0.2);
    opacity: 0; /* For animation */
    transform: translateY(20px);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.hero__title--highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-purple);
    position: relative;
    display: inline-block;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    opacity: 0; /* For animation */
    transform: translateY(20px);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    opacity: 0; /* For animation */
    transform: translateY(20px);
}

.hero__link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.hero__link-more:hover {
    color: var(--accent-lime);
    gap: 12px;
}

/* Stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0; /* For animation */
}

.hero__stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Visual Side (Abstract) */
.hero__visual {
    position: relative;
    height: 400px;
    display: none; /* Mobile hidden initially */
}

.visual-element {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.circle-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-color: var(--accent-lime);
    top: 10%;
    right: 10%;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.2);
}

.square-1 {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border-color: var(--accent-purple);
    bottom: 20%;
    left: 10%;
    transform: rotate(15deg);
}

.code-block {
    width: 220px;
    height: 140px;
    border-radius: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 41, 59, 0.8);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.code-line {
    height: 8px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}
.width-80 { width: 80%; }
.width-60 { width: 60%; background-color: var(--accent-purple); }
.width-40 { width: 40%; }

.circle-2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-lime);
    top: 20%;
    left: 20%;
}

/* Background Glow */
.hero__glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive */
@media (min-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
    .hero__actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
    }
    .hero__visual {
        display: block; /* Show visual on desktop */
    }
}

/* --- General Section Styles --- */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.text-accent {
    color: var(--accent-lime);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Methodology (Features) --- */
.methodology {
    background-color: #0B1120; /* Slightly darker */
}

.grid-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(163, 230, 53, 0.1);
    color: var(--accent-lime);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent-lime);
    color: var(--bg-dark);
}

.feature-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Courses --- */
.grid-courses {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    border-color: var(--accent-lime);
    transform: scale(1.02);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    padding: 20px;
}

.course-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
}

.course-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.course-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.course-meta li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-lime);
    color: var(--accent-lime);
}

.course-btn:hover {
    background: var(--accent-lime);
    color: var(--bg-dark);
}

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

.action-note {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.text-link {
    color: var(--accent-lime);
    font-weight: 600;
    border-bottom: 1px dashed var(--accent-lime);
}

.text-link:hover {
    color: var(--white);
    border-bottom-style: solid;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .grid-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-courses {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-features {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid-courses {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Career Section --- */
.career__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.career__steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
    position: relative;
}

/* Vertical line connecting steps */
.career__steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.step-item {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 42px;
    height: 42px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}

.step-item:hover .step-number {
    background: var(--accent-purple);
    color: var(--white);
    transform: scale(1.1);
}

.step-info h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 2px solid var(--accent-lime);
    color: var(--accent-lime);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn--outline:hover {
    background: var(--accent-lime);
    color: var(--bg-dark);
}

/* Career Visual (Fake Code/Stats Window) */
.stats-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    transform: rotate(2deg);
    transition: var(--transition);
}

.stats-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.stats-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ef4444; }
.yellow { background: #eab308; }
.green { background: #22c55e; }

.stat-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 0.9rem;
}

.bar {
    flex-grow: 1;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--accent-purple);
    border-radius: 4px;
}

.highlight .fill {
    background: var(--accent-lime);
}

.stats-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

/* --- Reviews Section --- */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1e293b;
    font-family: var(--font-heading);
}

.review-meta h4 {
    color: var(--white);
    font-size: 1rem;
}

.review-meta span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-rating {
    margin-left: auto;
    display: flex;
    gap: 2px;
    color: #eab308;
}

.review-rating svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.review-text {
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
}

/* Responsive */
@media (min-width: 992px) {
    .career__wrapper {
        grid-template-columns: 1fr 0.8fr;
    }
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Contact Section --- */
.contact {
    padding-bottom: 100px;
}

.contact__wrapper {
    display: flex;
    justify-content: center;
}

.contact__card {
    background: var(--bg-card);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Top accent line */
.contact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-lime), var(--accent-purple));
}

.contact__title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 10px;
    text-align: center;
}

.contact__desc {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.form-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 12px 12px 44px; /* Padding left for icon */
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-lime);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1);
}

.form-input:focus + .input-icon, 
.input-wrapper:focus-within .input-icon {
    color: var(--accent-lime);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input {
    margin-top: 4px;
    accent-color: var(--accent-lime);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.btn--full {
    width: 100%;
}

/* Success Message */
.contact__success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 10;
}

.contact__success.hidden {
    display: none;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(163, 230, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-lime);
    margin-bottom: 20px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.contact__success h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact__success p {
    color: var(--text-muted);
}

/* --- Cookie Pop-up --- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.cookie-popup.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
}

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

.cookie-popup p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin: 0;
}

.cookie-popup a {
    color: var(--accent-lime);
    text-decoration: underline;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .cookie-popup p {
        padding-right: 20px;
    }
}

/* --- Policy Pages Styles (General) --- */
.pages {
    padding: 120px 0 60px; /* Account for fixed header */
    min-height: 80vh;
}

.pages h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pages h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin: 40px 0 15px;
}

.pages p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.pages ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.pages li {
    margin-bottom: 10px;
}

.pages strong {
    color: var(--white);
}

.pages a {
    color: var(--accent-lime);
    text-decoration: underline;
}

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