:root {
    --bg-deep: #050508;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent: #5c60f5;
    --accent-glow: rgba(92, 96, 245, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px; /* Space for fixed ticker */
}

/* Texture & Effects */
.noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42NSIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNuKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    pointer-events: none;
    z-index: 50;
    opacity: 0.4;
}

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(92, 96, 245, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.bg-image {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -2;
    filter: saturate(0) brightness(0.5);
}

.gradient-sphere {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(92, 96, 245, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translate(-5%, -5%) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

/* Header */
header {
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 100;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.brand-name span {
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
    margin-left: 2px;
}

.parent-brand {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 5%;
    position: relative;
}

.hero-section {
    max-width: 900px;
    text-align: center;
}

.badge-container {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
}

h1 .serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 10px;
}

.description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Premium Form */
.signup-form {
    display: flex;
    width: 100%;
    max-width: 550px;
    background: var(--glass);
    padding: 10px;
    border-radius: 100px;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    margin: 0 auto 5rem;
    animation: fadeInUp 1.2s ease 0.6s both;
    transition: var(--transition);
}

.signup-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.signup-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 30px;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    font-weight: 400;
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.signup-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 45px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.signup-form button:hover {
    background: #fff;
    color: var(--accent);
    transform: scale(1.02);
}

/* Pillars Section */
.pillars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    animation: fadeInUp 1.4s ease 0.8s both;
}

.pillar {
    text-align: left;
}

.pillar-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.pillar p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.pillar-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* Broadcast Style News Ticker - Fixed Footer */
.news-ticker-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(5, 5, 8, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    backdrop-filter: blur(20px);
    z-index: 1000;
    animation: slideUp 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.news-ticker {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 0 5%;
    overflow: hidden;
}

.ticker-label {
    background: #ff3d00;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 2px;
    margin-right: 25px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.live-indicator {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: neonPulse 1s infinite alternate;
}

@keyframes neonPulse {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0.5; transform: scale(0.8); }
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    gap: 40px;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.ticker-content span {
    display: inline-block;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: tickerMove 40s linear infinite;
    cursor: default;
}

@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Footer */
footer {
    padding: 3rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.2);
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.social-link:hover {
    color: #fff;
    letter-spacing: 3px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3rem; letter-spacing: -2px; }
    .header-nav { display: none; }
    .pillars { flex-direction: column; gap: 2rem; margin-bottom: 4rem; text-align: center; }
    .pillar { text-align: center; }
    .pillar-divider { display: none; }
    .signup-form { flex-direction: column; background: transparent; border: none; padding: 0; border-radius: 0; }
    .signup-form input { background: var(--glass); border: 1px solid var(--border); padding: 20px; border-radius: 12px; margin-bottom: 12px; width: 100%; text-align: center; }
    .signup-form button { width: 100%; padding: 20px; border-radius: 12px; }
}
