/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }

/* ── Hero Gradient ────────────────────────────────────────────── */
.hero-gradient {
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(123,63,160,0.5) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(90,32,138,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(212,168,67,0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0D0414 0%, #1C0A2E 50%, #0D0414 100%);
}

/* ── Hero Orbs ────────────────────────────────────────────────── */
.hero-orb { pointer-events: none; }
.orb-1 {
    top: 10%; left: 10%;
    background: radial-gradient(circle, rgba(123,63,160,0.6) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}
.orb-2 {
    bottom: 10%; right: 10%;
    background: radial-gradient(circle, rgba(212,168,67,0.4) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}
.orb-3 {
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(90,32,138,0.5) 0%, transparent 70%);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Gradient Text ────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, #D4A843 0%, #E8C46D 50%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Gold Button ──────────────────────────────────────────────── */
.btn-gold {
    background: linear-gradient(135deg, #D4A843 0%, #B8922E 50%, #9B7831 100%);
    color: #1C0A2E;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #E8C46D 0%, #D4A843 50%, #C9A84C 100%);
    transform: translateY(-2px);
}

/* ── Outline Button ───────────────────────────────────────────── */
.btn-outline {
    background: transparent;
    color: #D4A843;
    border: 1px solid rgba(212,168,67,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: rgba(212,168,67,0.7);
    color: #E8C46D;
    transform: translateY(-2px);
}

/* ── Input Fields ─────────────────────────────────────────────── */
.input-field {
    background: rgba(13,4,20,0.6);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}
.input-field::placeholder { color: rgba(180,150,200,0.4); }
.input-field:focus {
    border-color: rgba(212,168,67,0.5);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.08);
    background: rgba(13,4,20,0.8);
}

/* ── Label ────────────────────────────────────────────────────── */
.label { letter-spacing: 0.25em; }

/* ── Nav ──────────────────────────────────────────────────────── */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4A843;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #D4A843 !important; }

/* ── Navbar Scroll State ──────────────────────────────────────── */
#navbar.scrolled {
    background: rgba(13,4,20,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,168,67,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* ── Mobile Menu ──────────────────────────────────────────────── */
#mobile-menu.open { opacity: 1 !important; pointer-events: all !important; }
.menu-line.active:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.menu-line.active:nth-child(2) { opacity: 0; }
.menu-line.active:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); width: 5px; }

/* ── Scroll Indicator ─────────────────────────────────────────── */
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212,168,67,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Reveal Animations ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero Animations ──────────────────────────────────────────── */
.hero-badge {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}
.hero-title {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}
.hero-subtitle {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}
.hero-ctas {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Card Hover Glow ──────────────────────────────────────────── */
.reveal-card:hover {
    border-color: rgba(212,168,67,0.25) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 30px rgba(212,168,67,0.05);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
    .hero-title span:last-child { font-size: 1.5rem !important; }
}
