/* Crixa Ratio - Obsidian Theme (v3) */
:root {
    --bg-void: #000000;
    --acc-primary: #FFD600;
    /* Electric Yellow/Gold */
    --text-pure: #ffffff;
    --text-dim: #666666;
    --border-subtle: rgba(255, 255, 255, 0.15);

    --font-display: 'Space Grotesk', sans-serif;
    --font-ui: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-void);
    color: var(--text-pure);
    font-family: var(--font-ui);
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
}

/* --- ABSTRACT BACKGROUND --- */
.obsidian-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 214, 0, 0.03) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 80px 80px, 80px 80px;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--acc-primary) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.05;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* --- INDEX LAYOUT: TYPOGRAPHIC POSTER --- */
.poster-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    text-align: center;
}

/* The Background Brand Name */
.giant-brand {
    font-family: var(--font-display);
    font-size: clamp(3rem, 15vw, 20rem);
    font-weight: 800;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: overlay;
}

/* Foreground Content */
.content-layer {
    z-index: 10;
    max-width: 600px;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 3rem;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
}

/* Foreground Brand */
.company-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.company-logo span {
    color: var(--acc-primary);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--acc-primary);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--acc-primary);
    padding-bottom: 0.5rem;
}

.main-headline {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lead-text {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Minimal Input */
.input-wrapper {
    position: relative;
    display: flex;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    transition: 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--acc-primary);
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.1);
}

.email-field {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-pure);
    padding: 1.25rem;
    font-family: var(--font-ui);
    outline: none;
    font-size: 1rem;
}

.notify-btn {
    background: transparent;
    border: none;
    color: var(--acc-primary);
    padding: 0 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.notify-btn:hover {
    background: var(--acc-primary);
    color: #000;
}

/* Email Only Display */
.email-display-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--acc-primary);
    color: var(--text-pure);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 500;
    transition: 0.3s ease;
}

.email-display-box:hover {
    background: var(--acc-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.3);
}

.email-display-box i {
    color: var(--acc-primary);
    transition: 0.3s;
}

.email-display-box:hover i {
    color: #000;
}

/* --- CONTACT PAGE COMPATIBILITY --- */
/* Re-implementing contact styles mapped to new vars */

.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.contact-wrapper {
    width: 100%;
    max-width: 1000px;
    background: #111;
    border: 1px solid var(--border-subtle);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.contact-left {
    padding: 4rem;
    background: #080808;
    border-right: 1px solid var(--border-subtle);
}

.contact-right {
    padding: 4rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-pure);
}

.info-row {
    margin-bottom: 2.5rem;
}

.info-label {
    display: block;
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.info-val {
    font-size: 1.1rem;
    color: var(--text-pure);
}

.form-field {
    margin-bottom: 2rem;
}

.form-field label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.input-std {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-pure);
    padding: 1rem;
    font-family: var(--font-ui);
    outline: none;
    font-size: 1rem;
}

.input-std:focus {
    border-color: var(--acc-primary);
}

.submit-full {
    width: 100%;
    padding: 1.25rem;
    background: var(--acc-primary);
    border: none;
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.submit-full:hover {
    background: #fff;
}

@media(max-width: 768px) {
    .giant-brand {
        font-size: 4rem;
        white-space: normal;
        line-height: 1;
        opacity: 0.2;
    }

    .content-layer {
        padding: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-left {
        border-right: 0;
        border-bottom: 1px solid var(--border-subtle);
    }
}