/* AlertMiNotify - Professional DevOps Automation Platform UI */
/* Dark Theme · Glass Morphism · Animated Gradients · Pipeline Aesthetic */

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

:root {
    /* Dark Theme Core */
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-tertiary: #1a1f35;
    --bg-elevated: #1e2642;
    --bg-surface: rgba(17, 24, 39, 0.8);
    --bg-glass: rgba(17, 24, 39, 0.6);
    --bg-glass-light: rgba(30, 38, 66, 0.5);
    --bg-hover: rgba(59, 130, 246, 0.08);

    /* Borders */
    --border-default: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.03);
    --border-accent: rgba(59, 130, 246, 0.4);
    --border-glow: rgba(99, 102, 241, 0.3);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-inverse: #0a0e1a;
    --text-accent: #60a5fa;
    --text-bright: #ffffff;

    /* Accent Colors */
    --accent-primary: #3b82f6;
    --accent-primary-hover: #60a5fa;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #06b6d4;
    --accent-warm: #f59e0b;

    /* Status */
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.12);
    --success-border: rgba(16, 185, 129, 0.25);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.12);
    --warning-border: rgba(245, 158, 11, 0.25);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.12);
    --error-border: rgba(239, 68, 68, 0.25);
    --info: #3b82f6;
    --info-bg: rgba(59, 130, 246, 0.12);
    --info-border: rgba(59, 130, 246, 0.25);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(180deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
    --gradient-mesh: radial-gradient(at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                     radial-gradient(at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
                     radial-gradient(at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    --gradient-card: linear-gradient(135deg, rgba(30, 38, 66, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
    --gradient-border: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5), rgba(6, 182, 212, 0.5));
    --gradient-glow: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    --gradient-devops: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dev: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cloud: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.15);
    --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.15);
    --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.15);

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    background: #0a0e1a;
}

body {
    font-family: var(--font-sans);
    background: transparent;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--text-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary-hover);
}

::selection {
    background: rgba(59, 130, 246, 0.3);
    color: var(--text-bright);
}

/* ============================================
   NAVBAR
   ============================================ */
.argo-navbar {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-default);
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-6);
    transition: all var(--transition-normal);
}

.argo-nav-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.argo-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.argo-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transition: all var(--transition-normal);
}

.argo-logo:hover .argo-logo-icon {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

.argo-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.argo-nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.argo-nav-link {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    position: relative;
}

.argo-nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

.argo-nav-link.active {
    color: var(--accent-primary);
    background: var(--info-bg);
}

.argo-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
}

.argo-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.argo-mobile-toggle:hover {
    background: var(--bg-elevated);
    border-color: var(--border-accent);
}

/* Mobile Navigation */
.argo-mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-default);
    padding: var(--space-4);
    z-index: 99;
    flex-direction: column;
    gap: var(--space-1);
}

.argo-mobile-nav.active {
    display: flex;
}

.argo-mobile-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-weight: 500;
    font-size: 0.9375rem;
}

.argo-mobile-link:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.argo-mobile-link i {
    width: 20px;
    text-align: center;
    color: var(--accent-primary);
    font-size: 0.875rem;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.argo-main {
    min-height: calc(100vh - 64px - 60px);
    position: relative;
    z-index: 1;
}

/* Container */
.argo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
}

/* ============================================
   HERO SECTION - DEVOPS STYLE
   ============================================ */
.argo-hero {
    padding: var(--space-20) var(--space-6) var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.argo-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
    z-index: 2;
}

/* ============================================
   GLOBAL DEVOPS ANIMATED BACKGROUND
   ============================================ */
.devops-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.devops-bg-grid {
    position: absolute;
    top: -60px; left: -60px;
    right: -60px; bottom: -60px;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.devops-bg-scan {
    position: absolute;
    top: -100%;
    left: 0; right: 0;
    height: 300%;
    background: linear-gradient(
        180deg,
        transparent 0%, transparent 45%,
        rgba(59, 130, 246, 0.05) 49%,
        rgba(59, 130, 246, 0.1) 50%,
        rgba(59, 130, 246, 0.05) 51%,
        transparent 55%, transparent 100%
    );
    animation: scanMove 8s ease-in-out infinite;
}

@keyframes scanMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(33%); }
}

.devops-bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.devops-bg-orbs .orb:nth-child(1) {
    width: 400px; height: 400px;
    background: rgba(59, 130, 246, 0.15);
    top: 5%; left: -5%;
    animation: orbA 14s ease-in-out infinite alternate;
}

.devops-bg-orbs .orb:nth-child(2) {
    width: 350px; height: 350px;
    background: rgba(139, 92, 246, 0.12);
    top: 50%; right: -5%;
    animation: orbB 16s ease-in-out infinite alternate;
}

.devops-bg-orbs .orb:nth-child(3) {
    width: 300px; height: 300px;
    background: rgba(6, 182, 212, 0.1);
    bottom: 10%; left: 30%;
    animation: orbC 12s ease-in-out infinite alternate;
}

@keyframes orbA {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(80px, 60px) scale(1.2); }
    100% { transform: translate(-40px, 30px) scale(0.9); }
}

@keyframes orbB {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-70px, -50px) scale(1.15); }
    100% { transform: translate(50px, -30px) scale(0.95); }
}

@keyframes orbC {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(50px, -60px) scale(1.25); }
    100% { transform: translate(-50px, 40px) scale(0.85); }
}

.devops-bg-particles i {
    position: absolute;
    font-size: 1.4rem;
}

.devops-bg-particles i:nth-child(1)  { top: 4%;  left: 3%;  font-size: 1.6rem; color: #3b82f6; animation: pFloat1 8s ease-in-out infinite; }
.devops-bg-particles i:nth-child(2)  { top: 12%; left: 90%; font-size: 1.9rem; color: #8b5cf6; animation: pFloat2 10s ease-in-out infinite; animation-delay: -2s; }
.devops-bg-particles i:nth-child(3)  { top: 30%; left: 10%; font-size: 1.4rem; color: #06b6d4; animation: pFloat3 9s ease-in-out infinite; animation-delay: -4s; }
.devops-bg-particles i:nth-child(4)  { top: 45%; left: 82%; font-size: 1.7rem; color: #3b82f6; animation: pFloat4 11s ease-in-out infinite; animation-delay: -1s; }
.devops-bg-particles i:nth-child(5)  { top: 22%; left: 45%; font-size: 1.3rem; color: #8b5cf6; animation: pFloat5 7s ease-in-out infinite; animation-delay: -6s; }
.devops-bg-particles i:nth-child(6)  { top: 8%;  left: 65%; font-size: 1.8rem; color: #06b6d4; animation: pFloat1 12s ease-in-out infinite; animation-delay: -3s; }
.devops-bg-particles i:nth-child(7)  { top: 55%; left: 25%; font-size: 1.5rem; color: #10b981; animation: pFloat2 8s ease-in-out infinite; animation-delay: -5s; }
.devops-bg-particles i:nth-child(8)  { top: 38%; left: 95%; font-size: 1.2rem; color: #f59e0b; animation: pFloat3 10s ease-in-out infinite; animation-delay: -7s; }
.devops-bg-particles i:nth-child(9)  { top: 70%; left: 6%;  font-size: 1.6rem; color: #8b5cf6; animation: pFloat4 9s ease-in-out infinite; animation-delay: -3s; }
.devops-bg-particles i:nth-child(10) { top: 18%; left: 20%; font-size: 1.4rem; color: #10b981; animation: pFloat5 11s ease-in-out infinite; animation-delay: -8s; }
.devops-bg-particles i:nth-child(11) { top: 62%; left: 55%; font-size: 1.5rem; color: #3b82f6; animation: pFloat1 9s ease-in-out infinite; animation-delay: -2s; }
.devops-bg-particles i:nth-child(12) { top: 80%; left: 75%; font-size: 1.7rem; color: #06b6d4; animation: pFloat2 13s ease-in-out infinite; animation-delay: -6s; }
.devops-bg-particles i:nth-child(13) { top: 85%; left: 40%; font-size: 1.3rem; color: #f59e0b; animation: pFloat3 8s ease-in-out infinite; animation-delay: -1s; }
.devops-bg-particles i:nth-child(14) { top: 75%; left: 15%; font-size: 1.8rem; color: #10b981; animation: pFloat4 10s ease-in-out infinite; animation-delay: -4s; }
.devops-bg-particles i:nth-child(15) { top: 92%; left: 88%; font-size: 1.4rem; color: #8b5cf6; animation: pFloat5 12s ease-in-out infinite; animation-delay: -9s; }

@keyframes pFloat1 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.3; }
    25%  { transform: translateY(-30px) translateX(20px) scale(1.15); opacity: 0.5; }
    50%  { transform: translateY(-15px) translateX(-15px) scale(1); opacity: 0.35; }
    75%  { transform: translateY(20px) translateX(25px) scale(1.1); opacity: 0.45; }
}

@keyframes pFloat2 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.25; }
    33%  { transform: translateY(25px) translateX(-30px) rotate(120deg); opacity: 0.5; }
    66%  { transform: translateY(-20px) translateX(15px) rotate(240deg); opacity: 0.3; }
}

@keyframes pFloat3 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.3; }
    50%  { transform: translateY(-40px) translateX(-25px) scale(1.2); opacity: 0.5; }
}

@keyframes pFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.25; }
    20%  { transform: translate(15px, -25px) rotate(72deg); opacity: 0.45; }
    40%  { transform: translate(-20px, -10px) rotate(144deg); opacity: 0.35; }
    60%  { transform: translate(10px, 20px) rotate(216deg); opacity: 0.5; }
    80%  { transform: translate(-15px, 10px) rotate(288deg); opacity: 0.3; }
}

@keyframes pFloat5 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    25%  { transform: translateY(-20px) scale(1.3); opacity: 0.55; }
    50%  { transform: translateY(10px) scale(0.9); opacity: 0.25; }
    75%  { transform: translateY(-35px) scale(1.15); opacity: 0.45; }
}

.argo-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.argo-hero-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-8);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3), 0 0 80px rgba(59, 130, 246, 0.1);
    animation: heroFloat 4s ease-in-out infinite;
    position: relative;
}

.argo-hero-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-xl);
    background: var(--gradient-glow);
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    animation: glowPulse 3s ease-in-out infinite;
}

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

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.argo-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-5);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-bright);
}

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

.argo-hero-text p {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: 1.8;
}

.argo-hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.argo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.argo-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.argo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.argo-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.argo-btn-primary:hover::after {
    animation: shimmer 0.6s ease forwards;
}

@keyframes shimmer {
    0% { left: -50%; opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

.argo-btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}

.argo-btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: var(--border-accent);
    color: var(--text-primary);
}

.argo-btn-success {
    background: var(--gradient-success);
    color: white;
}

.argo-btn-success:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: white;
}

.argo-btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.argo-btn-ghost:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    border-color: var(--border-accent);
}

.argo-btn-lg {
    padding: 14px 28px;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
}

.argo-btn i {
    font-size: 0.85em;
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.glass-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-4px);
}

/* Feature Cards */
.argo-card, .feature-card, .argo-app-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.argo-card::before, .feature-card::before, .argo-app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    z-index: 1;
}

.argo-card:hover, .feature-card:hover, .argo-app-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-4px);
}

.argo-card-header {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-default);
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.argo-card-body {
    padding: var(--space-5);
}

.feature-card {
    padding: var(--space-6);
    height: 100%;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    font-size: 1.125rem;
}

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

.feature-card h3,
.argo-blog-title,
.argo-value-title,
.argo-contact-title,
.argo-team-name,
.argo-info-box-title {
    color: #ffffff;
}

/* Feature Card Icon */
.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
    position: relative;
}

.feature-card-icon.blue { background: var(--info-bg); color: var(--accent-primary); }
.feature-card-icon.purple { background: rgba(139, 92, 246, 0.12); color: var(--accent-secondary); }
.feature-card-icon.cyan { background: rgba(6, 182, 212, 0.12); color: var(--accent-tertiary); }
.feature-card-icon.green { background: var(--success-bg); color: var(--success); }
.feature-card-icon.warm { background: var(--warning-bg); color: var(--accent-warm); }

/* Page Hero Image */
.page-hero-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-8);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   BADGES
   ============================================ */
.argo-badge, .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-family: var(--font-mono);
}

.argo-badge-synced, .status-badge.success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
}

.argo-badge-healthy {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
}

.argo-badge-progressing, .status-badge.warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid var(--warning-border);
}

.argo-badge-degraded, .status-badge.error {
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid var(--error-border);
}

.argo-badge-missing {
    background: rgba(100, 116, 139, 0.12);
    color: var(--text-muted);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

/* ============================================
   SECTIONS
   ============================================ */
.argo-section {
    padding: var(--space-12) 0;
}

.argo-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.argo-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.argo-section-title i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.argo-section-subtitle {
    color: #e2e8f0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: var(--space-3) auto 0;
    text-align: center;
    line-height: 1.8;
}

/* Section with Image */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-default);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.section-image:hover {
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.02);
}

.section-content h2 {
    margin-bottom: var(--space-4);
}

.section-content p {
    margin-bottom: var(--space-6);
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.argo-grid {
    display: grid;
    gap: var(--space-6);
}

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

/* ============================================
   STATS - DEVOPS METRICS STYLE
   ============================================ */
.argo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-5);
}

.argo-stat-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.argo-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.argo-stat-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-3px);
}

.argo-stat-icon {
    width: 56px;
    height: 56px;
    background: var(--info-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.argo-stat-card:hover .argo-stat-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.argo-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1;
    font-family: var(--font-mono);
    letter-spacing: -0.02em;
}

.argo-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ============================================
   INFO BOX
   ============================================ */
.argo-info-box {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-5);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.argo-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.argo-info-box:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-blue);
}

.argo-info-box > i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--info-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.argo-info-box-content {
    flex: 1;
}

.argo-info-box-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.argo-info-box-text {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   DETAIL SECTION - TERMINAL STYLE
   ============================================ */
.argo-detail-section {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    overflow: hidden;
    position: relative;
}

.argo-detail-header {
    padding: var(--space-3) var(--space-5);
    border-bottom: 1px solid var(--border-default);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.argo-detail-header::before {
    content: '';
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    margin-right: 4px;
}

.argo-detail-header i {
    color: var(--accent-primary);
}

.argo-detail-content {
    padding: var(--space-6);
}

/* ============================================
   FORMS
   ============================================ */
.argo-form-group {
    margin-bottom: var(--space-5);
}

.argo-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.argo-form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.argo-form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background: var(--bg-secondary);
}

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

.argo-form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
    border-radius: var(--radius-lg);
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.argo-contact-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.argo-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.argo-contact-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-3px);
}

.argo-contact-icon {
    width: 56px;
    height: 56px;
    background: var(--info-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin: 0 auto var(--space-4);
    transition: all var(--transition-normal);
}

.argo-contact-card:hover .argo-contact-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.argo-contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.argo-contact-text {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: var(--space-1) 0;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.argo-team-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.argo-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.argo-team-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-4px);
}

.argo-team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto var(--space-5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    position: relative;
}

.argo-team-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-glow);
    z-index: -1;
    opacity: 0.4;
    filter: blur(6px);
}

.argo-team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.argo-team-role {
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin: var(--space-2) 0 var(--space-4);
    font-weight: 600;
    font-family: var(--font-mono);
}

.argo-team-bio {
    color: #cbd5e1;
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* ============================================
   VALUE CARDS
   ============================================ */
.argo-value-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.argo-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.argo-value-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-blue);
}

.argo-value-icon {
    width: 56px;
    height: 56px;
    background: var(--info-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin: 0 auto var(--space-4);
    transition: all var(--transition-normal);
}

.argo-value-card:hover .argo-value-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.argo-value-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.argo-value-text {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.argo-blog-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.argo-blog-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-4px);
}

.argo-blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-default);
}

.argo-blog-content {
    padding: var(--space-5);
}

.argo-blog-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.argo-blog-title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.argo-blog-title a:hover {
    color: var(--accent-primary);
}

.argo-blog-excerpt {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.argo-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-default);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.argo-blog-author, .argo-blog-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* ============================================
   FEATURE LIST
   ============================================ */
.argo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.argo-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-default);
    font-size: 0.9375rem;
    color: #e2e8f0;
}

.argo-feature-item:last-child {
    border-bottom: none;
}

.argo-feature-item i {
    color: var(--success);
    font-size: 0.875rem;
    width: 20px;
    text-align: center;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.argo-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    margin-bottom: var(--space-4);
    font-family: var(--font-mono);
}

.argo-breadcrumb a {
    color: var(--text-accent);
}

.argo-breadcrumb span {
    color: var(--text-muted);
}

.argo-breadcrumb-separator {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ============================================
   ALERTS / MESSAGES
   ============================================ */
.argo-messages {
    position: fixed;
    top: 80px;
    right: var(--space-6);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 400px;
}

.argo-alert {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-secondary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: alertSlide 0.4s var(--transition-spring);
    backdrop-filter: blur(20px);
}

.argo-alert-success { border-left: 3px solid var(--success); }
.argo-alert-success i { color: var(--success); }

.argo-alert-error { border-left: 3px solid var(--error); }
.argo-alert-error i { color: var(--error); }

.argo-alert-warning { border-left: 3px solid var(--warning); }
.argo-alert-warning i { color: var(--warning); }

.argo-alert-info { border-left: 3px solid var(--info); }
.argo-alert-info i { color: var(--info); }

.argo-alert span {
    color: var(--text-primary);
    font-size: 0.875rem;
}

.argo-alert-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: var(--space-1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.argo-alert-close:hover {
    color: var(--text-primary);
    background: var(--bg-hover);
}

@keyframes alertSlide {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ============================================
   FOOTER - MINIMAL DEVOPS STYLE
   ============================================ */
.argo-footer {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border-default);
    padding: var(--space-6);
    text-align: center;
    position: relative;
}

.argo-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.argo-footer p {
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin: 0;
    font-family: var(--font-mono);
}

.argo-footer a {
    color: var(--text-accent);
    font-weight: 600;
    font-family: var(--font-sans);
}

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

/* ============================================
   TERMINAL / CODE STYLE ELEMENTS
   ============================================ */
.terminal-box {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-default);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #f59e0b; }
.terminal-dot.green { background: #10b981; }

.terminal-title {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: var(--space-2);
}

.terminal-body {
    padding: var(--space-4);
    line-height: 1.8;
    color: #cbd5e1;
}

.terminal-line {
    display: flex;
    gap: var(--space-2);
}

.terminal-prompt {
    color: var(--success);
    user-select: none;
}

.terminal-cmd {
    color: var(--text-primary);
}

.terminal-output {
    color: #94a3b8;
    padding-left: 18px;
}

.terminal-highlight {
    color: var(--accent-primary);
}

/* ============================================
   PIPELINE VISUALIZATION
   ============================================ */
.pipeline-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: var(--space-8) 0;
    overflow-x: auto;
}

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    min-width: 100px;
}

.pipeline-node {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    transition: all var(--transition-normal);
}

.pipeline-node.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.pipeline-node.success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success-border);
}

.pipeline-node.pending {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    border: 1px solid var(--border-default);
}

.pipeline-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    white-space: nowrap;
}

.pipeline-connector {
    width: 40px;
    height: 2px;
    background: var(--border-default);
    position: relative;
    flex-shrink: 0;
}

.pipeline-connector.active {
    background: var(--gradient-primary);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.pipeline-connector.active::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: pipelinePulse 1.5s ease-in-out infinite;
}

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

/* ============================================
   ANIMATED COUNTERS / METRICS
   ============================================ */
.metric-highlight {
    font-family: var(--font-mono);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   CODE BLOCK
   ============================================ */
.argo-code {
    font-family: var(--font-mono);
    background: var(--bg-tertiary);
    padding: 2px var(--space-3);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--accent-primary);
    border: 1px solid var(--border-default);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-1 { margin-top: var(--space-2) !important; }
.mt-2 { margin-top: var(--space-4) !important; }
.mt-3 { margin-top: var(--space-6) !important; }
.mt-4 { margin-top: var(--space-12) !important; }
.mb-1 { margin-bottom: var(--space-2) !important; }
.mb-2 { margin-bottom: var(--space-4) !important; }
.mb-3 { margin-bottom: var(--space-6) !important; }
.mb-4 { margin-bottom: var(--space-12) !important; }

.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--text-accent) !important; }
.text-center { text-align: center !important; }

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-slide-up { animation: slideUp 0.6s ease forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.argo-stats > * {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}
.argo-stats > *:nth-child(1) { animation-delay: 0.1s; }
.argo-stats > *:nth-child(2) { animation-delay: 0.2s; }
.argo-stats > *:nth-child(3) { animation-delay: 0.3s; }
.argo-stats > *:nth-child(4) { animation-delay: 0.4s; }

/* Staggered grid children */
.argo-grid > * {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.argo-grid > *:nth-child(1) { animation-delay: 0.05s; }
.argo-grid > *:nth-child(2) { animation-delay: 0.1s; }
.argo-grid > *:nth-child(3) { animation-delay: 0.15s; }
.argo-grid > *:nth-child(4) { animation-delay: 0.2s; }
.argo-grid > *:nth-child(5) { animation-delay: 0.25s; }
.argo-grid > *:nth-child(6) { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .argo-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .argo-grid-3 { grid-template-columns: repeat(2, 1fr); }

    .section-with-image {
        grid-template-columns: 1fr;
    }

    .section-image {
        height: 280px;
    }

    .pipeline-flow {
        flex-wrap: wrap;
        gap: var(--space-4);
    }

    .pipeline-connector {
        display: none;
    }
}

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

    .argo-mobile-toggle {
        display: flex;
    }

    .argo-hero {
        padding: var(--space-12) var(--space-4);
    }

    .argo-hero-text h1 {
        font-size: 2.25rem;
    }

    .argo-hero-text p {
        font-size: 1rem;
    }

    .argo-grid-2,
    .argo-grid-3,
    .argo-grid-4 {
        grid-template-columns: 1fr;
    }

    .argo-section {
        padding: var(--space-8) 0;
    }

    .argo-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .argo-info-box {
        flex-direction: column;
        text-align: center;
    }

    .argo-messages {
        left: var(--space-4);
        right: var(--space-4);
        max-width: none;
    }

    .page-hero-image {
        height: 180px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .argo-navbar {
        padding: 0 var(--space-4);
        height: 56px;
    }

    .argo-container {
        padding: 0 var(--space-4);
    }

    .argo-hero-text h1 {
        font-size: 1.75rem;
    }

    .argo-btn-lg {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .argo-detail-content {
        padding: var(--space-4);
    }

    .argo-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}
