/* Prometheus Theme - Header Styles */

*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

:root {
    --fire: #FF4C00;
    --ember: #FF8C00;
    --gold: #FFD000;
    --sky: #0A0F1E;
    --deep: #050810;
    --mid: #111827;
    --smoke: #8A9BBE;
    --light: #E8EEF8;
    --white: #FFFFFF;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--deep);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 12px; 
    height: 12px;
    background: var(--fire);
    border-radius: 50%;
    position: fixed;
    top: 0; 
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
    mix-blend-mode: screen;
}

.cursor-ring {
    width: 36px; 
    height: 36px;
    border: 1.5px solid rgba(255,76,0,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0; 
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s, height 0.3s;
}

/* NAV */
nav {
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 100;
    padding: 20px 60px;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(5,8,16,0.95), transparent);
    backdrop-filter: blur(2px);
}

.nav-logo {
    display: flex; 
    align-items: center; 
    gap: 14px;
}

.logo-flame {
    width: 38px; 
    height: 38px;
    position: relative;
}

.logo-flame svg { 
    width: 100%; 
    height: 100%; 
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.logo-text span { 
    color: var(--fire); 
}

.logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--smoke);
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: flex; 
    gap: 36px; 
    list-style: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-links a {
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute; 
    bottom: -4px; 
    left: 0;
    width: 0; 
    height: 1px;
    background: var(--fire);
    transition: width 0.3s;
}

.nav-links a:hover { 
    color: var(--white); 
}

.nav-links a:hover::after { 
    width: 100%; 
}

.nav-right {
    display: flex; 
    gap: 16px; 
    align-items: center;
}

.btn-cart {
    background: none; 
    border: 1.5px solid rgba(255,76,0,0.4);
    color: var(--light); 
    padding: 9px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; 
    letter-spacing: 0.2em; 
    text-transform: uppercase;
    cursor: none; 
    transition: all 0.25s;
    position: relative; 
    overflow: hidden;
}

.btn-cart::before {
    content: '';
    position: absolute; 
    inset: 0;
    background: var(--fire);
    transform: translateX(-102%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-cart:hover { 
    border-color: var(--fire); 
    color: var(--white); 
}

.btn-cart:hover::before { 
    transform: translateX(0); 
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; 
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; 
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,76,0,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,140,0,0.05) 0%, transparent 50%),
        linear-gradient(135deg, #050810 0%, #0A0F1E 50%, #080D1A 100%);
}

.hero-grid {
    position: absolute; 
    inset: 0;
    background-image:
        linear-gradient(rgba(255,76,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,76,0,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 80%);
}

.hero-content {
    position: relative; 
    z-index: 2;
    padding: 0 60px;
    max-width: 820px;
    animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 20px;
    display: flex; 
    align-items: center; 
    gap: 12px;
    animation: heroIn 1.2s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-eyebrow::before {
    content: '';
    width: 40px; 
    height: 1px;
    background: var(--fire);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 11vw, 10rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    animation: heroIn 1.2s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title .accent { 
    color: var(--fire); 
}

.hero-title .outline {
    -webkit-text-stroke: 1.5px rgba(255,76,0,0.5);
    color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--smoke);
    max-width: 500px;
    margin-bottom: 44px;
    animation: heroIn 1.2s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-ctas {
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap;
    animation: heroIn 1.2s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-primary {
    background: var(--fire);
    color: var(--white);
    padding: 16px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem; 
    letter-spacing: 0.2em; 
    text-transform: uppercase;
    border: none; 
    cursor: none;
    position: relative; 
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 40px rgba(255,76,0,0.3);
    text-decoration: none; 
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 50px rgba(255,76,0,0.5);
}

.btn-secondary {
    background: none;
    color: var(--light);
    padding: 16px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem; 
    letter-spacing: 0.2em; 
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.15); 
    cursor: none;
    text-decoration: none; 
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { 
    border-color: var(--white); 
    color: var(--white); 
}

.hero-visual {
    position: absolute;
    right: -60px; 
    top: 50%;
    transform: translateY(-50%);
    width: 55vw; 
    height: 90vh;
    animation: heroIn 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-img-frame {
    width: 100%; 
    height: 100%;
    position: relative;
}

.hero-img-frame::before {
    content: '';
    position: absolute; 
    inset: 0;
    background: linear-gradient(to right, var(--deep) 0%, transparent 30%),
                linear-gradient(to top, var(--deep) 0%, transparent 20%);
    z-index: 2;
}

.skydiver-art {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    filter: hue-rotate(0deg) saturate(1.1) brightness(0.7);
}

.sky-scene {
    width: 100%; 
    height: 100%;
}

/* STATS STRIP */
.stats-strip {
    background: rgba(255,76,0,0.06);
    border-top: 1px solid rgba(255,76,0,0.15);
    border-bottom: 1px solid rgba(255,76,0,0.15);
    padding: 24px 60px;
    display: flex; 
    justify-content: space-around;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    animation: fadeUp 0.8s ease both;
}

.stat-item:nth-child(1) { 
    animation-delay: 0.1s; 
}

.stat-item:nth-child(2) { 
    animation-delay: 0.2s; 
}

.stat-item:nth-child(3) { 
    animation-delay: 0.3s; 
}

.stat-item:nth-child(4) { 
    animation-delay: 0.4s; 
}

@keyframes fadeUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--fire);
    line-height: 1;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-top: 4px;
}

/* SECTION COMMON */
section { 
    padding: 100px 60px; 
}

.section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 16px;
    display: flex; 
    align-items: center; 
    gap: 12px;
}

.section-eyebrow::before {
    content: ''; 
    width: 30px; 
    height: 1px; 
    background: var(--fire);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin-bottom: 50px;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute; 
    bottom: 36px; 
    left: 60px;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px;
    z-index: 5;
    animation: heroIn 1.5s 0.6s both;
}

.scroll-line {
    width: 1px; 
    height: 50px;
    background: linear-gradient(to bottom, var(--fire), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: scaleY(1); 
    }
    50% { 
        opacity: 1; 
        transform: scaleY(0.8); 
    }
}

.scroll-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.6rem; 
    letter-spacing: 0.4em; 
    text-transform: uppercase;
    color: var(--smoke); 
    writing-mode: vertical-rl;
}
