/* --- VARIABLES & RESET --- */
:root {
    /* Colors */
    --color-bg: #0F172A; /* Dark Navy */
    --color-bg-light: #1E293B; /* Lighter Navy for cards/footer */
    --color-text: #F1F5F9; /* Off-white */
    --color-text-muted: #94A3B8; /* Grey */
    --color-primary: #CCF381; /* Electric Lime - Accent */
    --color-primary-hover: #B4D66F;
    --color-secondary: #4834D4; /* Deep Purple */
    
    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-width: 1240px;
    --padding-sm: 1rem;
    --padding-md: 2rem;
    --border-radius: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 4px;
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.btn--small:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

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

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
}

.header__nav {
    display: none; /* Mobile default */
}

.header__burger {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    display: block;
}

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

    .header__menu {
        display: flex;
        gap: 2rem;
    }

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

    .header__link:hover,
    .header__link--active {
        color: var(--color-primary);
    }

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

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

/* --- MAIN --- */
.main {
    flex: 1;
    padding-top: 80px; /* Offset for fixed header */
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-bg-light);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--color-text);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer__icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh; /* На весь екран */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

/* Canvas Background */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
}

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

@media (min-width: 992px) {
    .hero__container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(204, 243, 129, 0.1);
    border: 1px solid rgba(204, 243, 129, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero__badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(204, 243, 129, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 243, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(204, 243, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(204, 243, 129, 0); }
}

/* Typography */
.hero__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

@media (min-width: 768px) {
    .hero__title { font-size: 3.5rem; }
}

.text-highlight {
    color: var(--color-primary);
    font-family: 'Courier New', monospace; /* Monospace for effect */
    display: inline-block;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Buttons */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 1rem 2rem;
    border-radius: 6px;
    gap: 0.5rem;
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: 0 0 20px rgba(204, 243, 129, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 6px;
}

.btn--outline:hover {
    border-color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

/* Stats */
.hero__stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
}

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

/* Visual (Code Window) */
.hero__visual {
    display: none;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero__visual { display: flex; }
}

.code-window {
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.code-header {
    background: #0f172a;
    padding: 1rem;
    display: flex;
    gap: 8px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #FF5F56; }
.yellow { background: #FFBD2E; }
.green { background: #27C93F; }

.code-body {
    padding: 2rem;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.k { color: #C792EA; } /* Keyword */
.f { color: #82AAFF; } /* Function/Var */
.v { color: #FFCB6B; } /* Variable */
.m { color: #89DDFF; } /* Method */
.s { color: #C3E88D; } /* String */
.p { color: #F07178; } /* Property */

/* --- COURSES SECTION --- */
.courses {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-title .accent {
    color: var(--color-primary);
}

.section-subtitle {
    color: var(--color-text-muted);
    max-width: 600px;
}

.highlight-text {
    color: var(--color-text);
    border-bottom: 1px dashed var(--color-primary);
}

/* Layout Grid */
.courses__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .courses__layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* List Styling */
.courses__list {
    display: flex;
    flex-direction: column;
}

.courses__item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.courses__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.courses__num {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-right: 1.5rem;
    opacity: 0.5;
}

.courses__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    flex-grow: 1;
}

.courses__arrow {
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Hover & Active States */
.courses__item:hover,
.courses__item.active {
    border-color: var(--color-primary);
}

.courses__item:hover .courses__name,
.courses__item.active .courses__name {
    color: var(--color-primary);
}

.courses__item:hover .courses__num,
.courses__item.active .courses__num {
    color: var(--color-primary);
    opacity: 1;
}

.courses__item:hover .courses__arrow,
.courses__item.active .courses__arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-primary);
}

/* Preview Panel (Right Side) */
.courses__preview {
    background: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    min-height: 350px;
}

/* Detail Content Animation */
.course-detail {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.course-detail.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.course-detail__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.course-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.course-tag {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: var(--color-text-muted);
}

.course-detail__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.course-detail__desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.course-detail__stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.course-detail__stack li {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--color-secondary); /* Purple text */
    background: rgba(72, 52, 212, 0.1);
    border: 1px solid rgba(72, 52, 212, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.course-detail__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.course-salary {
    font-weight: 700;
    color: #fff;
}

/* Mobile Adaptation logic styles if needed */
@media (max-width: 991px) {
    .courses__preview {
        min-height: auto;
    }
    /* On mobile, we might just stack them, but JS will handle the content swap well enough */
}

/* --- METHODOLOGY (GIT STYLE) --- */
.methodology {
    padding: 6rem 0;
    position: relative;
}

.git-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-left: 2rem;
}

/* The vertical line */
.git-line {
    position: absolute;
    left: 29px; /* Adjust based on dot size */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    z-index: 0;
}

.git-commit {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.commit-dot {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-bg);
    border: 3px solid var(--color-primary);
    z-index: 1;
    transition: transform 0.3s ease;
}

.git-commit:hover .commit-dot {
    transform: scale(1.3);
    background-color: var(--color-primary);
}

.commit-dot.highlight {
    background-color: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
}

.commit-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.git-commit:hover .commit-content {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Highlight box for the last step */
.commit-content.highlight-box {
    background: var(--color-primary);
    color: var(--color-bg);
    border: none;
}

.commit-content.highlight-box .commit-title,
.commit-content.highlight-box .commit-desc {
    color: var(--color-bg);
}

.commit-header {
    display: flex;
    gap: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.commit-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

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

/* --- MENTORS SECTION --- */
.mentors {
    padding: 6rem 0;
    background-color: #0b1120; /* Slightly darker */
}

.mentors__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .mentors__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mentor-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    group: hover;
}

.mentor-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mentor-header {
    height: 120px;
    background: linear-gradient(45deg, #1e293b, #0f172a);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.mentor-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-bg-light);
    margin-bottom: -50px; /* Pull down */
    background-color: #333;
}

.mentor-status {
    position: absolute;
    bottom: -40px;
    right: 50%;
    transform: translateX(35px); /* Position next to avatar */
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--color-bg-light);
    z-index: 2;
}

.mentor-status.online { background-color: #27C93F; }
.mentor-status.offline { background-color: #94A3B8; }

.mentor-body {
    padding: 4rem 1.5rem 2rem; /* Top padding clears the avatar */
    text-align: center;
}

.mentor-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.mentor-role {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.mentor-stack {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.mentor-stack span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.mentor-bio {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- CAREER SECTION --- */
.career {
    padding: 6rem 0;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 40%);
}

.career__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .career__container {
        grid-template-columns: 1fr 1fr;
    }
}

.career__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.career__list i {
    color: var(--color-primary);
}

.offer-card {
    background: #fff;
    color: #0F172A;
    padding: 2rem;
    border-radius: 4px;
    transform: rotate(-3deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.offer-card::before {
    content: ''; /* Tape effect */
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.offer-header {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    border-bottom: 2px solid #0F172A;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-body p {
    font-family: 'Courier New', monospace;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.offer-status {
    margin-top: 2rem;
    text-align: center;
    font-weight: 700;
    color: #FF5F56;
    border: 2px solid #FF5F56;
    padding: 0.5rem;
    transform: rotate(-5deg);
    display: inline-block;
}

/* --- CONTACT SECTION --- */
.contact {
    padding: 6rem 0;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact__wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact__desc {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact__form {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(204, 243, 129, 0.1);
}

.captcha-group {
    width: 50%;
}

.form-checkbox {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.form-checkbox input {
    margin-top: 3px;
    accent-color: var(--color-primary);
}

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

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    min-height: 24px;
}

.form-message.success { color: var(--color-primary); }
.form-message.error { color: #FF5F56; }

/* --- COOKIE POPUP --- */
.cookie-popup {
    position: fixed;
    bottom: -100px; /* Hidden by default */
    left: 0;
    width: 100%;
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-primary);
    padding: 1rem 0;
    z-index: 2000;
    transition: bottom 0.5s ease;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cookie-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* --- POLICY PAGES STYLES (Stage 5) --- */
.pages {
    padding: 4rem 0 6rem;
}

.pages h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.pages h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.pages p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

.pages li {
    margin-bottom: 0.5rem;
}

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

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