:root {
    --lime: #C1D128;
    --lime-dark: #a8b823;
    --charcoal: #363636;
    --charcoal-light: #444444;
    --grey: #929397;
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --white: #ffffff;
    --off-white: #f8f8f8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    color: var(--white);
    background: var(--darker-bg);
    font-size: 16px;
    line-height: 1.7;
}

/* ─── ACCESSIBILITY ─── */

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--lime);
    color: var(--charcoal);
    padding: 8px 16px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 16px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
}

/* ─── UTILITY ─── */

.text-white { color: var(--white); }
.text-lime { color: var(--lime); }
.text-muted { color: var(--grey); font-size: 13px; }
.text-italic { font-style: italic; }

/* ─── NAVIGATION ─── */

body > nav {
    background: var(--darker-bg);
    border-bottom: 1px solid rgba(193, 209, 40, 0.15);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--lime);
}

.nav-links .btn-portal {
    background: transparent;
    border: 1px solid var(--lime);
    color: var(--lime);
    padding: 8px 20px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: not-allowed;
    transition: all 0.2s;
    opacity: 0.5;
}

/* ─── HERO ─── */

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(193, 209, 40, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(193, 209, 40, 0.04) 0%, transparent 50%);
}

.hero::after {
    content: 'GG';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 400px;
    color: rgba(193, 209, 40, 0.03);
    pointer-events: none;
    line-height: 1;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 720px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-tag {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--lime);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--white);
}

h1 .highlight {
    color: var(--lime);
}

.hero-text {
    font-size: 18px;
    color: var(--grey);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ─── BUTTONS ─── */

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--lime);
    color: var(--charcoal);
    border: none;
    padding: 16px 36px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
}

.btn-primary.btn-sm {
    font-size: 12px;
    padding: 10px 24px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 36px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--lime);
    color: var(--lime);
}

/* ─── VALUE PROPS ─── */

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(193, 209, 40, 0.1);
    border-top: 1px solid rgba(193, 209, 40, 0.1);
    border-bottom: 1px solid rgba(193, 209, 40, 0.1);
}

.vp-card {
    background: var(--darker-bg);
    padding: 48px 40px;
    transition: background 0.3s;
}

.vp-card:hover {
    background: rgba(193, 209, 40, 0.03);
}

.vp-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    color: var(--lime);
}

.vp-card h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lime);
    margin-bottom: 12px;
}

.vp-card p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.7;
}

/* ─── SECTIONS ─── */

section {
    padding: 80px 60px;
}

.section-header {
    margin-bottom: 48px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 16px;
}

h2 .highlight {
    color: var(--lime);
}

.section-subtitle {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    color: var(--grey);
    font-size: 16px;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--lime);
    margin-bottom: 20px;
}

/* ─── ABOUT ─── */

.about-section {
    background: var(--dark-bg);
}

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

.about-text p {
    color: var(--grey);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.brand-promise {
    color: var(--lime);
    font-style: italic;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
}

.about-stats-standalone {
    max-width: 600px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--darker-bg);
    border: 1px solid rgba(193, 209, 40, 0.1);
    padding: 28px;
}

.stat-card .number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: var(--lime);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.stat-card .label {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    display: block;
}

/* ─── CONTACT ─── */

.contact-section {
    background: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-email-block {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--dark-bg);
    border-left: 3px solid var(--lime);
}

.contact-email-block .label {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 6px;
}

.contact-email-block a {
    color: var(--lime);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.trade-callout {
    margin-top: 32px;
    padding: 24px;
    background: rgba(193, 209, 40, 0.05);
    border: 1px solid rgba(193, 209, 40, 0.15);
}

.trade-callout-title {
    color: var(--lime);
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.trade-callout p {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 12px;
}

/* ─── FORMS ─── */

.form-container {
    background: var(--dark-bg);
    border: 1px solid rgba(193, 209, 40, 0.1);
    padding: 40px;
}

.form-container h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--lime);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 8px;
}

.form-group label .req {
    color: var(--lime);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    transition: border-color 0.2s;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--lime);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-fieldset > legend {
    width: 100%;
}

.form-fieldset > .form-group > legend {
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--grey);
    margin-bottom: 8px;
}

.checkbox-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 8px;
}

.checkbox-group-vertical {
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
}

.checkbox-group input[type="checkbox"]:checked {
    background: var(--lime);
    border-color: var(--lime);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--charcoal);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

fieldset.form-fieldset.form-group + .form-group {
    margin-top: 8px;
}

.form-submit {
    background: var(--lime);
    color: var(--charcoal);
    border: none;
    padding: 14px 40px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.form-submit:hover {
    background: var(--lime-dark);
}

.form-submit-lg {
    margin-top: 24px;
}

/* ─── TRADE APPLICATION ─── */

.trade-section {
    background: var(--dark-bg);
}

.trade-form {
    max-width: 900px;
}

.form-message {
    padding: 28px 32px;
    margin-bottom: 32px;
    border: 1px solid;
}

.form-message h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-message-success {
    border-color: var(--lime);
    background: rgba(193, 209, 40, 0.08);
}

.form-message-success h3 {
    color: var(--lime);
}

.form-message-success p {
    color: var(--grey);
}

.form-message-success a {
    color: var(--lime);
}

.form-message-error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

.form-message-error p {
    color: #e74c3c;
}

.trade-intro {
    color: var(--grey);
    margin-bottom: 32px;
    font-size: 15px;
}

.form-section-title {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lime);
    margin: 36px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(193, 209, 40, 0.2);
}

.form-fieldset:first-of-type .form-section-title {
    margin-top: 0;
}

.form-note {
    color: var(--grey);
    font-size: 13px;
    margin-top: 16px;
}

.file-upload-zone {
    border: 2px dashed rgba(193, 209, 40, 0.3);
    padding: 40px;
    text-align: center;
    background: rgba(193, 209, 40, 0.02);
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-zone:hover {
    border-color: var(--lime);
    background: rgba(193, 209, 40, 0.05);
}

.file-upload-zone .upload-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}

.file-upload-zone p {
    color: var(--grey);
    font-size: 14px;
}

.file-upload-zone .browse-link {
    color: var(--lime);
    text-decoration: underline;
    cursor: pointer;
}

.file-limits {
    font-size: 12px;
    color: var(--grey);
    margin-top: 8px;
}

/* ─── LEGAL PAGES ─── */

.legal-section {
    background: var(--dark-bg);
    padding: 80px 60px;
}

.legal-content {
    max-width: 800px;
}

.legal-content h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--lime);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--grey);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    color: var(--grey);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--lime);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--lime-dark);
}

/* ─── FOOTER ─── */

footer {
    background: var(--charcoal);
    padding: 48px 60px 32px;
    border-top: 3px solid var(--lime);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 32px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--grey);
    font-size: 13px;
    max-width: 300px;
}

.footer-links h4 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lime);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--grey);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: var(--grey);
    font-size: 13px;
}

/* ─── BURGER MENU ─── */

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    width: 32px;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--lime);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--lime);
}

.nav-overlay {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

body.resizing .nav-links,
body.resizing .nav-overlay,
body.resizing .burger span {
    transition: none !important;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
    body > nav {
        padding: 0 20px;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--darker-bg);
        border-left: 1px solid rgba(193, 209, 40, 0.15);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links a {
        font-size: 14px;
        display: block;
        padding: 16px 0;
        color: var(--grey);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--lime);
    }

    .nav-links .btn-portal {
        margin-top: 16px;
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    section {
        padding: 60px 24px;
    }

    .hero {
        padding: 60px 24px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    footer {
        padding: 48px 24px 32px;
    }

    .hero::after {
        font-size: 200px;
    }
}

/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
