.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(0, 4%) rotate(0deg); }
    75% { transform: translate(-2%, 2%) rotate(-1deg); }
}

/* Grid pattern overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--accent);
}

.badge {
    background: var(--gradient);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(6, 182, 212, 0.6); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

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

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.hero-text h1 .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    letter-spacing: 0.01em;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.waitlist-form input {
    flex: 1;
    padding: 18px 24px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.waitlist-form input::placeholder {
    color: var(--gray);
}

.waitlist-form input:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-primary {
    padding: 16px 32px;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

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

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--gray);
    font-size: 14px;
    margin-top: 24px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    margin-left: -10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.avatar:first-child {
    margin-left: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: var(--dark-light);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
}

.dashboard-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red { background: #ef4444; }
.dashboard-dot.yellow { background: #eab308; }
.dashboard-dot.green { background: #22c55e; }

.dashboard-content {
    display: grid;
    gap: 16px;
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.15);
}

.metric-label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.metric-value.positive { color: #22c55e; }
.metric-value.accent { color: var(--accent); }

.chart-placeholder {
    height: 120px;
    background: linear-gradient(90deg, 
        rgba(37, 99, 235, 0.2) 0%, 
        rgba(6, 182, 212, 0.2) 50%, 
        rgba(37, 99, 235, 0.2) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.3) 100%);
    clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 50%, 75% 20%, 90% 35%, 100% 10%, 100% 100%, 0 100%);
}

/* Dashboard Viewer Preview Styles */
.dashboard-title {
    margin-left: auto;
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

.viewer-layout {
    display: grid;
    grid-template-columns: 1fr 8px 1fr;
    gap: 0;
    height: 320px;
}

.preview-panel {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.panel-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toolbar-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-btn {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--gray);
}

.zoom-label {
    font-size: 9px;
    color: var(--gray);
    font-weight: 500;
}

.download-btns {
    display: flex;
    gap: 4px;
}

.dl-btn {
    font-size: 8px;
    font-weight: 600;
    padding: 3px 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    color: var(--gray);
}

.dl-btn.accent {
    background: var(--gradient);
    color: var(--white);
}

/* PDF Panel Styles */
.pdf-preview-content {
    flex: 1;
    padding: 12px;
    overflow: hidden;
}

.pdf-page {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdf-header-line {
    width: 40%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.pdf-title-line {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.pdf-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 8px;
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4px;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 2px;
    color: #334155;
}

.table-row.header {
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
    color: #1e40af;
}

.pdf-text-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.text-line {
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 1px;
}

.text-line.w80 { width: 80%; }
.text-line.w95 { width: 95%; }
.text-line.w70 { width: 70%; }

.page-nav {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.page-info {
    font-size: 9px;
    color: var(--gray);
}

/* Resize Handle */
.resize-handle-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: col-resize;
}

.handle-dots {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.handle-dots span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Analysis Panel Styles */
.analysis-preview-content {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.analysis-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-heading {
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border-left: 2px solid transparent;
}

.insight-card.positive {
    border-left-color: #22c55e;
}

.insight-card.warning {
    border-left-color: #f59e0b;
}

.insight-icon {
    font-size: 10px;
    font-weight: 700;
}

.insight-card.positive .insight-icon {
    color: #22c55e;
}

.insight-card.warning .insight-icon {
    color: #f59e0b;
}

.insight-text {
    font-size: 9px;
    color: var(--gray-light);
}

.ratios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.ratio-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 8px;
    text-align: center;
}

.ratio-label {
    display: block;
    font-size: 8px;
    color: var(--gray);
    margin-bottom: 2px;
}

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

.ratio-value.accent {
    color: var(--accent);
}

.page-link {
    margin-top: auto;
}

.link-text {
    font-size: 9px;
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.1);
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.link-text:hover {
    background: rgba(37, 99, 235, 0.2);
}

/* Mobile adjustments for viewer preview */
@media (max-width: 768px) {
    .viewer-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 8px 1fr;
        height: 400px;
    }
    
    .resize-handle-preview {
        cursor: row-resize;
    }
    
    .handle-dots {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .viewer-layout {
        height: 350px;
    }
    
    .pdf-table {
        font-size: 7px;
    }
    
    .ratios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .ratio-item {
        padding: 6px 4px;
    }
    
    .ratio-value {
        font-size: 10px;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* CTA Section */
.cta {
    padding: 120px 0;
}

.cta-box {
    background: var(--gradient);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

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

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

.cta-box h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 20px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-form input:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.btn-white {
    padding: 18px 36px;
    background: var(--white);
    border: none;
    border-radius: 14px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-links {
    display: flex;
    gap: 24px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Success Message */
.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 16px 24px;
    border-radius: 12px;
    margin-top: 16px;
    font-weight: 500;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-visual {
        order: -1;
    }

    .dashboard-preview {
        transform: none;
    }

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

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

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .social-proof {
        flex-wrap: wrap;
        justify-content: center;
    }

    .features {
        padding: 80px 0;
    }

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

    .cta {
        padding: 80px 0;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .social-links {
        order: -1;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .dashboard-preview {
        padding: 16px;
    }

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

    .use-cases, .how-it-works, .differentiation, .trust {
        padding: 80px 0;
    }

    .use-cases-grid, .diff-grid {
        grid-template-columns: 1fr;
    }

    .trust-content {
        border-radius: 24px;
        padding: 30px 20px;
    }

    .trust-text h2 {
        font-size: 28px;
    }

    .step-number {
        font-size: 48px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    header {
        padding: 16px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .badge {
        padding: 4px 10px;
        font-size: 11px;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .btn-primary,
    .btn-white {
        padding: 14px 24px;
        font-size: 15px;
    }

    .social-proof {
        font-size: 13px;
    }

    .avatar {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 16px;
    }

    .features,
    .use-cases, .how-it-works, .differentiation, .trust, .cta {
        padding: 60px 0;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .cta-box {
        padding: 36px 20px;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 26px;
    }

    .cta-box p {
        font-size: 16px;
    }

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

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

    .metric-card {
        padding: 16px;
    }

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

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

    .chart-placeholder {
        height: 80px;
    }
}

/* New Sections Styling */
.use-cases {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-4px);
}

.use-case-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.use-case-icon svg {
    width: 28px;
    height: 28px;
}

.use-case-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.use-case-card p {
    color: var(--gray-light);
    line-height: 1.6;
    font-size: 16px;
}

/* How It Works Styling */
.how-it-works {
    padding: 120px 0;
    background: rgba(15, 23, 42, 0.3);
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
    transition: all 0.4s ease;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.step-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.step-card p {
    color: var(--gray-light);
    line-height: 1.6;
    font-size: 17px;
}

.step-card:hover .step-number {
    color: rgba(37, 99, 235, 0.1);
    transform: scale(1.1);
}

/* Differentiation Styling */
.differentiation {
    padding: 120px 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.diff-card:hover {
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.diff-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diff-card p {
    color: var(--white);
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.5;
}

.diff-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Trust Section Combined Styling */
.trust {
    padding: 120px 0;
}

.trust-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.trust-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.trust-points {
    display: grid;
    gap: 16px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-point svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.trust-point span {
    font-weight: 500;
    color: var(--white);
}

.outputs-card {
    background: var(--gradient-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.outputs-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--white);
}

.outputs-list {
    list-style: none;
}

.outputs-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.outputs-list li::before {
    content: '→';
    color: var(--primary-light);
}

.outputs-list li:last-child {
    border-bottom: none;
}

/* Disclaimer Styling */
.disclaimer {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .trust-content {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .use-cases, .how-it-works, .differentiation, .trust {
        padding: 60px 0;
    }

    .use-cases-grid, .diff-grid {
        grid-template-columns: 1fr;
    }

    .trust-content {
        border-radius: 24px;
        padding: 30px 20px;
    }

    .trust-text h2 {
        font-size: 28px;
    }

    .step-number {
        font-size: 48px;
    }
}
