/* ============================================
   Orbit — Landing Page Styles
   ============================================ */

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

:root {
    --orbit-bg: #f8f9fb;
    --orbit-surface: #ffffff;
    --orbit-text: #0f1117;
    --orbit-text-secondary: #5f6b7a;
    --orbit-text-tertiary: #9ba4b0;
    --orbit-blue: #3b82f6;
    --orbit-blue-light: #eff6ff;
    --orbit-blue-glow: rgba(59, 130, 246, 0.15);
    --orbit-green: #22c55e;
    --orbit-green-light: #f0fdf4;
    --orbit-purple: #8b5cf6;
    --orbit-purple-light: #f5f3ff;
    --orbit-amber: #f59e0b;
    --orbit-amber-light: #fffbeb;
    --orbit-border: #e8ecf1;
    --orbit-border-light: #f1f3f6;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--orbit-bg);
    color: var(--orbit-text);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

/* ============================================
   Navigation (matches root index.html)
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    background: rgba(248, 249, 251, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--orbit-text);
}

.nav-logo {
    width: 32px;
    height: 32px;
}

.logo-orbit {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-orbit::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--orbit-border);
    border-radius: 50%;
}

.logo-core {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--orbit-text-secondary);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--orbit-text);
}

.nav-home {
    padding: 6px 14px;
    background: var(--orbit-blue-light);
    color: var(--orbit-blue);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-home:hover {
    background: var(--orbit-blue);
    color: white;
}

.nav-logo-svg,
.nav-toggle,
.hamburger,
.hamburger::before,
.hamburger::after,
.nav-mobile {
    display: none;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 0;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -30%;
    right: -5%;
    width: 60%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, rgba(139, 92, 246, 0.03) 50%, transparent 70%);
    animation: gradientPulse 10s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

.ambient-particles {
    position: absolute;
    inset: 0;
}

.ambient-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    animation: floatDot linear infinite;
}

@keyframes floatDot {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-80vh); opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--orbit-surface);
    border: 1px solid var(--orbit-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--orbit-text-secondary);
    margin-bottom: 24px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--orbit-green);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero-accent {
    color: var(--orbit-blue);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--orbit-text-secondary);
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-sublabel {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.7;
}

.btn-primary {
    background: var(--orbit-blue);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
    transform: translateY(-1px);
}

.btn-disabled {
    opacity: 0.6;
    cursor: default;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.btn-secondary {
    background: var(--orbit-surface);
    color: var(--orbit-text);
    border: 1px solid var(--orbit-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--orbit-text-tertiary);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--orbit-blue);
    padding: 10px 0;
}

.btn-ghost:hover {
    color: #2563eb;
}

.hero-compat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--orbit-text-tertiary);
}

/* Hero Visual - App Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.mockup-card {
    width: 100%;
    max-width: 580px;
    background: var(--orbit-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.03);
    overflow: visible;
    position: relative;
    animation: mockupFloat 6s ease-in-out infinite;
}

.mockup-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
}

@keyframes mockupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Nova floating */
.mockup-nova {
    position: absolute;
    top: 40px;
    right: 30px;
    width: 100px;
    height: 100px;
    z-index: 2;
}

/* Nova floating */
.mockup-nova {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 100px;
    height: 100px;
}

.mockup-nova img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
    animation: novaFloat 4s ease-in-out infinite;
}

@keyframes novaFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.nova-orbit {
    position: absolute;
    border: 1px dashed rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    animation: novaOrbitRotate linear infinite;
}

.nova-orbit-1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin: -60px 0 0 -60px;
    animation-duration: 12s;
}

.nova-orbit-2 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    margin: -80px 0 0 -80px;
    animation-duration: 18s;
    animation-direction: reverse;
}

@keyframes novaOrbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nova-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--orbit-blue);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.4);
}

.nova-particle:nth-child(3) { top: 10%; left: 60%; animation: particlePulse 3s ease-in-out infinite; }
.nova-particle:nth-child(4) { top: 70%; left: 20%; animation: particlePulse 3s ease-in-out infinite 1s; }
.nova-particle:nth-child(5) { top: 40%; left: 80%; animation: particlePulse 3s ease-in-out infinite 2s; }

@keyframes particlePulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ============================================
   Section Shared
   ============================================ */

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orbit-blue);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
    padding: 0 0 100px;
}

.how-it-works .section-label,
.how-it-works .section-title {
    text-align: center;
}

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

.work-card {
    background: var(--orbit-surface);
    border: 1px solid var(--orbit-border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.work-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.work-green .work-icon { background: var(--orbit-green-light); color: var(--orbit-green); }
.work-blue .work-icon { background: var(--orbit-blue-light); color: var(--orbit-blue); }
.work-purple .work-icon { background: var(--orbit-purple-light); color: var(--orbit-purple); }

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

.work-card p {
    font-size: 14px;
    color: var(--orbit-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.work-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--orbit-text-tertiary);
}

.work-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.work-green .work-tag-dot { background: var(--orbit-green); }
.work-blue .work-tag-dot { background: var(--orbit-blue); }
.work-purple .work-tag-dot { background: var(--orbit-purple); }

/* ============================================
   Feature Preview
   ============================================ */

.features {
    padding: 0 0 100px;
}

.features .section-label,
.features .section-title {
    text-align: center;
}

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

.feature-card {
    background: var(--orbit-surface);
    border: 1px solid var(--orbit-border-light);
    border-radius: var(--radius-xl);
    padding: 20px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-preview {
    background: var(--orbit-border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-mockup-small {
    width: 100%;
    height: 120px;
    background: var(--orbit-surface);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.preview-sidebar-small {
    width: 40px;
    background: var(--orbit-border-light);
    border-right: 1px solid var(--orbit-border);
}

.preview-content-small {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.preview-message {
    height: 8px;
    background: var(--orbit-border);
    border-radius: 4px;
}

.preview-message.wide {
    width: 70%;
}

.preview-nova-small {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, var(--orbit-blue), var(--orbit-purple));
    border-radius: 50%;
    opacity: 0.6;
}

.preview-model-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.preview-model-row span:first-child {
    flex: 1;
    height: 6px;
    background: var(--orbit-border);
    border-radius: 3px;
}

.badge-small {
    padding: 2px 6px;
    font-size: 8px;
    font-weight: 600;
    border-radius: 999px;
    background: var(--orbit-green-light);
    color: var(--orbit-green);
}

.badge-small.mesh {
    background: var(--orbit-blue-light);
    color: var(--orbit-blue);
}

.onboarding-view {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.preview-nova-center {
    width: 36px;
    height: 36px;
    background: radial-gradient(circle, var(--orbit-blue), var(--orbit-purple));
    border-radius: 50%;
    opacity: 0.7;
}

.preview-onboarding-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.preview-line {
    height: 6px;
    background: var(--orbit-border);
    border-radius: 3px;
}

.preview-line.short {
    width: 60%;
}

.phone-view {
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.preview-phone {
    width: 50px;
    height: 90px;
    background: var(--orbit-surface);
    border: 2px solid var(--orbit-border);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.preview-phone-notch {
    width: 20px;
    height: 4px;
    background: var(--orbit-border);
    border-radius: 2px;
    margin: 6px auto 8px;
}

.preview-phone-content {
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-phone-message {
    height: 4px;
    background: var(--orbit-border-light);
    border-radius: 2px;
}

.preview-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.qr-grid {
    width: 36px;
    height: 36px;
    background: var(--orbit-border);
    border-radius: 4px;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, var(--orbit-border) 3px, var(--orbit-border) 4px),
                      repeating-linear-gradient(90deg, transparent, transparent 3px, var(--orbit-border) 3px, var(--orbit-border) 4px);
}

.preview-qr span {
    font-size: 8px;
    color: var(--orbit-text-tertiary);
    font-weight: 600;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

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

.coming-soon-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--orbit-blue);
    background: var(--orbit-blue-light);
    padding: 2px 8px;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: 4px;
}

/* ============================================
   Philosophy
   ============================================ */

.philosophy {
    padding: 0 0 100px;
}

.philosophy-container {
    background: var(--orbit-surface);
    border: 1px solid var(--orbit-border-light);
    border-radius: var(--radius-2xl);
    padding: 48px;
}

.philosophy-main {
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 500px;
    margin: 0 auto;
}

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

.philosophy-item {
    text-align: center;
}

.philosophy-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.philosophy-icon-green { background: var(--orbit-green-light); color: var(--orbit-green); }
.philosophy-icon-blue { background: var(--orbit-blue-light); color: var(--orbit-blue); }
.philosophy-icon-purple { background: var(--orbit-purple-light); color: var(--orbit-purple); }
.philosophy-icon-amber { background: var(--orbit-amber-light); color: var(--orbit-amber); }

.philosophy-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.philosophy-item p {
    font-size: 13px;
    color: var(--orbit-text-secondary);
    line-height: 1.5;
}

/* ============================================
   Mesh-LLM Section
   ============================================ */

.mesh-section {
    padding: 0 0 100px;
}

.mesh-card {
    background: var(--orbit-surface);
    border: 1px solid var(--orbit-border-light);
    border-radius: var(--radius-2xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mesh-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mesh-visual img {
    max-width: 280px;
    height: auto;
}

.mesh-network,
.mesh-node,
.mesh-node-1,
.mesh-node-2,
.mesh-node-3,
.mesh-node-4,
.mesh-node-5,
.mesh-line,
.mesh-line-1,
.mesh-line-2,
.mesh-line-3,
.mesh-line-4,
.mesh-line-5,
.mesh-line-6 {
    display: none;
}

.mesh-content .section-label {
    margin-bottom: 16px;
}

.mesh-content .section-title {
    margin-bottom: 16px;
}

.mesh-description {
    font-size: 15px;
    color: var(--orbit-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ============================================
   Final CTA
    ============================================ */

.final-cta {
    padding: 0 0 60px;
}

.cta-card {
    background: var(--orbit-surface);
    border: 1px solid var(--orbit-border-light);
    border-radius: var(--radius-2xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-nova {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.cta-nova img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(59, 130, 246, 0.15));
    animation: ctaNovaFloat 5s ease-in-out infinite;
}

@keyframes ctaNovaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 15px;
    color: var(--orbit-text-secondary);
    max-width: 400px;
}

.cta-action {
    flex-shrink: 0;
}

/* ============================================
   Footer (matches root index.html)
   ============================================ */

.footer {
    margin-top: 60px;
    border-top: 1px solid var(--orbit-border);
    padding: 48px 0 24px;
    background: var(--orbit-surface);
}

.footer-content {
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-logo .logo-orbit {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-orbit::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--orbit-border);
    border-radius: 50%;
}

.footer-logo .logo-core {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.15);
}

.footer-name {
    font-size: 15px;
    font-weight: 600;
}

.footer-descriptor {
    font-size: 14px;
    color: var(--orbit-text-secondary);
    line-height: 1.6;
    max-width: 260px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--orbit-border-light);
}

.footer-copyright {
    font-size: 13px;
    color: var(--orbit-text-tertiary);
}

.footer-heart {
    font-size: 13px;
    color: var(--orbit-text-tertiary);
}

.heart {
    color: #ef4444;
}

.robot {
    display: inline-block;
}

.footer-logo-svg {
    display: none;
}

/* ============================================
   Responsive - Tablet
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-compat {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .mockup-card {
        max-width: 480px;
    }

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

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

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

    .mesh-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mesh-visual img {
        max-width: 220px;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-subtitle {
        max-width: 100%;
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .mockup-card {
        max-width: 100%;
    }

    .mockup-sidebar {
        width: 80px;
    }

    .mockup-sidebar-item {
        font-size: 10px;
    }

    .mockup-nova {
        width: 70px;
        height: 70px;
        top: -10px;
        right: 0;
    }

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

    .philosophy-container {
        padding: 32px 24px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mesh-card {
        padding: 32px 24px;
    }

    .cta-card {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }

    .cta-nova {
        width: 80px;
        height: 80px;
    }

    .cta-subtitle {
        max-width: 100%;
    }

    .cta-action {
        width: 100%;
    }

    .cta-action .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .mockup-card,
    .mockup-nova img,
    .cta-nova img,
    .nova-orbit,
    .nova-particle,
    .ambient-dot,
    .hero-gradient,
    .status-dot {
        animation: none;
    }
}
