:root {
    /* Light theme colors */
    --primary-black: #000000;
    --primary-white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --accent-blue: #007aff;
    --accent-green: #34c759;
    --accent-purple: #af52de;
    --accent-orange: #ff9500;
    
    /* Theme variables */
    --bg-primary: var(--primary-white);
    --bg-secondary: var(--gray-50);
    --text-primary: var(--primary-black);
    --text-secondary: var(--gray-600);
    --border-color: var(--gray-200);
    --card-bg: var(--primary-white);
    --header-bg: rgba(255, 255, 255, 0.85);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: var(--gray-900);
        --bg-secondary: var(--gray-800);
        --text-primary: var(--primary-white);
        --text-secondary: var(--gray-400);
        --border-color: var(--gray-700);
        --card-bg: var(--gray-800);
        --header-bg: rgba(17, 24, 39, 0.85);
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.fonts-loaded {
    opacity: 1;
}

/* Loading state styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--text-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Font loading fallbacks */
.font-loading * {
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 17px;
    transition: color 0.2s ease;
    letter-spacing: -0.01em;
}

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

.cta-button {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.cta-button:hover {
    background: var(--gray-700);
    transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1001;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

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

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 0;
}

.mobile-nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

.mobile-nav-links a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.03) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero .subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 16px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: var(--gray-700);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-demo {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: var(--primary-white);
    padding: 18px 40px;
    border-radius: 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 20px rgba(175, 82, 222, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-demo:hover::before {
    left: 100%;
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(175, 82, 222, 0.4);
}

.demo-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Feature Pills */
.feature-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pill {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.pill.accent-blue { background: rgba(0, 122, 255, 0.1); color: var(--accent-blue); }
.pill.accent-green { background: rgba(52, 199, 89, 0.1); color: var(--accent-green); }
.pill.accent-purple { background: rgba(175, 82, 222, 0.1); color: var(--accent-purple); }

/* Product Showcase Section */
.product-showcase {
    padding: 120px 0;
    background: #0f0f0f;
    text-align: center;
}

.showcase-content h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.showcase-content p {
    font-size: clamp(17px, 2.5vw, 21px);
    color: #a0a0a0;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.product-showcase .demo-subtitle {
    color: #b0b0b0;
}

.product-showcase .demo-cta-btn {
    background: linear-gradient(135deg, #af52de, #007aff);
    color: #ffffff;
    padding: 20px 48px;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(175, 82, 222, 0.4);
    margin-bottom: 32px;
}

.product-showcase .demo-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(175, 82, 222, 0.6);
}

.product-showcase .arrow-icon {
    transition: transform 0.3s ease;
}

.product-showcase .demo-cta-btn:hover .arrow-icon {
    transform: translate(3px, -3px);
}

.product-showcase .demo-disclaimer {
    font-size: 14px;
    color: #808080;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 20px;
    display: block;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 24px;
    backdrop-filter: blur(10px);
}

.product-showcase .demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.product-showcase .demo-feature {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-showcase .demo-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.product-showcase .feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.product-showcase .demo-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.product-showcase .demo-feature p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 0;
}

.screenshot-container {
    display: inline-block;
    width: 70%;
    max-width: 1000px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

@media (prefers-color-scheme: dark) {
    .screenshot-container {
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    }
}

.product-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-header p {
    font-size: clamp(17px, 2.5vw, 21px);
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--card-bg);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green), var(--accent-purple), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
    .feature-card:hover {
        box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    }
}

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

.feature-card h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.feature-card ul {
    margin-top: 16px;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: clamp(14px, 2vw, 16px);
}

.feature-card li {
    margin-bottom: 8px;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background: var(--text-primary);
    color: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 64px;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(48px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: clamp(16px, 2.5vw, 18px);
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Capabilities Section */
.capabilities {
    padding: 120px 0;
    background: var(--bg-primary);
}

.capabilities-intro {
    text-align: center;
    margin-bottom: 80px;
}

.capabilities-intro h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.capabilities-intro p {
    font-size: clamp(17px, 2.5vw, 21px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.capability-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

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

.capability-card h4 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.capability-card p {
    color: var(--text-secondary);
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.capability-detail {
    margin-top: 12px;
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--text-secondary);
    font-style: italic;
}

/* Deployment Section */
.deployment {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.deployment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: center;
}

.deployment-text h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.deployment-text p {
    font-size: clamp(17px, 2.5vw, 21px);
    color: var(--text-secondary);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.deployment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.deployment-option {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.deployment-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

@media (prefers-color-scheme: dark) {
    .deployment-option:hover {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }
}

.deployment-option h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.deployment-option p {
    color: var(--text-secondary);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.deployment-tech-stack {
    margin-top: 16px;
    font-size: clamp(13px, 1.8vw, 14px);
    color: var(--text-secondary);
}

.deployment-tech-stack strong {
    color: var(--text-primary);
}

/* Timeline Section */
.roadmap {
    padding: 120px 0;
    background: var(--bg-primary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 64px;
    position: relative;
}

.timeline-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

@media (prefers-color-scheme: dark) {
    .timeline-content:hover {
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 5%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 12px;
    height: 12px;
    background: var(--text-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--bg-primary);
}

.phase-number {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.timeline-content h3 {
    font-size: clamp(18px, 3vw, 21px);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    letter-spacing: -0.01em;
    font-size: clamp(14px, 2vw, 16px);
}

.timeline-features {
    margin-top: 16px;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: clamp(13px, 1.8vw, 14px);
}

.timeline-features li {
    margin-bottom: 4px;
}

/* CTA Section */
.cta-section {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: clamp(17px, 2.5vw, 21px);
    margin-bottom: 40px;
    opacity: 0.7;
    letter-spacing: -0.01em;
}

.cta-section .btn-primary {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
}

/* Footer */
footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.footer-section p, .footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 8px;
    font-size: clamp(14px, 2vw, 16px);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(12px, 2vw, 14px);
    letter-spacing: -0.01em;
}

.footer-bottom .footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .features-grid, .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card, .capability-card {
        padding: 32px 24px;
    }
    
    .screenshot-container {
        width: 90%;
    }
    
    .timeline::before {
        left: 24px;
    }
    
    .timeline-content {
        width: calc(100% - 64px);
        margin-left: 64px !important;
        margin-right: 0 !important;
        padding: 24px;
    }
    
    .timeline-marker {
        left: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .deployment-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .feature-pills {
        gap: 12px;
    }
    
    .pill {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .feature-card, .capability-card, .deployment-option {
        padding: 24px 16px;
    }
    
    .timeline-content {
        padding: 20px 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Print styles */
@media print {
    header, .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .feature-card, .capability-card, .timeline-content {
        break-inside: avoid;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-animate {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .feature-card, .capability-card, .deployment-option, .timeline-content {
        border-width: 2px;
    }
    
    .pill {
        border: 1px solid var(--text-primary);
    }
}

/* RODMEN/A Brand Styling */
.rodmena-brand {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.rodmena-brand .slash {
    color: #ff0000;
    font-weight: 200;
    margin: 0 -1px;
}

/* Mobile Styles for Demo Elements */
@media (max-width: 768px) {
    .product-showcase .demo-cta-btn {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .product-showcase .demo-features {
        gap: 24px;
    }
    
    .product-showcase .feature-icon {
        font-size: 36px;
    }
    
    .product-showcase .demo-feature {
        padding: 24px;
    }
    
    .product-showcase .demo-feature h4 {
        font-size: 18px;
    }
    
    .product-showcase .demo-feature p {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .btn-demo, .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}