/**
 * Nocturnal Marketing - Coming Soon Page Styles
 * Brand: Dark, sophisticated, tech-forward
 */

/* ==================== Reset & Base ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --brand-red: #990001;
    --brand-red-hover: #7a0001;
    --brand-silver: #b3b3b3;
    --brand-dark: #050505;
    --brand-panel: #0f0f0f;
    
    /* Typography */
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', var(--font-body);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--brand-dark);
    color: var(--brand-silver);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ==================== Background Effect ==================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(153, 0, 1, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(153, 0, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==================== Main Container ==================== */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 2rem 1.5rem;
    text-align: center;
}

/* ==================== Logo & Brand ==================== */
.brand {
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.brand__name {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.brand__accent {
    color: var(--brand-red);
}

/* ==================== CSS Moon Logo ==================== */
.logo-container {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-crescent {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: inset -5px -3px 0 2px var(--brand-silver);
    transform: rotate(-30deg);
    position: relative;
    z-index: 2;
}

.logo-glow-orb {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--brand-red);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 4s infinite;
}

.logo-star {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px white;
    z-index: 3;
    opacity: 0.9;
}

/* ==================== Decorative Moon Background ==================== */
.moon-bg {
    position: fixed;
    top: 5%;
    right: -15%;
    width: 500px;
    height: 500px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.moon-bg__circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(179, 179, 179, 0.2);
    box-shadow: inset 80px 40px 0 0 rgba(179, 179, 179, 0.1);
    position: relative;
}

.moon-bg__glow {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: var(--brand-red);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(80px);
}

/* ==================== Hero Section ==================== */
.hero {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(153, 0, 1, 0.3);
    border-radius: 100px;
    background: rgba(153, 0, 1, 0.1);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 300;
    color: var(--brand-silver);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Services Preview ==================== */
.services {
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.services__title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-silver);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: var(--brand-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(153, 0, 1, 0.3);
}

.service-card__icon {
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-bottom: 0.75rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* ==================== Contact Section ==================== */
.contact {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.contact__text {
    font-size: 1rem;
    color: var(--brand-silver);
    margin-bottom: 1.5rem;
}

.contact__email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    background: var(--brand-red);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(153, 0, 1, 0.2);
}

.contact__email:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(153, 0, 1, 0.4);
}

.contact__email i {
    font-size: 1rem;
}

/* ==================== Footer ==================== */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: center;
    animation: fadeIn 0.8s ease-out 0.8s backwards;
}

.footer__text {
    font-size: 0.875rem;
    color: rgba(179, 179, 179, 0.6);
}

.footer__text a {
    color: var(--brand-silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__text a:hover {
    color: #fff;
}

/* ==================== Animations ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==================== Responsive ==================== */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        margin-bottom: 3rem;
    }
    
    .services {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 3rem 2rem;
    }
}
