* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #080b10;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 7%;

    background: rgba(8, 11, 16, 0.94);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    white-space: nowrap;
}

.navbar nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    flex-wrap: wrap;
}

.navbar nav a {
    color: #b6bcc8;
    transition: color 0.2s ease;
}

.navbar nav a:hover {
    color: #ffffff;
}

.discord-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border-radius: 10px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.discord-button:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.discord-button,
.primary-button {
    background: #ffffff;
    color: #090c11;
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 760px;

    display: flex;
    align-items: center;

    padding: 100px 7%;

    background:
        radial-gradient(
            circle at top right,
            rgba(74, 95, 130, 0.22),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255, 255, 255, 0.05),
            transparent 30%
        );
}

.hero-content {
    max-width: 800px;
}

.eyebrow {
    margin-bottom: 16px;

    color: #aeb6c3;

    font-size: 0.85rem;
    font-weight: 800;

    letter-spacing: 3px;
}

.hero h1 {
    font-size: clamp(3.4rem, 7vw, 6.5rem);

    line-height: 0.98;
    letter-spacing: -4px;
}

.hero h1 span {
    display: block;
    color: #9fa8b6;
}

.hero-text {
    max-width: 650px;

    margin-top: 28px;

    color: #aeb6c3;

    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 110px 7%;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);

    line-height: 1;
    letter-spacing: -2px;
}

.section-heading p:last-child {
    margin-top: 18px;

    color: #aeb6c3;
}

/* =========================
   FEATURE CARDS
========================= */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.feature-card {
    display: block;

    padding: 30px;

    border-radius: 18px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.18);

    background: #151b24;
}

.feature-card span {
    display: block;

    font-size: 2rem;

    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: #9ca5b3;
}

/* =========================
   DEPARTMENT CARDS
========================= */

.department-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.department-card {
    display: block;

    padding: 30px;

    border-radius: 18px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.department-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.2);

    background: #151b24;
}

.department-clickable {
    cursor: pointer;
}

.department-icon {
    margin-bottom: 20px;

    font-size: 2.2rem;
}

.department-card h3 {
    margin-bottom: 12px;

    font-size: 1.5rem;
}

.department-card p {
    color: #9ca5b3;
}

.department-link {
    display: inline-block;

    margin-top: 22px;

    color: #ffffff;

    font-weight: 800;

    transition: opacity 0.2s ease;
}

.department-link:hover {
    opacity: 0.7;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 90px 7%;

    background:
        radial-gradient(
            circle at top right,
            rgba(74, 95, 130, 0.2),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #0b1017,
            #080b10
        );
}

.page-hero-content {
    max-width: 850px;
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);

    line-height: 0.95;
    letter-spacing: -3px;
}

.page-hero-content > p:last-child {
    margin-top: 24px;

    max-width: 650px;

    color: #aeb6c3;

    font-size: 1.1rem;
}

/* =========================
   DEPARTMENT HERO
========================= */

.department-hero {
    min-height: 650px;

    display: flex;
    align-items: flex-end;

    padding: 90px 7%;

    background:
        linear-gradient(
            180deg,
            rgba(8, 11, 16, 0.25),
            rgba(8, 11, 16, 0.95)
        ),
        radial-gradient(
            circle at center,
            rgba(75, 90, 115, 0.25),
            #080b10 70%
        );
}

.department-hero-overlay {
    max-width: 900px;
}

.department-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 0.95;

    letter-spacing: -3px;
}

.department-hero p:not(.eyebrow) {
    margin-top: 22px;

    color: #b4bdc9;

    font-size: 1.2rem;
}

/* =========================
   INFO CARDS
========================= */

.info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.info-card {
    padding: 30px;

    border-radius: 18px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card span {
    display: block;

    font-size: 2rem;

    margin-bottom: 18px;
}

.info-card h3 {
    margin-bottom: 10px;

    font-size: 1.3rem;
}

.info-card p {
    color: #9ca5b3;
}

/* =========================
   DARK SECTIONS
========================= */

.dark-section {
    background: #0b0f15;
}

/* =========================
   CHECK GRID
========================= */

.check-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.check-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border-radius: 14px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.check-card span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ffffff;

    color: #080b10;

    font-weight: 900;
}

/* =========================
   STANDARDS
========================= */

.department-standards {
    background: #0b0f15;
}

.standards-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.standard-card {
    padding: 28px;

    border-radius: 18px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.standard-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 255, 255, 0.18);
}

.standard-card span {
    display: block;

    font-size: 2rem;

    margin-bottom: 18px;
}

.standard-card h3 {
    margin-bottom: 10px;

    font-size: 1.25rem;
}

.standard-card p {
    color: #9ca5b3;
}

/* =========================
   REQUIREMENTS
========================= */

.requirement-list {
    max-width: 1000px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.requirement-item {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 22px 25px;

    border-radius: 14px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.requirement-item span {
    font-size: 0.8rem;

    font-weight: 900;

    color: #8e98a6;
}

.requirement-item p {
    color: #d6dbe2;
}

/* =========================
   STATUS BOX
========================= */

.status-section {
    padding: 0 7% 110px;
}

.status-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 50px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #161d27,
            #0d1219
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1;
}

.status-box p:last-child {
    margin-top: 12px;

    color: #9ca5b3;
}

/* =========================
   STAFF
========================= */

.staff-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.staff-card {
    padding: 30px;

    border-radius: 18px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.staff-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.18);
}

.staff-avatar {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #202833;

    border: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 1.6rem;
    font-weight: 900;
}

.staff-role {
    margin-bottom: 8px;

    color: #929cab;

    font-size: 0.75rem;
    font-weight: 900;

    letter-spacing: 2px;
}

.staff-card h3 {
    margin-bottom: 12px;

    font-size: 1.4rem;
}

.staff-card p:last-child {
    color: #9ca5b3;
}

/* =========================
   RULES
========================= */

.rule-list {
    max-width: 1000px;

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin: 0 auto;
}

.rule-card {
    display: flex;

    align-items: flex-start;

    gap: 24px;

    padding: 28px;

    border-radius: 18px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.rule-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 255, 255, 0.18);
}

.rule-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #202833;

    color: #ffffff;

    font-size: 0.8rem;
    font-weight: 900;

    letter-spacing: 1px;
}

.rule-card h3 {
    margin-bottom: 8px;

    font-size: 1.35rem;
}

.rule-card p {
    color: #9ca5b3;
}

/* =========================
   SUPPORT
========================= */

.support-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.support-card {
    padding: 30px;

    border-radius: 18px;

    background: #11161e;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.support-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.18);
}

.support-card h3 {
    margin-bottom: 12px;

    font-size: 1.4rem;
}

.support-card p {
    min-height: 85px;

    color: #9ca5b3;
}

.support-button {
    margin-top: 22px;
}

/* =========================
   HOMEPAGE STATUS
========================= */

.application-section {
    padding: 0 7% 110px;
}

.application-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 50px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #161d27,
            #0d1219
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.application-box h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);

    line-height: 1;

    letter-spacing: -2px;
}

.application-box p:last-child {
    margin-top: 14px;

    color: #9ca5b3;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 50px 7%;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #8993a1;
}

.footer-content {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    color: #ffffff;

    font-weight: 900;

    letter-spacing: 2px;
}

.footer-links {
    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca5b3;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    margin-top: 18px;

    font-size: 0.85rem;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1000px) {

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 800px) {

    .navbar {
        flex-wrap: wrap;
        gap: 16px;
    }

    .navbar nav {
        width: 100%;
        order: 3;
    }

    .department-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .check-grid {
        grid-template-columns: 1fr;
    }

    .status-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .application-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
    }

}

@media (max-width: 650px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .rule-card {
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        min-height: 650px;
        padding-top: 80px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .department-hero {
        min-height: 560px;
    }

}
/* ============================= */
/* LVRP VIDEO HERO               */
/* ============================= */

.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: lvrpHeroText 0.9s ease forwards;
}

.page-hero-content .eyebrow {
    animation-delay: 0.15s;
}

.page-hero-content h1 {
    animation-delay: 0.3s;
}

.page-hero-content > p:not(.eyebrow) {
    animation-delay: 0.45s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

@keyframes lvrpHeroText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}