:root {
    --bg-color: #040404;
    --accent-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.4);
    --meta-color: rgba(255, 255, 255, 0.25);
    --border-soft: rgba(255, 255, 255, 0.1);
}

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

body {
    background: radial-gradient(circle at 50% 50%, #0d0d0d 0%, #040404 100%);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

/* Base Texture */
.overlay-grain {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 20;
}

.spotlight {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 1.5s ease;
    mix-blend-mode: screen;
}

/* Corner Metadata Accents */
.corner-accents {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 15;
    padding: 2.5rem;
}

.accent {
    position: absolute;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--meta-color);
    font-weight: 300;
    text-transform: uppercase;
    animation: fadeIn 3s ease-out forwards;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0.8);
    border: 0.5px solid var(--border-soft);
    padding: 2px;
    border-radius: 50%;
}

.top-left { top: 2.5rem; left: 2.5rem; }
.top-right { top: 2.5rem; right: 2.5rem; }
.bottom-left { bottom: 2.5rem; left: 2.5rem; }
.bottom-right { bottom: 2.5rem; right: 2.5rem; }

@keyframes fadeIn { to { opacity: 1; } }

#particle-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.particle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: float 30s infinite linear;
}

@keyframes float {
    0% { transform: translateY(110vh) translateX(0); opacity: 0; }
    20% { opacity: 0.1; }
    80% { opacity: 0.1; }
    100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
}

/* Main Layout */
.hero {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

/* Logo Section */
.logo-container {
    margin-bottom: 4rem;
    animation: reveal 2.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes reveal {
    from { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(15px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.logo-wrapper {
    animation: slowFloat 10s ease-in-out infinite;
}

@keyframes slowFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.logo {
    width: 100%;
    max-width: 440px;
    display: block;
}

/* Typography */
.text-content {
    text-align: center;
    margin-bottom: 5.5rem;
}

.coming-soon {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    letter-spacing: 1.2em;
    font-weight: 300;
    color: var(--accent-color);
    margin-right: -1.2em;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: reveal 2.2s cubic-bezier(0.19, 1, 0.22, 1) both 0.8s, glowPulse 2s infinite alternate 0.8s, cray 6s infinite steps(50) 0.8s;
    display: inline-block;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.1); }
    to { text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.3); }
}

@keyframes cray {
  2% { font-weight: 300; font-style: normal; text-decoration: line-through; text-transform: capitalize; }
  4% { font-weight: 300; font-style: normal; text-decoration: none; text-transform: none; }
  6% { font-weight: 600; font-style: normal; text-decoration: underline; text-transform: none; }
  8% { font-weight: 600; font-style: normal; text-decoration: none; text-transform: none; }
  10% { font-weight: 500; font-style: normal; text-decoration: none; text-transform: capitalize; }
  12% { font-weight: 700; font-style: italic; text-decoration: line-through; text-transform: none; }
  14% { font-weight: 100; font-style: normal; text-decoration: none; text-transform: none; }
  16% { font-weight: 700; font-style: normal; text-decoration: underline; text-transform: lowercase; }
  18% { font-weight: 100; font-style: normal; text-decoration: none; text-transform: uppercase; }
  20% { font-weight: 300; font-style: italic; text-decoration: none; text-transform: none; }
  22% { font-weight: 600; font-style: normal; text-decoration: underline; text-transform: none; }
  24% { font-weight: 500; font-style: normal; text-decoration: underline; text-transform: none; }
  26% { font-weight: 500; font-style: italic; text-decoration: none; text-transform: none; }
  28% { font-weight: 600; font-style: normal; text-decoration: line-through; text-transform: none; }
  30% { font-weight: 100; font-style: normal; text-decoration: none; text-transform: none; }
  32% { font-weight: 500; font-style: normal; text-decoration: none; text-transform: none; }
  34% { font-weight: 700; font-style: normal; text-decoration: none; text-transform: none; }
  36% { font-weight: 500; font-style: normal; text-decoration: none; text-transform: capitalize; }
  38% { font-weight: 500; font-style: normal; text-decoration: none; text-transform: none; }
  40% { font-weight: 300; font-style: normal; text-decoration: none; text-transform: none; }
  42% { font-weight: 600; font-style: normal; text-decoration: underline; text-transform: none; }
  44% { font-weight: 400; font-style: normal; text-decoration: line-through; text-transform: none; }
  46% { font-weight: 200; font-style: italic; text-decoration: line-through; text-transform: lowercase; }
  48% { font-weight: 400; font-style: normal; text-decoration: none; text-transform: none; }
  50% { font-weight: 400; font-style: normal; text-decoration: none; text-transform: lowercase; }
  52% { font-weight: 600; font-style: normal; text-decoration: none; text-transform: none; }
  54% { font-weight: 500; font-style: normal; text-decoration: none; text-transform: uppercase; }
  56% { font-weight: 700; font-style: normal; text-decoration: none; text-transform: none; }
  58% { font-weight: 400; font-style: normal; text-decoration: none; text-transform: none; }
  60% { font-weight: 200; font-style: normal; text-decoration: none; text-transform: none; }
  62% { font-weight: 700; font-style: normal; text-decoration: none; text-transform: none; }
  64% { font-weight: 100; font-style: italic; text-decoration: none; text-transform: uppercase; }
  66% { font-weight: 300; font-style: normal; text-decoration: none; text-transform: none; }
  68% { font-weight: 600; font-style: italic; text-decoration: none; text-transform: none; }
  70% { font-weight: 300; font-style: normal; text-decoration: underline; text-transform: none; }
  72% { font-weight: 100; font-style: normal; text-decoration: none; text-transform: capitalize; }
  74% { font-weight: 300; font-style: normal; text-decoration: line-through; text-transform: uppercase; }
  76% { font-weight: 300; font-style: normal; text-decoration: none; text-transform: lowercase; }
  78% { font-weight: 100; font-style: normal; text-decoration: none; text-transform: none; }
  80% { font-weight: 600; font-style: normal; text-decoration: underline; text-transform: lowercase; }
  82% { font-weight: 200; font-style: italic; text-decoration: underline; text-transform: lowercase; }
  84% { font-weight: 600; font-style: italic; text-decoration: none; text-transform: none; }
  86% { font-weight: 500; font-style: italic; text-decoration: none; text-transform: none; }
  88% { font-weight: 400; font-style: normal; text-decoration: line-through; text-transform: none; }
  90% { font-weight: 500; font-style: italic; text-decoration: none; text-transform: none; }
  92% { font-weight: 400; font-style: italic; text-decoration: underline; text-transform: none; }
  94% { font-weight: 200; font-style: normal; text-decoration: none; text-transform: uppercase; }
  96% { font-weight: 400; font-style: normal; text-decoration: none; text-transform: none; }
  98% { font-weight: 100; font-style: normal; text-decoration: none; text-transform: none; }
  100% { font-weight: 400; font-style: normal; text-decoration: none; text-transform: none; }
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.6em;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0;
    animation: reveal 2.2s cubic-bezier(0.19, 1, 0.22, 1) both 1.4s;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 2.5rem;
    opacity: 0;
    animation: reveal 2.2s cubic-bezier(0.19, 1, 0.22, 1) both 2.0s;
}

.glass-btn {
    text-decoration: none;
    border: 0.5px solid var(--border-soft);
    padding: 1.2rem 2.8rem;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    background: transparent;
}

.btn-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.4rem;
    margin-right: -0.35em;
}

.btn-sub {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    font-weight: 200;
}

.glass-btn:hover {
    border-color: #fff;
    background: #fff;
    transform: translateY(-8px);
}

.glass-btn:hover .btn-text,
.glass-btn:hover .btn-sub {
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .corner-accents { display: none; }
    
    .logo { max-width: 280px; }
    
    .coming-soon { font-size: 16px; letter-spacing: 0.8em; }
    .tagline { font-size: 10px; }
    
    .button-group {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .glass-btn { min-width: 280px; }
}
