/* ==========================================================================
   Cold Works - Premium Cyber-Sweet UI Engine
   ========================================================================== */

:root {
    --bg: #06070a;
    --card-bg: rgba(13, 16, 23, 0.7);
    --card-hover: rgba(20, 26, 38, 0.85);
    --item-bg: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(56, 189, 248, 0.3);
    
    --text-main: #f8fafc;
    --text-muted: #8a99ad;
    
    --cyan: #38bdf8;
    --pink: #ec4899;
    --gradient: linear-gradient(135deg, #38bdf8 0%, #a855f7 50%, #ec4899 100%);
    --btn-gradient: linear-gradient(135deg, #0284c7 0%, #db2777 100%);
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.container {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
}

/* Tatlı Arka Plan Işıkları (Glow Orbs) */
.glow-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
}
.orb-1 { top: -10%; right: -5%; background: var(--pink); }
.orb-2 { bottom: 10%; left: -5%; background: var(--cyan); }

/* Header - Modern Minimal & Sticky */
header {
    background: rgba(6, 7, 10, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Main Layout */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

/* Jilet Gibi Premium Kart */
.hero-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
    width: 100%;
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.8);
}

.tagline {
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: 8px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.lead-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 720px;
    margin-bottom: 40px;
}

/* Grid Kart Arayüzü (Güle Güle Wikipedia Tabloları!) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.grid-item {
    background: var(--item-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s var(--ease);
}

.grid-item:hover {
    background: var(--card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.icon-wrap {
    font-size: 1.5rem;
    margin-bottom: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.grid-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.grid-item p span, .grid-item p em {
    color: var(--pink);
    font-style: normal;
    font-weight: 600;
}

/* Action Zone */
.action-footer {
    border-top: 1px solid var(--border);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.pipeline-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 480px;
}

.info-icon {
    background: rgba(56, 189, 248, 0.1);
    color: var(--cyan);
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pipeline-notice p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pipeline-notice strong {
    color: var(--text-main);
}

/* Premium Mikro-Etkileşimli CTA Butonu */
.cta-btn {
    background: var(--btn-gradient);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.3);
    white-space: nowrap;
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(56, 189, 248, 0.4);
    background: var(--gradient);
}

.cta-btn:hover svg {
    transform: translateX(4px);
}

/* Footer */
footer {
    padding: 25px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
    border-top: 1px solid var(--border);
}

/* Responsive Grid Engine */
@media (max-width: 850px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .action-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
    .cta-btn {
        justify-content: center;
    }
    .hero-card {
        padding: 35px 24px;
    }
}