:root {
    --void: #000000;
    --obsidian: #0a0a0a;
    --slate: #1a1a1a;
    --ghost: #2a2a2a;
    --mist: #888888;
    --pearl: #cccccc;
    --bone: #e8e8e8;
    --light: #ffffff;

    --neon-pink: #ff69b4;
    --neon-orange: #ff8c42;
    --neon-emerald: #00ff88;
    --pink-glow: rgba(255, 105, 180, 0.4);
    --orange-glow: rgba(255, 140, 66, 0.4);
    --emerald-glow: rgba(0, 255, 136, 0.4);
    --pink-dim: rgba(255, 105, 180, 0.15);
    --orange-dim: rgba(255, 140, 66, 0.1);
    --emerald-dim: rgba(0, 255, 136, 0.15);
    --neon-purple: #9f5fff;
    --purple-glow: rgba(159, 95, 255, 0.4);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background: var(--void);
    color: var(--pearl);
    font-family: 'Space Mono', monospace;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Tamil text rendering */
.tamil-text {
    font-family: 'Noto Serif Tamil', 'Noto Sans Tamil', 'Lohit Tamil', serif;
}

/* Subtle grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--void) 0%, transparent 100%);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--light);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--pink-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

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

.tagline {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.2s forwards;
}

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.4s forwards;
    position: relative;
    white-space: nowrap;
}

.title-wrapper {
    position: relative;
    display: inline-block;
}

/* The gradient title text */
.title-text {
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 50%, var(--neon-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--pink-glow)) drop-shadow(0 0 40px var(--orange-glow));
    opacity: 0.85;
}

/* Flickering pink portion: "rmulat" - 15% more opaque */
.title-flicker {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    color: transparent;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
}

.title-flicker .flicker-pink {
    color: var(--neon-pink);
    -webkit-text-fill-color: var(--neon-pink);
    text-shadow: 0 0 20px var(--pink-glow), 0 0 40px var(--pink-glow), 0 0 60px var(--pink-glow);
    animation: pinkSputter 6s ease-in-out infinite;
    opacity: 1;
}

/* The background "4" glyph - moved to the left, as faint as possible */
.bg-four {
    position: absolute;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.1em;
    font-weight: 900;
    color: #7fff9f;
    -webkit-text-stroke: 1px #1b4e2d;
    text-shadow:
        0 0 25px rgba(100, 200, 140, 0.3),
        0 0 50px rgba(100, 200, 140, 0.15);
    z-index: -1;
    top: 50%;
    left: -0.5em;
    transform: translateY(-50%);
    opacity: 0.08;
    animation: fourFlicker 10s ease-in-out infinite;
    pointer-events: none;
}

/* Multicoloured neon watermark with dynamic colors */
.neon-watermark {
    position: absolute;
    top: 45%;
    right: 5%;
    transform: translateY(-150%);
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    background: linear-gradient(
        90deg,
        var(--neon-pink) 0%,
        var(--neon-orange) 20%,
        var(--neon-emerald) 40%,
        var(--neon-purple) 60%,
        #00d4ff 80%,
        var(--neon-pink) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonWatermarkFlow 8s linear infinite, neonWatermarkPulse 4s ease-in-out infinite;
    filter: blur(0.5px);
    text-shadow:
        0 0 40px rgba(255, 105, 180, 0.3),
        0 0 80px rgba(255, 140, 66, 0.2),
        0 0 120px rgba(0, 255, 136, 0.15);
}

@keyframes neonWatermarkFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes neonWatermarkPulse {
    0%, 100% {
        opacity: 0.12;
        filter: blur(0.5px);
    }
    50% {
        opacity: 0.18;
        filter: blur(1px);
    }
}

/* Synchronized flickering animations */
@keyframes pinkSputter {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 15px var(--pink-glow), 0 0 30px var(--pink-glow);
    }
    /* Pink sputters out */
    25% {
        opacity: 0.7;
        text-shadow: 0 0 8px var(--pink-glow);
    }
    35% {
        opacity: 0.15;
        text-shadow: 0 0 2px var(--pink-glow);
    }
    40% {
        opacity: 0.05;
        text-shadow: none;
    }
    /* Pink stays dim while 4 is visible */
    50% {
        opacity: 0.02;
    }
    /* Pink comes back */
    60% {
        opacity: 0.1;
    }
    70% {
        opacity: 0.5;
        text-shadow: 0 0 5px var(--pink-glow);
    }
    75% {
        opacity: 0.9;
    }
    85% {
        opacity: 1;
        text-shadow: 0 0 15px var(--pink-glow), 0 0 30px var(--pink-glow);
    }
}

@keyframes fourFlicker {
    0%, 100% {
        opacity: 0.04;
        text-shadow: 0 0 10px rgba(100, 200, 140, 0.08);
    }
    /* 4 starts becoming visible as pink dims */
    30% {
        opacity: 0.08;
    }
    /* 4 is most legible when pink is out */
    40% {
        opacity: 0.15;
        text-shadow:
            0 0 20px rgba(100, 200, 140, 0.2),
            0 0 40px rgba(100, 200, 140, 0.1);
    }
    50% {
        opacity: 0.18;
        text-shadow:
            0 0 25px rgba(100, 200, 140, 0.25),
            0 0 50px rgba(0, 255, 136, 0.15);
    }
    /* 4 sputters out */
    60% {
        opacity: 0.12;
    }
    70% {
        opacity: 0.06;
    }
    75% {
        opacity: 0.04;
        text-shadow: 0 0 10px rgba(100, 200, 140, 0.08);
    }
}

.subtitle {
    font-size: 1.1rem;
    color: var(--pearl);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.6s forwards;
}

.subtitle .weather-link {
    color: var(--pearl);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.subtitle .weather-link:hover {
    color: var(--neon-emerald);
    text-shadow: 0 0 15px var(--emerald-glow);
}

/* Broadcast Statement - declarative, weather-report style */
.broadcast-statement {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem; /* ~115% of body text */
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--bone);
    margin: 2.5rem auto 2rem;
    max-width: 800px;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.6s forwards;
}

/* Television Container */
.tv-container {
    margin: 2rem auto 2.5rem;
    max-width: 480px;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.7s forwards;
}

/* TV Frame - old school with curvature */
.tv-frame {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 20px 24px 16px;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 -2px 4px rgba(0, 0, 0, 0.8),
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(100, 200, 140, 0.03);
    border: 1px solid var(--ghost);
}

/* TV Screen - curved glass effect */
.tv-screen {
    position: relative;
    background: radial-gradient(ellipse at center, #0a0f0a 0%, #050805 70%, #020302 100%);
    border-radius: 8px / 6px;
    padding: 1.5rem 1.25rem;
    min-height: 100px;
    overflow: hidden;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.8),
        inset 0 0 60px rgba(0, 20, 10, 0.3),
        0 0 1px rgba(100, 200, 140, 0.2);
    animation: tvGlow 8s ease-in-out infinite;
}

/* Scanlines overlay */
.tv-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

/* Screen flicker - slow, infrastructural */
@keyframes tvGlow {
    0%, 100% {
        box-shadow:
            inset 0 0 30px rgba(0, 0, 0, 0.8),
            inset 0 0 60px rgba(0, 20, 10, 0.3),
            0 0 1px rgba(100, 200, 140, 0.2);
    }
    25% {
        box-shadow:
            inset 0 0 30px rgba(0, 0, 0, 0.8),
            inset 0 0 60px rgba(0, 20, 10, 0.35),
            0 0 2px rgba(100, 200, 140, 0.25);
    }
    50% {
        box-shadow:
            inset 0 0 30px rgba(0, 0, 0, 0.75),
            inset 0 0 60px rgba(0, 20, 10, 0.4),
            0 0 3px rgba(100, 200, 140, 0.3);
    }
    75% {
        box-shadow:
            inset 0 0 30px rgba(0, 0, 0, 0.8),
            inset 0 0 60px rgba(0, 20, 10, 0.32),
            0 0 2px rgba(100, 200, 140, 0.22);
    }
}

/* TV Content - background radiation feel */
.tv-content {
    position: relative;
    z-index: 1;
    animation: contentFlicker 12s ease-in-out infinite;
}

.tv-content p {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: rgba(100, 200, 140, 0.7);
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 0 8px rgba(100, 200, 140, 0.3);
    letter-spacing: 0.02em;
}

.tv-content p:first-child {
    margin-bottom: 0.5rem;
}

.tv-content p:last-child {
    color: rgba(100, 200, 140, 0.55);
    font-size: 0.68rem;
}

/* Subtle content flicker */
@keyframes contentFlicker {
    0%, 100% { opacity: 1; }
    48% { opacity: 1; }
    49% { opacity: 0.92; }
    50% { opacity: 1; }
    72% { opacity: 1; }
    73% { opacity: 0.95; }
    74% { opacity: 1; }
}

/* TV Chassis - houses the power button */
.tv-chassis {
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    padding: 12px 20px;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #0a0a0a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Power Button - Learn More */
.tv-power-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--ghost);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.8s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.4);
}

/* CRT warming up effect on hover */
.tv-power-btn:hover {
    color: var(--pearl);
    background: linear-gradient(180deg, #222 0%, #151515 100%);
    border-color: rgba(100, 200, 140, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(100, 200, 140, 0.1);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 1s ease 0.8s forwards;
}

.cta {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid var(--ghost);
    background: transparent;
    color: var(--pearl);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--pink-dim);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta:hover {
    border-color: var(--neon-pink);
    color: var(--light);
    box-shadow: 0 0 20px var(--pink-glow);
}

.cta:hover::before {
    left: 0;
}

.cta-primary {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
    color: var(--void);
    border: none;
    font-weight: 700;
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-emerald));
    box-shadow: 0 0 30px var(--orange-glow), 0 0 60px var(--emerald-glow);
    color: var(--void);
}

.cta-primary::before {
    display: none;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards, float 2s ease-in-out infinite 1.2s;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--neon-emerald), var(--neon-pink), transparent);
    box-shadow: 0 0 10px var(--emerald-glow);
}

/* Philosophy Section */
.section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--neon-emerald);
    text-shadow: 0 0 10px var(--emerald-glow);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--neon-emerald);
    box-shadow: 0 0 8px var(--emerald-glow);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--light);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.section-text {
    font-size: 1rem;
    color: var(--pearl);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.section-text em {
    color: var(--bone);
    font-style: italic;
}

/* Quote block */
.quote-block {
    border-left: 2px solid var(--neon-orange);
    padding: 2rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, var(--pink-dim) 0%, var(--orange-dim) 100%);
    box-shadow: 0 0 30px rgba(255, 140, 66, 0.1);
}

.quote-block p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bone);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.quote-block cite {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--mist);
    letter-spacing: 0.1em;
}

/* Gate Section */
.gate-section {
    background: var(--obsidian);
    border-top: 1px solid var(--ghost);
    border-bottom: 1px solid var(--ghost);
}

.gate-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.gate-icon {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 2rem;
    transform: rotate(-3deg);
    filter: drop-shadow(0 0 25px var(--pink-glow)) drop-shadow(0 0 37px var(--orange-glow));
    animation: neon-pulse-img 2s ease-in-out infinite;
}

@keyframes neon-pulse-img {
    0%, 100% {
        filter: drop-shadow(0 0 25px var(--pink-glow)) drop-shadow(0 0 37px var(--orange-glow));
        opacity: 1;
    }
    50% {
        filter: drop-shadow(0 0 35px var(--pink-glow)) drop-shadow(0 0 57px var(--orange-glow)) drop-shadow(0 0 80px var(--emerald-glow));
        opacity: 0.85;
    }
}

@keyframes neon-pulse {
    0%, 100% {
        text-shadow: 0 0 20px var(--pink-glow), 0 0 40px var(--orange-glow);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 30px var(--pink-glow), 0 0 60px var(--orange-glow), 0 0 80px var(--emerald-glow);
        opacity: 0.85;
    }
}

.gate-title {
    font-family: 'Noto Serif Tamil', 'Noto Sans Tamil', 'Lohit Tamil', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--neon-orange);
    text-shadow: 0 0 15px var(--orange-glow);
    margin-bottom: 1.5rem;
}

.gate-description {
    font-size: 0.95rem;
    color: var(--pearl);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.gate-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--bone);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.question-number {
    display: inline-block;
    font-family: 'Noto Sans Tamil', sans-serif;
    color: var(--neon-pink);
    margin-right: 0.5rem;
    transform: rotate(-3deg);
    text-shadow: 0 0 8px var(--pink-glow);
}

.form-group textarea,
.form-group input {
    width: 100%;
    padding: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    background: var(--void);
    border: 1px solid var(--ghost);
    color: var(--light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input[type="email"] {
    min-height: auto;
}

.form-group textarea:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px var(--pink-glow), 0 0 40px var(--orange-glow);
}

.form-group textarea::placeholder,
.form-group input::placeholder {
    color: var(--mist);
}

/* Email section styling */
.email-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ghost);
}

.email-section label {
    color: var(--neon-emerald);
    text-shadow: 0 0 8px var(--emerald-glow);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
    color: var(--void);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-emerald));
    box-shadow: 0 0 30px var(--orange-glow), 0 0 60px var(--emerald-glow);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading {
    background: var(--ghost);
    color: var(--pearl);
}

.submit-btn.success {
    background: var(--neon-emerald);
    color: var(--void);
}

/* Status message */
.status-message {
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 2px;
    display: none;
}

.status-message.visible {
    display: block;
}

.status-message.success {
    background: var(--emerald-dim);
    border: 1px solid var(--neon-emerald);
    color: var(--neon-emerald);
}

.status-message.error {
    background: var(--pink-dim);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

.status-message.info {
    background: var(--orange-dim);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
}

.accessibility-note {
    font-size: 0.7rem;
    color: var(--mist);
    margin-top: 1.5rem;
    text-align: center;
}

.accessibility-note a {
    color: var(--neon-emerald);
    text-decoration: none;
    text-shadow: 0 0 8px var(--emerald-glow);
}

.accessibility-note a:hover {
    text-decoration: underline;
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--pink-glow);
}

.encryption-note {
    font-size: 0.65rem;
    color: var(--mist);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.encryption-note::before {
    content: '🔐';
}

/* Hosting blurb - subtle, small */
.hosting-blurb {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.hosting-blurb p {
    font-size: 0.6rem;
    color: var(--mist);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.hosting-blurb a {
    color: var(--mist);
    text-decoration: none;
}

.hosting-blurb a:hover {
    color: var(--pearl);
}

.floki-link {
    display: inline-block;
    margin-top: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.floki-link:hover {
    opacity: 0.8;
}

.floki-logo {
    max-width: 80px;
    height: auto;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--ghost);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light);
}

.footer-copy {
    font-size: 0.7rem;
    color: var(--mist);
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.65rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .gate-icon {
        font-size: 4rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .neon-watermark {
        font-size: clamp(2rem, 6vw, 3.5rem);
        right: 2%;
        opacity: 0.10;
    }

    .bg-four {
        left: -1em;
        opacity: 0.06;
    }

    /* TV responsive */
    .broadcast-statement {
        font-size: 1rem;
        white-space: normal;
        line-height: 1.5;
        padding: 0 1rem;
    }

    .tv-container {
        max-width: 95%;
    }

    .tv-frame {
        padding: 14px 16px 12px;
    }

    .tv-screen {
        padding: 1rem;
    }

    .tv-content p {
        font-size: 0.65rem;
    }

    .tv-content p:last-child {
        font-size: 0.6rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
