:root {
    /* Color Palette */
    --primary-orange: #E6782E;
    --primary-orange-hover: #ff8c42;
    --dark-charcoal: #0E0E0E;
    --graphite-grey: #1E1E1E;
    --white: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Header Navigation & Branding */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: clamp(10px, 2vh, 20px) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    height: clamp(44px, 7.5vh, 69px);
    /* Increased by 25% */
    width: auto;
    object-fit: contain;
}

/* Hero Section - Single Screen Focus */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: linear-gradient(rgba(14, 14, 14, 0.94), rgba(14, 14, 14, 0.94)), url('../assets/background.jpg');
    background-size: cover;
    background-position: center 25%;
    background-attachment: fixed;
    overflow: hidden;
}

/* Energy Pulse Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(230, 120, 46, 0.08) 0%, transparent 50%);
    animation: energyPulse 15s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes energyPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateY(-20px);
    /* Vertical balance adjustment */
}

.hero h1 {
    font-size: clamp(1.5rem, 4.6vw, 2.9rem);
    /* Reduced by ~15% */
    max-width: 850px;
    margin-bottom: clamp(8px, 1.5vh, 15px);
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.025em;
    font-weight: 800;
}

.tagline {
    font-size: clamp(0.65rem, 1.2vw, 0.85rem) !important;
    /* Reduced by ~15% */
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto clamp(12px, 3vh, 25px) !important;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.8;
}

.launch-label {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: clamp(0.5rem, 1vw, 0.6rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: clamp(12px, 2.5vh, 20px);
    backdrop-filter: blur(5px);
}

/* Countdown - Mobile Optimized */
.countdown-container {
    margin-bottom: clamp(25px, 4vh, 45px);
    padding: clamp(8px, 2vw, 15px);
    width: 100%;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 40px);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: clamp(50px, 12vw, 85px);
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 6vw, 3.6rem);
    /* Reduced by 25% */
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 20px rgba(230, 120, 46, 0.2);
}

.countdown-label {
    font-size: clamp(0.45rem, 1vw, 0.6rem);
    text-transform: uppercase;
    color: var(--primary-orange);
    letter-spacing: 2.2px;
    margin-top: 8px;
    font-weight: 700;
}

/* Premium Primary Call to Action */
.contact-button {
    display: inline-block;
    padding: clamp(13px, 2vh, 16px) clamp(28px, 4.5vw, 48px);
    /* Reduced padding by ~20% */
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 800;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    /* Reduced by 20% */
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(230, 120, 46, 0.15);
}

.contact-button:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 120, 46, 0.4);
}

/* Responsive Footer Overlay */
.minimal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(25px, 5vh, 50px) 5%;
    background: linear-gradient(to top, rgba(14, 14, 14, 1) 50%, transparent 100%);
    z-index: 100;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: clamp(25px, 8vw, 90px);
    margin-bottom: 30px;
}

.contact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.contact-col .label {
    font-size: 0.65rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
}

.contact-col p {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: var(--white);
    opacity: 0.85;
    font-weight: 500;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-icon:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    width: 100%;
    opacity: 0.6;
}

/* Advanced Responsiveness */
@media (max-width: 991px) {
    .footer-contacts {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 5% 200px;
        background-attachment: scroll;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 30px;
    }

    .socials {
        order: -1;
        margin-bottom: 10px;
    }

    .hero h1 {
        letter-spacing: -0.01em;
        line-height: 1.2;
    }
}

@media (max-height: 750px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 160px;
    }

    .launch-label {
        margin-bottom: 20px;
    }

    .countdown-container {
        margin-bottom: 25px;
    }
}

/* Utility Cleanup */
.presence,
.about,
.contact,
footer,
nav,
.center-logo,
.brand-text {
    display: none !important;
}