/* MIZ OKI 3.0™ — Premium Stylesheet */

:root {
    --bg-primary: #030712;
    --bg-secondary: #0a0f1a;
    --bg-tertiary: #111827;
    --bg-card: rgba(17, 24, 39, 0.8);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-primary: #2dd4bf;
    --accent-secondary: #0891b2;
    --accent-tertiary: #14b8a6;
    --adc-sense: #fbbf24;
    --adc-reason: #a78bfa;
    --adc-decide: #60a5fa;
    --adc-act: #34d399;
    --adc-learn: #2dd4bf;
    --danger: #ef4444;
    --success: #10b981;
    --border: rgba(255, 255, 255, 0.08);
    --border-active: rgba(45, 212, 191, 0.5);
    --gradient-primary: linear-gradient(135deg, #2dd4bf 0%, #0891b2 50%, #6366f1 100%);
    --gradient-glow: 0 0 40px rgba(45, 212, 191, 0.4);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-display); font-size: 16px; line-height: 1.6; color: var(--text-primary); background: var(--bg-primary); overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 4px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p { color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }
strong { color: var(--text-primary); font-weight: 600; }
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; border: none; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition-base); }
.btn-primary { background: var(--accent-primary); color: var(--bg-primary); }
.btn-primary:hover { background: var(--accent-tertiary); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--text-secondary); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-glow { box-shadow: var(--gradient-glow); }
.btn-glow:hover { box-shadow: 0 0 60px rgba(45, 212, 191, 0.5); }
.btn svg { transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(4px); }

/* Announcement Bar */
.announcement-bar { background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary), var(--accent-secondary)); background-size: 200% 100%; animation: shimmer 8s ease infinite; padding: 0.5rem 1rem; text-align: center; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.announcement-bar .container { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.announcement-bar span { font-size: 0.8125rem; font-weight: 500; color: var(--bg-primary); }
.announcement-badge { background: var(--bg-primary); color: var(--accent-primary); padding: 0.125rem 0.5rem; border-radius: var(--radius-full); font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em; }
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Navigation */
.nav { position: fixed; top: 2.25rem; left: 0; right: 0; z-index: 900; padding: 1rem 0; transition: all var(--transition-base); }
.nav.scrolled { top: 0; background: rgba(3, 7, 18, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark { width: 2.5rem; height: 2.5rem; background: var(--gradient-primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.875rem; color: var(--bg-primary); }
.logo-text { font-weight: 700; font-size: 1.125rem; display: none; }
@media (min-width: 640px) { .logo-text { display: block; } }
.logo-version { font-size: 0.625rem; color: var(--accent-primary); vertical-align: super; margin-left: 2px; }
.nav-links { display: none; list-style: none; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition-fast); }
.nav-links a:hover { color: var(--accent-primary); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: all var(--transition-fast); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-container { grid-template-columns: 1.2fr 1fr; } }
.hero-content { max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(45, 212, 191, 0.1); border: 1px solid rgba(45, 212, 191, 0.3); border-radius: var(--radius-full); margin-bottom: 2rem; }
.eyebrow-icon { font-size: 1rem; }
.hero-eyebrow span:last-child { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-primary); }
.hero-title { margin-bottom: 1.5rem; line-height: 1.05; }
.hero-subtitle { font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.hero-stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent-primary); }
@media (min-width: 768px) { .stat-number { font-size: 2.5rem; } }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); display: none; }
@media (min-width: 640px) { .stat-divider { display: block; } }
.hero-visual { display: none; }
@media (min-width: 1024px) { .hero-visual { display: flex; justify-content: center; } }
.srdal-diagram { width: 100%; max-width: 450px; filter: drop-shadow(0 0 60px rgba(45, 212, 191, 0.2)); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero-scroll span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.scroll-indicator { width: 24px; height: 40px; border: 2px solid var(--border); border-radius: var(--radius-full); position: relative; }
.scroll-indicator::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--accent-primary); border-radius: var(--radius-full); animation: scroll-bounce 2s ease-in-out infinite; }
@keyframes scroll-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; } }

/* Sections */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-eyebrow { display: inline-block; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 1rem; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* Problem Stats */
.problem-stats { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .problem-stats { grid-template-columns: repeat(3, 1fr); } }
.problem-stat { background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.2); border-radius: var(--radius-xl); padding: 2rem; text-align: center; }
.problem-number { font-size: 3.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.problem-stat p { font-size: 0.9375rem; }
.comparison-visual { max-width: 900px; margin: 0 auto; }
.comparison-img { width: 100%; border-radius: var(--radius-xl); border: 1px solid var(--border); }

/* ADC Grid */
.adc-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .adc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .adc-grid { grid-template-columns: repeat(5, 1fr); } }
.adc-card { background: var(--bg-card); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; text-align: center; transition: all var(--transition-base); }
.adc-card:hover { transform: translateY(-8px); }
.adc-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; margin: 0 auto 1rem; }
.adc-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.adc-tagline { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.adc-desc { font-size: 0.8125rem; margin-bottom: 1rem; }
.adc-formula { font-family: var(--font-mono); font-size: 0.625rem; color: var(--text-muted); background: rgba(0, 0, 0, 0.3); padding: 0.5rem; border-radius: var(--radius-sm); }

/* ADC Colors */
.adc-sense { border-color: rgba(251, 191, 36, 0.3); background: linear-gradient(180deg, rgba(251, 191, 36, 0.08) 0%, transparent 100%); }
.adc-sense:hover { border-color: var(--adc-sense); box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15); }
.adc-sense .adc-icon { background: var(--adc-sense); color: var(--bg-primary); }
.adc-sense h3 { color: var(--adc-sense); }
.adc-reason { border-color: rgba(167, 139, 250, 0.3); background: linear-gradient(180deg, rgba(167, 139, 250, 0.08) 0%, transparent 100%); }
.adc-reason:hover { border-color: var(--adc-reason); box-shadow: 0 20px 40px rgba(167, 139, 250, 0.15); }
.adc-reason .adc-icon { background: var(--adc-reason); color: var(--bg-primary); }
.adc-reason h3 { color: var(--adc-reason); }
.adc-decide { border-color: rgba(96, 165, 250, 0.3); background: linear-gradient(180deg, rgba(96, 165, 250, 0.08) 0%, transparent 100%); }
.adc-decide:hover { border-color: var(--adc-decide); box-shadow: 0 20px 40px rgba(96, 165, 250, 0.15); }
.adc-decide .adc-icon { background: var(--adc-decide); color: var(--bg-primary); }
.adc-decide h3 { color: var(--adc-decide); }
.adc-act { border-color: rgba(52, 211, 153, 0.3); background: linear-gradient(180deg, rgba(52, 211, 153, 0.08) 0%, transparent 100%); }
.adc-act:hover { border-color: var(--adc-act); box-shadow: 0 20px 40px rgba(52, 211, 153, 0.15); }
.adc-act .adc-icon { background: var(--adc-act); color: var(--bg-primary); }
.adc-act h3 { color: var(--adc-act); }
.adc-learn { border-color: rgba(45, 212, 191, 0.3); background: linear-gradient(180deg, rgba(45, 212, 191, 0.08) 0%, transparent 100%); }
.adc-learn:hover { border-color: var(--adc-learn); box-shadow: 0 20px 40px rgba(45, 212, 191, 0.15); }
.adc-learn .adc-icon { background: var(--adc-learn); color: var(--bg-primary); }
.adc-learn h3 { color: var(--adc-learn); }

.solution-cta { text-align: center; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.solution-note { font-size: 1.125rem; color: var(--text-secondary); }

/* Technology */
.tech-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
.tech-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.tech-featured { grid-column: 1 / -1; border-color: var(--border-active); position: relative; overflow: hidden; }
.tech-badge { position: absolute; top: 1rem; right: 1rem; font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-primary); background: rgba(45, 212, 191, 0.1); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); }
.tech-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.tech-card h4 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--accent-primary); }
.tech-card p { font-size: 0.9375rem; margin-bottom: 1rem; }
.tech-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.tech-stat { text-align: center; }
.tech-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--accent-primary); }
.tech-stat-label { font-size: 0.75rem; color: var(--text-muted); }
.tech-example { background: rgba(0, 0, 0, 0.3); border-radius: var(--radius-md); padding: 1rem; }
.example-bad, .example-good { margin-bottom: 0.75rem; }
.example-bad:last-child, .example-good:last-child { margin-bottom: 0; }
.example-label { display: block; font-family: var(--font-mono); font-size: 0.6875rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.example-bad span:nth-child(2), .example-good span:nth-child(2) { display: block; font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.example-result { font-size: 0.8125rem; font-weight: 600; }
.kg-visual { max-width: 800px; margin: 0 auto; }
.kg-img { width: 100%; border-radius: var(--radius-xl); border: 1px solid var(--border); }

/* Results */
.results-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }
.result-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; transition: all var(--transition-base); }
.result-card:hover { border-color: var(--border-active); box-shadow: 0 20px 40px rgba(45, 212, 191, 0.1); }
.result-industry { font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 0.5rem; }
.result-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.result-card > p { font-size: 0.875rem; margin-bottom: 1.5rem; }
.result-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1rem; }
.result-metric { text-align: center; background: rgba(45, 212, 191, 0.08); border-radius: var(--radius-md); padding: 0.75rem; }
.metric-value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--accent-primary); display: block; }
.metric-label { font-size: 0.6875rem; color: var(--text-muted); }
.result-source { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--text-muted); padding-top: 1rem; border-top: 1px solid var(--border); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; position: relative; }
.pricing-featured { border-color: var(--accent-primary); background: linear-gradient(180deg, rgba(45, 212, 191, 0.08) 0%, transparent 50%); }
.pricing-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--accent-primary); color: var(--bg-primary); font-size: 0.6875rem; font-weight: 700; padding: 0.25rem 1rem; border-radius: var(--radius-full); }
.pricing-tier { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.875rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { font-size: 0.875rem; color: var(--text-secondary); padding: 0.5rem 0; display: flex; align-items: flex-start; gap: 0.5rem; }
.pricing-features li::before { content: '✓'; color: var(--accent-primary); font-weight: 700; }
.pricing-roi { background: var(--bg-tertiary); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; text-align: center; }
.roi-content h3 { margin-bottom: 0.5rem; }
.roi-content p { margin-bottom: 1rem; }

/* Demo */
.demo-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .demo-grid { grid-template-columns: 1fr 1fr; } }
.demo-content .section-title { text-align: left; }
.demo-desc { font-size: 1.125rem; margin-bottom: 2rem; }
.demo-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.demo-benefit { display: flex; gap: 1rem; }
.benefit-icon { font-size: 1.5rem; flex-shrink: 0; }
.demo-benefit strong { display: block; margin-bottom: 0.25rem; }
.demo-benefit p { font-size: 0.875rem; margin: 0; }
.demo-form-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.demo-form h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.375rem; }
.form-group input { width: 100%; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0.875rem 1rem; font-family: inherit; font-size: 1rem; color: var(--text-primary); transition: border-color var(--transition-fast); }
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus { outline: none; border-color: var(--accent-primary); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; }
.form-success { text-align: center; padding: 3rem 2rem; }
.success-icon { width: 4rem; height: 4rem; background: rgba(45, 212, 191, 0.2); color: var(--accent-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }

/* Footer */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer-brand p { font-size: 0.875rem; margin: 1rem 0; }
.footer-patent { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--text-muted); line-height: 1.5; }
.footer-links h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; color: var(--text-primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent-primary); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
