/* ==========================================
   VibePentest.net — Coming Soon Styles
   ========================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette — Electric Blue / Cyan */
    --bg: #080c16;
    --bg-surface: #0c1221;
    --bg-card: #111827;
    --border: #1c2844;
    --text: #b8c8de;
    --text-dim: #4d6080;
    --text-bright: #e8f0fa;
    --accent: #00b4ff;
    --accent-dim: #00b4ff25;
    --accent-glow: #00b4ff55;
    --accent2: #a855f7;
    --accent2-dim: #a855f725;
    --red: #ff5f5f;
    --yellow: #fbbf24;
    --green: #34d399;

    /* Typography */
    --ff-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --ff-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: .25rem;
    --space-sm: .5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-sans);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* --- Animated Grid Background --- */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 180, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, .03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* Scan line effect */
.scan-line {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
    opacity: .2;
    z-index: 1;
    animation: scanDown 8s ease-in-out infinite;
}

@keyframes scanDown {
    0% {
        top: -5%;
    }

    100% {
        top: 105%;
    }
}

/* --- Floating Orbs --- */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 255, .12), transparent 70%);
    top: -10%;
    right: -10%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, .10), transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: orbFloat2 18s ease-in-out infinite;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 30px) scale(1.1);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

/* --- Particles Canvas --- */
#particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* --- Main Content --- */
main {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Top Bar / Nav --- */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--ff-mono);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-bright);
    user-select: none;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px var(--accent));
    }

    50% {
        opacity: .55;
        filter: drop-shadow(0 0 2px var(--accent));
    }
}

.logo-text .accent {
    color: var(--accent);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--ff-mono);
    font-size: .75rem;
    color: var(--text-dim);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

/* --- Hero --- */
.hero {
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--accent-dim);
    border-radius: 999px;
    background: rgba(0, 180, 255, .06);
    font-family: var(--ff-mono);
    font-size: .8rem;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(12px);
    animation: fadeUp .8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-bright);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.hero-title .line {
    display: block;
    animation: fadeUp .8s ease-out both;
}

.hero-title .line:nth-child(1) {
    animation-delay: .1s;
}

.hero-title .line:nth-child(2) {
    animation-delay: .25s;
}

.hero-title .line:nth-child(3) {
    animation-delay: .4s;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dim);
    animation: fadeUp .8s ease-out .5s both;
}

/* --- Countdown --- */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: fadeUp .8s ease-out .6s both;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 76px;
    padding: var(--space-md) var(--space-md);
    background: rgba(0, 180, 255, .04);
    border: 1px solid var(--border);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: border-color .3s, box-shadow .3s;
}

.cd-block:hover {
    border-color: var(--accent-dim);
    box-shadow: 0 0 20px rgba(0, 180, 255, .08);
}

.cd-num {
    font-family: var(--ff-mono);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1;
}

.cd-label {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-dim);
    margin-top: var(--space-xs);
}

.cd-sep {
    font-family: var(--ff-mono);
    font-size: 1.8rem;
    color: var(--accent);
    opacity: .4;
    animation: blink 1s ease-in-out infinite;
}

/* --- Terminal --- */
.terminal-section {
    padding: var(--space-xl) 0;
}

.terminal {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 50px rgba(0, 180, 255, .06),
        0 24px 60px rgba(0, 0, 0, .5);
    animation: fadeUp .8s ease-out .9s both;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .025);
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: var(--red);
}

.terminal-dot.yellow {
    background: var(--yellow);
}

.terminal-dot.green {
    background: var(--green);
}

.terminal-title {
    margin-left: auto;
    font-family: var(--ff-mono);
    font-size: .7rem;
    color: var(--text-dim);
}

.terminal-body {
    padding: var(--space-lg);
    font-family: var(--ff-mono);
    font-size: .85rem;
    line-height: 1.8;
    min-height: 240px;
    overflow: hidden;
}

.terminal-line {
    white-space: nowrap;
    overflow: hidden;
}

.prompt {
    color: var(--accent);
    margin-right: var(--space-sm);
    user-select: none;
}

.cmd {
    color: var(--text-bright);
}

.output {
    color: var(--text-dim);
}

.output.success {
    color: var(--green);
}

.output.warn {
    color: var(--yellow);
}

.output.info {
    color: var(--accent2);
}

.output.accent {
    color: var(--accent);
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 17px;
    background: var(--accent);
    vertical-align: text-bottom;
    animation: cursorBlink .7s step-end infinite;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* --- Features --- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-lg) 0 var(--space-2xl);
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: var(--space-xl) var(--space-lg);
    transition: border-color .3s, transform .3s, box-shadow .3s;
    animation: fadeUp .8s ease-out 1s both;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(2) {
    animation-delay: 1.15s;
}

.feature-card:nth-child(3) {
    animation-delay: 1.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--accent-dim);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--text-dim);
}

/* --- Footer --- */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border);
    font-size: .8rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 640px) {
    main {
        padding: 0 var(--space-md);
    }

    .hero {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .countdown {
        gap: var(--space-xs);
    }

    .cd-block {
        min-width: 56px;
        padding: var(--space-sm);
    }

    .cd-num {
        font-size: 1.4rem;
    }

    .terminal-body {
        padding: var(--space-md);
        font-size: .75rem;
    }

    .footer {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .orb-1,
    .orb-2 {
        display: none;
    }
}