:root {
    --primary: #48C6B6;
    --bg: #000000;
    --text: #ffffff;
    --text-muted: #888888;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.minimal-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ================= NAVIGATION ================= */

.nav-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.nav-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.status-minimal {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    justify-content: flex-end;
}

.globe-icon {
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0.8;
    animation: globeRotate 8s linear infinite;
}

@keyframes globeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.status-msg-text {
    font-size: 0.7rem;
    letter-spacing: 0.2rem;
    font-weight: 300;
    color: var(--primary);
}

/* ================= HERO ================= */

.content-center {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.minimal-brand {
    font-size: clamp(2.4rem, 9vw, 5.5rem);
    font-weight: 200;
    letter-spacing: 1.35rem;
    margin-right: -1.35rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.minimal-headline {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.tagline-minimal {
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: #555;
}

.we-dont-ordinary-img {
    height: clamp(40px, 8vw, 80px);
    width: auto;
    margin-bottom: 1rem;
}

.divider {
    color: #333;
    padding: 0 1rem;
}

.reveal-line {
    width: 60px;
    height: 1.5px;
    background: var(--primary);
    margin: 1.5rem auto;
    opacity: 0.6;
}

.minimal-subtext {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    font-weight: 200;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* ================= FOOTER ================= */

.social-links-minimal {
    display: flex;
    gap: 2rem;
}

.social-links-minimal a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
}

.social-links-minimal a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.copy-text {
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
    color: #333;
}

/* ================= ANIMATIONS ================= */

.fade-in {
    animation: fadeIn 2s var(--ease) forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 2s var(--ease) 0.5s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 2s var(--ease) 1s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 2s var(--ease) 1.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .minimal-brand {
        font-size: clamp(2rem, 8vw, 4.5rem);
        letter-spacing: 1rem;
    }
}

@media (max-width: 768px) {

    .minimal-wrapper {
        height: auto;
        min-height: 100vh;
    }

    .nav-logo {
        height: 38px;
    }

    .minimal-brand {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
        letter-spacing: 0.5rem;
    }

    .minimal-subtext {
        max-width: 320px;
        padding: 0 20px;
    }

    .reveal-line {
        width: 35px;
    }

    .bottom-area .container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ================= 🔥 NEWSLETTER FIX (ONLY CHANGE MADE) ================= */

.newsletter-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#newsletter-input-wrapper {
    width: 100%;
    max-width: 1100px;
}

.newsletter-label {
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.12rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

/* ❌ FIXED: GRID ALIGNMENT ISSUE */
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: stretch; /* IMPORTANT FIX */
    width: 100%;
}

/* INPUTS */
.newsletter-input {
    width: 100%;
    height: 64px;
    padding: 0 1.5rem;

    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.55);
    color: #fff;

    font-size: 0.95rem;
    font-weight: 500;

    border-radius: 4px;
    outline: none;
}

/* INPUT FOCUS */
.newsletter-input:focus {
    border-color: var(--primary);
}

/* 🔥 FIXED BUTTON ALIGNMENT */
.newsletter-btn {
    width: 100%;
    height: 64px;
    background: var(--primary);
    border: none;
    color: var(--bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; /* KEY FIX */
}

/* BUTTON HOVER */
.newsletter-btn:hover {
    background: #fff;
    color: #000;
}

/* ERROR MESSAGE */
#server-msg {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: #ff6b6b;
}

/* MOBILE FIX */
@media (max-width: 992px) {
    .newsletter-form {
        grid-template-columns: 1fr;
    }
}