:root {
    --bg-dark: #0a0f1c;
    --bg-card: rgba(16, 24, 40, 0.7);
    --bg-card-hover: rgba(22, 33, 56, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --accent-cyan: #00e5ff;
    --accent-blue: #3b82f6;
    --accent-gold: #fbbf24;
    
    --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    --gradient-glow: linear-gradient(135deg, rgba(0,229,255,0.3), rgba(59,130,246,0.3));
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

.text-cyan { color: var(--accent-cyan); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }

.highlight-gradient {
    background: linear-gradient(135deg, #00e5ff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-5 { margin-top: 3rem; }
.text-sm { font-size: 0.875rem; }
.p-0 { padding: 0 !important; }
.overflow-hidden { overflow: hidden; }

.grid {
    display: grid;
    gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
}

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

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.orb-1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: rgba(0, 229, 255, 0.15);
}

.orb-2 {
    bottom: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.15);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.hero-text .subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-badge {
    position: absolute;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.badge-top-right {
    top: 20px;
    right: 20px;
    color: var(--accent-cyan);
}

.badge-bottom-left {
    bottom: 30px;
    left: 20px;
}

.score-badge .score {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

.bg-alternate {
    background: rgba(16, 24, 40, 0.3);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Pain Points */
.pain-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pain-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.pain-card:hover .pain-icon {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
}

.pain-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pain-title {
    font-size: 1.25rem;
}

.pain-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.solution-content {
    background: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.solution-badge {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.solution-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Feature Zig-zag */
.feature-zigzag {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -1rem;
}

.feature-benefit {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    background: rgba(0, 229, 255, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent-cyan);
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.1);
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-text {
    color: var(--text-muted);
}

/* Tabs */
.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: rgba(255,255,255,0.1);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.tab-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
}

.tab-text {
    flex: 1;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-list i {
    color: var(--accent-cyan);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.tab-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.circle-graphic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-graphic::before, .circle-graphic::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.1);
    animation: rotate 20s linear infinite;
}

.circle-graphic::after {
    inset: -40px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent rgba(0, 229, 255, 0.2) transparent rgba(59, 130, 246, 0.2);
    animation-direction: reverse;
    animation-duration: 15s;
}

.agent-graphic { background: radial-gradient(circle, rgba(0,229,255,0.1) 0%, transparent 70%); }
.leader-graphic { background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%); }
.enterprise-graphic { background: radial-gradient(circle, rgba(251,191,36,0.1) 0%, transparent 70%); }

.inner-circle {
    width: 120px;
    height: 120px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    z-index: 10;
}

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

/* Bottom CTA */
.bottom-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.875rem;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text .subtitle { margin: 0 auto 2rem; }
    .cta-group { justify-content: center; }
    .floating-badge { display: none; }
    .feature-row, .feature-row.reverse { flex-direction: column; gap: 2rem; }
    .tab-grid { flex-direction: column; }
    .tab-visual { margin-top: 2rem; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .tabs-nav { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
}
