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

:root {
    --bg-dark: #030712;
    --card-bg: rgba(17, 24, 39, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --primary-glow: #f97316;
    --primary-gradient: linear-gradient(135deg, #f97316, #d97706);
    --secondary-glow: #0ea5e9;
    --success-glow: #10b981;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background mesh overlay & glowing blobs */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(249, 115, 22, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 45%, rgba(14, 165, 233, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 80%);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.35);
}

.logo-img {
    width: 38px;
    height: 38px;
    display: block;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.35);
    border-radius: 9px;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-glow);
    background: rgba(249, 115, 22, 0.05);
}

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

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    align-self: flex-start;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--primary-glow);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.05);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Hero Mockup Area */
.hero-mockup {
    position: relative;
    width: 100%;
}

.mockup-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background-color: #ef4444; }
.mockup-dot:nth-child(2) { background-color: #eab308; }
.mockup-dot:nth-child(3) { background-color: #22c55e; }

.mockup-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    font-weight: bold;
}

.mockup-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
}

.mockup-balance-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mockup-balance-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: var(--font-heading);
}

.mockup-balance-fiat {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.mockup-mini-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mockup-mini-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.mockup-mini-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mockup-mini-val.green { color: var(--success-glow); }
.mockup-mini-val.blue { color: var(--secondary-glow); }

.mockup-txs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-tx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.mockup-tx-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-tx-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(230, 106, 44, 0.1);
    color: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
}

.mockup-tx-info {
    display: flex;
    flex-direction: column;
}

.mockup-tx-name {
    font-size: 0.8rem;
    font-weight: 700;
}

.mockup-tx-cat {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.mockup-tx-amount {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
}

/* Background mockup glows */
.mockup-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    z-index: -1;
    filter: blur(30px);
}

/* Stats Bar */
.stats-bar {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.stat-val.gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-glow);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    color: #fff;
    background: var(--primary-gradient);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.35);
    border-color: transparent;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Featured Card (Wavecard Integration) */
.feature-card.featured {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(249, 115, 22, 0.02) 100%), var(--card-bg);
    border-color: rgba(249, 115, 22, 0.15);
}

.feature-card.featured .feature-icon-wrapper {
    color: #fff;
    background: var(--primary-gradient);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.45);
    border-color: transparent;
}

.feature-card.featured .featured-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-card.featured .featured-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.featured-card-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 35px rgba(249, 115, 22, 0.5));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card.featured:hover .featured-card-img {
    transform: translateY(-8px) rotate(3deg) scale(1.05);
}

.feature-card.featured:hover {
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.08), 0 10px 30px rgba(0, 0, 0, 0.25);
}


/* AI Simulator Section */
.simulator {
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.04) 0%, transparent 60%);
}

.sim-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.sim-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sim-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sim-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sim-input-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.sim-input-box {
    display: flex;
    gap: 0.75rem;
}

.sim-input-box input {
    flex: 1;
    height: 48px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.sim-input-box input:focus {
    outline: none;
    border-color: var(--primary-glow);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.15);
}

.sim-input-box button {
    height: 48px;
}

.presets-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preset-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.preset-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.preset-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

/* Result Card Styles */
.sim-result-area {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sim-placeholder {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.sim-result-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.animate-result {
    animation: resultPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes resultPop {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

.result-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--success-glow);
    letter-spacing: 0.05em;
}

.result-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.result-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.result-raw {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.result-label {
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: monospace;
}

.result-arrow {
    display: flex;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0.4;
}

.result-output {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.resolved-merchant {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.resolved-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
}

.resolved-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.category-icon {
    width: 16px;
    height: 16px;
}

.category-emoji {
    font-size: 1rem;
}

.category-label {
    font-size: 0.8rem;
    font-weight: 700;
}

.sim-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.sim-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border-top-color: var(--primary-glow);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Deploy / Getting Started Section */
.deploy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.deploy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.deploy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
}

.deploy-card.docker::before { background: var(--primary-gradient); }
.deploy-card.umbrel::before { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.deploy-card.web::before { background: linear-gradient(135deg, #10b981, #059669); }

.deploy-num {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.deploy-card h3 {
    font-size: 1.5rem;
}

.deploy-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.deploy-action {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.code-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
}

.code-box pre {
    font-family: monospace;
    font-size: 0.72rem;
    color: #e5e7eb;
    overflow-x: auto;
    white-space: pre;
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-copied {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: var(--success-glow) !important;
}

/* Call to Action */
.cta {
    background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.03) 100%);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: radial-gradient(ellipse at 50% 0%, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
    border: 1px solid var(--border-color);
    padding: 4rem 2rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta h2 {
    font-size: 2.8rem;
    line-height: 1.15;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
    background: #020617;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links-col h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.15s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
}

/* Scroll Fade In Animation Classes */
.feature-card, .section-title, .hero-content, .stats-bar, .sim-container, .deploy-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-badge {
        align-self: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card.featured {
        grid-column: span 2;
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    .feature-card.featured .featured-visual {
        order: -1;
    }
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .deploy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        height: 70px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(3, 7, 18, 0.95);
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        backdrop-filter: blur(20px);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card.featured {
        grid-column: span 1;
        flex-direction: column;
        gap: 1.5rem;
    }
    .cta h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
