/* =============================================
   Paradise Panel — styles.css
   Retro-wave / Vice City SMM landing page
   ============================================= */

/* ---------- Design tokens ---------- */
:root {
    --void:        #0D0020;
    --deep-violet: #130033;
    --mid-violet:  #1A0040;
    --magenta:     #FF2D78;
    --hot-pink:    #FF6EC7;
    --cyan:        #00F5FF;
    --orange:      #FF6B1A;
    --yellow:      #FFD600;
    --chrome:      #E8E8FF;
    --grid-line:   rgba(0, 245, 255, 0.18);
    --scanline:    rgba(0, 0, 0, 0.55);

    /* Sunset bands — bottom to top */
    --band-1: #FF0844;
    --band-2: #FF4B6E;
    --band-3: #FF6B1A;
    --band-4: #FF9500;
    --band-5: #FFD600;
    --band-6: #FFE57A;
    --band-7: #FFF4B2;
    --band-8: #FFC0CB;
    --band-9: #E040A0;
    --band-10: #9B1FFF;
    --band-11: #5500CC;
    --band-12: #2A0060;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 7rem;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 1rem; }

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--void);
    color: var(--chrome);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    z-index: 10000;
    background: var(--cyan);
    color: var(--void);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: var(--space-sm);
    outline: 3px solid var(--magenta);
    outline-offset: 2px;
}

/* ---------- Focus visible (accessibility) ---------- */
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    box-shadow: 0 0 12px var(--cyan);
}

/* ---------- Global CRT overlay ---------- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        var(--scanline) 2px,
        var(--scanline) 3px
    );
    mix-blend-mode: multiply;
    opacity: 0.35;
}

/* Vignette */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%,
        transparent 55%,
        rgba(0, 0, 0, 0.7) 100%);
}

/* ---------- Canvas ---------- */
.scene-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.scene-canvas.active { opacity: 1; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10vh;
    overflow: hidden;
    isolation: isolate;
    scroll-margin-top: 1rem;
}

/* === SKY: hard gradient bands === */
.sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        var(--band-1)  0%, var(--band-1)  6%,
        var(--band-2)  6%, var(--band-2)  11%,
        var(--band-3)  11%, var(--band-3)  17%,
        var(--band-4)  17%, var(--band-4)  22%,
        var(--band-5)  22%, var(--band-5)  27%,
        var(--band-6)  27%, var(--band-6)  31%,
        var(--band-7)  31%, var(--band-7)  36%,
        var(--band-8)  36%, var(--band-8)  42%,
        var(--band-9)  42%, var(--band-9)  50%,
        var(--band-10) 50%, var(--band-10) 60%,
        var(--band-11) 60%, var(--band-11) 75%,
        var(--band-12) 75%, var(--void)    100%
    );
    z-index: 0;
}

/* === SUN === */
.sun-wrap {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.sun {
    width: clamp(200px, 30vw, 420px);
    height: clamp(200px, 30vw, 420px);
    border-radius: 50%;
    background: linear-gradient(to bottom,
        #FFF4B2 0%, #FFD600 18%, #FFAA00 35%,
        #FF6B1A 55%, #FF2D78 75%, #CC0055 100%
    );
    position: relative;
    box-shadow:
        0 0 60px rgba(255, 160, 0, 0.6),
        0 0 120px rgba(255, 80, 20, 0.4),
        0 0 200px rgba(255, 45, 120, 0.3);
    animation: sunBreath 5s ease-in-out infinite;
}

/* Horizontal dark slices — the iconic VC sun stripes */
.sun::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 8px,
        rgba(0, 0, 15, 0.55) 8px, rgba(0, 0, 15, 0.55) 12px
    );
    mix-blend-mode: multiply;
}

/* Clip the bottom half (horizon) */
.sun-clip {
    width: clamp(200px, 30vw, 420px);
    height: clamp(100px, 15vw, 210px);
    overflow: hidden;
    position: relative;
}

/* === GROUND GRID === */
.grid-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 50%;
    z-index: 3;
    overflow: hidden;
    perspective: 400px;
}

.grid-plane {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background:
        repeating-linear-gradient(90deg,
            var(--grid-line) 0px, var(--grid-line) 1px,
            transparent 1px, transparent 60px),
        repeating-linear-gradient(0deg,
            var(--grid-line) 0px, var(--grid-line) 1px,
            transparent 1px, transparent 40px);
    transform: rotateX(70deg) scaleX(2.5);
    transform-origin: bottom center;
    animation: gridScroll 4s linear infinite;
}

/* Fade out top of grid */
.grid-fade {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to bottom, rgba(13, 0, 32, 0), rgba(13, 0, 32, 0));
    z-index: 4;
    pointer-events: none;
}

/* Dark ground fill below grid */
.ground {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 38%;
    background: linear-gradient(to top, var(--void) 40%, transparent 100%);
    z-index: 5;
}

/* === PALM TREES (SVG inline) === */
.palms {
    position: absolute;
    bottom: 30%;
    left: 0; right: 0;
    z-index: 6;
    display: flex;
    justify-content: space-between;
    padding: 0 2%;
    pointer-events: none;
}

.palm {
    opacity: 0.92;
    filter: drop-shadow(0 0 10px rgba(255, 45, 120, 0.4));
}

.palm-l { transform: scaleX(-1); }

/* === HERO CONTENT === */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-tape {
    display: inline-block;
    background: var(--magenta);
    color: var(--void);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.35rem 1.5rem;
    margin-bottom: 1.5rem;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    animation: tapeFlicker 6s ease-in-out infinite;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 14vw, 11rem);
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
    animation: glitchCycle 7s step-end infinite;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 110, 199, 0.5),
        0 0 80px rgba(255, 45, 120, 0.25);
}

/* Chromatic aberration layers */
.hero-title::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--cyan);
    clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
    transform: translate(-3px, 0);
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: chromaticR 7s step-end infinite;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--magenta);
    clip-path: polygon(0 55%, 100% 55%, 100% 70%, 0 70%);
    transform: translate(3px, 0);
    opacity: 0.7;
    mix-blend-mode: screen;
    animation: chromaticB 7s step-end infinite;
}

.hero-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 1.25rem auto 2.5rem;
    max-width: 560px;
    line-height: 1.8;
    /* Frosted pill backdrop so text floats above the sunset */
    background: rgba(10, 0, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 1rem 1.75rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-sub em {
    color: var(--cyan);
    font-style: normal;
    text-shadow: 0 0 10px var(--cyan), 0 1px 6px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 3.2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--void);
    background: linear-gradient(135deg, var(--cyan) 0%, #00B8D9 100%);
    border: none;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px rgba(0, 245, 255, 0.5),
        0 0 60px rgba(0, 245, 255, 0.2);
    animation: ctaGlow 3s ease-in-out infinite;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--magenta) 100%);
    color: var(--chrome);
    box-shadow:
        0 0 30px rgba(255, 45, 120, 0.7),
        0 0 80px rgba(255, 45, 120, 0.3);
    transform: translateY(-3px);
}

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

.cta-button:hover::before { left: 140%; }

.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}
.cta-button:hover .cta-arrow { transform: translateX(6px); }

/* === SCROLL INDICATOR === */
.scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: floatUp 2.5s ease-in-out infinite;
}
.scroll-hint span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--cyan);
    text-transform: uppercase;
}
.scroll-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.scroll-chevrons i {
    display: block;
    width: 10px; height: 10px;
    border-right: 1.5px solid var(--cyan);
    border-bottom: 1.5px solid var(--cyan);
    transform: rotate(45deg);
    opacity: 0;
    animation: chevronFade 1.5s ease-in-out infinite;
}
.scroll-chevrons i:nth-child(2) { animation-delay: 0.2s; }
.scroll-chevrons i:nth-child(3) { animation-delay: 0.4s; }

/* =============================================
   ABOUT
   ============================================= */
.about {
    position: relative;
    padding: var(--space-xl) var(--space-md) calc(var(--space-xl) + 2rem);
    background: transparent;
    overflow: hidden;
    scroll-margin-top: 1rem;
}

/* Neon horizon line */
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, var(--magenta) 20%, var(--cyan) 50%,
        var(--magenta) 80%, transparent 100%);
    box-shadow: 0 0 20px var(--magenta), 0 0 40px var(--cyan);
    z-index: 2;
}

.about::after { display: none; }

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.eyebrow-line {
    display: block;
    width: 40px; height: 2px;
    background: var(--magenta);
    box-shadow: 0 0 8px var(--magenta);
}

.eyebrow-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--magenta);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.0;
    margin-bottom: 1.5rem;
    color: var(--chrome);
    text-shadow: 0 0 40px rgba(255, 45, 120, 0.25);
}

.section-title span {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan), 0 0 60px rgba(0,245,255,0.3);
}

.section-desc {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(232, 232, 255, 0.8);
    max-width: 680px;
    line-height: 1.85;
    margin-bottom: 4.5rem;
    letter-spacing: 0.04em;
}

/* === FEATURE CARDS === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5px; /* razor gap = neon seam */
}

.feature-card {
    background: rgba(26, 0, 64, 0.7);
    border: 1px solid rgba(255, 45, 120, 0.2);
    padding: 2.75rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, background 0.4s, transform 0.4s;
    backdrop-filter: blur(16px);
    /* Fallback for browsers without backdrop-filter */
    background: rgba(26, 0, 64, 0.85);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(255, 45, 120, 0.5);
    background: rgba(40, 0, 90, 0.8);
    transform: translateY(-6px);
}

.feature-card:hover::before { transform: scaleX(1); }

/* Corner accent */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40px; height: 40px;
    border-bottom: 2px solid rgba(0, 245, 255, 0.3);
    border-right: 2px solid rgba(0, 245, 255, 0.3);
    transition: border-color 0.4s;
}

.feature-card:hover::after {
    border-color: var(--cyan);
    box-shadow: 6px 6px 0 rgba(0,245,255,0.1);
}

.feature-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(0, 245, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 45, 120, 0.5));
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--chrome);
    margin-top: 0.5rem;
    margin-bottom: 0.9rem;
}

.feature-text {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(232, 232, 255, 0.75);
    line-height: 1.75;
    letter-spacing: 0.03em;
}

/* === STATS BAR === */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 45, 120, 0.15);
    margin-top: 1.5px;
    border-top: 1px solid rgba(255, 45, 120, 0.2);
}

.stat-item {
    background: rgba(26, 0, 64, 0.6);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(26, 0, 64, 0.85);
}

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan), 0 0 60px rgba(0,245,255,0.4);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232, 232, 255, 0.6);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    position: relative;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,0,15,0.92) 40%);
    overflow: hidden;
    text-align: center;
    scroll-margin-top: 1rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, var(--cyan) 30%, var(--magenta) 70%, transparent 100%);
    box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--magenta);
}

/* Faint radial glow */
.footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 300px;
    background: radial-gradient(ellipse, rgba(255, 45, 120, 0.15), transparent 70%);
    pointer-events: none;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--hot-pink) 60%, var(--magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255,45,120,0.4));
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232, 232, 255, 0.5);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-divider {
    width: 120px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--magenta), transparent);
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232, 232, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
    /* Ensure minimum touch target */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.footer-copy {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(232, 232, 255, 0.35);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes sunBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

@keyframes glitchCycle {
    0%, 90%, 100% { transform: translate(0); clip-path: none; }
    91% { transform: translate(-4px, 0); clip-path: polygon(0 20%, 100% 20%, 100% 35%, 0 35%); }
    92% { transform: translate(4px, 0);  clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%); }
    93% { transform: translate(0); clip-path: none; }
    94% { transform: translate(-2px, 0); clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%); }
    95% { transform: translate(0); clip-path: none; }
}

@keyframes chromaticR {
    0%, 90%, 100% { transform: translate(-3px, 0); opacity: 0.7; }
    91% { transform: translate(-8px, 2px); opacity: 1; }
    93% { transform: translate(0, 0); opacity: 0; }
    94% { transform: translate(-3px, 0); opacity: 0.7; }
}

@keyframes chromaticB {
    0%, 90%, 100% { transform: translate(3px, 0); opacity: 0.7; }
    91% { transform: translate(8px, -2px); opacity: 1; }
    93% { transform: translate(0, 0); opacity: 0; }
    94% { transform: translate(3px, 0); opacity: 0.7; }
}

@keyframes tapeFlicker {
    0%, 95%, 100% { opacity: 1; }
    96% { opacity: 0.3; }
    97% { opacity: 1; }
    98% { opacity: 0.6; }
    99% { opacity: 1; }
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0,245,255,0.5), 0 0 60px rgba(0,245,255,0.15); }
    50% { box-shadow: 0 0 30px rgba(0,245,255,0.8), 0 0 90px rgba(0,245,255,0.3); }
}

@keyframes chevronFade {
    0% { opacity: 0; transform: rotate(45deg) translateY(-4px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translateY(4px); }
}

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

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .palms { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr; }
    .hero-content { padding-bottom: 4rem; }
    .section-desc { margin-bottom: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(12px)) {
    .feature-card {
        background: rgba(26, 0, 64, 0.95);
    }
    .stat-item {
        background: rgba(26, 0, 64, 0.95);
    }
    .hero-sub {
        background: rgba(10, 0, 28, 0.95);
    }
}

/* === FAQ SECTION === */
.faq {
    padding: 6rem 0;
    background: linear-gradient(to bottom, transparent, rgba(13, 0, 32, 0.8));
}

.faq-list {
    max-width: 800px;
    margin: 3rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5px;
}

.faq-item {
    background: rgba(26, 0, 64, 0.7);
    border: 1px solid rgba(255, 45, 120, 0.2);
    padding: 2rem 2.5rem;
    transition: border-color 0.4s, background 0.4s;
}

.faq-item:hover {
    border-color: rgba(255, 45, 120, 0.5);
    background: rgba(40, 0, 90, 0.8);
}

.faq-question {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--chrome);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(232, 232, 255, 0.75);
    line-height: 1.75;
    letter-spacing: 0.03em;
    margin: 0;
}

