:root {
    --bg-dark: #020205;
    --aura-purple: #7d5fff;
    --aura-cyan: #00d2ff;
    --glass: rgba(255, 255, 255, 0.035);
    --glass-border: rgba(125, 95, 255, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: #f0f0f0;
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
}

/* Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 30% 20%, #1a1a3a 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, #0f0f2e 0%, transparent 65%),
                radial-gradient(circle at 50% 80%, #02020a 0%, var(--bg-dark) 80%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.35;
    mix-blend-mode: screen;
}

/* HERO - Clean & Balanced */
.vessel-header {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.8rem;           /* Controls space between logo, title, subtitle, button */
}

.logo-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
}

.main-logo {
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 60px rgba(125, 95, 255, 0.45);
    animation: float 7s ease-in-out infinite;
}

.aura-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 18rem; height: 18rem;
    background: var(--aura-purple);
    filter: blur(70px);
    opacity: 0.45;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: aura-pulse 8s ease-in-out infinite;
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes aura-pulse { 0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.65; transform: translate(-50%, -50%) scale(1.07); } }

.glitch-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 9vw, 5.8rem);
    letter-spacing: 1.1rem;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 35%, var(--aura-purple) 95%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
}

.mysterious-intro {
    font-size: clamp(1.35rem, 4.8vw, 2.15rem);
    max-width: 780px;
    line-height: 1.35;
    color: #d0d0e0;
    margin-bottom: 1.5rem;
}

.start-btn {
    padding: 1.35rem 4.8rem;
    background: rgba(125, 95, 255, 0.09);
    border: 1.5px solid var(--aura-purple);
    border-radius: 9999px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.45rem;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(16px);
    transition: all 0.5s ease;
}

.start-btn:hover {
    background: var(--aura-purple);
    box-shadow: 0 0 55px rgba(125, 95, 255, 0.75);
    transform: scale(1.07);
}

/* Other sections - better spacing */
.philosophy, .transmissions {
    padding: 7rem 1.5rem 8rem;
    text-align: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 3.2rem);
    margin-bottom: 4rem;
    letter-spacing: 0.3rem;
    color: var(--aura-purple);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.review-scroll, .leave-review {
    max-width: 720px;
    margin: 0 auto;
}

/* ====================== LIVE PROOF SECTION ====================== */
.live-proof {
    padding: 7rem 1.5rem 8rem;
    text-align: center;
    background: rgba(10, 10, 25, 0.6);
}

.section-subtitle {
    font-size: 1.35rem;
    color: #b0b0cc;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.5;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.screenshot-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.screenshot-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15);
    border-color: var(--aura-cyan);
}

.server-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(125, 95, 255, 0.15);
}

.caption {
    padding: 1.5rem;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #e0e0f0;
}

.proof-note {
    margin-top: 4rem;
    font-size: 1.1rem;
    color: #a0a0c0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

