/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-muted: #888888;
    --accent: #c0c0c0;
    --accent-light: #e0e0e0;
    --accent-glow: rgba(255, 255, 255, 0.15);
    --gold: #ffffff;
    --gold-light: #d0d0d0;
    --gold-glow: rgba(255, 255, 255, 0.15);
    --green: #c0c0c0;
    --red: #c0c0c0;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.4);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    box-shadow:
        inset 15px 0 80px rgba(255, 255, 255, 0.2),
        inset -15px 0 80px rgba(255, 255, 255, 0.2),
        15px 0 100px rgba(255, 255, 255, 0.18),
        -15px 0 100px rgba(255, 255, 255, 0.18),
        5px 0 20px rgba(255, 255, 255, 0.4),
        -5px 0 20px rgba(255, 255, 255, 0.4),
        2px 0 6px rgba(255, 255, 255, 0.6),
        -2px 0 6px rgba(255, 255, 255, 0.6);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

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

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

.section {
    padding: 100px 0;
    position: relative;
}

.gold-text {
    color: var(--gold);
}

.accent {
    color: var(--accent-light);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #ffffff;
    color: #000000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #c0c0c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 48px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.vault-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    opacity: 0.3;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
    gap: 20px;
    align-items: start;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 24px 24px;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(255, 255, 255, 0.04),
        0 0 60px rgba(255, 255, 255, 0.02),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.hero-product {
    display: flex;
    align-items: start;
    justify-content: center;
    grid-column: 2 / 4;
}

.product-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.06),
        0 0 30px rgba(255, 255, 255, 0.03);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #000;
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 6px 0;
    text-align: center;
    letter-spacing: 2px;
}

.product-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-top: 28px;
    margin-bottom: 6px;
}

.product-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.product-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.check-square {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
}

.check-square::after {
    content: '✓';
    position: absolute;
    top: -1px;
    left: 2px;
    font-size: 11px;
    color: #fff;
    font-weight: 700;
}

.product-pack-selector {
    margin-bottom: 16px;
}

.pack-selector-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pack-option {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.pack-option:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.pack-option.active {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.pack-radio {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.pack-option.active .pack-radio {
    border-color: #fff;
    background: #fff;
    box-shadow: inset 0 0 0 3px #000;
}

.pack-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.pack-details strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.pack-price {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.pack-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.tshirt-options {
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.product-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.product-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    margin-bottom: 16px;
}

.product-info {
    width: 100%;
    text-align: left;
}

.product-name {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.product-includes {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 8px;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.product-label {
    margin-top: 12px;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05), rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: neonBorderMove 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes neonBorderMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.hero-right {
    display: flex;
    align-items: stretch;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(255, 255, 255, 0.04),
        0 0 60px rgba(255, 255, 255, 0.02),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05), rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: neonBorderMove 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-vault-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #c0c0c0;
    margin-bottom: 18px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.hero-title .g {
    color: #00ff66;
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}

.hero-title .w {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }

.title-line.accent {
    background: linear-gradient(135deg, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.gold {
    background: linear-gradient(135deg, #c0c0c0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.2);
}

.btn-glow {
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15); }
    50% { box-shadow: 0 4px 40px rgba(255, 255, 255, 0.25), 0 0 60px rgba(255, 255, 255, 0.1); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-price {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

/* ========== HERO AMOUNT SHOWCASE ========== */
.hero-amount-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 16px 0 20px;
    animation: fadeInUp 0.8s ease-out 0.55s both;
}

.amount-display {
    position: relative;
    z-index: 2;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    overflow: visible;
}

.amount-value {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: #ffffff;
    white-space: nowrap;
}

.amount-glow-ring {
    display: none;
}

.amount-scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    z-index: 3;
    pointer-events: none;
    animation: scanLine 4s ease-in-out infinite;
}

@keyframes scanLine {
    0% { left: -40%; }
    100% { left: 120%; }
}

/* ========== HERO STATS ========== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.stat {
    text-align: center;
    min-width: 100px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0px;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* ========== SCROLL INDICATOR ========== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c0c0c0;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.05);
}

.step-card.highlight {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 255, 255, 0.03));
}

.step-card.highlight:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.08);
}

.step-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: #c0c0c0;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.step-card.highlight .step-number {
    color: #ffffff;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-connector {
    color: var(--text-muted);
    opacity: 0.3;
    flex-shrink: 0;
    padding: 0 8px;
}

/* ========== VAULT SECTION ========== */
.vault-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vault-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-door {
    width: 320px;
    height: 360px;
    background: linear-gradient(145deg, #1e1e32, #14142a);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    box-shadow: 
        0 0 60px rgba(108, 92, 231, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.vault-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 20s linear infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vault-ring-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ringRotate 20s linear infinite reverse;
}

.vault-amount {
    text-align: center;
    font-family: var(--font-display);
}

.vault-amount .currency {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 3px;
}

.vault-amount .amount.vault-styled {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffffff;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.1));
}

.vault-amount .million {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.vault-dots {
    display: flex;
    gap: 8px;
}

.vault-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    animation: dotPulse 2s ease-in-out infinite;
}

.vault-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.vault-dots .dot:nth-child(3) { animation-delay: 0.4s; }
.vault-dots .dot:nth-child(4) { animation-delay: 0.6s; }
.vault-dots .dot:nth-child(5) { animation-delay: 0.8s; }
.vault-dots .dot:nth-child(6) { animation-delay: 1s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.vault-code-display {
    display: flex;
    gap: 6px;
}

.code-digit {
    width: 36px;
    height: 44px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #c0c0c0;
    animation: digitFlicker 3s ease-in-out infinite;
}

.code-digit:nth-child(2) { animation-delay: 0.3s; }
.code-digit:nth-child(3) { animation-delay: 0.6s; }
.code-digit:nth-child(4) { animation-delay: 0.9s; }
.code-digit:nth-child(5) { animation-delay: 1.2s; }
.code-digit:nth-child(6) { animation-delay: 1.5s; }

@keyframes digitFlicker {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.vault-info {
    padding-right: 20px;
}

.vault-info .section-tag {
    display: inline-block;
    margin-bottom: 20px;
}

.vault-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.vault-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.vault-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vault-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.vault-features li strong {
    display: block;
    margin-bottom: 4px;
}

.vault-features li p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== PACK SECTION ========== */
.pack-section {
    background: var(--bg-secondary);
}

.pack-grid {
    display: flex;
    justify-content: center;
}

.pack-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pack-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 16px 60px rgba(108, 92, 231, 0.15);
}

.pack-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--red), #ff7043);
    color: white;
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(35deg);
}

.pack-header {
    text-align: center;
    margin-bottom: 32px;
}

.pack-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pack-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pack-content {
    margin-bottom: 32px;
}

.pack-content h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pack-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pack-features li span:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-highlight {
    background: rgba(108, 92, 231, 0.1);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.pack-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ========== PROOF SECTION ========== */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.proof-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s;
}

.proof-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.proof-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.proof-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.proof-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-section {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-card), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cta-trust span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== SHOP PAGE ========== */
.shop-header {
    padding: 140px 0 40px;
    text-align: center;
}

.shop-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.shop-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto;
}

.shop-section {
    padding: 20px 0 100px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.shop-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.5);
}

.shop-loading .loader {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.shop-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.shop-card-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.shop-card-disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.12);
}

.shop-card-img {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    cursor: pointer;
}

.shop-card-img img {
    max-width: 200px;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
    transition: opacity 0.3s;
}

.shop-one-size-tag {
    display: inline-block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 12px;
    font-weight: 500;
}

.shop-coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shop-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-card-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.shop-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
    line-height: 1.4;
}

.shop-options {
    margin-bottom: 12px;
}

.shop-options-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.shop-color-options,
.shop-size-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.shop-option-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.shop-option-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.shop-option-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.shop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.shop-card-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.shop-buy-btn {
    font-size: 0.8rem !important;
    padding: 10px 20px !important;
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: not-allowed;
}

.shop-badge-info {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* ========== SHOP BACK BUTTON ========== */
.shop-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
    margin-bottom: 8px;
}
.shop-back-btn:hover {
    color: #fff;
}

/* ========== CAROUSEL ========== */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s;
}
.shop-card-img:hover .carousel-arrow {
    opacity: 1;
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.35);
}

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}
.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.2s;
}
.carousel-dot.active {
    background: #fff;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== FOOTER ========== */
.footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .vault-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .vault-info .section-title {
        text-align: center;
    }
    
    .vault-features {
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-product {
        grid-column: 1;
    }

    .product-img {
        max-width: 250px;
    }

    .hero-amount-showcase {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .step-card {
        width: 100%;
        max-width: 340px;
    }
    
    .vault-door {
        width: 260px;
        height: 300px;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pack-card {
        padding: 28px 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .vault-door {
        width: 220px;
        height: 260px;
    }
    
    .vault-ring {
        width: 120px;
        height: 120px;
    }
    
    .vault-ring-inner {
        width: 100px;
        height: 100px;
    }
    
    .code-digit {
        width: 28px;
        height: 36px;
        font-size: 1rem;
    }
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
