/* ==========================================================================
   Websolutions Design System & Stylesheet
   ========================================================================== */

/* Color Variables & Config */
:root {
    --bg-color: #030712;
    --card-bg: rgba(10, 20, 42, 0.45);
    --border-glow: rgba(0, 198, 255, 0.18);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --primary-blue: #0066ff;
    --primary-blue-hover: #1e75ff;
    --accent-cyan: #00c6ff;
    --highlight-text: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

/* Background Glow Effects */
.bg-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.glow-1 {
    top: -10%;
    right: 5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.6) 0%, rgba(0, 82, 212, 0) 70%);
    animation: floatGlow1 20s infinite alternate ease-in-out;
}

.glow-2 {
    bottom: 20%;
    left: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.5) 0%, rgba(0, 198, 255, 0) 70%);
    animation: floatGlow2 25s infinite alternate ease-in-out;
}

@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 8%) scale(1.1); }
}

@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, -5%) scale(1.05); }
}

/* Page Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Logo */
.header {
    padding: 40px 0 20px 0;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.logo-svg {
    width: 55px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.3));
    transition: var(--transition-smooth);
}

.logo-container:hover .logo-svg {
    transform: rotate(-3deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Main Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding: 40px 0;
    flex-grow: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 680px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--highlight-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-description p {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

/* Interactive Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-primary);
    padding: 15px 32px;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-link {
    color: var(--text-primary);
    background: none;
    border: none;
    padding: 10px 0;
    position: relative;
}

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

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.btn-link:hover .arrow-icon {
    transform: translateX(6px);
}

/* Hero Visual Graphic */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.25) 0%, rgba(0, 102, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(40px);
}

.laptop-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px rgba(0, 114, 255, 0.15));
    animation: floatLaptop 6s infinite ease-in-out;
}

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

/* Development Info Card */
.dev-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 35px 40px;
    margin: 20px 0 40px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.dev-card-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.card-col {
    display: flex;
    flex-direction: column;
}

.card-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 40px;
}

/* Card Col 1: Status Title */
.card-status {
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.status-icon-wrapper {
    background: rgba(0, 102, 255, 0.1);
    border: 1.5px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 12px rgba(0, 198, 255, 0.25));
}

.status-icon {
    width: 32px;
    height: 32px;
}

.status-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Card Col 2: Explanation Text */
.card-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 12px;
}

.card-info p:last-child {
    margin-bottom: 0;
}

.card-info .highlight-info {
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Card Col 3: Checklist */
.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

/* Footer Section */
.footer {
    padding: 24px 0 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-left span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

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

.social-link {
    color: #64748b;
    transition: var(--transition-smooth);
    display: inline-flex;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 20px 0;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .dev-card-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 25px;
    }

    .card-status {
        justify-content: center;
    }

    .card-info {
        text-align: center;
    }

    .checklist {
        align-items: center;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 25px 0 15px 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
    }

    .dev-card {
        padding: 25px 20px;
    }

    .footer {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
        padding-bottom: 30px;
    }
}
