/* Base Variables & Theme */
:root {
    --primary-color: #1a1e24;
    /* Dark grey */
    --secondary-color: #2b323c;
    --accent-color: #a855f7;
    /* Violet / Purple touch */
    --text-light: #f7f9fc;
    --text-muted: #a0aabf;
    --bg-dark: #121418;
    --bg-card: rgba(26, 30, 36, 0.6);

    --font-heading: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease-in-out;
}

/* Typing Cursor */
.cursor {
    display: inline-block;
    width: 6px;
    height: 1.2em;
    background-color: var(--accent-color);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(18, 20, 24, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    z-index: 1001;
}

.brand-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    /* Inverts the black logo to white. If it had a white background, inversion makes the background black which is then dropped by mix-blend-mode lighten. */
    filter: invert(1);
    mix-blend-mode: lighten;
}

.brand-img-round {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1002;
    position: relative;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-download {
    color: var(--accent-color);
    font-weight: 600;
}

.btn-download::after {
    background-color: var(--text-light);
}

/* Auth Group */
.auth-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

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

.auth-btn {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    transition: var(--transition-smooth);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
    filter: brightness(1.1);
}

.auth-btn-outline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    transition: var(--transition-smooth);
    display: inline-block;
}

.auth-btn-outline:hover {
    background: rgba(77, 184, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Premium CTA Button --- */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--text-light);
    color: var(--bg-dark);
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.btn-premium:hover .btn-icon {
    transform: rotate(45deg);
}

/* --- Installation Row --- */
.install-row {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: monospace;
}

.install-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-svg {
    transition: var(--transition-fast);
    opacity: 0.7;
    cursor: pointer;
}

.icon-svg:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: scale(1.1);
}

.separator {
    opacity: 0.3;
    margin: 0 4px;
}

/* Hamburger Icon (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Hide overflow from the video */
    background-color: var(--bg-dark);
    /* Fallback */
}

/* Video Background Container */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    /* Make video unclickable so user interacts with the page */
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.15);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 20, 24, 0.5) 0%, rgba(18, 20, 24, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.2s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title .highlight {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.4s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.6s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Buttons */
.btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.play-icon {
    transition: var(--transition-fast);
}

.btn-secondary:hover .play-icon {
    transform: scale(1.1);
    stroke: var(--accent-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 4px;
    margin-top: 6px;
    animation: scrollWheel 2s infinite;
}

/* --- Layout Sections --- */
.section#features {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.section#features .container {
    position: relative;
    z-index: 1;
}

.section {
    padding: 120px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.link-arrow svg {
    transition: transform 0.3s ease;
}

/* --- Playground Section --- */
#playground {
    padding: 100px 0;
    background: transparent;
}

.playground-window {
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 100px rgba(168, 85, 247, 0.05);
    display: flex;
    flex-direction: column;
    height: 700px;
    max-width: 1100px;
    margin: 0 auto;
}

.playground-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.playground-tabs {
    display: flex;
    gap: 10px;
}

.play-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-tab.active {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-color);
    border-color: rgba(168, 85, 247, 0.3);
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 6px;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.playground-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    overflow: hidden;
}

.editor-pane,
.result-pane {
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    min-height: 0;
}

.editor-pane {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.1);
}

.pane-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#code-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #c9d1d9;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    line-height: 1.6;
    resize: none;
    outline: none;
    padding: 10px;
}

.example-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tag-label {
    font-size: 12px;
    color: var(--text-muted);
}

.ex-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ex-tag:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--accent-color);
}

.terminal-output {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
    overflow-y: auto;
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.mini {
    padding: 8px 8px 8px 20px !important;
    font-size: 14px !important;
    margin-top: 20px !important;
    width: fit-content !important;
    align-self: center;
}

.btn-playground {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(45, 212, 191, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    gap: 12px;
}

.btn-playground::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-playground:hover::before {
    left: 150%;
}

.btn-playground:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(45, 212, 191, 0.25));
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
    transform: translateY(-2px);
}

.btn-playground .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    color: #a855f7;
    transition: transform 0.3s ease;
}

.btn-playground:hover .btn-icon {
    transform: translateX(4px);
}

/* --- Video Showcase Section --- */
#showcase {
    background: transparent;
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-placeholder-container {
    width: 100%;
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(45, 212, 191, 0.3));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
    background: #0d1117;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: #11151c;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(168, 85, 247, 0.5);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
}

.video-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* --- Comparison Section --- */
#comparison {
    padding: 100px 0;
    position: relative;
    background: #0b0e14;
}

.comparison-container {
    background: rgba(13, 17, 23, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    background: #0d1117;
    border-radius: 18px;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: rgba(168, 85, 247, 0.05);
}

.comparison-header div {
    padding: 24px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-row div {
    padding: 24px;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.comp-col-nt {
    color: var(--accent-color) !important;
    font-weight: 600;
    background: rgba(168, 85, 247, 0.03);
    position: relative;
}

.comp-col-nt::before {
    content: '✓';
    margin-right: 12px;
    background: var(--accent-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.comp-col-standard::before {
    content: '✕';
    margin-right: 12px;
    color: #6e7681;
    font-size: 14px;
}

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

.link-arrow:hover svg {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .playground-window {
        height: auto;
        min-height: 800px;
    }

    .playground-body {
        grid-template-columns: 1fr;
    }

    .editor-pane {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: 400px;
    }

    #code-input {
        min-height: 200px;
    }
}

/* --- Contact Section --- */
#contact {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Image Placeholder (Bottle showcase) */
.image-placeholder {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1548685913-fe6678babe8d?auto=format&fit=crop&q=80&w=800') center/cover;
    opacity: 0.4;
    mix-blend-mode: overlay;
    transition: var(--transition-smooth);
}

.image-placeholder:hover::before {
    transform: scale(1.05);
    opacity: 0.8;
}

/* --- Feature Showcase (CodeRabbit style) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

/* --- Feature Mockup Headers --- */
.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.mockup-logo.mini {
    width: 20px;
    height: 20px;
}

.mockup-author {
    color: #c9d1d9;
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-tag {
    color: #8b949e;
    font-size: 11px;
    border: 1px solid #30363d;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.mockup-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
    background: #ff5f56;
}

.terminal-dots span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background: #27c93f;
}

/* --- Slick Card Enhancements --- */
.feature-card {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), transparent 40%, rgba(168, 85, 247, 0.1));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.feature-mockup {
    background: rgba(22, 27, 34, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: monospace;
    color: #c9d1d9;
    line-height: 1.8;
    position: relative;
    box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.05);
}

.feature-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
}

/* --- Animations --- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-placeholder {
        height: 500px;
        order: -1;
    }
}

@media (max-width: 900px) {

    /* Mobile Menu */
    .hamburger {
        display: block;
    }

    .nav-menu,
    .auth-group {
        position: fixed;
        left: -100%;
        flex-direction: column;
        background-color: #121418;
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    }

    .nav-menu {
        top: 70px;
        padding: 40px 0 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .auth-group {
        top: calc(70px + 240px);
        padding: 0 0 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        gap: 30px;
    }

    .nav-menu.active,
    .auth-group.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* --- Contact Page Styles --- */
.contact-hero {
    padding: 160px 0 80px;
    background: radial-gradient(circle at top center, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 120px;
    align-items: start;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--text-light);
    font-size: 15px;
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(168, 85, 247, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: center;
    transition: var(--transition-smooth);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.info-icon {
    width: 54px;
    height: 54px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(39, 201, 63, 0.1);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.2);
}

@media screen and (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .premium-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 30px;
    }
}

