/* --- Luxury Variables & Core --- */
:root {
    --color-bg: #0C0C0C;
    --color-surface: #1A1A1A;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: rgba(255, 255, 255, 0.65);
    --color-accent: #E5A93D;
    /* Muted Gold */
    --color-accent-rgb: 229, 169, 61;
    --font-primary: 'Inter', sans-serif;
    --header-height: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- Background Blobs --- */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.4) 0%, transparent 70%);
}

.glow-blob--1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
}

.glow-blob--2 {
    width: 800px;
    height: 800px;
    bottom: -200px;
    left: -200px;
    opacity: 0.1;
}

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.header__container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    letter-spacing: -0.03em;
}

.header__logo span {
    color: var(--color-accent);
}

.header__list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.header__link {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: white;
}

.header__cta-link {
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 1px solid rgba(var(--color-accent-rgb), 0.3);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.header__cta-link:hover {
    background: rgba(var(--color-accent-rgb), 0.1);
    border-color: var(--color-accent);
}

/* --- Hero Section --- */
.hero--elite {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    position: relative;
}

.hero__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.hero__content {
    max-width: 720px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(var(--color-accent-rgb), 0.1);
    border: 1px solid rgba(var(--color-accent-rgb), 0.2);
    color: var(--color-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.text-gradient {
    background: linear-gradient(135deg, white 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__text {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 580px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* --- Luxury Buttons --- */
.btn {
    padding: 20px 48px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    font-family: inherit;
}

.btn--elite-primary {
    background: var(--color-accent);
    color: black;
    box-shadow: 0 10px 30px rgba(var(--color-accent-rgb), 0.3);
}

.btn--elite-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--color-accent-rgb), 0.4);
    background: #f1b74d;
}

.btn--elite-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn--elite-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Trust Item --- */
.hero__trust {
    display: flex;
    align-items: center;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item__val {
    font-size: 1.8rem;
    font-weight: 700;
}

.trust-item__lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Visual Area --- */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

/* Subtle underlying shadow glow for the pouch */
.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.hero__image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.9));
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__actions {
        justify-content: center;
        width: 100%;
    }

    .header__nav {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__supertitle {
        font-size: 3rem;
    }
}