:root {
    --font-primary: "Segoe UI", Arial, sans-serif;

    --color-primary: #0f5f9f;
    --color-primary-dark: #0b2d4d;
    --color-accent: #c99a2e;
    --color-text: #17324d;
    --color-text-muted: #39566f;
    --color-surface: rgba(255, 255, 255, 0.9);
    --color-surface-soft: #eef6fd;
    --color-border: rgba(23, 50, 77, 0.12);
    --color-white: #ffffff;

    --shadow-card: 0 24px 70px rgba(23, 50, 77, 0.16);
    --shadow-button: 0 12px 28px rgba(15, 95, 159, 0.25);
    --shadow-button-hover: 0 16px 34px rgba(15, 95, 159, 0.32);

    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-pill: 999px;

    --container-width: 920px;
    --spacing-page: 32px 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    color: var(--color-text);
}

a {
    color: inherit;
}

.page {
    min-height: 100vh;
}

.page--landing {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-page);
    background:
        linear-gradient(rgba(248, 251, 255, 0.92), rgba(232, 240, 250, 0.94)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page--landing::before {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    content: "";
    background: radial-gradient(circle, rgba(201, 154, 46, 0.22), rgba(201, 154, 46, 0));
    border-radius: 50%;
}

.container {
    position: relative;
    z-index: 1;
    width: min(var(--container-width), 100%);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(201, 154, 46, 0.08));
}

.card::after {
    position: absolute;
    top: 0;
    left: -120%;
    z-index: 1;
    width: 55%;
    height: 100%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 255, 255, 0.08) 42%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(201, 154, 46, 0.35) 52%,
        rgba(255, 255, 255, 0.08) 58%,
        transparent 65%
    );
    transform: skewX(-18deg);
    animation: lightSweep 5s cubic-bezier(0.4, 0, 0.2, 1) 1s infinite;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.school-name {
    position: relative;
    margin-bottom: 12px;
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary-dark);
    text-transform: uppercase;
}

.school-name::after {
    display: block;
    width: 96px;
    height: 2px;
    margin: 14px auto 0;
    content: "";
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-label {
    position: relative;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.badge {
    position: relative;
    display: inline-block;
    margin-bottom: 34px;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-surface-soft);
    border-radius: var(--radius-pill);
}

.btn {
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn--primary {
    color: var(--color-white);
    background: var(--color-primary);
    box-shadow: var(--shadow-button);
}

.btn--primary:hover {
    box-shadow: var(--shadow-button-hover);
}

.hero {
    animation: fadeUp 0.8s ease-out both;
    padding: 56px 48px;
}

.hero__title {
    position: relative;
    margin-bottom: 20px;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.15;
    color: var(--color-primary-dark);
}

.hero__description {
    position: relative;
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: clamp(18px, 2.4vw, 23px);
    line-height: 1.7;
    color: var(--color-text-muted);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lightSweep {
    0% {
        left: -120%;
    }

    40% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card::after {
        animation: none;
    }
}

@media (max-width: 640px) {
    .card {
        border-radius: var(--radius-md);
    }

    .hero {
        padding: 42px 24px;
    }

    .badge {
        border-radius: var(--radius-md);
    }
}
