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

:root {
    --primary: #4edea3;
    --primary-glow: rgba(78, 222, 163, 0.15);
    --primary-alt: #38bdf8;
    --accent-gold: #f59e0b;
    --accent-rose: #f43f5e;
    --accent-violet: #a78bfa;
    --bg-dark: #080c14;
    --bg-surface: #0d1117;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(22, 32, 52, 0.85);
    --text-main: #e2e8f0;
    --text-muted: #64748b;
    --text-bright: #f8fafc;
    --border: rgba(78, 222, 163, 0.08);
    --border-hover: rgba(78, 222, 163, 0.25);
    --container-max: 1280px;
    --section-padding: 120px 24px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-bright);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.glass:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 50%, var(--accent-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tag-primary {
    background: rgba(78, 222, 163, 0.1);
    color: var(--primary);
    border: 1px solid rgba(78, 222, 163, 0.2);
}

.tag-gold {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag-rose {
    background: rgba(244, 63, 94, 0.1);
    color: var(--accent-rose);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.tag-violet {
    background: rgba(167, 139, 250, 0.1);
    color: var(--accent-violet);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.tag-blue {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary-alt);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #38d9a9 100%);
    color: #0a0e14;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(78, 222, 163, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(78, 222, 163, 0.4);
}

.btn-outline {
    border: 1px solid rgba(78, 222, 163, 0.3);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(78, 222, 163, 0.08);
    border-color: var(--primary);
}

.btn-ghost {
    color: var(--text-muted);
    background: transparent;
    padding: 10px 20px;
}

.btn-ghost:hover {
    color: var(--primary);
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(8, 12, 20, 0.92);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(78, 222, 163, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(78, 222, 163, 0.06);
    border: 1px solid rgba(78, 222, 163, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-screenshot {
    margin-top: 80px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow:
        0 0 0 1px rgba(78, 222, 163, 0.05),
        0 40px 100px -20px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(78, 222, 163, 0.04);
    overflow: hidden;
    position: relative;
}

.hero-screenshot::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(180deg, rgba(78, 222, 163, 0.15) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-screenshot img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    padding: 60px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================
   SECTIONS (Generic)
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-header .tag {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

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

/* ============================================
   AGENT ARCHITECTURE SECTION
   ============================================ */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.agent-card {
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agent-card:hover::before {
    opacity: 1;
}

.agent-card:hover {
    transform: translateY(-4px);
}

.agent-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.agent-icon.green { background: rgba(78, 222, 163, 0.1); border: 1px solid rgba(78, 222, 163, 0.2); }
.agent-icon.blue { background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.2); }
.agent-icon.violet { background: rgba(167, 139, 250, 0.1); border: 1px solid rgba(167, 139, 250, 0.2); }
.agent-icon.gold { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); }
.agent-icon.rose { background: rgba(244, 63, 94, 0.1); border: 1px solid rgba(244, 63, 94, 0.2); }
.agent-icon.cyan { background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.2); }

.agent-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.agent-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.agent-card .tool-list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tool-chip {
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(78, 222, 163, 0.06);
    border: 1px solid rgba(78, 222, 163, 0.1);
    color: var(--text-muted);
}

/* ============================================
   SHOWCASE (Side-by-Side)
   ============================================ */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto 100px;
}

.showcase.reversed {
    grid-template-columns: 1.3fr 1fr;
}

.showcase.reversed .showcase-content {
    order: 2;
}

.showcase.reversed .showcase-image {
    order: 1;
}

.showcase-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.showcase-list {
    list-style: none;
    margin-bottom: 32px;
}

.showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.showcase-list li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.showcase-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.showcase-image:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

/* ============================================
   TOOLS MATRIX
   ============================================ */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.tool-card {
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
}

.tool-card .tool-emoji {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.tool-card h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.tool-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   ARCHITECTURE DIAGRAM
   ============================================ */
.architecture {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.arch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: var(--container-max);
    margin: 0 auto;
}

.arch-node {
    padding: 20px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 160px;
}

.arch-node h4 {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.arch-node p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.arch-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

/* ============================================
   PORTFOLIO FEATURES SECTION
   ============================================ */
.portfolio-features {
    max-width: var(--container-max);
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feature-card {
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-4px);
}

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

.feature-icon.blue { background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.2); color: var(--primary-alt); }
.feature-icon.green { background: rgba(78, 222, 163, 0.1); border: 1px solid rgba(78, 222, 163, 0.2); color: var(--primary); }
.feature-icon.violet { background: rgba(167, 139, 250, 0.1); border: 1px solid rgba(167, 139, 250, 0.2); color: var(--accent-violet); }
.feature-icon.gold { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); color: var(--accent-gold); }
.feature-icon.rose { background: rgba(244, 63, 94, 0.1); border: 1px solid rgba(244, 63, 94, 0.2); color: var(--accent-rose); }
.feature-icon.cyan { background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.2); color: #22d3ee; }

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

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

/* ============================================
   SECURITY SECTION
   ============================================ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.security-card {
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-4px);
}

.security-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.security-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.security-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ONBOARDING SECTION
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.step-card {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(78, 222, 163, 0.1);
    position: absolute;
    top: 16px;
    left: 24px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    margin-top: 16px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-card code {
    display: block;
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.3);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--primary);
    border: 1px solid var(--border);
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    display: none;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(78, 222, 163, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 80px 24px 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-surface);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.disclaimer {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--accent-rose);
    font-weight: 500;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(78, 222, 163, 0.1); }
    50% { box-shadow: 0 0 40px rgba(78, 222, 163, 0.2); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .agents-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase { grid-template-columns: 1fr; gap: 40px; }
    .showcase.reversed .showcase-content { order: 1; }
    .showcase.reversed .showcase-image { order: 2; }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px 16px; }
    .hero h1 { font-size: 2.5rem; }
    .agents-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .tools-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .showcase { gap: 32px; }
    .hero-btns { flex-direction: column; align-items: center; }
}

/* ============================================
   FEATURE CARD COMPACT
   ============================================ */
.feature-card-compact {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.feature-card-compact:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(78, 222, 163, 0.2);
    transform: translateX(8px);
}

.feature-card-compact i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-card-compact h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-card-compact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   GRID BACKGROUND
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(78, 222, 163, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 222, 163, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}
