/* style.css */
:root {
    --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: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    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: radial-gradient(circle at 70% 40%, transparent 0%, rgba(3, 7, 17, 0.6) 60%, rgba(3, 7, 17, 0.95) 100%);
    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: 2rem 3rem;
    z-index: 10;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.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: 650px;
}

.headline {
    font-size: clamp(2.16rem, 3.84vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.promise {
    font-size: clamp(1.32rem, 2.16vw, 1.92rem);
    line-height: 1.4;
    color: var(--text-body);
    max-width: 500px;
    opacity: 0.9;
}

.hero-visual {
    position: absolute;
    right: 0%;
    bottom: -2vh;
    height: 110vh;
    width: 55%;
    display: flex;
    align-items: flex-end;
    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: linear-gradient(to bottom, #FFFF00 0%, #FFCC00 100%);
    color: #000000;
    text-decoration: none;
    padding: 1rem 3.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.75rem;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    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(255, 255, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 45px rgba(255, 255, 0, 0.8), 0 15px 40px rgba(0, 0, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 0, 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: 1.5rem;
    }
    .hero-container {
        padding: 0 5%;
        justify-content: flex-start;
        padding-top: 8rem;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .text-block {
        margin-bottom: 2rem;
    }
    .headline {
        font-size: 2.16rem;
    }
    .promise {
        font-size: 1.32rem;
        margin: 0 auto;
    }
    .hero-visual {
        position: relative;
        width: 100%;
        height: 65vh;
        right: 0;
        transform: none;
        margin-top: -2rem;
    }
    .hero-image {
        transform: none;
    }
    .cta-button {
        font-size: 1.25rem;
        padding: 0.8rem 2rem;
        width: 85%;
    }
}
