:root {
    --org: #E8440A;
    --org2: #FF5722;
    --blk: #0D0D0D;
    --blk2: #1A1A1A;
    --blk3: #252525;
    --wht: #F5F0EB;
    --gry: #888880;
    --gry2: #555550;
    --fc: 'Barlow Condensed', sans-serif;
    --fb: 'Barlow', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fb);
    background: var(--blk);
    color: var(--wht);
    overflow-x: hidden;
}

/* HERO */
.hero {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8rem 3rem 3.5rem;
    margin-top: 0;
    background: var(--blk);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232, 68, 10, .08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;

    padding: 12px 22px;
    margin-bottom: 2rem;

    font-family: var(--fc);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    color: var(--wht);

    border: 2px solid rgba(255, 255, 255, .75);
    border-radius: 999px;

    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(8px);

    position: relative;
    z-index: 3;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--org);
}

.hero h1 {
    font-family: var(--fc);
    font-size: clamp(4rem, 11vw, 9rem);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 .org {
    color: var(--org);
}

.hero h1 .stroke {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(245, 240, 235, .2);
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 2rem;
}

.hero-desc {
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gry);
    font-weight: 400;
}

.hero-desc strong {
    color: var(--wht);
}

.who-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.who-badge {
    font-family: var(--fc);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1.5px solid rgba(255, 255, 255, .15);
    color: var(--gry);
    border-radius: 2px;
    transition: all .2s;
    cursor: default;
}

.who-badge:hover {
    border-color: var(--org);
    color: var(--org);
}

/* TICKER */
.ticker {
    overflow: hidden;
    background: var(--org);
    padding: 11px 0;
}

.tk-track {
    display: flex;
    white-space: nowrap;
    animation: tk 22s linear infinite;
}

.tk-item {
    font-family: var(--fc);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blk);
    padding: 0 2.5rem;
    flex-shrink: 0;
}

@keyframes tk {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* WHO CAN APPLY */
.who-section {
    padding: 5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.section-eyebrow {
    font-family: var(--fc);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--org);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--org);
}

.section-h2 {
    font-family: var(--fc);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: .95;
    letter-spacing: -.01em;
    margin-bottom: 3rem;
}

.section-h2 em {
    font-style: italic;
    color: var(--gry);
    font-weight: 700;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .06);
}

.who-card {
    background: var(--blk);
    padding: 2rem 1.5rem;
    cursor: default;
    transition: background .2s;
    position: relative;
    overflow: hidden;
}

.who-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--org);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.who-card:hover {
    background: var(--blk2);
}

.who-card:hover::before {
    transform: scaleY(1);
}

.wc-num {
    font-family: var(--fc);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.wc-icon {
    font-size: 1.5rem;
    margin-bottom: .75rem;
    display: block;
}

.wc-title {
    font-family: var(--fc);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--wht);
    margin-bottom: .5rem;
    letter-spacing: .02em;
}

.wc-desc {
    font-size: .85rem;
    color: var(--gry);
    line-height: 1.65;
}

.wc-eg {
    font-family: var(--fc);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--org);
    margin-top: .85rem;
}

/* WHAT WE LOOK FOR */
.criteria {
    padding: 5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: var(--blk2);
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.crit-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    margin-top: 2rem;
}

.crit-item {
    background: var(--blk2);
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: background .2s;
    cursor: default;
}

.crit-item:hover {
    background: var(--blk3);
}

.crit-check {
    width: 28px;
    height: 28px;
    background: var(--org);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 900;
    color: var(--wht);
    flex-shrink: 0;
    margin-top: 1px;
}

.crit-text {
    font-size: .9rem;
    color: var(--wht);
    line-height: 1.6;
}

.crit-text strong {
    display: block;
    font-family: var(--fc);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 3px;
}

.not-needed {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2rem;
}

.nn-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: .85rem 1rem;
    background: rgba(255, 255, 255, .03);
    border-radius: 2px;
}

.nn-x {
    font-size: .8rem;
    color: var(--gry2);
    font-weight: 700;
    flex-shrink: 0;
}

.nn-text {
    font-size: .85rem;
    color: var(--gry);
    line-height: 1.5;
}

.quote-block {
    background: var(--org);
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 2px;
}

.quote-block p {
    font-family: var(--fc);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
    color: var(--blk);
}

/* WHAT YOU GET */
.perks {
    padding: 5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    margin-top: 2rem;
}

.perk-card {
    background: var(--blk);
    padding: 2rem 1.5rem;
    transition: background .2s;
    cursor: default;
}

.perk-card:hover {
    background: var(--blk2);
}

.perk-num {
    font-family: var(--fc);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--org);
    line-height: 1;
    margin-bottom: .75rem;
}

.perk-title {
    font-family: var(--fc);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--wht);
    margin-bottom: .4rem;
    letter-spacing: .03em;
}

.perk-desc {
    font-size: .82rem;
    color: var(--gry);
    line-height: 1.65;
}

/* PROCESS */
.process {
    padding: 5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: var(--blk2);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    margin-top: 2rem;
}

.ps-step {
    background: var(--blk2);
    padding: 2rem 1.5rem;
    position: relative;
}

.ps-num {
    font-family: var(--fc);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    margin-bottom: .75rem;
}

.ps-tag {
    font-family: var(--fc);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--org);
    margin-bottom: .5rem;
}

.ps-title {
    font-family: var(--fc);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--wht);
    margin-bottom: .4rem;
}

.ps-desc {
    font-size: .8rem;
    color: var(--gry);
    line-height: 1.6;
}

.ps-time {
    font-family: var(--fc);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gry2);
    margin-top: .75rem;
}

/* FORM */
.form-section {
    padding: 5rem 3rem;
}

.form-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.form-intro {
    font-size: 1rem;
    color: var(--gry);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 3rem;
}

.form-intro strong {
    color: var(--wht);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    margin-bottom: 1px;
}

.form-field {
    background: var(--blk);
    padding: 1.25rem 1.5rem;
}

.form-field.full {
    grid-column: span 2;
}

.field-label {
    font-family: var(--fc);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--org);
    margin-bottom: .5rem;
    display: block;
}

.field-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: .5rem 0;
    font-family: var(--fb);
    font-size: .95rem;
    color: var(--wht);
    outline: none;
    transition: border-color .2s;
}

.field-input:focus {
    border-bottom-color: var(--org);
}

.field-input::placeholder {
    color: var(--gry2);
}

.field-select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: .5rem 0;
    font-family: var(--fb);
    font-size: .95rem;
    color: var(--wht);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.field-select option {
    background: var(--blk2);
    color: var(--wht);
}

.field-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: .5rem 0;
    font-family: var(--fb);
    font-size: .95rem;
    color: var(--wht);
    outline: none;
    resize: none;
    min-height: 80px;
    transition: border-color .2s;
}

.field-textarea:focus {
    border-bottom-color: var(--org);
}

.field-textarea::placeholder {
    color: var(--gry2);
}

.form-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: .25rem;
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.radio-opt input {
    accent-color: var(--org);
}

.radio-opt span {
    font-size: .85rem;
    color: var(--gry);
}

.form-submit-row {
    background: var(--blk);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.submit-note {
    font-size: .8rem;
    color: var(--gry2);
    max-width: 320px;
    line-height: 1.6;
}

.btn-submit {
    background: var(--org);
    color: var(--wht);
    border: none;
    padding: 14px 36px;
    font-family: var(--fc);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--org2);
    transform: translateY(-2px);
}

.btn-submit svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* SUCCESS */
.success-state {
    display: none;
    text-align: center;
    padding: 5rem 2rem;
}

.success-state.show {
    display: block;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.success-h {
    font-family: var(--fc);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.success-h span {
    color: var(--org);
}

.success-p {
    font-size: .95rem;
    color: var(--gry);
    line-height: 1.75;
    max-width: 440px;
    margin: 0 auto 2rem;
}


/* UTILS */
.fu {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.fu.v {
    opacity: 1;
    transform: none;
}

.fd1 {
    transition-delay: .06s;
}

.fd2 {
    transition-delay: .13s;
}

.fd3 {
    transition-delay: .2s;
}

@media(max-width:768px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .who-section,
    .criteria,
    .perks,
    .process,
    .form-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field.full {
        grid-column: span 1;
    }

    footer {
        padding: 2rem 1.5rem;
    }
}