:root {
    --obsidian-black: #0A0A0A;
    --nexium-gold: #C9A84C;
    --antique-bronze: #8B7536;
    --champagne-gold: #D4C088;
    --ivory: #F5F0E8;
    --warm-gray: #8A8278;
    --charcoal: #1A1A1A;

    --font-heading: "Inter", sans-serif;
    /* Placeholder for Neue Haas Grotesk */
    --font-body: "Inter", sans-serif;
    /* Placeholder for Suisse Intl */
    --font-tagline: "Cormorant Garamond", serif;
    --font-mono: "JetBrains Mono", monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--obsidian-black);
    color: var(--ivory);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise Texture Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Entry Screen */
.entry-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.lang-switch-entry {
    position: absolute;
    top: 2rem;
    right: 4rem;
    z-index: 10001;
}

@media (max-width: 1024px) {
    .lang-switch-entry {
        right: 2rem;
    }
}

.entry-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.entry-content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.entry-logo {
    width: 220px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.6));
}

.entry-text {
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.5;
}

.entry-question {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    margin-top: 3rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-weight: 700;
}

.entry-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.entry-btn {
    padding: 1rem 3rem;
    background-color: var(--nexium-gold);
    color: var(--obsidian-black);
    border: 1px solid var(--nexium-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.entry-btn:hover {
    background-color: #fff;
    border-color: #fff;
}

.entry-btn.outline {
    background-color: transparent;
    color: var(--nexium-gold);
    border: 1px solid var(--nexium-gold);
}

.entry-btn.outline:hover {
    background-color: rgba(201, 168, 76, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand-text {
    font-family: var(--font-heading);
    color: var(--nexium-gold);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    line-height: 1.2;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    width: 35px;
    height: auto;
}

.nav-brand-info {
    display: flex;
    flex-direction: column;
}

.nav-brand-sub {
    font-family: var(--font-heading);
    color: #8A8A8A;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: #8A8A8A;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: "|";
    position: absolute;
    right: -0.9rem;
    color: rgba(138, 138, 138, 0.3);
    pointer-events: none;
}

.nav-link:last-child::after {
    display: none;
}

.nav-link:hover {
    color: #F5F5F5;
}

.nav-link.active {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-back-btn {
    color: var(--nexium-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-back-btn:hover {
    transform: translateX(-5px);
}

.nav-btn-apply {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--nexium-gold);
    color: var(--nexium-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn-apply:hover {
    background: var(--nexium-gold);
    color: black;
}

/* Language Switcher in Nav */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--warm-gray);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    font-family: inherit;
    font-size: inherit;
}

.lang-btn.active {
    color: var(--nexium-gold);
}

.lang-separator {
    color: rgba(201, 168, 76, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--nexium-gold);
    transition: all 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: #0A0A0A;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        padding: 4rem 2rem;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1050;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-btn-apply {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Hero V2 Section */
.lang-switch-hero {
    position: absolute;
    top: 2rem;
    right: 4rem;
    z-index: 10;
}

@media (max-width: 1024px) {
    .lang-switch-hero {
        right: 2rem;
    }
}

.hero-v2 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #0A0A0A;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    /* 8% opacity as requested */
}

.hero-v2-container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-v2-logo-box {
    margin-bottom: 2rem;
    animation: emblemFadeScale 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-v2-emblem {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

.hero-v2-title {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    line-height: 1;
    animation: heroTextFade 1s ease-out 0.5s both;
}

.hero-v2-subtitle {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    animation: heroTextFade 1s ease-out 0.7s both;
}

.hero-v2-tagline {
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation: heroTextFade 1s ease-out 0.9s both;
    opacity: 0.8;
}

.hero-v2-actions {
    display: flex;
    gap: 1.5rem;
    animation: heroTextFade 1s ease-out 1.1s both;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 1px solid var(--nexium-gold);
    color: var(--nexium-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    background-color: var(--nexium-gold);
    color: black;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
    padding: 1rem 2.5rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

@keyframes emblemFadeScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroTextFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About / Manifesto Section */
.about-section {
    min-height: 100vh;
    padding: 160px 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #0A0A0A;
}

.about-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.manifesto-container {
    max-width: 750px;
}

.manifesto-tag {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    font-weight: 600;
    text-transform: uppercase;
}

.manifesto-divider {
    width: 40px;
    height: 1px;
    background-color: var(--nexium-gold);
    margin: 1.5rem auto 3rem;
    opacity: 0.6;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

.main-manifesto {
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    line-height: 1.4;
    font-weight: 400;
}

.sub-manifesto {
    color: #8A8A8A;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    font-weight: 300;
}

.manifesto-paragraph {
    color: var(--ivory);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.6;
    font-weight: 400;
}

/* Target Audience Section */
.audience-section {
    padding: 160px 4rem;
    background-color: #0A0A0A;
}

.audience-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.audience-header {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.audience-subtitle {
    color: #8A8A8A;
    font-size: 1.1rem;
    margin-bottom: 5rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    text-align: left;
    margin-bottom: 5rem;
}

.audience-item {
    border-left: 1px solid rgba(201, 168, 76, 0.3);
    padding-left: 2rem;
}

.audience-item-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.audience-item-desc {
    color: #8A8A8A;
    font-size: 0.95rem;
    line-height: 1.6;
}

.audience-info {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-info p {
    color: #8A8A8A;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.6;
}

.audience-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .audience-section {
        padding: 80px 2rem;
    }

    .audience-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 2rem;
        margin-right: -2rem;
        margin-left: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .audience-item {
        min-width: 280px;
        scroll-snap-align: start;
        background: #111;
        padding: 2rem;
        border-left: none;
        border-top: 2px solid var(--nexium-gold);
    }
}

/* Payment Flexibility */
.payment-flexibility {
    margin-top: 8rem;
    text-align: center;
}

.payment-header {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-option-card {
    background: #111;
    padding: 2rem 1rem;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.option-name {
    color: white;
    font-weight: 600;
}

.option-sub {
    color: #8A8A8A;
    font-size: 0.8rem;
}

.option-badge {
    background-color: var(--nexium-gold);
    color: black;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

.payment-disclaimer {
    color: #8A8A8A;
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 5rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

.method-item {
    display: flex;
    gap: 1.5rem;
    background: #111;
    padding: 2rem;
    border: 1px solid #222;
}

.method-icon {
    font-size: 2rem;
}

.method-info h4 {
    color: var(--nexium-gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-info p {
    color: #8A8A8A;
    font-size: 0.85rem;
    line-height: 1.5;
}

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

@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .payment-options-grid {
        grid-template-columns: 1fr;
    }
}

/* Syndicate Page Section */
.syndicate-intro {
    max-width: 750px;
    margin: 0 auto 4rem;
    text-align: center;
}

.syndicate-intro p {
    color: white;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}

.syndicate-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.syndicate-feature-item {
    background-color: #111;
    padding: 2.5rem;
    border: 1px solid #222;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-content h3 {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-content p {
    color: #8A8A8A;
    font-size: 0.95rem;
    line-height: 1.5;
}

.syndicate-actions {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .syndicate-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Application Form Section */
.apply-form-box {
    max-width: 600px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.form-group-v2 label {
    color: var(--ivory);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.form-group-v2 input,
.form-group-v2 select,
.form-group-v2 textarea {
    background-color: #1A1A1A;
    border: 1px solid #333;
    border-radius: 0;
    padding: 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group-v2 input:focus,
.form-group-v2 select:focus,
.form-group-v2 textarea:focus {
    outline: none;
    border-color: var(--nexium-gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    background-color: #1A1A1A;
    border: 1px solid #333;
    border-radius: 0;
    padding: 1rem;
    padding-right: 3rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.custom-select-trigger:hover {
    border-color: #555;
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--nexium-gold);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.1);
}

.custom-select-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-value.placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--nexium-gold);
    border-bottom: 2px solid var(--nexium-gold);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: translateY(-30%) rotate(225deg);
}

.custom-select-options {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    border: 1px solid var(--nexium-gold);
    border-top: none;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.custom-select-wrapper.open .custom-select-options {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.custom-select-option {
    padding: 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background-color: rgba(201, 168, 76, 0.15);
    color: var(--nexium-gold);
    padding-left: 1.5rem;
}

.custom-select-option.selected {
    background-color: rgba(201, 168, 76, 0.2);
    color: var(--nexium-gold);
    font-weight: 600;
}

.custom-select-options::-webkit-scrollbar {
    width: 4px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #1A1A1A;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: var(--nexium-gold);
}


.form-group-country {
    margin-top: 1.5rem;
}

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

.submit-btn-full {
    background-color: var(--nexium-gold);
    color: black;
    border: none;
    padding: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn-full:hover {
    background-color: white;
}

.apply-footer-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.apply-footer-info .info-text {
    color: #8A8A8A;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.apply-footer-info .info-contact {
    color: var(--ivory);
    font-size: 0.9rem;
}

.apply-footer-info .info-contact a {
    color: var(--nexium-gold);
    text-decoration: none;
    font-weight: 600;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-method-item {
    margin-bottom: 3rem;
}

.contact-method-item h4 {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.contact-method-item p,
.contact-method-item a {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-item a:hover {
    color: var(--nexium-gold);
}

.contact-office-note {
    color: #8A8A8A;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-top: 4rem;
}

.contact-response-time {
    margin-top: 2rem;
    color: #8A8A8A;
    font-size: 0.85rem;
    font-style: italic;
}

#contact-form .btn-primary {
    margin-top: 2rem;
}

#contact-form .form-group-v2:has(label[for="c_email"]),
#contact-form .form-group-v2:has(label[for="c_message"]) {
    margin-top: 2rem;
}

#contact-form .btn-primary:hover {
    background-color: var(--nexium-gold);
    color: white;
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .contact-method-item p,
    .contact-method-item a {
        font-size: 1.1rem;
    }
}

/* Code Rules Section */
.code-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.code-rule {
    padding: 6rem 0;
}

.rule-number {
    display: block;
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.rule-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.rule-desc {
    color: #8A8A8A;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.code-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--nexium-gold), transparent);
    opacity: 0.3;
}

.code-footer-quote {
    margin-top: 8rem;
    padding-bottom: 4rem;
}

.code-footer-quote p {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Formats List Blocks */
.formats-list {
    background-color: #0A0A0A;
}

.format-block {
    padding: 120px 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.format-block.alternate {
    background-color: #111111;
}

.format-layout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.format-icon-box {
    margin-bottom: 2rem;
}

.format-title-large {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.format-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.format-tag-item {
    background-color: rgba(201, 168, 76, 0.1);
    color: var(--nexium-gold);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.format-tag-tier {
    background-color: rgba(255, 255, 255, 0.05);
    color: #8A8A8A;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.format-description-large {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 768px) {
    .format-block {
        padding: 80px 2rem;
    }

    .format-title-large {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .formats-grid {
        grid-template-columns: 1fr;
    }
}

/* Bonus Events Section */
.bonus-events {
    margin-top: 8rem;
    text-align: center;
}

.bonus-header {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.bonus-subtitle {
    color: #8A8A8A;
    font-size: 1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bonus-card {
    background: #111;
    padding: 2rem;
    border: 1px solid #222;
    text-align: left;
    transition: border-color 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--nexium-gold);
}

.bonus-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.bonus-card-header h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.bonus-price {
    color: var(--nexium-gold);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.bonus-desc {
    color: #8A8A8A;
    font-size: 0.9rem;
}

.bonus-footer-info {
    color: #8A8A8A;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* Membership Grid */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.membership-tier {
    background-color: #1A1A1A;
    padding: 3rem 1rem;
    border: 1px solid #222222;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    justify-content: space-between;
}

.membership-tier:hover {
    border-color: var(--nexium-gold);
}

.membership-tier.featured {
    border-color: var(--nexium-gold);
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.membership-tier.featured .tier-name {
    color: white;
}

.tier-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--nexium-gold);
    color: black;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.tier-header {
    height: 140px;
    /* Consistent height for name and price */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
}

.tier-name {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.tier-price {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.tier-price small {
    font-size: 0.9rem;
    color: #8A8A8A;
    font-weight: 400;
}

.tier-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    margin-bottom: 3rem;
    flex-grow: 1;
    min-height: 480px;
    /* Ensures consistent list height for vertical alignment */
}

.tier-features li {
    color: var(--ivory);
    font-size: 0.9rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tier-features li.cross {
    color: #555;
}

.tier-features li::before {
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
}

.tier-features li.check::before {
    content: "✓";
    color: var(--nexium-gold);
}

.tier-features li.cross::before {
    content: "✗";
    color: #555;
}

.tier-features li.info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.tier-features li.empty-line {
    list-style: none;
    height: 1.6rem;
}

.tier-features li.empty-line::before {
    content: none !important;
}

.tier-features li.note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--warm-gray);
    line-height: 1.4;
}

.tier-cta {
    padding: 1rem;
    border: 1px solid var(--nexium-gold);
    color: var(--nexium-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background-color: var(--nexium-gold);
    color: black;
}

.onboarding-fee-box {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    border: 1px dashed #333;
}

.onboarding-fee-box p {
    color: #8A8A8A;
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 1200px) {
    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .membership-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 4rem;
        align-items: stretch;
        padding: 0 1rem;
    }

    .page-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .bonus-card-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .payment-options-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }

    .footer-left p {
        font-size: 0.75rem;
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 4rem;
    background-color: #111111;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #333333;
}

.timeline-item {
    position: relative;
    padding-bottom: 5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -50px;
    top: 8px;
    width: 15px;
    height: 15px;
    background-color: var(--nexium-gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.timeline-text {
    color: #8A8A8A;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -30px;
        width: 12px;
        height: 12px;
    }

    .timeline-line {
        left: 5px;
    }
}

/* Subpage Styles */
.subpage {
    background-color: #0A0A0A;
}

.page-header {
    padding: 200px 4rem 100px;
    background: radial-gradient(circle at center, #111111 0%, #0A0A0A 100%);
    text-align: center;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 7vw, 6rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    overflow-wrap: break-word;
}

.page-tagline {
    font-family: var(--font-heading);
    color: var(--nexium-gold);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.page-content {
    padding: 100px 4rem;
}

.vision-mission-section {
    padding: 100px 4rem;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-block {
    background-color: #1A1A1A;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vm-label {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
}

.vm-text {
    color: white;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
}

.manifesto-section-page {
    padding: 100px 4rem 160px;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.about-text-block h2 {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.about-text-block p {
    color: var(--ivory);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .page-header {
        padding: 160px 2rem 60px;
    }

    .page-content,
    .vision-mission-section {
        padding: 60px 2rem;
    }

    .vm-block {
        padding: 2.5rem;
    }
}

/* Stats Strip */
.stats-strip {
    background: linear-gradient(135deg, #C8A96E 0%, #D4A853 100%);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    color: #0A0A0A;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(10, 10, 10, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Pillars Section */
.pillars-section {
    padding: 160px 4rem;
    background-color: #111111;
}

.pillars-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    background-color: #1A1A1A;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #222222;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pillar-card:hover {
    border-color: var(--nexium-gold);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15);
    transform: translateY(-5px);
}

.pillar-icon {
    margin-bottom: 2rem;
}

.pillar-name {
    font-family: var(--font-heading);
    color: var(--nexium-gold);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.pillar-desc {
    color: white;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 160px 4rem;
    background-color: #0A0A0A;
    text-align: center;
}

.final-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-text {
    color: white;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.final-cta-sub {
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
}

.final-cta-actions .btn-primary {
    background: transparent;
    color: var(--nexium-gold);
}

.final-cta-actions .btn-primary:hover {
    background: var(--nexium-gold);
    color: black;
}

/* Footer */
.footer {
    background-color: #0A0A0A;
    padding: 4rem;
    border-top: 1px solid #222222;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left p {
    color: #8A8A8A;
    font-size: 0.8rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    color: #8A8A8A;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-sep {
    color: #222222;
}

.social-link {
    color: #8A8A8A;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--nexium-gold);
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-v2-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 10%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none !important;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

.modal-content {
    background: #111;
    border: 1px solid var(--nexium-gold);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3rem;
    color: var(--nexium-gold);
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    border: 2px solid var(--nexium-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    animation: iconBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.modal-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-text {
    color: #8A8A8A;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-close-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--nexium-gold);
    color: var(--nexium-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--nexium-gold);
    color: black;
}