/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --cyan: #00ffff;
    --magenta: #ff00ff;
    --green: #39ff14;
    --bg-dark: #0a0a0f;
    --bg-mid: #1a1a2e;
    --bg-card: #0f0f1a;
    --bg-card-hover: #151528;
    --text-primary: #e0e0e8;
    --text-secondary: #8888aa;
    --text-muted: #555570;
    --border-color: #2a2a40;
    --border-glow: rgba(0, 255, 255, 0.15);
    --white: #ffffff;
    --warn: #ff4444;
    --warn-soft: #ff6b6b;

    /* Neon Glows */
    --glow-cyan: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.15);
    --glow-magenta: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3), 0 0 40px rgba(255, 0, 255, 0.15);
    --glow-green: 0 0 10px rgba(57, 255, 20, 0.5), 0 0 20px rgba(57, 255, 20, 0.3), 0 0 40px rgba(57, 255, 20, 0.15);
    --text-glow-cyan: 0 0 7px rgba(0, 255, 255, 0.7), 0 0 15px rgba(0, 255, 255, 0.4);
    --text-glow-magenta: 0 0 7px rgba(255, 0, 255, 0.7), 0 0 15px rgba(255, 0, 255, 0.4);
    --text-glow-green: 0 0 7px rgba(57, 255, 20, 0.7), 0 0 15px rgba(57, 255, 20, 0.4);

    /* Typography */
    --font-display: 'Orbitron', monospace, sans-serif;
    --font-mono: 'Share Tech Mono', 'Courier New', monospace;
    --font-body: 'Rajdhani', 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
}

a:hover, a:focus {
    color: var(--white);
    text-shadow: var(--text-glow-cyan);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}

input, textarea {
    font-family: inherit;
    color: inherit;
}

::selection {
    background: rgba(0, 255, 255, 0.3);
    color: var(--white);
}

:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

/* ============================================
   OVERLAYS & BACKGROUNDS
   ============================================ */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    mix-blend-mode: overlay;
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-cyan { color: var(--cyan); text-shadow: var(--text-glow-cyan); }
.text-magenta { color: var(--magenta); text-shadow: var(--text-glow-magenta); }
.text-green { color: var(--green); text-shadow: var(--text-glow-green); }
.text-warn { color: var(--warn-soft); }

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s, box-shadow 0.3s;
}

.main-header.scrolled {
    background: rgba(10, 10, 15, 0.96);
    box-shadow: 0 2px 30px rgba(0, 255, 255, 0.08);
    border-bottom-color: rgba(0, 255, 255, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
}

.accent-colon {
    color: var(--magenta);
    text-shadow: var(--text-glow-magenta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 2px;
    transition: color 0.2s, background 0.2s, text-shadow 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.nav-link--cta {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
    padding: 8px 20px;
}

.nav-link--cta:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    text-shadow: none;
    box-shadow: var(--glow-cyan);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 4px 0;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cyan);
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    border: 1px solid;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon--cyan {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 255, 255, 0.08);
    text-shadow: var(--text-glow-cyan);
}

.btn-neon--cyan:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    text-shadow: none;
    box-shadow: var(--glow-cyan);
}

.btn-neon--magenta {
    border-color: var(--magenta);
    color: var(--magenta);
    background: rgba(255, 0, 255, 0.08);
    text-shadow: var(--text-glow-magenta);
}

.btn-neon--magenta:hover {
    background: var(--magenta);
    color: var(--bg-dark);
    text-shadow: none;
    box-shadow: var(--glow-magenta);
}

.btn-neon--outline {
    border-color: var(--border-color);
    color: var(--text-secondary);
    background: transparent;
}

.btn-neon--outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 255, 255, 0.05);
}

.btn-neon--large {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-neon--submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 0.9rem;
}

.btn-arrow {
    font-family: var(--font-mono);
    transition: transform 0.3s;
}

.btn-neon:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(57, 255, 20, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--cyan);
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(20px);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 8px 24px;
    border-radius: 2px;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-pulse {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--green);
    letter-spacing: 2px;
    text-shadow: var(--text-glow-green);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    position: relative;
}

.hero-title-line {
    display: block;
}

.hero-title-line--1 {
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    letter-spacing: 8px;
}

.hero-title-line--vs {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--magenta);
    text-shadow: var(--text-glow-magenta);
    letter-spacing: 16px;
    margin: 4px 0;
    animation: fadeInScale 0.6s ease-out 0.5s both;
}

.hero-title-line--2 {
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--magenta);
    text-shadow: var(--text-glow-magenta);
    animation: fadeInRight 0.8s ease-out 0.2s both;
    letter-spacing: 8px;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 16px;
    color: var(--green);
    text-shadow: var(--text-glow-green);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
    letter-spacing: 2px;
}

.stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 4px;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header--left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-line {
    width: 80px;
    height: 2px;
    background: var(--cyan);
    margin: 16px auto 0;
    box-shadow: 0 0 8px var(--cyan);
}

.section-line--magenta {
    background: var(--magenta);
    box-shadow: 0 0 8px var(--magenta);
}

.section-line--green {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.section-header--left .section-line {
    margin-left: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(0, 255, 255, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.about-lead {
    font-size: 1.2rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--cyan);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 2px;
    letter-spacing: 1px;
    background: rgba(0, 255, 255, 0.05);
}

.image-frame {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 4px;
    background: var(--bg-card);
}

.image-frame img {
    width: 100%;
    display: block;
}

.image-frame-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--cyan);
    border-style: solid;
}

.image-frame-corner--tl {
    top: -2px;
    left: -2px;
    border-width: 2px 0 0 2px;
}

.image-frame-corner--tr {
    top: -2px;
    right: -2px;
    border-width: 2px 2px 0 0;
}

.image-frame-corner--bl {
    bottom: -2px;
    left: -2px;
    border-width: 0 0 2px 2px;
}

.image-frame-corner--br {
    bottom: -2px;
    right: -2px;
    border-width: 0 2px 2px 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(255, 0, 255, 0.04) 0%, transparent 50%),
        var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
}

.gallery-item:hover {
    border-color: var(--magenta);
    transform: scale(1.02);
    z-index: 2;
}

.gallery-item--large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--magenta);
    letter-spacing: 2px;
    text-shadow: var(--text-glow-magenta);
}

.gallery-zoom {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.96);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--border-color);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--white);
    padding: 12px 16px;
    transition: color 0.2s, text-shadow 0.2s;
    z-index: 10;
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid var(--border-color);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
    border-color: var(--cyan);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(57, 255, 20, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 50%, var(--bg-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.3s, box-shadow 0.3s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 255, 0.05);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    border: 1px solid var(--border-color);
    padding: 3px 10px;
    border-radius: 2px;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-section {
    padding: 0;
}

.social-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(0, 255, 255, 0.03);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.proof-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.proof-dot--live {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.proof-divider {
    color: var(--border-color);
    font-family: var(--font-mono);
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.signup-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.signup-perks {
    margin-bottom: 32px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(42, 42, 64, 0.5);
}

.perk-icon {
    font-family: var(--font-mono);
    color: var(--green);
    font-size: 0.85rem;
    text-shadow: var(--text-glow-green);
    flex-shrink: 0;
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 2px;
}

.trust-icon {
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-text a {
    color: var(--green);
}

/* Form */
.signup-form-wrapper {
    position: relative;
}

.signup-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px;
    position: relative;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--green));
}

.form-header {
    margin-bottom: 28px;
}

.form-status {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--green);
    letter-spacing: 2px;
    text-shadow: var(--text-glow-green);
    margin-bottom: 8px;
    display: block;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);
}

.form-input.error {
    border-color: var(--warn);
    box-shadow: 0 0 12px rgba(255, 68, 68, 0.15);
}

.form-error {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--warn-soft);
    margin-top: 4px;
    min-height: 1em;
}

/* Checkboxes */
.form-group--checkbox {
    margin-bottom: 14px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    margin-top: 2px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--cyan);
    background: rgba(0, 255, 255, 0.15);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.checkbox-label a {
    color: var(--cyan);
}

/* Form Success */
.form-success {
    background: var(--bg-card);
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 60px 36px;
    text-align: center;
}

.success-icon {
    margin-bottom: 24px;
    animation: fadeInScale 0.6s ease-out;
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    text-shadow: var(--text-glow-green);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.success-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-error-msg {
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 20px;
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--warn-soft);
}

.form-error-msg a {
    color: var(--warn-soft);
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(255, 0, 255, 0.04) 0%, transparent 50%),
        var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    margin-bottom: 8px;
    background: var(--bg-card);
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: rgba(255, 0, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--magenta);
}

.faq-q-text {
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--magenta);
    transition: transform 0.3s, text-shadow 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    text-shadow: var(--text-glow-magenta);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer[hidden] {
    display: block !important;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
    visibility: visible;
}

.faq-answer a {
    color: var(--magenta);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.trust-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
}

.trust-card-icon {
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.trust-card a {
    color: var(--cyan);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 4px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-address {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a,
.footer-list span {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--cyan);
    text-shadow: var(--text-glow-cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left p {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--warn-soft);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--warn-soft);
}

.footer-responsible {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(15, 15, 26, 0.98);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
    text-shadow: var(--text-glow-cyan);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--cyan);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-actions .btn-neon {
    padding: 8px 18px;
    font-size: 0.72rem;
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cookie-settings-panel h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cookie-option {
    margin-bottom: 14px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--cyan);
    width: 16px;
    height: 16px;
}

.cookie-option p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: 24px;
    margin-top: 4px;
}

.cookie-settings-panel .btn-neon {
    margin-top: 10px;
    padding: 10px 24px;
    font-size: 0.78rem;
}

/* ============================================
   LEGAL CONTENT (shared across legal pages)
   ============================================ */
.legal-content {
    background: #f8f8fc;
    color: #1a1a2e;
    padding: 60px 0;
    min-height: 60vh;
}

.legal-content .container {
    max-width: 860px;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0a0a0f;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.legal-content .legal-updated {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0f;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    border-left: 3px solid var(--cyan);
    padding-left: 16px;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 24px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.legal-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0044aa;
    text-shadow: none;
}

.legal-content strong {
    color: #1a1a2e;
}

.legal-content .legal-contact {
    background: #eef;
    border: 1px solid #dde;
    padding: 20px;
    margin-top: 24px;
    border-radius: 4px;
}

.legal-content .legal-contact p {
    margin-bottom: 6px;
}

/* Legal page header/footer keep dark theme */
.legal-page .main-header {
    background: rgba(10, 10, 15, 0.96);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Glitch hover effect for hero title */
.hero-title-line--1:hover,
.hero-title-line--2:hover {
    animation: glitch-text 0.3s ease-in-out;
}

@keyframes glitch-text {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 2px) skew(2deg); }
    40% { transform: translate(3px, -1px) skew(-1deg); }
    60% { transform: translate(-2px, 1px) skew(1deg); }
    80% { transform: translate(2px, -2px) skew(-2deg); }
    100% { transform: translate(0); }
}

/* Feature card glitch on hover */
.feature-card:hover .feature-title {
    animation: glitch-text 0.4s ease-in-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-link--cta {
        text-align: center;
        margin-top: 8px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large {
        grid-column: span 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .social-proof-bar {
        flex-direction: column;
        gap: 10px;
    }

    .proof-divider {
        display: none;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn-neon {
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .signup-form {
        padding: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 60px;
        transform: none;
    }

    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }
}

@media (max-width: 480px) {
    .hero-title-line--1,
    .hero-title-line--2 {
        letter-spacing: 4px;
    }

    .hero-subtitle {
        letter-spacing: 8px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-neon--large {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
