/* ===================================
   CSS Variables - Easy to customize
   =================================== */
:root {
    /* Main accent color - change this later */
    --accent: #666;
    --accent-hover: #555;

    /* Monochrome palette */
    --black: #000;
    --gray-900: #111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #444;
    --gray-500: #666;
    --gray-400: #888;
    --gray-300: #aaa;
    --gray-200: #ddd;
    --gray-100: #f5f5f5;
    --white: #fff;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===================================
   Reset & Base
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    border-right: 3px solid var(--white);
    animation: blink-cursor 0.75s step-end infinite;
}

.typing-text.typing-done {
    border-right: none;
    animation: none;
}

@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--white); }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-200);
    border-color: var(--gray-200);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-600);
}

.btn-outline:hover {
    background: var(--gray-800);
    border-color: var(--gray-500);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
}

.btn-ghost:hover {
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-800);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-top: -18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mobile-only {
    display: none;
}

.nav-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-video-wrapper {
    display: block;
    text-align: left;
    margin-left: calc(-50vw + 50% + 16px);
    margin-top: -100px;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 769px) {
    .hero-video-wrapper {
        margin-left: calc(-50vw + 50%);
        margin-bottom: -200px;
        margin-top: -200px;
    }
}

@media (min-width: 1200px) {
    .hero-video-wrapper {
        margin-bottom: -476px;
        margin-top: -650px;
    }
}

@media (min-width: 1600px) {
    .hero-video-wrapper {
        margin-bottom: -612px;
        margin-top: -830px;
    }
}

@media (min-width: 2000px) {
    .hero-video-wrapper {
        margin-bottom: -748px;
        margin-top: -1010px;
    }
}

.hero-video {
    width: 500px;
    height: auto;
    aspect-ratio: 9 / 16;
    display: block;
    border-radius: var(--radius-lg);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .hero-video-wrapper {
        display: block;
        text-align: center;
        margin-left: 0;
        margin-top: -80px;
        margin-bottom: -80px;
    }

    .hero-video {
        width: 100%;
        max-width: 400px;
        transform: rotate(90deg);
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .hero-video {
        width: 1190px;
    }
}

@media (min-width: 1600px) {
    .hero-video {
        width: 1530px;
    }
}

@media (min-width: 2000px) {
    .hero-video {
        width: 1870px;
    }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 100px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family);
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    line-height: 1;
}

.hero-btn-primary {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.hero-btn-primary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

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

.hero-btn-primary svg {
    transition: transform var(--transition-base);
}

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

.hero-btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-600);
}

.hero-btn-outline:hover {
    border-color: var(--gray-400);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: inline;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: var(--gray-500);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-700);
}

.hero-logos {
    margin-top: 64px;
    text-align: center;
}

.hero-logos-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.hero-logo-item:hover {
    color: var(--white);
}

.hero-logo-item svg {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.hero-logo-item:hover svg {
    opacity: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, var(--gray-800) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

/* ===================================
   Dashboard Preview
   =================================== */
.dashboard-preview {
    padding: 0 0 80px;
    margin-top: -40px;
}

.dashboard-frame {
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--gray-800),
        0 20px 50px -20px rgba(0, 0, 0, 0.5),
        0 0 100px -50px rgba(255, 255, 255, 0.05);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
}

.dashboard-dots span:first-child {
    background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #febc2e;
}

.dashboard-dots span:last-child {
    background: #28c840;
}

.dashboard-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #28c840;
    background: rgba(40, 200, 64, 0.1);
    border-radius: 100px;
}

.dashboard-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #28c840;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 400px;
}

.dashboard-sidebar {
    padding: 24px;
    background: var(--gray-800);
    border-right: 1px solid var(--gray-700);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.metric-card {
    padding: 20px;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.metric-change {
    font-size: 12px;
    color: var(--gray-500);
}

.metric-change.positive {
    color: #28c840;
}

.dashboard-main {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.chart-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400);
}

.legend-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.legend-dot.secondary {
    background: var(--gray-600);
}

.chart-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart {
    flex: 1;
    width: 100%;
    min-height: 200px;
}

.grid-line {
    stroke: var(--gray-800);
    stroke-width: 1;
}

.chart-line {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-line.primary {
    stroke: var(--white);
    stroke-width: 3;
}

.chart-line.secondary {
    stroke: var(--gray-600);
    stroke-dasharray: 5, 5;
}

.chart-area {
    opacity: 0.5;
}

.data-point {
    fill: var(--gray-900);
    stroke: var(--white);
    stroke-width: 2;
}

.data-point.active {
    fill: var(--white);
    stroke: var(--white);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    font-size: 12px;
    color: var(--gray-500);
}

.chart-insight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-top: 24px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-400);
}

.chart-insight svg {
    color: #28c840;
    flex-shrink: 0;
}

.chart-insight strong {
    color: var(--white);
}

/* Platform-specific colors */
.chart-line.openai {
    stroke: #10a37f;
    stroke-width: 3;
}

.chart-line.anthropic {
    stroke: #d97706;
    stroke-width: 2.5;
}

.chart-line.perplexity {
    stroke: #3b82f6;
    stroke-width: 2.5;
}

.chart-line.gemini {
    stroke: #8b5cf6;
    stroke-width: 2.5;
}

.data-point-openai {
    fill: #10a37f;
    stroke: #10a37f;
    filter: drop-shadow(0 0 8px rgba(16, 163, 127, 0.5));
}

.legend-dot.openai {
    background: #10a37f;
}

.legend-dot.anthropic {
    background: #d97706;
}

.legend-dot.perplexity {
    background: #3b82f6;
}

.legend-dot.gemini {
    background: #8b5cf6;
}

/* Platform breakdown */
.platform-breakdown {
    padding: 16px;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
}

.breakdown-title {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-800);
}

.breakdown-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breakdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-300);
}

.breakdown-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.breakdown-dot.openai {
    background: #10a37f;
}

.breakdown-dot.anthropic {
    background: #d97706;
}

.breakdown-dot.perplexity {
    background: #3b82f6;
}

.breakdown-dot.gemini {
    background: #8b5cf6;
}

.breakdown-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

/* Competitor Analysis */
.competitor-section {
    padding: 24px;
    border-top: 1px solid var(--gray-700);
    background: var(--gray-800);
}

.competitor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.competitor-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.competitor-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    padding: 4px 10px;
    background: var(--gray-700);
    border-radius: 100px;
}

.competitor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.competitor-card {
    padding: 16px;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
}

.competitor-card.you {
    border-color: #28c840;
    background: rgba(40, 200, 64, 0.05);
}

.competitor-rank {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.competitor-card.you .competitor-rank {
    color: #28c840;
}

.competitor-info {
    margin-bottom: 12px;
}

.competitor-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.competitor-score {
    font-size: 12px;
    color: var(--gray-500);
}

.competitor-bar {
    height: 4px;
    background: var(--gray-700);
    border-radius: 2px;
    overflow: hidden;
}

.competitor-fill {
    height: 100%;
    background: var(--gray-500);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.competitor-card.you .competitor-fill {
    background: #28c840;
}

/* Dashboard responsive */
@media (max-width: 900px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--gray-700);
        overflow-x: auto;
        padding: 16px;
        gap: 12px;
    }

    .metric-card {
        min-width: 160px;
        padding: 16px;
        flex-shrink: 0;
    }

    .metric-value {
        font-size: 24px;
    }

    .platform-breakdown {
        min-width: 200px;
        flex-shrink: 0;
    }

    .breakdown-value {
        min-width: 50px;
        text-align: right;
    }

    .competitor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .dashboard-preview {
        padding: 0 0 40px;
    }

    .dashboard-frame {
        margin: 0 -16px;
        border-radius: var(--radius-lg);
    }

    .dashboard-content {
        min-height: auto;
    }

    .chart {
        min-height: 150px;
    }
}

@media (max-width: 600px) {
    .dashboard-header {
        padding: 12px 16px;
    }

    .dashboard-title {
        display: none;
    }

    .dashboard-sidebar {
        flex-direction: column;
        overflow-x: visible;
        padding: 12px;
        gap: 12px;
    }

    .metric-card {
        min-width: auto;
        width: 100%;
        padding: 16px;
    }

    .metric-label {
        font-size: 11px;
    }

    .metric-value {
        font-size: 32px;
    }

    .metric-change {
        font-size: 11px;
    }

    .platform-breakdown {
        min-width: auto;
        width: 100%;
        padding: 12px;
    }

    .breakdown-title {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .breakdown-item {
        padding: 8px 0;
    }

    .breakdown-label {
        font-size: 13px;
    }

    .breakdown-value {
        font-size: 13px;
    }

    .dashboard-main {
        padding: 16px;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .chart-header h3 {
        font-size: 14px;
    }

    .chart-legend {
        flex-wrap: wrap;
        gap: 8px;
    }

    .legend-item {
        font-size: 11px;
    }

    .competitor-section {
        padding: 16px;
    }

    .competitor-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .competitor-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
    }

    .competitor-rank {
        margin-bottom: 0;
        min-width: 24px;
    }

    .competitor-info {
        flex: 1;
        margin-bottom: 0;
    }

    .competitor-bar {
        width: 80px;
        flex-shrink: 0;
    }
}

/* ===================================
   Logos Section
   =================================== */
.logos {
    padding: 60px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.logos-label {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    row-gap: 32px;
}

.logo-item {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-600);
    transition: color var(--transition-base);
}

.logo-item:hover {
    color: var(--gray-400);
}

.logo-item.ai-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-item.ai-logo svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.logo-item.ai-logo span {
    font-size: 16px;
    font-weight: 600;
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gray-800);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
}

.section-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.section-cta-note {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 12px;
    text-align: center;
}

.section-cta:has(.section-cta-note) {
    flex-direction: column;
    gap: 0;
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.feature-card-video {
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.feature-card {
    padding: 32px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--gray-800);
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--white);
}

.feature-card:hover .feature-icon {
    background: var(--gray-700);
}

.feature-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===================================
   How It Works
   =================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 50%;
}

.step-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--gray-400);
}

.step-connector {
    width: 80px;
    height: 1px;
    margin-top: 24px;
    background: linear-gradient(to right, var(--gray-700), var(--gray-800));
}

/* ===================================
   Testimonial Section
   =================================== */
.testimonial {
    padding: var(--section-padding) 0;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-video-col {
    flex-shrink: 0;
    width: 300px;
}

.testimonial-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-700);
    filter: grayscale(100%);
}

.testimonial-text-col {
    flex: 1;
    min-width: 0;
}

.testimonial-quote-icon {
    color: var(--gray-700);
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-author-role {
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .testimonial-video-col {
        width: 240px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .testimonial-author {
        justify-content: center;
    }
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--section-padding) 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 14px;
    color: var(--gray-500);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--white);
}

.save-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--gray-700);
    border-radius: 100px;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
    background: var(--gray-700);
    border: none;
    border-radius: 100px;
    cursor: pointer;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--gray-700);
}

.pricing-card.featured {
    background: var(--gray-800);
    border-color: var(--gray-600);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
    border-radius: 100px;
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-400);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.period {
    font-size: 14px;
    color: var(--gray-500);
    margin-left: 4px;
}

.plan-features {
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-300);
}

.plan-features li::before {
    content: '✓';
    color: var(--gray-500);
}

/* ===================================
   Scarcity Section
   =================================== */
.scarcity {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.scarcity-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .scarcity-video-bg {
        min-width: auto;
        min-height: auto;
        width: 200%;
        height: auto;
        object-fit: contain;
    }
}

.scarcity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.scarcity .container {
    position: relative;
    z-index: 2;
}

.scarcity-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 100px;
}

.scarcity-pulse {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: scarcityPulse 1.5s ease-in-out infinite;
}

@keyframes scarcityPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.scarcity-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.scarcity-highlight {
    color: #ef4444;
}

.scarcity-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.scarcity-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.scarcity-stat {
    text-align: center;
}

.scarcity-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.scarcity-stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.scarcity-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-700);
}

.scarcity-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.scarcity-note {
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .scarcity-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .scarcity-divider {
        width: 48px;
        height: 1px;
    }
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-video-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.cta-video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--black);
}

.cta-video {
    width: 280px;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

/* Light CTA variant */
.cta.cta-light {
    background: var(--white);
}

.cta.cta-light .cta-title {
    color: var(--black);
}

.cta.cta-light .cta-subtitle {
    color: var(--gray-600);
}

.cta.cta-light .btn-primary {
    background: var(--black);
    color: var(--white);
}

.cta.cta-light .btn-primary:hover {
    background: var(--gray-800);
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--gray-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--gray-400);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-video {
        grid-row: span 1;
        grid-column: span 2;
        max-height: 300px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

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

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 24px;
        gap: 16px;
        border-top: 1px solid var(--gray-800);
    }

    .nav-links.mobile-open a {
        font-size: 16px;
        padding: 8px 0;
    }

    .mobile-only {
        display: block !important;
    }

    .mobile-only .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .section-cta {
        flex-direction: column;
    }

    .section-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

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

    .feature-card-video {
        grid-column: span 1;
        max-height: 250px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 1px;
        height: 40px;
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===================================
   Subpage Styles
   =================================== */
.subpage-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
}

.subpage-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
}

.subpage-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.subpage-content {
    padding: 80px 0 120px;
}

/* Integrations Page */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.integration-card {
    padding: 32px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.integration-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.integration-icon {
    margin-bottom: 20px;
    color: var(--gray-400);
}

.integration-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.integration-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.integration-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

.integration-status.available {
    color: #28c840;
    background: rgba(40, 200, 64, 0.1);
}

.integration-status.coming-soon {
    color: var(--gray-400);
    background: var(--gray-800);
}

/* Changelog Page */
.changelog-list {
    max-width: 700px;
    margin: 0 auto;
}

.changelog-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-800);
}

.changelog-item:last-child {
    border-bottom: none;
}

.changelog-date {
    flex-shrink: 0;
    width: 120px;
    font-size: 14px;
    color: var(--gray-500);
}

.changelog-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.changelog-details p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

.changelog-tag {
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.changelog-tag.new {
    color: #28c840;
    background: rgba(40, 200, 64, 0.1);
}

.changelog-tag.improvement {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.changelog-tag.fix {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* About Page */
.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-section p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
}

.about-section a {
    color: var(--white);
    text-decoration: underline;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 48px 0;
    margin: 48px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.about-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    font-size: 13px;
    color: var(--gray-500);
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

/* Careers Page */
.careers-intro {
    max-width: 600px;
    margin: 0 auto 64px;
    text-align: center;
}

.careers-intro h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.careers-intro p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
}

.careers-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.benefit-card {
    padding: 24px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-500);
}

.careers-openings h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
}

.job-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

.careers-cta {
    margin-top: 64px;
    padding: 32px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    text-align: center;
}

.careers-cta p {
    font-size: 16px;
    color: var(--gray-400);
}

.careers-cta a {
    color: var(--white);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-method svg {
    color: var(--gray-500);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-method h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method a {
    font-size: 14px;
    color: var(--gray-400);
}

.contact-method a:hover {
    color: var(--white);
}

.contact-form-wrapper {
    padding: 32px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--white);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gray-500);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

/* Legal Pages */
.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: disc;
    margin-left: 24px;
    color: var(--gray-400);
}

.legal-section li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--white);
}

/* Security Page */
.security-content {
    max-width: 900px;
    margin: 0 auto;
}

.security-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.security-intro p {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.security-card {
    padding: 32px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
}

.security-icon {
    margin-bottom: 20px;
    color: var(--gray-400);
}

.security-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.security-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.security-report {
    padding: 48px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    text-align: center;
}

.security-report h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.security-report p {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.security-report a {
    color: var(--white);
    font-weight: 500;
}

/* ===================================
   Screens Section
   =================================== */
.screens {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.screens-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.screens-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    background: transparent;
    border: 1px solid var(--gray-700);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.screens-tab:hover {
    color: var(--white);
    border-color: var(--gray-500);
}

.screens-tab.active {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.screens-tab svg {
    flex-shrink: 0;
}

.screens-window {
    background: var(--black);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--gray-800),
        0 25px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 120px -60px rgba(255, 255, 255, 0.04);
}

.screens-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

.screens-dots {
    display: flex;
    gap: 8px;
}

.screens-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screens-dots span:first-child { background: #ff5f57; }
.screens-dots span:nth-child(2) { background: #febc2e; }
.screens-dots span:last-child { background: #28c840; }

.screens-url {
    font-size: 12px;
    color: var(--gray-500);
    padding: 4px 16px;
    background: var(--gray-700);
    border-radius: 6px;
}

.screens-body {
    display: flex;
    min-height: 580px;
    background: #000000;
}

/* Screens Sidebar */
.screens-sidebar {
    width: 200px;
    background: #111111;
    border-right: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.screens-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid #2a2a2a;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.screens-sidebar-icon {
    width: 28px;
    height: 28px;
    background: #0ea5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.screens-sidebar-nav {
    flex: 1;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.screens-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    border-radius: 8px;
    transition: all 0.15s ease;
    cursor: default;
}

.screens-nav-item.active {
    background: rgba(16, 163, 127, 0.1);
    color: #10a37f;
}

.screens-nav-item svg {
    flex-shrink: 0;
}

.screens-sidebar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid #2a2a2a;
}

.screens-user-avatar {
    width: 28px;
    height: 28px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    flex-shrink: 0;
}

.screens-user-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.screens-user-name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.screens-user-email {
    font-size: 10px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Screen Main Area */
.screens-main {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.screen-panel {
    display: none;
    height: 100%;
    flex-direction: column;
}

.screen-panel.active {
    display: flex;
}

.screen-header {
    padding: 16px 24px;
    border-bottom: 1px solid #2a2a2a;
    background: #111111;
}

.screen-page-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.screen-page-subtitle {
    font-size: 12px;
    color: #666;
}

.screen-content {
    padding: 16px 20px;
    overflow-y: auto;
    flex: 1;
}

/* Screen Stat Cards */
.screen-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.screen-stat-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 14px 16px;
}

.screen-stat-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.screen-stat-label {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.screen-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.screen-stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #666;
    margin-top: 4px;
}

.screen-stat-change.positive {
    color: #28c840;
}

.screen-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.screen-stat-icon.blue { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.screen-stat-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.screen-stat-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.screen-stat-icon.orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

/* Screen Cards */
.screen-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
}

.screen-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #2a2a2a;
}

/* Screen Map */
.screen-map-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.screen-map-card .screen-card-header {
    border-bottom: 1px solid #2a2a2a;
}

.screen-map-placeholder {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    height: 220px;
}

.screen-world-map {
    width: 100%;
    height: 100%;
}

/* Screen Lists */
.screen-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.screen-list {
    padding: 0;
}

.screen-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #2a2a2a;
}

.screen-list-item:last-child {
    border-bottom: none;
}

.screen-list-primary {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.screen-list-secondary {
    display: block;
    font-size: 10px;
    color: #666;
}

.screen-list-right {
    text-align: right;
}

.screen-list-value {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.screen-list-label {
    font-size: 10px;
    color: #666;
}

/* Screen Countries */
.screen-countries {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.screen-country-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 4px;
}

.screen-country-info span:first-child {
    font-weight: 500;
    color: #fff;
}

.screen-country-count {
    color: #666;
}

.screen-bar {
    height: 6px;
    background: #2a2a2a;
    border-radius: 3px;
    overflow: hidden;
}

.screen-bar-fill {
    height: 100%;
    background: #10a37f;
    border-radius: 3px;
}

/* Citations Screen */
.screen-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}

.screen-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
}

.screen-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    cursor: default;
}

.screen-filters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 16px 12px;
    border-top: 1px solid #2a2a2a;
    padding-top: 12px;
}

.screen-filter-chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.screen-filter-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
}

.screen-filter-value {
    font-size: 11px;
    color: #666;
    padding: 6px 10px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

/* Citation Cards */
.screen-citations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.screen-citation-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 14px 16px;
}

.screen-citation-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.screen-citation-badges {
    display: flex;
    gap: 6px;
}

.screen-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
}

.screen-badge.chatgpt { background: rgba(16, 163, 127, 0.15); color: #10a37f; }
.screen-badge.claude { background: rgba(217, 119, 6, 0.15); color: #d97706; }
.screen-badge.perplexity { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.screen-badge.gemini { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.screen-badge.positive { background: rgba(40, 200, 64, 0.15); color: #28c840; }
.screen-badge.neutral { background: rgba(136, 136, 136, 0.15); color: #888; }
.screen-badge.negative { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.screen-citation-date {
    font-size: 10px;
    color: #666;
}

.screen-citation-section {
    margin-bottom: 8px;
}

.screen-citation-label {
    display: block;
    font-size: 10px;
    color: #666;
    margin-bottom: 2px;
}

.screen-citation-query {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.screen-citation-response {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.screen-citation-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #2a2a2a;
    margin-top: 4px;
}

.screen-citation-locale {
    display: flex;
    gap: 4px;
}

.screen-locale-tag {
    display: inline-block;
    padding: 2px 6px;
    background: #2a2a2a;
    border-radius: 4px;
    font-size: 10px;
    color: #888;
}

.screen-citation-quality {
    font-size: 10px;
    color: #666;
}

.screen-citation-quality strong {
    color: #fff;
    font-weight: 600;
}

/* Analytics Screen */
.screen-analytics-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.screen-select {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    font-size: 12px;
    color: #888;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}

.screen-period-toggle {
    display: flex;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.screen-period {
    padding: 6px 12px;
    font-size: 11px;
    color: #888;
    cursor: default;
}

.screen-period.active {
    background: rgba(16, 163, 127, 0.1);
    color: #10a37f;
}

.screen-stat-link {
    cursor: default;
}

.screen-stat-link-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #10a37f;
    margin-top: 4px;
}

.screen-charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.screen-chart {
    padding: 16px;
}

.screen-area-chart,
.screen-line-chart {
    width: 100%;
    height: 160px;
    display: block;
}

.screen-chart-labels {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    font-size: 10px;
    color: #666;
}

/* Pie chart */
.screen-pie-chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px;
}

.screen-pie-chart {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.screen-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.screen-pie-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #888;
}

.screen-pie-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* GEO Analytics */
.screen-geo-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.screen-geo-filters-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.screen-export-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    cursor: default;
}

.screen-region-filters {
    display: flex;
    gap: 6px;
    padding: 0 16px 12px;
    border-top: 1px solid #2a2a2a;
    padding-top: 10px;
    flex-wrap: wrap;
}

.screen-region-tag {
    padding: 4px 10px;
    font-size: 11px;
    color: #888;
    background: #1a1a1a;
    border-radius: 6px;
    cursor: default;
}

.screen-region-tag.active {
    background: rgba(16, 163, 127, 0.1);
    color: #10a37f;
}

.screen-geo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

/* Heatmap */
.screen-heatmap {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.screen-heatmap-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.screen-heatmap-label {
    width: 22px;
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-align: right;
    flex-shrink: 0;
}

.screen-heatmap-cells {
    display: flex;
    gap: 3px;
    flex: 1;
}

.screen-heatmap-cells span {
    flex: 1;
    height: 24px;
    border-radius: 3px;
}

.screen-heatmap-cells .h1 { background: rgba(16,163,127,0.1); }
.screen-heatmap-cells .h2 { background: rgba(16,163,127,0.25); }
.screen-heatmap-cells .h3 { background: rgba(16,163,127,0.4); }
.screen-heatmap-cells .h4 { background: rgba(16,163,127,0.6); }
.screen-heatmap-cells .h5 { background: rgba(16,163,127,0.85); }

/* Breakdown */
.screen-breakdown {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.screen-breakdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.screen-breakdown-name {
    width: 100px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}

.screen-breakdown-bar {
    flex: 1;
    height: 8px;
    background: #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
}

.screen-breakdown-fill {
    height: 100%;
    border-radius: 4px;
}

.screen-breakdown-value {
    width: 30px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-align: right;
    flex-shrink: 0;
}

/* Live Badge */
.screen-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #28c840;
    float: right;
}

.screen-live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #28c840;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Chart Legend */
.screen-chart-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
}

.screen-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #888;
}

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

/* Platform Breakdown */
.screen-platform-breakdown {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.screen-platform-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.screen-platform-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.screen-platform-name {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.screen-platform-count {
    font-size: 12px;
    font-weight: 600;
    color: #888;
}

.screen-platform-bar {
    height: 6px;
    background: #2a2a2a;
    border-radius: 3px;
    overflow: hidden;
}

.screen-platform-fill {
    height: 100%;
    border-radius: 3px;
}

.screen-platform-pct {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    text-align: right;
}

/* Competitor List */
.screen-competitor-list {
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.screen-competitor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.screen-competitor-rank {
    width: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-align: center;
    flex-shrink: 0;
}

.screen-competitor-item.highlight .screen-competitor-rank {
    color: #28c840;
}

.screen-competitor-name {
    width: 90px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}

.screen-competitor-item.highlight .screen-competitor-name {
    color: #28c840;
}

.screen-competitor-bar {
    flex: 1;
    height: 6px;
    background: #2a2a2a;
    border-radius: 3px;
    overflow: hidden;
}

.screen-competitor-fill {
    height: 100%;
    background: #28c840;
    border-radius: 3px;
}

.screen-competitor-fill.dim {
    background: #666;
}

.screen-competitor-count {
    width: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-align: right;
    flex-shrink: 0;
}

/* Platform Pills */
.screen-platform-pills {
    display: flex;
    align-items: center;
    gap: 6px;
}

.screen-pill {
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #888;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 100px;
    cursor: default;
}

.screen-pill.active {
    background: rgba(16, 163, 127, 0.1);
    color: #10a37f;
    border-color: rgba(16, 163, 127, 0.3);
}

/* Screens Responsive */
@media (max-width: 900px) {
    .screens-body {
        flex-direction: column;
        min-height: auto;
    }

    .screens-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid #2a2a2a;
        overflow-x: auto;
    }

    .screens-sidebar-logo {
        border-bottom: none;
        border-right: 1px solid #2a2a2a;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .screens-sidebar-nav {
        flex-direction: row;
        gap: 0;
        padding: 8px 10px;
        overflow-x: auto;
        flex-shrink: 0;
    }

    .screens-nav-item {
        white-space: nowrap;
        padding: 6px 10px;
    }

    .screens-sidebar-user {
        display: none;
    }

    .screen-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screen-bottom-grid,
    .screen-charts-grid,
    .screen-citations-grid {
        grid-template-columns: 1fr;
    }

    .screen-filters-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .screen-geo-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .screens-tabs {
        gap: 6px;
    }

    .screens-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .screens-tab svg {
        display: none;
    }

    .screens-sidebar {
        display: none;
    }

    .screens-body {
        min-height: 500px;
    }

    .screen-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .screen-geo-stats {
        grid-template-columns: 1fr;
    }

    .screen-pie-chart-container {
        flex-direction: column;
    }

    .screen-filters-row {
        grid-template-columns: 1fr;
    }

    .screen-analytics-filters {
        flex-direction: column;
        gap: 10px;
    }

    .screen-geo-filters {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .screen-geo-filters-left {
        flex-wrap: wrap;
    }

    .screen-search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .screen-platform-pills {
        flex-wrap: wrap;
    }

    .screen-chart-legend {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ===================================
   Demo Landing Page
   =================================== */
.demo-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.demo-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.demo-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.demo-hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.demo-hero-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Social Proof */
.demo-social-proof {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.demo-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.demo-proof-quote {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.demo-proof-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-600), var(--gray-800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.demo-proof-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.demo-proof-role {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
}

/* Demo Card */
.demo-card {
    padding: 40px;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
}

.demo-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.demo-card-subtitle {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 28px;
    line-height: 1.6;
}

.demo-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.demo-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.5;
}

.demo-card-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-card-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

/* Demo Form */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.demo-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.demo-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
}

.demo-form-group input,
.demo-form-group select {
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--white);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-base);
    appearance: none;
    -webkit-appearance: none;
}

.demo-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.demo-form-group input:focus,
.demo-form-group select:focus {
    outline: none;
    border-color: var(--gray-500);
}

.demo-form-group input::placeholder {
    color: var(--gray-600);
}

.demo-form-group select option {
    background: var(--gray-800);
    color: var(--white);
}

/* What You'll Learn */
.demo-learn {
    padding: var(--section-padding) 0;
}

.demo-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.demo-learn-card {
    padding: 32px;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.demo-learn-card:hover {
    background: var(--gray-800);
    border-color: var(--gray-700);
    transform: translateY(-4px);
}

.demo-learn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--white);
}

.demo-learn-card:hover .demo-learn-icon {
    background: var(--gray-700);
}

.demo-learn-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.demo-learn-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Results Section */
.demo-results {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.demo-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.demo-result-card {
    padding: 32px;
    background: var(--black);
    border: 1px solid var(--gray-800);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-result-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.demo-result-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.demo-result-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Testimonial Section */
.demo-testimonial {
    padding: var(--section-padding) 0;
}

.demo-testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.demo-quote-icon {
    margin-bottom: 24px;
}

.demo-testimonial-quote {
    font-size: 22px;
    font-weight: 400;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 32px;
}

.demo-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.demo-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-600), var(--gray-800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.demo-testimonial-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.demo-testimonial-role {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
}

/* Final CTA */
.demo-cta {
    padding: var(--section-padding) 0;
    background: var(--gray-900);
}

.demo-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.demo-cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.demo-cta-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

.demo-cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

/* Demo Responsive */
@media (max-width: 1024px) {
    .demo-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .demo-hero {
        padding: 140px 0 80px;
    }

    .demo-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-hero-content {
        text-align: center;
        align-items: center;
    }

    .demo-hero-subtitle {
        max-width: 100%;
    }

    .demo-social-proof {
        text-align: left;
    }

    .demo-learn-grid {
        grid-template-columns: 1fr;
    }

    .demo-results-grid {
        grid-template-columns: 1fr;
    }

    .demo-card {
        padding: 28px;
    }

    .demo-testimonial-quote {
        font-size: 18px;
    }
}

/* Subpage Responsive */
@media (max-width: 1024px) {
    .integrations-grid,
    .blog-grid,
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 140px 0 60px;
    }

    .integrations-grid,
    .blog-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .careers-benefits {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .changelog-item {
        flex-direction: column;
        gap: 12px;
    }

    .changelog-date {
        width: auto;
    }

    .about-stats {
        flex-direction: column;
        gap: 32px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
