:root {
    --bg-color: #020202;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --font-primary: 'Outfit', sans-serif;
    --accent-glow: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 3D Background */
#vanta-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

/* Layout Container */
.layout-container {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Subtle Tilt Wrapper */
.tilt-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

/* Centered Hero Section */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transform: translateZ(40px);
}

/* Elegant Reveal Animations */
.reveal-container {
    overflow: hidden;
    padding-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.reveal-container > * {
    animation: slideUpReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 > * { animation-delay: 0.1s; }
.delay-2 > * { animation-delay: 0.2s; }
.delay-3 > * { animation-delay: 0.3s; }
.delay-4 > * { animation-delay: 0.4s; }
.delay-5 > * { animation-delay: 0.5s; }

@keyframes slideUpReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-wrapper {
    margin-bottom: 1.5rem;
    transform: translateZ(20px);
}

.logo {
    height: 50px;
    width: auto;
}

.logo-fallback {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

/* Typography */
.brand-name {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    font-family: 'Syncopate', sans-serif;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    transform: translateZ(50px);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.8rem;
    font-weight: 300;
    color: #a1a1aa;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transform: translateZ(20px);
}

/* Subtle Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #71717a;
    margin-bottom: 2.5rem;
    transform: translateZ(20px);
    padding: 12px 0; /* Ensures the scaling pulse circle isn't clipped by overflow */
}

.pulse-ring {
    width: 4px;
    height: 4px;
    background-color: #a1a1aa;
    border-radius: 50%;
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid #a1a1aa;
    animation: elegantPulse 2.5s ease-out infinite;
    opacity: 0;
}

@keyframes elegantPulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* High-End Minimal Form */
.form-container {
    display: flex;
    justify-content: center;
    width: 100%;
    transform: translateZ(30px);
}

.minimal-form {
    width: 100%;
    max-width: 420px;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3rem;
    padding: 0.35rem 0.35rem 0.35rem 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.input-group:focus-within {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.05);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    padding: 0.75rem 0;
}

.input-group input::placeholder {
    color: #71717a;
}

.input-group .submit-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.input-group .submit-btn:hover {
    background: #e4e4e7;
    transform: scale(1.05);
}

.input-group .submit-btn svg {
    transition: transform 0.3s ease;
}

.input-group .submit-btn:hover svg {
    transform: translateX(2px);
}