:root {
    --bg: #05070b;
    --bg-soft: #090d14;
    --card: rgba(255, 255, 255, 0.035);
    --border: rgba(255, 255, 255, 0.09);

    --text: #f7f8fb;
    --muted: #9098a7;

    --blue: #4d7cff;
    --blue-light: #6b91ff;
    --cyan: #65d7ff;

    --radius: 24px;
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(52, 92, 255, 0.15),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    overflow-x: hidden;

    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--blue);
    color: white;
}

/* =========================
   NOISE
========================= */

.noise {
    position: fixed;

    inset: 0;

    opacity: 0.025;

    pointer-events: none;

    z-index: 9999;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='.7'/%3E%3C/svg%3E");
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 86px;

    padding: 0 6%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 1000;

    transition: 0.35s ease;

    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    height: 74px;

    background: rgba(5, 7, 11, 0.75);

    backdrop-filter: blur(22px);

    border-bottom: 1px solid var(--border);
}

.logo-area {
    display: flex;
    align-items: center;

    gap: 14px;
}

.logo-box {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid var(--border);

    overflow: hidden;
}

.logo-box img {
    width: 80%;
    height: 80%;

    object-fit: contain;
}

.logo-text h1 {
    font-family: "Rajdhani", sans-serif;

    font-size: 24px;

    line-height: 1;

    letter-spacing: 2px;
}

.logo-text span {
    font-size: 10px;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    color: var(--muted);
}

nav {
    display: flex;
    align-items: center;

    gap: 31px;
}

nav > a {
    font-size: 13px;

    font-weight: 500;

    color: #bdc3ce;

    transition: 0.25s;
}

nav > a:not(.discord-btn):hover {
    color: white;
}

.discord-btn {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    border-radius: 11px;

    color: white;

    background: rgba(77, 124, 255, 0.13);

    border: 1px solid rgba(94, 132, 255, 0.3);
}

.discord-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    padding: 130px 8% 80px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* GRID */

.hero-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 92%
        );

    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(70px);
    }
}

/* GLOW */

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(120px);

    opacity: 0.17;

    animation: glowFloat 8s ease-in-out infinite alternate;
}

.glow-one {
    top: 10%;
    right: 4%;

    background: #245bff;
}

.glow-two {
    left: -10%;
    bottom: -10%;

    background: #0c89d8;

    animation-delay: 2s;
}

@keyframes glowFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-40px, 20px) scale(1.15);
    }
}

/* HERO CONTENT */

.hero-content {
    position: relative;

    z-index: 5;

    max-width: 1000px;

    animation: heroEnter 1s ease forwards;
}

@keyframes heroEnter {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hero-badge {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 8px 13px;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(10px);

    font-size: 11px;

    letter-spacing: 2px;

    color: #aab3c3;

    margin-bottom: 26px;
}

.live-dot,
.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #42ed8f;

    box-shadow: 0 0 13px #42ed8f;
}

.hero h2 {
    font-family: "Rajdhani", sans-serif;

    max-width: 950px;

    font-size: clamp(62px, 8vw, 118px);

    font-weight: 700;

    line-height: 0.83;

    letter-spacing: -3px;
}

.hero h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.42);
}

.description {
    max-width: 640px;

    margin-top: 35px;

    font-size: 17px;

    line-height: 1.8;

    color: var(--muted);
}

/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 13px;

    margin-top: 37px;
}

.primary-btn,
.secondary-btn {
    min-height: 52px;

    padding: 0 23px;

    border-radius: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        background 0.25s;
}

.primary-btn {
    color: white;

    border: 1px solid #7396ff;

    background:
        linear-gradient(
            135deg,
            #426fff,
            #3156c8
        );

    box-shadow:
        0 15px 40px rgba(40, 88, 255, 0.22);
}

.primary-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 50px rgba(40, 88, 255, 0.35);
}

.secondary-btn {
    color: white;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid var(--border);

    backdrop-filter: blur(8px);
}

.secondary-btn:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.075);
}

/* HERO STATUS */

.hero-status {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 42px;

    font-size: 11px;

    letter-spacing: 1.2px;

    color: #70798b;
}

.hero-status > div {
    display: flex;
    align-items: center;

    gap: 9px;
}

.hero-status .divider {
    width: 1px;
    height: 16px;

    background: var(--border);
}

/* SCROLL */

.scroll-indicator {
    position: absolute;

    right: 5%;
    bottom: 55px;

    display: flex;
    align-items: center;

    gap: 13px;

    transform: rotate(90deg);

    color: #565f70;

    font-size: 9px;

    letter-spacing: 3px;
}

.scroll-line {
    width: 50px;
    height: 1px;

    background: #444b59;

    position: relative;

    overflow: hidden;
}

.scroll-line::after {
    content: "";

    position: absolute;

    height: 100%;
    width: 20px;

    background: white;

    animation: lineMove 2s infinite;
}

@keyframes lineMove {

    from {
        transform: translateX(-30px);
    }

    to {
        transform: translateX(60px);
    }

}

/* =========================
   STATS
========================= */

.stats {
    width: 88%;

    margin: -30px auto 80px;

    position: relative;

    z-index: 10;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-radius: 22px;

    border: 1px solid var(--border);

    background: rgba(9, 13, 20, 0.7);

    backdrop-filter: blur(20px);

    overflow: hidden;
}

.stat {
    padding: 35px;

    position: relative;
}

.stat:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    height: 50%;

    width: 1px;

    background: var(--border);
}

.stat-label {
    font-size: 9px;

    letter-spacing: 2px;

    color: #5f6979;
}

.stat h3 {
    margin-top: 6px;

    font-family: "Rajdhani", sans-serif;

    font-size: 42px;

    line-height: 1;

    color: white;
}

.stat p {
    margin-top: 8px;

    font-size: 12px;

    color: var(--muted);
}

/* =========================
   SECTIONS
========================= */

.section {
    width: 88%;

    margin: auto;

    padding: 130px 0;
}

.mini-title {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 10px;

    letter-spacing: 2.5px;

    color: var(--blue-light);

    font-weight: 700;

    margin-bottom: 18px;
}

.mini-title span {
    width: 25px;
    height: 1px;

    background: var(--blue);
}

/* =========================
   ABOUT
========================= */

.about-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;
}

.section-title h2,
.section-heading h2,
.application-box h2,
.store-box h2 {
    font-family: "Rajdhani", sans-serif;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -1.5px;
}

.section-title h2 strong {
    display: block;

    color: var(--blue-light);
}

.about-content > p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 20px;
}

.about-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 45px;
}

.about-features div {
    padding: 20px;

    border-radius: 16px;

    border: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);

    transition: 0.3s;
}

.about-features div:hover {
    transform: translateY(-4px);

    border-color: rgba(90, 129, 255, 0.3);
}

.about-features span {
    font-family: "Rajdhani";

    font-weight: 700;

    color: var(--blue-light);

    font-size: 13px;
}

.about-features p {
    margin-top: 12px;

    color: #c2c8d3;

    font-size: 12px;
}

/* =========================
   DEPARTMENTS
========================= */

.departments-section {
    width: 100%;

    padding-left: 6%;
    padding-right: 6%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.015),
            transparent
        );
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 50px;
}

.section-heading > p {
    max-width: 380px;

    color: var(--muted);

    font-size: 14px;

    text-align: right;
}

.cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.card {
    position: relative;

    min-height: 420px;

    padding: 27px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: var(--radius);

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 111, 255, 0.09),
            transparent 40%
        ),
        rgba(255, 255, 255, 0.025);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.04),
            transparent 70%
        );

    transform: translateX(-100%);

    transition: 0.7s;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    transform: translateY(-8px);

    border-color: rgba(94, 132, 255, 0.32);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(66, 111, 255, 0.16),
            transparent 40%
        ),
        rgba(255, 255, 255, 0.04);
}

.card-top {
    display: flex;

    justify-content: space-between;
}

.card-number {
    font-family: "Rajdhani";

    font-size: 13px;

    color: #697284;
}

.card-icon {
    font-size: 23px;

    color: var(--blue-light);
}

.card-tag {
    font-size: 9px;

    letter-spacing: 2px;

    color: var(--blue-light);
}

.card h3 {
    margin-top: 12px;

    font-family: "Rajdhani";

    font-size: 30px;

    line-height: 1.1;
}

.card p {
    margin-top: 16px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.card button {
    width: 100%;

    height: 48px;

    padding: 0 15px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-radius: 11px;

    border: 1px solid var(--border);

    color: #c8ced8;

    background: rgba(255, 255, 255, 0.025);

    cursor: pointer;

    transition: 0.3s;
}

.card button:hover {
    color: white;

    background: rgba(77, 124, 255, 0.13);

    border-color: rgba(77, 124, 255, 0.3);
}

/* =========================
   APPLICATION
========================= */

.application-box {
    position: relative;

    min-height: 330px;

    padding: 60px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

    border-radius: 28px;

    border: 1px solid rgba(91, 132, 255, 0.23);

    background:
        linear-gradient(
            135deg,
            rgba(41, 70, 150, 0.2),
            rgba(255, 255, 255, 0.02)
        );

    overflow: hidden;
}

.application-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background: #315cff;

    filter: blur(120px);

    opacity: 0.18;
}

.application-box > * {
    position: relative;

    z-index: 2;
}

.application-box p {
    margin-top: 20px;

    max-width: 570px;

    font-size: 14px;

    color: var(--muted);
}

/* =========================
   STORE
========================= */

.store-section {
    padding-top: 30px;
}

.store-box {
    padding: 55px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.store-box p {
    max-width: 570px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 14px;
}

.store-status {
    padding: 12px 17px;

    border-radius: 999px;

    border: 1px solid rgba(101, 215, 255, 0.2);

    background: rgba(101, 215, 255, 0.05);

    color: #7ee4ff;

    font-size: 9px;

    letter-spacing: 2px;
}

/* =========================
   FOOTER
========================= */

footer {
    width: 88%;

    margin: auto;

    padding: 40px 0 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid var(--border);
}

.footer-left {
    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-left img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.footer-left h2 {
    font-family: "Rajdhani";

    font-size: 20px;
}

.footer-left p,
.footer-right {
    color: #666f80;

    font-size: 10px;

    letter-spacing: 0.7px;
}

.footer-right {
    display: flex;

    gap: 15px;
}

/* =========================
   SCROLL ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    nav > a:not(.discord-btn) {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 320px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2)::after {
        display: none;
    }

    .application-box {
        flex-direction: column;

        align-items: flex-start;
    }

}

@media (max-width: 650px) {

    .navbar {
        padding: 0 5%;
    }

    .logo-text span {
        display: none;
    }

    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero h2 {
        font-size: 57px;

        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .stats {
        width: 90%;

        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 25px 18px;
    }

    .stat h3 {
        font-size: 34px;
    }

    .section {
        width: 90%;

        padding: 90px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .section-heading > p {
        text-align: left;
    }

    .application-box {
        padding: 35px 25px;
    }

    .store-box {
        padding: 40px 10px;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}/* =========================================
   UNIT DETAILS
========================================= */

.unit-overlay {
    position: fixed;
    inset: 0;

    z-index: 1998;

    background: rgba(2, 4, 8, 0.72);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.unit-overlay.active {
    opacity: 1;
    visibility: visible;
}


.unit-panel {
    position: fixed;

    top: 0;
    right: 0;

    width: min(570px, 100%);
    height: 100dvh;

    z-index: 1999;

    padding: 90px 45px 50px;

    overflow-y: auto;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(67, 108, 255, 0.18),
            transparent 36%
        ),
        rgba(7, 10, 16, 0.98);

    border-left:
        1px solid
        rgba(255, 255, 255, 0.09);

    box-shadow:
        -30px 0 80px rgba(0, 0, 0, 0.5);

    transform: translateX(105%);

    transition:
        transform 0.45s
        cubic-bezier(0.16, 1, 0.3, 1);
}


.unit-panel.active {
    transform: translateX(0);
}


/* CLOSE */

.unit-close {
    position: absolute;

    top: 27px;
    right: 28px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    background:
        rgba(255, 255, 255, 0.04);

    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: 0.25s ease;
}


.unit-close:hover {
    background:
        rgba(255, 255, 255, 0.09);

    transform: rotate(90deg);
}


/* UNIT TITLE */

.unit-code {
    display: block;

    margin-bottom: 14px;

    color: var(--blue-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


.unit-panel h2 {
    max-width: 460px;

    font-family:
        "Rajdhani",
        sans-serif;

    font-size: 49px;

    line-height: 0.98;

    letter-spacing: -1px;
}


.unit-description {
    margin-top: 24px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


.unit-divider {
    width: 100%;
    height: 1px;

    margin: 32px 0;

    background:
        rgba(255, 255, 255, 0.08);
}


/* INFO */

.unit-info {
    display: grid;

    gap: 13px;
}


.unit-info > div {
    padding: 19px;

    border-radius: 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.025);

    transition: 0.25s ease;
}


.unit-info > div:hover {
    border-color:
        rgba(77, 124, 255, 0.25);

    background:
        rgba(77, 124, 255, 0.04);
}


.unit-info span {
    display: block;

    margin-bottom: 8px;

    color: #68748a;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.unit-info p {
    color: #ccd2dd;

    font-size: 13px;

    line-height: 1.7;
}


/* JOBS */

.unit-panel h3 {
    margin-bottom: 17px;

    font-family:
        "Rajdhani",
        sans-serif;

    font-size: 24px;
}


.unit-jobs {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.unit-job {
    padding: 9px 13px;

    border-radius: 9px;

    border:
        1px solid
        rgba(77, 124, 255, 0.18);

    background:
        rgba(77, 124, 255, 0.08);

    color: #bdc8ff;

    font-size: 11px;
}


.unit-apply {
    width: 100%;

    margin-top: 35px;
}


body.panel-open {
    overflow: hidden;
}


/* PHONE */

@media (max-width: 600px) {

    .unit-panel {
        width: 100%;

        padding:
            85px
            23px
            40px;
    }

    .unit-panel h2 {
        font-size: 40px;
    }

}/* USTRP LEADERSHIP */

.leadership-section {
    padding: 100px 9%;
    background: #080b10;
    text-align: center;
}

.leadership-title span {
    color: #6289c8;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
}

.leadership-title h2 {
    font-size: 42px;
    margin-top: 10px;
    margin-bottom: 45px;
}

.leadership-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.leader-card {
    width: 320px;
    padding: 35px;

    background: #101620;

    border: 1px solid #202c3d;
    border-radius: 6px;

    transition: 0.3s;
}

.leader-card:hover {
    transform: translateY(-6px);
    border-color: #4169a8;
}

.leader-role {
    display: block;

    color: #6f94cd;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.leader-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.leader-card p {
    color: #7f8999;
    font-size: 13px;
}/* ================================= */
/* USTRP EXTRA WEBSITE SECTIONS       */
/* ================================= */

.extra-section,
.server-status-section {
    padding: 100px 9%;
}

.extra-dark {
    background: #0b0f16;
}

.extra-description {
    max-width: 700px;
    color: #8d97a7;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 45px;
}


/* SERVER STATUS */

.server-status-section {
    background: #080b10;
    border-bottom: 1px solid #192231;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.status-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 25px;

    background: #101620;

    border: 1px solid #1d2938;

    border-radius: 6px;
}

.status-card h3 {
    font-size: 15px;
    margin-bottom: 5px;
}

.status-card p {
    font-size: 12px;
    color: #8993a3;
}

.status-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    flex-shrink: 0;
}

.status-dot.online,
.status-dot.open {
    background: #43c981;

    box-shadow:
        0 0 8px rgba(67,201,129,.5),
        0 0 20px rgba(67,201,129,.15);
}


/* OPERATIONS */

.operation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 45px;
}

.operation-card {
    padding: 30px;

    background: #101620;

    border: 1px solid #1d2938;

    transition: .3s;
}

.operation-card:hover {
    transform: translateY(-6px);

    border-color: #4e76af;
}

.operation-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;
}

.operation-type {
    color: #6d94cf;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: bold;
}

.operation-status {
    padding: 6px 9px;

    background: rgba(65,105,168,.12);

    border: 1px solid rgba(91,132,193,.25);

    color: #7fa5dc;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: 1px;
}

.operation-card h3 {
    font-size: 23px;

    margin-bottom: 15px;
}

.operation-card p {
    min-height: 85px;

    color: #8994a4;

    line-height: 1.7;

    font-size: 14px;
}

.operation-info {
    display: flex;

    flex-direction: column;

    gap: 8px;

    padding-top: 20px;

    margin-top: 20px;

    border-top: 1px solid #1d2735;

    color: #798596;

    font-size: 12px;
}


/* UNITS */

.unit-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 45px;
}

.unit-card {
    position: relative;

    padding: 35px;

    min-height: 320px;

    background:
        linear-gradient(
            145deg,
            #111823,
            #0b1018
        );

    border: 1px solid #1e2a3b;

    overflow: hidden;

    transition: .35s;
}

.unit-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    background: #4169a8;

    opacity: .09;

    border-radius: 50%;
}

.unit-card:hover {
    transform: translateY(-7px);

    border-color: #496d9f;
}

.unit-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(74,111,166,.12);

    border: 1px solid rgba(93,134,195,.2);

    margin-bottom: 35px;

    font-size: 24px;
}

.unit-card h3 {
    font-size: 21px;

    margin-bottom: 15px;
}

.unit-card p {
    color: #8994a4;

    line-height: 1.7;

    font-size: 14px;

    min-height: 95px;
}

.unit-footer {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid #1d2735;

    color: #697586;

    font-size: 10px;

    letter-spacing: 2px;
}

.recruit-open {
    color: #52cf89;

    font-weight: bold;
}


/* PERSONNEL */

.personnel-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(250px, 400px));

    gap: 20px;

    margin-top: 45px;
}

.personnel-card {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px;

    background: #101620;

    border: 1px solid #202c3d;

    transition: .3s;
}

.personnel-card:hover {
    transform: translateY(-5px);

    border-color: #4d73a9;
}

.founder-card {
    background:
        linear-gradient(
            135deg,
            rgba(63,96,148,.15),
            #101620
        );
}

.personnel-avatar {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #192538;

    border: 1px solid #355078;

    font-size: 24px;

    font-weight: bold;

    color: #84a9dc;
}

.personnel-rank {
    display: block;

    color: #6f94cd;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 7px;
}

.personnel-info h3 {
    font-size: 23px;

    margin-bottom: 5px;
}

.personnel-info p {
    color: #7d8898;

    font-size: 13px;
}


/* RECRUITMENT */

.recruitment-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.recruitment-card {
    display: block;

    padding: 30px;

    text-decoration: none;

    background: #101620;

    border: 1px solid #202b3c;

    color: white;

    transition: .3s;
}

.recruitment-card:hover {
    transform: translateY(-5px);

    border-color: #4e75ad;

    background: #121a26;
}

.recruitment-card > span {
    display: block;

    color: #46648e;

    font-size: 11px;

    margin-bottom: 30px;
}

.recruitment-card h3 {
    font-size: 21px;

    margin-bottom: 10px;
}

.recruitment-card p {
    color: #8490a0;

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 25px;
}

.recruitment-card strong {
    color: #6f97d0;

    font-size: 11px;

    letter-spacing: 1px;
}


/* GALLERY */

.gallery-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 15px;

    margin-top: 45px;
}

.gallery-card {
    position: relative;

    height: 340px;

    overflow: hidden;

    background: #121821;

    border: 1px solid #1f2a39;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: .5s;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 55px 25px 25px;

    background:
        linear-gradient(
            transparent,
            rgba(4,7,12,.95)
        );
}

.gallery-overlay span {
    color: #7199d4;

    font-size: 9px;

    letter-spacing: 3px;

    font-weight: bold;
}

.gallery-overlay h3 {
    margin-top: 6px;

    font-size: 19px;
}


/* RANKS */

.rank-line {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 50px;
}

.rank-item {
    flex: 1;

    min-width: 120px;

    padding: 25px;

    background: #101620;

    border: 1px solid #202b3a;

    text-align: center;
}

.rank-item span {
    display: block;

    color: #5476a8;

    font-size: 10px;

    margin-bottom: 18px;
}

.rank-item h3 {
    font-size: 17px;

    margin-bottom: 6px;
}

.rank-item p {
    font-size: 11px;

    color: #768191;
}

.rank-arrow {
    color: #3f5e89;

    font-size: 20px;
}


/* FAQ */

.faq-container {
    max-width: 900px;

    margin-top: 45px;
}

.faq-item {
    border-bottom: 1px solid #1d2837;
}

.faq-question {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 24px 0;

    background: transparent;

    border: none;

    color: white;

    text-align: left;

    font-size: 16px;

    cursor: pointer;
}

.faq-question span {
    color: #769bd0;

    font-size: 24px;

    transition: .3s;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    color: #8590a0;

    font-size: 14px;

    line-height: 1.7;

    transition: max-height .3s ease;

    padding-right: 30px;
}

.faq-item.active .faq-answer {
    max-height: 150px;

    padding-bottom: 22px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* RESPONSIVE */

@media(max-width: 1000px) {

    .status-grid {
        grid-template-columns: 1fr 1fr;
    }

    .operation-grid,
    .unit-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 300px;
    }

    .rank-line {
        flex-wrap: wrap;
    }

    .rank-arrow {
        display: none;
    }

}


@media(max-width: 700px) {

    .status-grid,
    .recruitment-grid,
    .personnel-grid {
        grid-template-columns: 1fr;
    }

    .rank-line {
        flex-direction: column;
    }

    .rank-item {
        width: 100%;
    }

}/* HERO FOTOĞRAFI KENAR YUMUŞATMA */
.hero-aircraft {
    position: relative;
}

.hero-aircraft img {
    display: block;
    width: 100%;
    height: auto;

    -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 58%,
        rgba(0, 0, 0, 0.92) 70%,
        rgba(0, 0, 0, 0.55) 82%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 58%,
        rgba(0, 0, 0, 0.92) 70%,
        rgba(0, 0, 0, 0.55) 82%,
        rgba(0, 0, 0, 0) 100%
    );
}/* HERO FOTOĞRAFI - 4 KENARDAN YUMUŞAK GEÇİŞ */

.hero-aircraft {
    position: relative;
}

.hero-aircraft img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 85%,
            transparent 100%
        ),
        linear-gradient(
            to right,
            transparent 0%,
            black 10%,
            black 92%,
            transparent 100%
        );

    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 85%,
            transparent 100%
        ),
        linear-gradient(
            to right,
            transparent 0%,
            black 10%,
            black 92%,
            transparent 100%
        );

    mask-composite: intersect;
}/* =========================================
   USTRP HERO - TAM EKRAN ARKA PLAN FOTOĞRAFI
========================================= */

.hero {
    position: relative;
    overflow: hidden;
}

/* FOTOĞRAF TÜM HEROYU KAPLAR */
.hero-aircraft {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    pointer-events: none;
}

.hero-aircraft img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    /* 4 KENARDAN YUMUŞAK GEÇİŞ */
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 8%,
            black 90%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            to bottom,
            transparent 0%,
            black 8%,
            black 90%,
            transparent 100%
        );
}


/* FOTOĞRAF ÜZERİNE KOYU GEÇİŞ
   YAZILARIN OKUNMASINI SAĞLAR */

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 31, 0.97) 0%,
            rgba(7, 17, 31, 0.90) 25%,
            rgba(7, 17, 31, 0.55) 48%,
            rgba(7, 17, 31, 0.15) 72%,
            rgba(7, 17, 31, 0.10) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 17, 31, 0.30) 0%,
            transparent 30%,
            transparent 70%,
            rgba(7, 17, 31, 0.45) 100%
        );
}


/* YAZILAR FOTOĞRAFIN ÜSTÜNDE KALSIN */

.hero-content {
    position: relative;
    z-index: 3;
}


/* SCROLL YAZISI DA ÜSTTE KALSIN */

.scroll-indicator {
    z-index: 3;
}


/* GRID EFEKTİ FOTOĞRAFIN ÜSTÜNDE */

.hero-grid {
    z-index: 2;
}