@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --black: #080808;
    --black-soft: #111111;
    --yellow: #ffd400;
    --yellow-deep: #f4c900;
    --white: #ffffff;
    --offwhite: #f3f3ef;
    --gray: #9b9b9b;
    --line: rgba(255,255,255,.14);
    --dark-line: rgba(0,0,0,.12);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--offwhite);
    color: var(--black);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(8,8,8,.94);
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--black);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 14px;
    letter-spacing: .05em;
}

.brand-text small {
    margin-top: 5px;
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: .24em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #eee;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--yellow);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: white;
}

.hero {
    min-height: 760px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    background:
        linear-gradient(110deg, rgba(0,0,0,.99) 0%, rgba(0,0,0,.94) 48%, rgba(0,0,0,.75) 100%);
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    width: 48vw;
    height: 48vw;
    max-width: 700px;
    max-height: 700px;
    right: -10vw;
    top: 100px;
    border: 1px solid rgba(255,212,0,.25);
    border-radius: 50%;
}

.hero-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    right: 8%;
    top: 22%;
    border-radius: 50%;
    background: var(--yellow);
    filter: blur(160px);
    opacity: .10;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--yellow);
    margin-bottom: 24px;
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(54px, 8vw, 112px);
    line-height: .91;
    letter-spacing: -.065em;
    font-weight: 900;
}

.hero-copy {
    max-width: 740px;
    margin: 34px 0 0;
    color: #cfcfcf;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    font-weight: 800;
    font-size: 14px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: #ffe13e;
}

.btn-outline {
    color: white;
    border: 1px solid rgba(255,255,255,.35);
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.hero-number {
    position: absolute;
    right: 4vw;
    bottom: -55px;
    color: rgba(255,255,255,.035);
    font-size: clamp(180px, 28vw, 420px);
    line-height: 1;
    font-weight: 900;
}

.section {
    padding: 115px 0;
    scroll-margin-top: 76px;
}

.section-light {
    background: var(--yellow);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.section-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .15em;
    padding-bottom: 9px;
    border-bottom: 3px solid var(--black);
}

.section-number.yellow {
    color: var(--yellow);
    border-color: var(--yellow);
}

.section-kicker {
    margin: 24px 0 12px;
}

.section-kicker.yellow {
    color: var(--yellow);
}

.section h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(40px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.05em;
}

.section-text {
    padding-top: 48px;
}

.section-text p {
    margin: 0;
    font-size: 20px;
    line-height: 1.75;
}

.section-dark {
    background: var(--black);
    color: white;
}

.light-title {
    color: white;
}

.proposal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 58px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.16);
}

.proposal-card {
    min-height: 245px;
    padding: 34px;
    background: var(--black);
    transition: background .2s ease, transform .2s ease;
}

.proposal-card:hover {
    background: var(--black-soft);
}

.proposal-card > span {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
}

.proposal-card h3 {
    margin: 40px 0 12px;
    font-size: 25px;
}

.proposal-card p {
    max-width: 480px;
    margin: 0;
    color: #aaa;
}

.section-candidates {
    background: var(--offwhite);
}

.candidates-intro {
    max-width: 760px;
    margin: 25px 0 50px;
    color: #555;
    font-size: 18px;
}

.candidate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.candidate-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--dark-line);
    transition: transform .2s ease, box-shadow .2s ease;
}

.candidate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0,0,0,.09);
}

.candidate-photo {
    aspect-ratio: 4 / 4.6;
    overflow: hidden;
    background: #151515;
}

.candidate-photo img {
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter .25s ease, transform .25s ease;
}

.candidate-card:hover .candidate-photo img {
    filter: grayscale(0%);
    transform: scale(1.025);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, #111 0%, #222 100%);
    color: rgba(255,212,0,.35);
}

.photo-placeholder span {
    font-size: 78px;
    font-weight: 900;
}

.candidate-info {
    position: relative;
    padding: 26px;
    border-top: 5px solid var(--yellow);
}

.candidate-order {
    position: absolute;
    top: -31px;
    right: 18px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--black);
    font-size: 14px;
    font-weight: 900;
}

.candidate-info h3 {
    margin: 0 60px 5px 0;
    font-size: 21px;
    line-height: 1.15;
}

.candidate-role {
    margin: 0 0 14px !important;
    color: #7a6800 !important;
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.candidate-info p {
    margin: 0;
    color: #5e5e5e;
    font-size: 14px;
}

.site-footer {
    padding: 36px 0;
    background: var(--black);
    color: white;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer strong {
    display: block;
}

.site-footer span,
.footer-copy {
    color: #999;
    font-size: 13px;
}

@media (max-width: 900px) {
    .candidate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-text {
        padding-top: 0;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 30px), var(--max));
    }

    .nav-wrap {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 15px 20px;
        background: var(--black);
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 10px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .hero {
        min-height: 660px;
        padding-top: 125px;
    }

    .hero h1 {
        font-size: clamp(50px, 15vw, 74px);
    }

    .hero-copy {
        font-size: 17px;
    }

    .section {
        padding: 80px 0;
    }

    .proposal-grid,
    .candidate-grid {
        grid-template-columns: 1fr;
    }

    .proposal-card {
        min-height: auto;
    }

    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
