@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@400;600&display=swap');
@import "tailwindcss";

/* style.css */
:root {
    --font-gaming: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --bg-dark: #030711;
    --bg-grad-start: #070A10;
    --bg-grad-end: #0B1020;
    --text-heading: #FFFFFF;
    --text-body: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --cyan: #28E0E9;
    --blue: #1A3A6D;
    --gold-dark: #8B6B1D;
    --gold-main: #D4AF37;
    --gold-highlight: #F9D976;
    --gold-text: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-body);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

/* Background & Image */
.bg-image {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: -1;
}

/* FX Layer - Curved Trails */
.fx-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.trail {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.6;
}

.trail-1 {
    width: 120%;
    height: 60%;
    border: 2px solid var(--cyan);
    border-radius: 100%;
    top: 40%;
    left: -30%;
    transform: rotate(-15deg);
    box-shadow: 0 0 20px var(--cyan);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.trail-2 {
    width: 100%;
    height: 40%;
    border: 1px solid var(--gold-highlight);
    border-radius: 100%;
    top: 10%;
    right: -20%;
    transform: rotate(25deg);
    opacity: 0.4;
    box-shadow: 0 0 15px var(--gold-highlight);
    mask-image: linear-gradient(to left, transparent, black 20%, black 80%, transparent);
}

.glow-bottom {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(40, 224, 233, 0.1) 0%, transparent 70%);
}

/* Layout Components */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 4rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3, 7, 17, 0.9) 0%, rgba(3, 7, 17, 0.4) 70%, transparent 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(40, 224, 233, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(40, 224, 233, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border-left: 2px solid var(--cyan);
}

.logo {
    height: 80px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.hero-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
}

.text-block {
    z-index: 2;
    max-width: 750px;
}

.headline {
    font-family: var(--font-gaming);
    font-size: clamp(1.94rem, 3.46vw, 2.7rem);
    font-weight: 900;
    line-height: 1.1;
    color: #e1ffff;
    margin-bottom: 1.25rem;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.9), 
        0 0 15px rgba(40, 224, 233, 0.4),
        0 0 30px rgba(40, 224, 233, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promise {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #e2e8f0; /* Soft off-white to reduce halation */
    max-width: 650px;
    font-weight: 500; /* Slightly bolder for better definition */
    letter-spacing: 0.01em;
    text-shadow: none; /* Remove shadow to prevent blurriness */
}

.hero-visual {
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    transform: translateX(5%);
}

/* CTA Area */
.cta-area {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #2ca1b6;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 3.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.75rem;
    box-shadow: 0 0 30px rgba(44, 161, 182, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
    text-align: center;
    animation: cta-pulse 2s infinite ease-in-out;
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(44, 161, 182, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 45px rgba(44, 161, 182, 0.8), 0 15px 40px rgba(0, 0, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(44, 161, 182, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.cta-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 4px;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
    color: #000000;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(196, 145, 45, 0.5);
}

.credibility {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 500px;
    display: none; /* Hidden to match image simplicity */
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
    .top-bar {
        padding: 1rem 1.5rem;
        background: rgba(3, 7, 17, 0.95);
        backdrop-filter: blur(12px);
    }
    .brand-container {
        padding: 0.15rem 0.5rem;
        gap: 0.5rem;
    }
    .logo {
        height: 60px;
    }
    .hero-container {
        padding: 0 5%;
        justify-content: flex-start;
        padding-top: 14rem;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .text-block {
        margin-bottom: 2rem;
    }
    .headline {
        font-family: var(--font-gaming);
        font-size: clamp(1.4rem, 6.5vw, 2rem);
        font-weight: 900;
        line-height: 1.1;
        color: #e1ffff;
        margin-bottom: 1.25rem;
        text-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.9), 
            0 0 15px rgba(40, 224, 233, 0.5);
        text-transform: uppercase;
        width: 100%;
    }
    .promise {
        font-family: var(--font-body);
        font-size: 1.15rem;
        line-height: 1.6;
        margin: 0 auto;
        max-width: 92%;
        color: #e2e8f0;
        font-weight: 500;
    }
    .hero-visual {
        position: relative;
        width: 100%;
        height: 20vh;
        margin-top: -12rem;
        order: -1;
    }
    .hero-image {
        transform: none;
    }
    .cta-button {
        font-size: 1.25rem;
        padding: 0.8rem 2rem;
        width: 85%;
    }
}
