/* =========================================================
   KodingSiber - Coming Soon - style.css
   Dark mode, minimalis, cybersecurity aesthetic.
   ========================================================= */

:root {
    /* Warna dasar */
    --bg-primary: #05080d;
    --bg-secondary: #0c121a;
    --bg-terminal: #0a0f16;
    --border-color: #1e2a37;

    /* Aksen */
    --accent-green: #39ff88;
    --accent-cyan: #33e0ff;
    --accent-green-dim: #1e8a4f;
    --accent-cyan-dim: #1c7a8f;

    /* Teks */
    --text-primary: #ffffff;
    --text-secondary: #b7c2cc;
    --text-muted: #6b7c8c;

    /* Tipografi */
    --font-main: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
    --font-mono: 'Consolas', 'Courier New', monospace;

    --radius: 10px;
    --max-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(57, 255, 136, 0.05), transparent 40%),
        radial-gradient(circle at 85% 25%, rgba(51, 224, 255, 0.05), transparent 40%);
}

a {
    color: inherit;
    text-decoration: none;
}

.accent {
    color: var(--accent-green);
}

.accent-cyan {
    color: var(--accent-cyan);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.coming-soon-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan-dim);
    padding: 4px 12px;
    border-radius: 999px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 24px;
}

.hero-inner {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Terminal dekoratif */
.terminal {
    background-color: var(--bg-terminal);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: left;
    margin: 0 auto 40px;
    overflow: hidden;
    max-width: 480px;
}

.terminal-bar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.terminal-body {
    padding: 16px 18px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.terminal-body p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    word-break: break-word;
}

.terminal-body p:last-child {
    margin-bottom: 0;
}

.prompt {
    color: var(--accent-green);
    margin-right: 6px;
}

.cursor {
    display: inline-block;
    background-color: var(--accent-green);
    width: 8px;
    height: 14px;
    animation: blink 1.1s steps(1) infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Judul & tagline */
.hero-title {
    font-family: var(--font-mono);
    font-size: clamp(2.2rem, 8vw, 3.6rem);
    letter-spacing: 2px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

/* CTA Button */
.btn-cta {
    display: inline-block;
    background-color: var(--accent-green);
    color: #04120a;
    font-weight: 700;
    padding: 13px 34px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, transform 0.15s ease;
    margin-bottom: 36px;
}

.btn-cta:hover {
    background-color: #4dffa0;
    transform: translateY(-2px);
}

/* Brand statement */
.brand-statement {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.92rem;
    max-width: 520px;
    margin: 0 auto 40px;
    border-left: 2px solid var(--accent-green-dim);
    padding-left: 14px;
    text-align: left;
}

/* Social links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.social-item {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.social-item:hover {
    color: var(--accent-green);
    border-color: var(--accent-green-dim);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.site-footer p {
    margin-bottom: 4px;
}

.site-footer p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 480px) {
    .terminal-body {
        font-size: 0.75rem;
    }

    .brand-statement {
        text-align: left;
        font-size: 0.88rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-item {
        padding: 9px 16px;
        font-size: 0.8rem;
    }
}
