@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --bg-dark: #000212;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #f7f8f8;
    --text-secondary: #b4bcd0;
    --text-dim: #8a8f98;
    --primary: #5e6ad2;
    --primary-hover: #6e7be2;
    --primary-glow: rgba(94, 106, 210, 0.3);
    --purple-glow: radial-gradient(circle, rgba(110, 86, 207, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Linear-like Subtle Background Grid */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1200px;
    background-image: 
        radial-gradient(ellipse at 50% -20%, rgba(120, 119, 198, 0.18) 0%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    background-position: center top, center center, center center;
    pointer-events: none;
    z-index: 1;
}

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(110, 86, 207, 0.12) 0%, rgba(110, 86, 207, 0.03) 45%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
    will-change: left, top;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 2, 18, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-normal);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.logo-img:hover {
    opacity: 0.95;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--primary-hover);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.nav-item a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.15;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(94, 106, 210, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(94, 106, 210, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
}

/* Linear-style Capsule Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.badge:hover {
    border-color: var(--border-hover);
    background-color: rgba(255, 255, 255, 0.05);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #7b2cbf;
    box-shadow: 0 0 8px #9d4edd;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(157, 78, 221, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(157, 78, 221, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 9rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-container {
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.05;
}

.hero-title span {
    background: linear-gradient(180deg, #ffffff 50%, rgba(255, 255, 255, 0.35) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 5rem;
}

/* Large Hero Visual (Product Mockup) */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin-top: 1rem;
}

.hero-visual-glow {
    position: absolute;
    top: 5%;
    left: 10%;
    right: 10%;
    bottom: 0;
    background: radial-gradient(circle, rgba(94, 106, 210, 0.28) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.ide-preview {
    width: 100%;
    background-color: rgba(8, 8, 12, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    height: 480px;
    backdrop-filter: blur(10px);
}

.ide-topbar {
    background-color: rgba(4, 4, 6, 0.9);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ide-window-controls {
    display: flex;
    gap: 0.45rem;
}

.ide-window-controls span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.ide-tab {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background-color: rgba(255,255,255,0.02);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
}

.ide-main {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    flex-grow: 1;
    height: calc(100% - 41px);
}

.ide-sidebar {
    border-right: 1px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.25);
    padding: 1.25rem;
    text-align: left;
}

.ide-sidebar-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.ide-sidebar-item {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ide-sidebar-item.active {
    color: var(--primary-hover);
}

.ide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.05);
    text-align: left;
}

.ide-code-block {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ide-code-block span.highlight {
    color: var(--primary-hover);
}

.ide-code-block span.success {
    color: var(--success);
}

.ide-app-mockup {
    border: 1px solid var(--border-color);
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 1rem;
    flex-grow: 1;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.ide-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-primary);
}

.ide-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ide-mockup-card {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.7rem;
}

.ide-mockup-bar {
    height: 4px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 2px;
    margin-top: 6px;
    width: 80%;
}

.ide-mockup-bar.fill {
    background-color: var(--primary);
}

/* Trusted Logos Row */
.trusted-logos-section {
    padding: 3rem 2rem 4rem;
    background-color: var(--bg-dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trusted-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee {
    display: flex;
    gap: 4rem;
    animation: scroll 80s linear infinite;
    width: max-content;
    align-items: center;
}

.logo-marquee span {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    opacity: 0.35;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity var(--transition-fast), color var(--transition-fast);
    cursor: default;
    white-space: nowrap;
}

.logo-marquee span:hover {
    opacity: 0.85;
    color: #fff;
}

.logo-marquee span i {
    font-size: 1.1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section Common Styles */
.section {
    padding: 7rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section-container {
    max-width: var(--max-width);
    width: 100%;
    z-index: 2;
}

/* Section Header Styles - Matching Linear layout */
.section-header-linear {
    text-align: left;
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-header-linear h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-linear p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Wireframe Grid - Three column features under Hero */
.wireframe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}

.wireframe-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
    transition: border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 440px;
}

.wireframe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: radial-gradient(300px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.06), transparent 80%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.wireframe-card:hover {
    border-color: var(--border-hover);
}

.wireframe-card:hover::before {
    opacity: 1;
}

.wireframe-illustration {
    height: 220px;
    background-color: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

.wireframe-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.wireframe-icon {
    font-size: 1.5rem;
    color: var(--primary-hover);
    margin-bottom: 0.25rem;
}

.wireframe-info h3 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.wireframe-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Minimalist Wireframe UI Common */
.mini-ui {
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-sans);
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0.8;
    transition: opacity 0.3s ease, border-color 0.3s ease;
    z-index: 2;
}

.wireframe-card:hover .mini-ui {
    opacity: 1;
    border-color: rgba(94, 106, 210, 0.25);
}

/* Mini Portal Dashboard */
.mini-ui-portal {
    flex-direction: row;
}

.mini-portal-sidebar {
    width: 45px;
    background-color: rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 0.75rem;
}

.mini-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-bottom: 0.25rem;
}

.mini-nav-item {
    width: 20px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.mini-nav-item.active {
    background-color: var(--primary-hover);
}

.mini-portal-content {
    flex-grow: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.mini-search {
    width: 60%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mini-badge-glow {
    width: 24px;
    height: 10px;
    background-color: rgba(94, 106, 210, 0.1);
    border: 1px solid rgba(94, 106, 210, 0.3);
    border-radius: 10px;
}

.mini-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-table-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.mini-checkbox {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.mini-line-long {
    width: 80px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.mini-line-medium {
    width: 55px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.mini-line-short {
    width: 35px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.mini-status-tag {
    margin-left: auto;
    width: 28px;
    height: 10px;
    border-radius: 10px;
    opacity: 0.6;
}

.status-done {
    background-color: #00ca9e;
}

.status-progress {
    background-color: #5e6ad2;
}

.status-backlog {
    background-color: #8a8f98;
}

/* Mini Automation Flow */
.mini-ui-automation {
    flex-direction: column;
    padding: 1.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.automation-node {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.node-icon {
    font-size: 0.75rem;
    color: var(--primary-hover);
}

.node-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.node-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-primary);
}

.node-subtitle {
    font-size: 0.5rem;
    color: var(--text-dim);
}

.automation-line {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
}

.automation-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--primary-hover);
    box-shadow: 0 0 8px var(--primary);
    animation: flow-dot 2.5s infinite linear;
}

@keyframes flow-dot {
    0% { top: 0%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Mini Analytics Charts */
.mini-ui-analytics {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
}

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

.analytics-stat {
    text-align: left;
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-trend {
    font-size: 0.6rem;
    color: #00ca9e;
    font-weight: 600;
}

.analytics-circle {
    width: 28px;
    height: 28px;
}

.circular-chart {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: var(--primary-hover);
    stroke-width: 3.8;
    stroke-linecap: round;
}

.analytics-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 90px;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 4px;
}

.chart-bar {
    flex-grow: 1;
    height: var(--height);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px 2px 0 0;
    transition: background-color 0.3s ease, height 0.3s ease;
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--primary-hover), var(--primary));
    box-shadow: 0 0 10px rgba(94, 106, 210, 0.3);
}

.wireframe-card:hover .chart-bar:not(.active) {
    background-color: rgba(255, 255, 255, 0.12);
}

/* Showcase Sections (Side-by-side header + full-width visual below) */
.showcase-section {
    border-top: 1px solid var(--border-color);
}

.showcase-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    width: 100%;
    margin-bottom: 3.5rem;
    align-items: start;
    text-align: left;
}

.showcase-header-left h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}

.showcase-header-right p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.showcase-link {
    color: var(--primary-hover);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--transition-fast);
}

.showcase-link:hover {
    gap: 0.5rem;
}

.showcase-body {
    position: relative;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: rgba(8, 8, 12, 0.5);
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}

.showcase-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(110, 86, 207, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Interactive Dashboard (Linear-like Agents Workspace) */
.interactive-dashboard {
    width: 100%;
    height: 100%;
    background-color: #07080e;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.dashboard-header {
    height: 45px;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(4, 4, 6, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    flex-shrink: 0;
}

.window-buttons {
    display: flex;
    gap: 0.45rem;
}

.btn-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-dot.close { background-color: rgba(255, 95, 87, 0.4); }
.btn-dot.minimize { background-color: rgba(255, 189, 46, 0.4); }
.btn-dot.expand { background-color: rgba(39, 201, 63, 0.4); }

.dashboard-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-status-indicator {
    font-size: 0.7rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00ca9e;
    box-shadow: 0 0 6px #00ca9e;
    animation: status-pulse-anim 2s infinite;
}

@keyframes status-pulse-anim {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.dashboard-body-content {
    display: flex;
    flex-grow: 1;
    height: calc(100% - 45px);
    overflow: hidden;
}

/* Console logs style */
.agent-console {
    width: 60%;
    border-right: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    overflow-y: auto;
}

.agent-console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.75rem;
    flex-shrink: 0;
}

.agent-profile {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.agent-avatar-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(94, 106, 210, 0.1);
    color: var(--primary-hover);
    font-size: 0.85rem;
    border: 1px solid rgba(94, 106, 210, 0.2);
}

.agent-avatar-initials {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-orange { background-color: rgba(247, 127, 0, 0.15); color: #f77f00; border-color: rgba(247, 127, 0, 0.3); }
.text-purple { background-color: rgba(114, 9, 183, 0.15); color: #b5179e; border-color: rgba(114, 9, 183, 0.3); }
.text-green { background-color: rgba(56, 176, 0, 0.15); color: #38b000; border-color: rgba(56, 176, 0, 0.3); }

.agent-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.agent-badge {
    font-size: 0.65rem;
    background-color: rgba(94, 106, 210, 0.12);
    color: var(--primary-hover);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid rgba(94, 106, 210, 0.2);
}

.console-actions {
    display: flex;
}

.console-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.console-log-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.log-line {
    word-break: break-word;
    animation: fade-in-log 0.4s ease forwards;
}

@keyframes fade-in-log {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.log-line.text-highlight {
    color: #fff;
    font-weight: 600;
}

.log-line.text-dim {
    color: var(--text-dim);
}

.loading-dots {
    display: flex;
    gap: 2px;
    align-items: center;
}

.loading-dots span {
    animation: blink-dots 1.4s infinite both;
    font-weight: 700;
}

.loading-dots span:nth-child(2) { animation-delay: .2s; }
.loading-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes blink-dots {
    0% { opacity: .2; }
    20% { opacity: 1; }
    100% { opacity: .2; }
}

.console-code-block {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #a5b4fc;
    overflow-x: auto;
    margin-top: 0.5rem;
    white-space: pre;
    text-align: left;
}

.console-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-item i {
    font-size: 0.75rem;
}

.checklist-item i.fa-check-circle {
    color: #00ca9e;
}

.checklist-item i.fa-circle {
    color: rgba(255, 255, 255, 0.15);
}

/* Assignee Selector Popover Wrapper */
.assignee-menu-wrapper {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.15);
}

.assignee-popover {
    width: 100%;
    max-width: 230px;
    background-color: #0c0d16;
    border: 1px solid rgba(94, 106, 210, 0.25);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-icon {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.search-input {
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #fff;
    width: 100%;
}

.menu-list {
    display: flex;
    flex-direction: column;
    padding: 0.35rem;
    gap: 2px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.65rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.menu-item.active {
    background-color: rgba(255, 255, 255, 0.06);
}

.menu-item .item-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item .item-avatar-initials {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}

.menu-item.active .item-avatar {
    background-color: rgba(94, 106, 210, 0.1);
    color: var(--primary-hover);
    border-color: rgba(94, 106, 210, 0.2);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-grow: 1;
}

.item-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.menu-item:hover .item-name,
.menu-item.active .item-name {
    color: #fff;
}

.item-type-badge {
    font-size: 0.55rem;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 500;
}

.item-check {
    display: none;
    font-size: 0.7rem;
    color: var(--primary-hover);
}

.menu-item.active .item-check {
    display: block;
}

/* Mobile Device Showcase styling */
.mobile-showcase-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.mobile-features-pane {
    width: 45%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    text-align: left;
}

.mobile-features-pane .pane-header {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.mobile-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    background-color: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-feature-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.mobile-feature-item.active {
    background-color: rgba(94, 106, 210, 0.06);
    border-color: rgba(94, 106, 210, 0.2);
}

.feature-bullet {
    width: 24px;
    height: 24px;
    background-color: rgba(94, 106, 210, 0.1);
    color: var(--primary-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    border: 1px solid rgba(94, 106, 210, 0.2);
}

.mobile-feature-item.active .feature-bullet {
    background-color: var(--primary);
    color: #fff;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.feature-desc {
    font-size: 0.65rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.phone-mockup-wrapper {
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.phone-device {
    width: 240px;
    height: 430px;
    border-radius: 36px;
    border: 8px solid #1f2029;
    background-color: #000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.phone-notch {
    width: 100px;
    height: 16px;
    background-color: #1f2029;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #07080e;
    position: relative;
}

.phone-status-bar {
    height: 24px;
    padding: 4px 1.25rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    flex-shrink: 0;
}

.phone-icons {
    display: flex;
    gap: 3px;
}

.phone-app-header {
    height: 40px;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.phone-app-header .app-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-mono);
}

.phone-app-header .app-avatar-initials {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.phone-app-content {
    flex-grow: 1;
    padding: 0.85rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.phone-tasks-list, .phone-notifications-list, .phone-offline-pane {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    animation: fade-in-log 0.3s ease forwards;
}

.phone-task-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.phone-task-card input[type="checkbox"] {
    accent-color: var(--primary-hover);
    cursor: pointer;
    width: 12px;
    height: 12px;
}

.phone-task-card label {
    display: flex;
    flex-direction: column;
    gap: 1px;
    cursor: pointer;
    width: 100%;
}

.phone-task-card .task-code {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    color: var(--primary-hover);
    font-weight: 600;
}

.phone-task-card .task-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    word-break: break-word;
    line-height: 1.3;
}

.phone-task-card input:checked + label .task-label {
    text-decoration: line-through;
    color: var(--text-dim);
}

.phone-nav-bar {
    height: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-shrink: 0;
}

.phone-nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-dim);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.phone-nav-tab i {
    font-size: 0.75rem;
}

.phone-nav-tab span {
    font-size: 0.5rem;
    font-weight: 500;
}

.phone-nav-tab.active {
    color: var(--primary-hover);
}

@media (max-width: 768px) {
    .mobile-showcase-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .mobile-features-pane {
        width: 100%;
        padding: 1rem;
    }
    .phone-mockup-wrapper {
        width: 100%;
    }
}



/* Why Choose Section */
.why-choose {
    border-top: 1px solid var(--border-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: border-color var(--transition-fast);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: radial-gradient(250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 255, 255, 0.05), transparent 80%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.why-card:hover {
    border-color: var(--border-hover);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card-icon {
    font-size: 1.5rem;
    color: var(--primary-hover);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.why-card h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Promotional Twin Case Banners (OpenAI and Stripe styled cards) */
.case-banners-section {
    border-top: 1px solid var(--border-color);
}

.case-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.banner-card {
    border-radius: 16px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform var(--transition-normal);
}

.banner-card:hover {
    transform: translateY(-2px);
}

.banner-badge {
    display: inline-flex;
    padding: 0.25rem 0.65rem;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.banner-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.banner-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Left Card: Startups (Deep Indigo / OpenAI style) */
.banner-card-left {
    background: linear-gradient(135deg, #050510 0%, #0c0822 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.banner-card-left h2 {
    color: #fff;
}

.banner-card-left p {
    color: var(--text-secondary);
}

/* Right Card: Dedicated Developers (Stripe Yellow/Lime style) */
.banner-card-right {
    background: linear-gradient(135deg, #e6ff33 0%, #bfff00 100%);
    color: #000;
    border-color: rgba(0, 0, 0, 0.1);
}

.banner-card-right h2 {
    color: #000 !important;
}

.banner-card-right p {
    color: rgba(0, 0, 0, 0.7) !important;
}

.banner-card-right .banner-badge {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Start Today Section */
.start-today {
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.start-today-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 106, 210, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.start-today-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.start-today-card h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.start-today-card p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.start-today-prompt {
    display: flex;
    background-color: rgba(5, 5, 8, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    align-items: center;
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: left;
    backdrop-filter: blur(8px);
}

.start-today-prompt:focus-within {
    border-color: var(--primary);
}

.start-today-prompt span.prefix {
    color: var(--primary-hover);
    font-family: var(--font-mono);
    font-weight: 700;
    margin-right: 0.75rem;
}

.start-today-prompt .fake-input {
    flex-grow: 1;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-primary);
    min-height: 1.25rem;
    display: flex;
    align-items: center;
}

/* Footer Section */
footer {
    background-color: #000000;
    border-top: 1px solid var(--border-color);
    padding: 6rem 2rem 3rem;
    color: var(--text-dim);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 0.8fr);
    gap: 4rem;
}

.footer-about h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.footer-about p {
    font-size: 0.8rem;
    max-width: 250px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-dim);
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--text-primary);
}

.footer-col h5 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* Mobile & Responsive Layouts */
@media (max-width: 992px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-title {
        max-width: 100%;
    }

    .ide-preview {
        height: 380px;
    }

    .ide-main {
        grid-template-columns: 1fr;
    }

    .ide-sidebar {
        display: none;
    }

    .wireframe-grid {
        grid-template-columns: 1fr;
    }

    .showcase-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-body {
        height: 320px;
    }

    .case-banners {
        grid-template-columns: 1fr;
    }

    .banner-card {
        height: 320px;
        padding: 2.5rem 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: left;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .start-today-card h2 {
        font-size: 2.25rem;
    }
}
