@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');


:root {
    --gold: #d99a26;
    --gold-light: #f2b63f;

    --black: #070909;
    --dark: #0b0f10;
    --dark-2: #101516;

    --border: rgba(255,255,255,0.10);

    --text: #f5f5f5;
    --muted: #9da4a6;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;

    background: var(--black);
    color: var(--text);

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


img {
    width: 100%;
    display: block;
}


strong {
    font-weight: 700;
}


.container {
    width: min(1400px, 92%);
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(5,8,9,.90);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,.07);

    transition:
        background .3s ease,
        box-shadow .3s ease;
}


.nav {
    min-height: 86px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


.logo {
    color: var(--gold-light);

    font-family:
        'Oswald', sans-serif;

    font-size: 23px;
    font-weight: 700;

    line-height: 18px;

    display: flex;
    flex-direction: column;

    letter-spacing: 1px;

    flex-shrink: 0;
}


.logo-line::before,
.logo-line::after {
    content: "";

    display: inline-block;

    width: 20px;
    height: 2px;

    background: var(--gold);

    vertical-align: middle;

    margin: 0 5px;
}


.menu {
    display: flex;

    align-items: center;

    gap: 21px;
}


.menu a {
    position: relative;

    font-size: 10px;
    font-weight: 600;

    color: #d6d6d6;

    white-space: nowrap;

    transition: .25s;
}


.menu a:hover,
.menu a.active {
    color:
        var(--gold-light);
}


.menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -32px;

    width: 100%;
    height: 2px;

    background:
        var(--gold);

    box-shadow:
        0 0 10px
        rgba(242,182,63,.6);
}


.header-right {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;
}


/* =====================================================
   LANGUAGE SWITCH
===================================================== */

.language-switch {
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0 10px;

    border-radius: 6px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.08);
}


.language-switch > span {
    color:
        #454c4d;

    font-size: 9px;
}


.language-button {
    padding: 0;

    border: none;

    background: transparent;

    color:
        #747c7d;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .4px;

    cursor: pointer;

    transition:
        color .25s ease,
        text-shadow .25s ease,
        transform .25s ease;
}


.language-button:hover {
    color:
        #dddddd;
}


.language-button.active {
    color:
        var(--gold-light);

    text-shadow:
        0 0 10px
        rgba(242,182,63,.45);

    transform:
        scale(1.08);
}


.nav-buttons {
    display: flex;

    gap: 9px;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 46px;

    padding: 0 19px;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .3px;

    white-space: nowrap;

    transition:
        transform .25s,
        background .25s,
        border-color .25s,
        box-shadow .25s;
}


.btn:hover {
    transform:
        translateY(-2px);
}


.btn-gold {
    background:
        linear-gradient(
            135deg,
            #c48720,
            #ebb33e
        );

    color: #111;

    box-shadow:
        0 8px 30px
        rgba(218,153,37,.18);
}


.btn-gold:hover {
    box-shadow:
        0 10px 35px
        rgba(218,153,37,.35);
}


.btn-dark {
    border:
        1px solid
        rgba(218,153,37,.3);

    background:
        rgba(255,255,255,.03);
}


.btn-outline {
    border:
        1px solid
        rgba(218,153,37,.55);

    background:
        rgba(0,0,0,.25);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 930px;

    position: relative;

    padding-top: 86px;

    background-image:

        linear-gradient(
            90deg,
            rgba(3,5,5,.97) 0%,
            rgba(3,5,5,.84) 34%,
            rgba(3,5,5,.31) 72%,
            rgba(3,5,5,.24) 100%
        ),

        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.hero::after {
    content: "";

    position: absolute;

    inset:
        auto 0 0 0;

    height: 270px;

    background:
        linear-gradient(
            transparent,
            #070909
        );

    pointer-events: none;
}


.hero-content {
    position: relative;

    z-index: 5;

    padding-top: 80px;
    padding-bottom: 210px;
}


.hero-text {
    max-width: 700px;
}


.hero-small {
    display: block;

    color:
        var(--gold-light);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 1.5px;

    margin-bottom: 20px;
}


.hero h1 {
    font-family:
        'Oswald', sans-serif;

    font-size:
        clamp(75px,10vw,150px);

    letter-spacing: -4px;

    line-height: .9;

    text-shadow:
        0 8px 35px
        rgba(0,0,0,.5);
}


.hero p {
    max-width: 650px;

    margin-top: 32px;

    font-size: 17px;

    line-height: 1.9;

    color:
        #d2d5d5;
}


.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}


/* =====================================================
   HERO STATS
===================================================== */

.stats {
    position: absolute;

    left: 50%;
    bottom: 38px;

    transform:
        translateX(-50%);

    z-index: 8;

    min-height: 118px;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border:
        1px solid
        var(--border);

    background:
        rgba(6,9,9,.90);

    backdrop-filter:
        blur(20px);

    border-radius: 10px;

    overflow: hidden;
}


.stat {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    position: relative;

    padding:
        20px 15px;
}


.stat:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    height: 50%;

    width: 1px;

    background:
        rgba(255,255,255,.12);
}


.stat-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--gold-light);

    flex-shrink: 0;

    filter:
        drop-shadow(
            0 0 10px
            rgba(217,154,38,.22)
        );
}


.stat-icon svg {
    width: 30px;
    height: 30px;

    fill: currentColor;

    transition:
        transform .3s ease,
        filter .3s ease;
}


.stat:hover .stat-icon svg {
    transform:
        scale(1.12);

    filter:
        drop-shadow(
            0 0 8px
            rgba(242,182,63,.55)
        );
}


.stat strong {
    display: block;

    color:
        var(--gold-light);

    font-size: 22px;

    line-height: 1.1;
}


.stat .static-stat {
    font-size: 19px;
}


.stat span {
    display: block;

    margin-top: 6px;

    color:
        #aeb4b4;

    font-size: 10px;

    letter-spacing: .5px;
}


/* =====================================================
   GENERAL
===================================================== */

.section {
    padding:
        95px 0;
}


.compact-section {
    padding-top:
        15px;
}


.dark-section {
    background:
        #090c0d;
}


.section-label {
    display: inline-block;

    color:
        var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 15px;
}


.section h2 {
    font-family:
        'Oswald', sans-serif;

    font-size:
        clamp(35px,4vw,54px);

    margin-bottom: 25px;
}


.section-heading {
    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    margin-bottom:
        35px;
}


/* =====================================================
   STORY
===================================================== */

.about-section {
    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 90% 20%,
            rgba(217,154,38,.07),
            transparent 35%
        ),

        #070909;
}


.about-section::before {
    content:
        "LOW FIELD";

    position: absolute;

    right: -80px;
    top: 30px;

    font-family:
        'Oswald', sans-serif;

    font-size: 180px;

    font-weight: 700;

    color:
        rgba(255,255,255,.015);

    white-space: nowrap;

    pointer-events: none;
}


.story-heading {
    margin-bottom:
        45px;
}


.story-grid {
    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 75px;

    align-items: center;
}


.about-photo {
    position: relative;

    overflow: hidden;

    min-height: 570px;

    border-radius: 12px;

    border:
        1px solid
        rgba(217,154,38,.22);

    box-shadow:
        0 25px 80px
        rgba(0,0,0,.35);
}


.about-photo img {
    width: 100%;

    height: 570px;

    object-fit: cover;
}


.about-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5,7,7,.80) 100%
        );

    pointer-events: none;
}


.photo-badge {
    position: absolute;

    z-index: 3;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        15px 20px;

    border-radius: 8px;

    background:
        rgba(5,8,8,.84);

    backdrop-filter:
        blur(12px);

    border:
        1px solid
        rgba(217,154,38,.30);
}


.photo-badge i {
    color:
        var(--gold-light);

    font-size: 23px;
}


.photo-badge strong {
    display: block;

    color: white;

    font-size: 12px;

    letter-spacing: .7px;
}


.photo-badge span {
    display: block;

    margin-top: 4px;

    color:
        #8e9696;

    font-size: 9px;

    letter-spacing: .7px;
}


.story-eyebrow {
    color:
        #8e9697;

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;
}


.about-text h3 {
    font-family:
        'Oswald', sans-serif;

    font-size:
        clamp(32px,3vw,46px);

    line-height: 1.15;

    margin:
        15px 0 27px;
}


.about-text p {
    color:
        #aeb4b4;

    line-height: 1.9;

    margin-bottom: 19px;

    font-size: 14px;
}


.story-quote {
    display: flex;

    gap: 18px;

    align-items: flex-start;

    margin-top: 30px;

    padding:
        22px 24px;

    background:
        rgba(217,154,38,.055);

    border-left:
        2px solid
        var(--gold);

    border-radius:
        0 8px 8px 0;
}


.story-quote i {
    color:
        var(--gold-light);

    font-size: 21px;

    margin-top: 3px;
}


.story-quote span {
    color:
        #c6caca;

    font-size: 13px;

    line-height: 1.75;
}


/* =====================================================
   ACHIEVEMENTS
===================================================== */

.achievements-section {
    background:
        linear-gradient(
            180deg,
            #090c0d,
            #070909
        );

    border-top:
        1px solid
        rgba(255,255,255,.04);

    border-bottom:
        1px solid
        rgba(255,255,255,.04);
}


.achievement-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;
}


.achievement-card {
    position: relative;

    overflow: hidden;

    min-height: 250px;

    padding: 28px;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(18,23,24,.92),
            rgba(8,11,11,.96)
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.achievement-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(217,154,38,.35);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.32);
}


.highlight-card {
    border-color:
        rgba(217,154,38,.28);

    background:
        linear-gradient(
            145deg,
            rgba(40,29,10,.43),
            rgba(9,12,12,.96)
        );
}


.achievement-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 8px;

    color:
        var(--gold-light);

    background:
        rgba(217,154,38,.08);

    border:
        1px solid
        rgba(217,154,38,.18);

    font-size: 19px;
}


.achievement-card strong {
    display: block;

    font-family:
        'Oswald', sans-serif;

    color:
        var(--gold-light);

    font-size:
        clamp(25px,2vw,35px);

    line-height: 1.1;
}


.achievement-card span {
    display: block;

    margin-top: 10px;

    color:
        #d6d9d9;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;
}


.achievement-card p {
    margin-top: 20px;

    color:
        #767e7f;

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   MANAGEMENT
===================================================== */

.management-section {
    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 35%,
            rgba(217,154,38,.045),
            transparent 35%
        ),

        #070909;
}


.management-section::before {
    content:
        "MANAGEMENT";

    position: absolute;

    left: 50%;
    top: 80px;

    transform:
        translateX(-50%);

    font-family:
        'Oswald', sans-serif;

    font-size:
        clamp(80px,12vw,190px);

    font-weight: 700;

    color:
        rgba(255,255,255,.012);

    white-space: nowrap;

    pointer-events: none;
}


.management-header {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin-bottom: 60px;
}


.management-header h2 {
    font-family:
        'Oswald', sans-serif;

    font-size:
        clamp(40px,5vw,64px);

    margin-bottom: 17px;
}


.management-header p {
    color:
        #8f9697;

    line-height: 1.8;

    font-size: 14px;
}


.management-group-title {
    display: flex;

    align-items: center;

    gap: 17px;

    margin:
        20px 0 25px;
}


.management-group-title > span {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color:
        var(--gold-light);

    border:
        1px solid
        rgba(217,154,38,.30);

    border-radius: 50%;

    font-family:
        'Oswald', sans-serif;

    font-size: 13px;
}


.management-group-title small {
    display: block;

    color:
        #676f70;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 3px;
}


.management-group-title h3 {
    font-family:
        'Oswald', sans-serif;

    font-size: 23px;

    letter-spacing: .3px;
}


.second-group-title {
    margin-top: 58px;
}


/* FOUNDERS */

.founders-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}


.founder-card {
    position: relative;

    overflow: hidden;

    min-height: 430px;

    padding: 40px;

    background:
        linear-gradient(
            140deg,
            rgba(20,25,25,.97),
            rgba(7,10,10,.98)
        );

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 12px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.founder-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        rgba(217,154,38,.07);

    filter:
        blur(20px);
}


.founder-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(217,154,38,.38);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.35);
}


.founder-number {
    position: absolute;

    top: 30px;
    right: 32px;

    color:
        rgba(255,255,255,.035);

    font-family:
        'Oswald', sans-serif;

    font-size: 70px;

    font-weight: 700;
}


.founder-avatar {
    width: 74px;
    height: 74px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border-radius: 50%;

    color:
        var(--gold-light);

    background:
        radial-gradient(
            circle,
            rgba(217,154,38,.16),
            rgba(217,154,38,.04)
        );

    border:
        1px solid
        rgba(217,154,38,.35);

    font-family:
        'Oswald', sans-serif;

    font-size: 24px;

    font-weight: 700;

    box-shadow:
        0 0 35px
        rgba(217,154,38,.08);
}


.founder-role {
    display: flex;

    align-items: center;

    gap: 8px;

    color:
        var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.founder-card h3 {
    font-family:
        'Oswald', sans-serif;

    font-size: 35px;

    margin:
        10px 0 16px;
}


.founder-card p {
    max-width: 550px;

    color:
        #8f9697;

    font-size: 13px;

    line-height: 1.85;
}


/* DISCORD PROFILE BUTTON */

.discord-profile-button {
    position: relative;

    z-index: 4;

    width: fit-content;

    min-height: 42px;

    margin-top: 22px;

    padding:
        0 15px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border-radius: 6px;

    background:
        rgba(88,101,242,.06);

    border:
        1px solid
        rgba(242,182,63,.22);

    color:
        #c4c8c8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .4px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.discord-profile-button .fa-discord {
    color:
        var(--gold-light);

    font-size: 17px;
}


.discord-profile-button .fa-arrow-up-right-from-square {
    color:
        #697172;

    font-size: 9px;
}


.discord-profile-button:hover {
    transform:
        translateY(-2px);

    color:
        #ffffff;

    background:
        rgba(217,154,38,.075);

    border-color:
        rgba(242,182,63,.5);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.25),
        0 0 20px
        rgba(217,154,38,.07);
}


.founder-footer {
    position: absolute;

    left: 40px;
    right: 40px;
    bottom: 32px;

    display: flex;

    align-items: center;
    justify-content:
        space-between;

    padding-top: 18px;

    border-top:
        1px solid
        rgba(255,255,255,.06);
}


.founder-footer span {
    color:
        #686f70;

    font-size: 9px;

    letter-spacing: 1.3px;
}


.founder-footer i {
    color:
        rgba(217,154,38,.7);
}


/* CEO */

.executive-card {
    min-height: 235px;

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    align-items: center;

    gap: 45px;

    padding:
        40px 45px;

    border-color:
        rgba(217,154,38,.32);

    background:
        linear-gradient(
            120deg,
            rgba(45,32,10,.55),
            rgba(15,18,18,.98) 48%,
            rgba(7,10,10,.98)
        );
}


.executive-card::before {
    width: 350px;
    height: 350px;

    right: -90px;
    top: -150px;

    background:
        rgba(217,154,38,.11);
}


.executive-glow {
    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            var(--gold-light),
            transparent
        );

    box-shadow:
        0 0 20px
        rgba(217,154,38,.6);
}


.executive-left {
    display: flex;

    align-items: center;

    gap: 23px;

    position: relative;

    z-index: 2;
}


.executive-avatar {
    width: 88px;
    height: 88px;

    margin-bottom: 0;

    font-size: 27px;
}


.executive-card h3 {
    font-size: 42px;

    margin-bottom: 0;
}


.executive-description {
    position: relative;

    z-index: 2;

    padding-left: 40px;

    border-left:
        1px solid
        rgba(255,255,255,.07);
}


.executive-description p {
    margin-bottom: 20px;

    max-width: 650px;
}


.executive-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        10px 14px;

    color:
        var(--gold-light);

    background:
        rgba(217,154,38,.07);

    border:
        1px solid
        rgba(217,154,38,.20);

    border-radius: 6px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* MANAGERS */

.managers-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}


.manager-card {
    min-height: 340px;

    padding: 30px;
}


.manager-card::before {
    width: 150px;
    height: 150px;
}


.manager-top {
    display: flex;

    align-items: center;
    justify-content:
        space-between;

    margin-bottom: 23px;
}


.manager-avatar {
    width: 60px;
    height: 60px;

    margin-bottom: 0;

    font-size: 19px;
}


.manager-icon {
    color:
        rgba(217,154,38,.35);

    font-size: 26px;
}


.manager-card h3 {
    font-size: 29px;

    margin:
        9px 0 14px;
}


.manager-card p {
    font-size: 12px;

    line-height: 1.8;
}


.manager-footer {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 26px;

    padding-top: 15px;

    color:
        #5d6566;

    border-top:
        1px solid
        rgba(255,255,255,.055);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


.event-manager-card {
    border-color:
        rgba(217,154,38,.18);
}


.event-role {
    color:
        var(--gold-light);
}


/* MANAGEMENT MESSAGE */

.founder-story {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 45px;

    padding:
        30px 35px;

    border-radius: 10px;

    background:
        rgba(217,154,38,.045);

    border:
        1px solid
        rgba(217,154,38,.14);
}


.founder-story-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--gold-light);

    border:
        1px solid
        rgba(217,154,38,.3);

    font-size: 22px;
}


.founder-story span {
    color:
        var(--gold-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.founder-story h3 {
    margin:
        5px 0 7px;

    font-family:
        'Oswald', sans-serif;

    font-size: 24px;
}


.founder-story p {
    color:
        #858d8e;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   CONVOY
===================================================== */

.convoy-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 60px;

    align-items: center;

    margin-top: 25px;
}


.convoy-info h2 {
    font-size: 40px;
}


.convoy-details p {
    margin: 14px 0;

    color: #aeb4b4;
}


.countdown {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    margin: 35px 0;

    border:
        1px solid
        var(--border);

    background:
        var(--dark);

    border-radius: 8px;
}


.countdown div {
    padding:
        22px 10px;

    text-align: center;
}


.countdown div:not(:last-child) {
    border-right:
        1px solid
        var(--border);
}


.countdown strong {
    display: block;

    color:
        var(--gold-light);

    font-size: 30px;
}


.countdown span {
    color:
        #878f90;

    font-size: 10px;
}


.convoy-photo {
    position: relative;

    overflow: hidden;

    border-radius: 10px;

    border:
        1px solid
        rgba(217,154,38,.25);
}


.convoy-photo img {
    height: 500px;

    object-fit: cover;
}


.slot-box {
    position: absolute;

    right: 20px;
    bottom: 20px;

    background:
        rgba(4,7,7,.88);

    border:
        1px solid
        rgba(217,154,38,.25);

    padding:
        16px 24px;

    border-radius: 7px;
}


.slot-box strong,
.slot-box span {
    display: block;
}


.slot-box strong {
    color:
        var(--gold-light);
}


/* =====================================================
   PANELS
===================================================== */

.info-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    gap: 18px;
}


.panel {
    background:
        linear-gradient(
            145deg,
            rgba(18,23,24,.95),
            rgba(8,12,12,.95)
        );

    border:
        1px solid
        var(--border);

    border-radius: 9px;

    padding: 28px;
}


.panel h3 {
    font-size: 14px;

    margin-bottom: 25px;
}


.event {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 17px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}


.event-date {
    text-align: center;

    min-width: 48px;
}


.event-date strong {
    display: block;

    font-size: 22px;
}


.event-date span {
    color:
        #a8aeae;

    font-size: 10px;
}


.event p {
    color:
        #858d8e;

    font-size: 12px;

    margin-top: 6px;
}


/* =====================================================
   CALENDAR
===================================================== */

.calendar-title {
    text-align: center;

    font-size: 12px;

    margin-bottom: 20px;
}


.calendar-days,
.calendar-numbers {
    display: grid;

    grid-template-columns:
        repeat(7,1fr);

    text-align: center;

    gap: 9px;
}


.calendar-days {
    color:
        #737b7c;

    font-size: 9px;

    margin-bottom: 14px;
}


.calendar-numbers span {
    padding: 6px;

    font-size: 11px;
}


.calendar-active {
    border:
        1px solid
        var(--gold);

    color:
        var(--gold-light);

    border-radius: 50%;

    background:
        rgba(217,154,38,.15);
}


.calendar-legend {
    display: flex;

    gap: 13px;

    margin-top: 22px;

    font-size: 10px;

    color:
        #8b9393;
}


/* =====================================================
   QUICK LINKS
===================================================== */

.quick-link {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.06);

    padding: 17px;

    margin-bottom: 10px;

    border-radius: 6px;

    font-size: 12px;

    transition: .25s;
}


.quick-link b {
    color:
        var(--gold-light);
}


.quick-link:hover {
    background:
        rgba(217,154,38,.08);

    transform:
        translateX(4px);
}


/* =====================================================
   TEAM
===================================================== */

.team-banner {
    overflow: hidden;

    border-radius: 10px;

    border:
        1px solid
        var(--border);
}


.team-banner img {
    max-height: 620px;

    object-fit: cover;
}


/* =====================================================
   GALLERY
===================================================== */

.small-button {
    border:
        1px solid
        rgba(217,154,38,.5);

    color:
        var(--gold-light);

    font-size: 11px;

    padding:
        11px 18px;

    border-radius: 5px;
}


.gallery {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}


.gallery-card {
    overflow: hidden;

    border-radius: 8px;

    border:
        1px solid
        var(--border);
}


.gallery-card img {
    height: 280px;

    object-fit: cover;

    transition:
        transform .6s;
}


.gallery-card:hover img {
    transform:
        scale(1.07);
}


/* =====================================================
   PARTNERS
===================================================== */

.partners-section {
    padding-top:
        35px;

    border-top:
        1px solid
        rgba(255,255,255,.06);
}


.partners-title {
    text-align: center;

    margin-bottom: 35px;

    font-weight: 700;
}


.partners {
    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    text-align: center;

    color:
        #747c7d;

    font-size: 16px;

    font-weight: 700;
}


/* =====================================================
   JOIN
===================================================== */

.join-section {
    padding:
        75px 0;

    background:
        linear-gradient(
            100deg,
            rgba(9,12,12,.97),
            rgba(21,14,5,.9)
        );

    border-top:
        1px solid
        rgba(217,154,38,.15);

    border-bottom:
        1px solid
        rgba(217,154,38,.15);
}


.join-content {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 30px;
}


.join-content h2 {
    font-family:
        'Oswald', sans-serif;

    font-size: 48px;
}


.join-content p {
    color:
        #999f9f;

    margin-top: 8px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding:
        70px 0 25px;

    background:
        #050707;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 60px;
}


.footer-logo {
    color:
        var(--gold-light);

    font-family:
        'Oswald', sans-serif;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 14px;
}


.footer p {
    color:
        #999f9f;

    margin-bottom: 12px;
}


.footer span {
    color:
        #656c6d;

    font-size: 11px;
}


.footer-column h4 {
    font-size: 12px;

    margin-bottom: 18px;
}


.footer-column a {
    display: block;

    color:
        #858d8e;

    font-size: 12px;

    margin: 11px 0;

    transition: .2s;
}


.footer-column a:hover {
    color:
        var(--gold-light);
}


/* =====================================================
   SOCIAL
===================================================== */

.social-area {
    margin-top: 55px;

    padding-top: 38px;

    border-top:
        1px solid
        rgba(255,255,255,.07);
}


.social-title {
    text-align: center;

    color:
        #71797a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 28px;
}


.social-icons {
    display: grid;

    grid-template-columns:
        repeat(6,1fr);

    gap: 12px;
}


.social-card {
    min-height: 118px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 12px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(18,22,22,.8),
            rgba(7,10,10,.9)
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 9px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.social-card::before {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background:
        rgba(217,154,38,.12);

    filter:
        blur(30px);

    opacity: 0;

    transition:
        opacity .3s ease;
}


.social-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(217,154,38,.50);

    background:
        linear-gradient(
            145deg,
            rgba(25,22,14,.9),
            rgba(8,11,11,.95)
        );

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.35),
        0 0 30px
        rgba(217,154,38,.08);
}


.social-card:hover::before {
    opacity: 1;
}


.social-icon {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 2;

    color:
        var(--gold-light);

    font-size: 29px;

    transition:
        transform .3s ease,
        filter .3s ease;
}


.social-card:hover .social-icon {
    transform:
        scale(1.13);

    filter:
        drop-shadow(
            0 0 12px
            rgba(242,182,63,.45)
        );
}


.custom-social-icon {
    border:
        1px solid
        rgba(242,182,63,.55);

    border-radius: 7px;

    font-family:
        'Oswald', sans-serif;

    font-size: 15px;

    font-weight: 700;
}


.social-card span {
    position: relative;

    z-index: 2;

    color:
        #9ba1a2;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 20px;

    margin-top: 40px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.05);
}


.footer-bottom span {
    color:
        #515859;

    font-size: 9px;

    letter-spacing: 1px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1320px) {

    .menu {
        gap: 14px;
    }

    .menu a {
        font-size: 9px;
    }

    .nav-buttons .btn-dark {
        display: none;
    }

}


@media (max-width: 1100px) {

    .menu {
        display: none;
    }


    .story-grid,
    .convoy-grid {
        grid-template-columns: 1fr;
    }


    .achievement-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .info-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .social-icons {
        grid-template-columns:
            repeat(3,1fr);
    }


    .executive-card {
        grid-template-columns:
            1fr;

        gap: 25px;
    }


    .executive-description {
        padding-left: 0;

        padding-top: 25px;

        border-left: none;

        border-top:
            1px solid
            rgba(255,255,255,.07);
    }

}


@media (max-width: 900px) {

    .founders-grid {
        grid-template-columns:
            1fr;
    }


    .managers-grid {
        grid-template-columns:
            1fr;
    }


    .manager-card {
        min-height: 300px;
    }

}


@media (max-width: 768px) {

    .nav {
        min-height: 70px;
    }


    .header-right {
        gap: 8px;
    }


    .nav-buttons .btn {
        min-height: 40px;

        padding:
            0 12px;

        font-size: 9px;
    }


    .language-switch {
        height: 31px;

        padding:
            0 7px;
    }


    .language-button {
        font-size: 8px;
    }


    .hero {
        min-height: 850px;

        background-position:
            60% center;
    }


    .hero-content {
        padding-bottom:
            330px;
    }


    .hero h1 {
        font-size: 74px;
    }


    .hero p {
        font-size: 14px;
    }


    .stats {
        grid-template-columns:
            1fr 1fr;

        bottom: 25px;
    }


    .stat {
        min-height: 95px;
    }


    .stat:nth-child(2)::after {
        display: none;
    }


    .about-photo {
        min-height: 400px;
    }


    .about-photo img {
        height: 400px;
    }


    .achievement-grid {
        grid-template-columns:
            1fr;
    }


    .info-grid {
        grid-template-columns:
            1fr;
    }


    .gallery {
        grid-template-columns:
            1fr;
    }


    .gallery-card img {
        height: 250px;
    }


    .partners {
        grid-template-columns:
            1fr 1fr;

        gap: 30px;
    }


    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }


    .social-icons {
        grid-template-columns:
            1fr 1fr;
    }


    .join-content {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .founder-story {
        align-items:
            flex-start;
    }

}


@media (max-width: 520px) {

    .container {
        width: 90%;
    }


    .logo {
        font-size: 19px;
    }


    .nav-buttons {
        display: none;
    }


    .header-right {
        margin-left: auto;
    }


    .hero-buttons {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .stats {
        width: 90%;
    }


    .stat {
        gap: 9px;

        padding:
            12px 7px;
    }


    .stat-icon {
        display: none;
    }


    .stat strong {
        font-size: 15px;
    }


    .stat .static-stat {
        font-size: 13px;
    }


    .stat span {
        font-size: 7px;
    }


    .about-photo {
        min-height: 330px;
    }


    .about-photo img {
        height: 330px;
    }


    .photo-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }


    .founder-card {
        min-height: 460px;

        padding: 30px;
    }


    .founder-footer {
        left: 30px;
        right: 30px;
    }


    .executive-card {
        min-height: auto;

        padding: 30px;
    }


    .executive-left {
        flex-direction: column;

        align-items: flex-start;
    }


    .manager-card {
        min-height: 330px;
    }


    .founder-story {
        flex-direction:
            column;
    }


    .footer-grid {
        grid-template-columns:
            1fr;
    }


    .social-icons {
        grid-template-columns:
            1fr 1fr;
    }


    .footer-bottom {
        flex-direction:
            column;

        text-align: center;
    }

}/* =====================================================
   BIGGER LANGUAGE SWITCH
===================================================== */

.language-switch {
    height: 40px;

    gap: 7px;

    padding:
        0 14px;
}


.language-switch > span {
    font-size: 11px;
}


.language-button {
    font-size: 11px;

    letter-spacing: .6px;
}


@media (max-width: 768px) {

    .language-switch {
        height: 36px;

        gap: 6px;

        padding:
            0 10px;
    }


    .language-switch > span {
        font-size: 10px;
    }


    .language-button {
        font-size: 10px;
    }

}/* =====================================================
   BIGGER LANGUAGE SWITCH
===================================================== */

.language-switch {
    height: 40px;

    gap: 7px;

    padding:
        0 14px;
}


.language-switch > span {
    font-size: 11px;
}


.language-button {
    font-size: 11px;

    letter-spacing: .6px;
}


@media (max-width: 768px) {

    .language-switch {
        height: 36px;

        gap: 6px;

        padding:
            0 10px;
    }


    .language-switch > span {
        font-size: 10px;
    }


    .language-button {
        font-size: 10px;
    }

}