/* AgentLayer - Gold & Emerald Design System */
/* Color Palette: Deep black, Gold, Emerald Green */

:root {
    /* Primary Colors - Dark Base */
    --primary-900: #0a0f0a;
    --primary-800: #121a12;
    --primary-700: #1a261a;
    --primary-600: #243324;
    --primary-500: #3d5a3d;
    --primary-400: #5a7d5a;
    --primary-300: #8faa8f;
    --primary-200: #b8ccb8;
    --primary-100: #e0ebe0;
    --primary-50: #f5f9f5;
    
    /* Accent Colors - Gold & Emerald */
    --accent-gold: #d4a21d;
    --accent-gold-light: #f0c54d;
    --accent-gold-dark: #a67c00;
    --accent-emerald: #10b981;
    --accent-emerald-light: #34d399;
    --accent-emerald-dark: #059669;
    --accent-success: #22c55e;
    --accent-error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4a21d 0%, #10b981 100%);
    --gradient-gold: linear-gradient(135deg, #d4a21d 0%, #f0c54d 100%);
    --gradient-emerald: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-dark: linear-gradient(180deg, #0a0f0a 0%, #121a12 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(212, 162, 29, 0.12) 0%, transparent 70%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-6xl: 10rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow-gold: 0 0 40px rgba(212, 162, 29, 0.25);
    --shadow-glow-emerald: 0 0 40px rgba(16, 185, 129, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-900);
    color: var(--primary-200);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    color: var(--accent-gold);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0a0f0a;
    box-shadow: var(--shadow-md), 0 0 20px rgba(212, 162, 29, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-gold);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 162, 29, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    font-size: 1.5rem;
    color: #0a0f0a;
    background: var(--gradient-gold);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-weight: 700;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-badge {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    background: var(--accent-emerald);
    color: white;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-6xl) 0 var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 162, 29, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 162, 29, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-gold);
    top: -200px;
    right: -100px;
    opacity: 0.08;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-emerald);
    bottom: -200px;
    left: -100px;
    opacity: 0.06;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: rgba(212, 162, 29, 0.1);
    border: 1px solid rgba(212, 162, 29, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-xs);
}

/* Code Preview */
.code-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 162, 29, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow-gold);
}

.code-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: var(--accent-gold); }
.code-dot.green { background: var(--accent-emerald); }

.code-title {
    margin-left: var(--space-md);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
}

.code-body {
    padding: var(--space-xl);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.7;
}

.code-line {
    display: flex;
}

.line-number {
    color: rgba(255, 255, 255, 0.2);
    width: 30px;
    user-select: none;
}

.code-comment { color: var(--primary-500); }
.code-key { color: var(--accent-gold); }
.code-string { color: var(--accent-emerald); }
.code-value { color: var(--accent-gold-light); }

/* Section Styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0a0f0a;
    background: var(--gradient-gold);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.125rem;
}

/* Architecture Section - Radial Hub Design */
.architecture-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-dark);
}

.radial-architecture {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.arch-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.column-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(212, 162, 29, 0.1);
    border-radius: var(--radius-full);
    width: fit-content;
}

.agents-column {
    align-items: flex-end;
}

.agents-column .column-label {
    margin-left: auto;
}

.aws-column {
    align-items: flex-start;
}

.agent-stack, .aws-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.agent-item, .aws-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.agent-item:hover, .aws-item:hover {
    background: rgba(212, 162, 29, 0.08);
    border-color: rgba(212, 162, 29, 0.2);
}

.agent-item {
    flex-direction: row-reverse;
}

.agent-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-emerald);
}

.agent-name, .aws-name {
    font-weight: 500;
    color: #ffffff;
    font-size: 0.9375rem;
}

.agent-line, .aws-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.agent-item .agent-line {
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.aws-badge {
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-weight: 600;
}

/* Hub Center */
.arch-hub {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-outer-ring {
    position: relative;
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(212, 162, 29, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-slow 60s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hub-inner-ring {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 162, 29, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 162, 29, 0.05);
    animation: rotate-slow 60s linear infinite reverse;
}

.hub-core {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(212, 162, 29, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(212, 162, 29, 0.3);
    animation: rotate-slow 60s linear infinite;
}

.hub-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-xs);
}

.hub-text {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9375rem;
}

.hub-subtext {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: rotate-slow 60s linear infinite reverse;
}

.orbit-item:nth-child(2) { top: -20px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(3) { right: -20px; top: 50%; transform: translateY(-50%); }
.orbit-item:nth-child(4) { bottom: -20px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(5) { left: -20px; top: 50%; transform: translateY(-50%); }

.orbit-node {
    width: 44px;
    height: 44px;
    background: rgba(10, 15, 10, 0.9);
    border: 1px solid rgba(212, 162, 29, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.orbit-item span:last-child {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Feature Bar */
.feature-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 162, 29, 0.1);
    border-radius: var(--radius-2xl);
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.bar-icon {
    font-size: 1.5rem;
}

.feature-bar-item strong {
    display: block;
    color: var(--accent-gold);
    font-size: 1.125rem;
}

.feature-bar-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.feature-bar-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Features Section */
.features-section {
    padding: var(--space-4xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 162, 29, 0.2);
    transform: translateY(-4px);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 162, 29, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(212, 162, 29, 0.15);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 162, 29, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.feature-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.feature-list {
    list-style: none;
    margin-top: var(--space-lg);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.feature-list li::before {
    content: '◆';
    color: var(--accent-gold);
    font-size: 0.5rem;
}

/* Pricing Section - Comparison Table Design */
.pricing-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-dark);
}

.pricing-comparison {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 162, 29, 0.1);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-feature-col {
    padding: var(--space-lg) var(--space-xl);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-plan-col {
    padding: var(--space-xl);
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table-header .pricing-plan-col {
    padding: var(--space-2xl) var(--space-xl);
}

.pricing-plan-col.featured {
    background: rgba(212, 162, 29, 0.08);
    position: relative;
}

.featured-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: #0a0f0a;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.pricing-category {
    background: rgba(212, 162, 29, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-title {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-row {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row .pricing-feature-col {
    display: flex;
    align-items: center;
}

.pricing-row .pricing-plan-col {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.check-yes {
    color: var(--accent-emerald);
    font-weight: 700;
    font-size: 1.25rem;
}

.check-no {
    color: rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.cta-section {
    padding: var(--space-6xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 162, 29, 0.03) 50%, transparent 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 162, 29, 0.2), transparent);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Footer */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(212, 162, 29, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    margin: var(--space-lg) 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: #0a0f0a;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* Page Hero (for sub pages) */
.page-hero {
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero .container {
    text-align: center;
}

.page-hero h1 {
    margin-bottom: var(--space-lg);
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .radial-architecture {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .arch-column {
        align-items: center !important;
    }
    
    .agents-column .column-label {
        margin-left: 0;
    }
    
    .agent-item {
        flex-direction: row;
    }
    
    .agent-item .agent-line {
        background: linear-gradient(90deg, transparent, var(--accent-gold));
    }
    
    .hub-outer-ring {
        width: 280px;
        height: 280px;
    }
    
    .hub-inner-ring {
        width: 180px;
        height: 180px;
    }
    
    .hub-core {
        width: 120px;
        height: 120px;
    }
    
    .feature-bar {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .feature-bar-divider {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .pricing-comparison {
        overflow-x: auto;
    }
    
    .pricing-table-header,
    .pricing-row {
        min-width: 700px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .radial-architecture {
        gap: var(--space-2xl);
    }
    
    .hub-outer-ring {
        width: 240px;
        height: 240px;
    }
    
    .hub-inner-ring {
        width: 150px;
        height: 150px;
    }
    
    .hub-core {
        width: 100px;
        height: 100px;
    }
    
    .orbit-node {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}
