/* Nimbus Guardian - AI-Powered Deployment Safety */
/* Professional Glassmorphic & Holographic Design System */

:root {
    --bg-dark: #0a0e27;
    --bg-card: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --accent-purple: #a78bfa;
    --accent-cyan: #22d3ee;
    --accent-violet: #8b5cf6;
    --glow-purple: rgba(167, 139, 250, 0.3);
    --glow-cyan: rgba(34, 211, 238, 0.3);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Particle Container */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 20s infinite ease-in-out;
    box-shadow: 0 0 10px var(--glow-cyan);
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, -100px); }
    50% { transform: translate(-50px, -200px); }
    75% { transform: translate(50px, -150px); }
}

/* Scan Line Effect */
.scan-line {
    position: fixed;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--accent-cyan),
        transparent
    );
    box-shadow: 0 0 20px var(--glow-cyan);
    animation: scan 8s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scan {
    0% { top: -2px; }
    100% { top: 100%; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 70%
    );
}

.hero-content {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg,
        var(--accent-cyan),
        var(--accent-purple),
        var(--accent-violet)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Brand */
.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 40px;
    gap: 15px;
}

.clear-seas-hero-logo {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 10px 40px rgba(107, 123, 200, 0.5));
    animation: float-bounce 4s ease-in-out infinite;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.hero-brand-text {
    text-align: center;
}

.brand-by {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-tertiary);
    margin: 0;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
    color: white;
    border: none;
    box-shadow: 0 0 30px var(--glow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--glow-purple);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--accent-purple);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px var(--glow-cyan);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 20px;
    background: radial-gradient(ellipse at center,
        rgba(34, 211, 238, 0.08) 0%,
        transparent 60%
    );
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--accent-purple);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(34, 211, 238, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 25px rgba(167, 139, 250, 0.5));
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 0 30px var(--glow-purple);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.step code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    color: var(--accent-cyan);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    margin-bottom: 15px;
}

.step-note {
    font-size: 14px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Workflow CTA */
.workflow-cta {
    text-align: center;
    margin-top: 80px;
}

.workflow-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.workflow-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.workflow-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    text-align: left;
}

.workflow-option {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.workflow-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.workflow-option:hover::before {
    transform: scaleX(1);
}

.workflow-option:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.3);
}

.workflow-featured {
    border-color: rgba(34, 211, 238, 0.5);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05), rgba(167, 139, 250, 0.05));
}

.workflow-featured::before {
    transform: scaleX(1);
}

.workflow-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.workflow-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(34, 211, 238, 0.4));
    transition: transform 0.3s ease;
}

.workflow-option:hover .workflow-icon {
    transform: scale(1.1) rotate(5deg);
}

.workflow-title-group {
    flex: 1;
}

.workflow-title-group h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.workflow-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workflow-badge.recommended {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: #0a0e27;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.workflow-badge.production {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.workflow-badge.interactive {
    background: linear-gradient(135deg, #22d3ee, #a78bfa);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.workflow-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.workflow-code-block {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 12px;
    padding: 16px 50px 16px 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.workflow-code-block:hover {
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

.workflow-code {
    color: var(--accent-cyan);
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.copy-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 6px;
    padding: 8px;
    color: var(--accent-cyan);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: var(--accent-cyan);
    transform: translateY(-50%) scale(1.1);
}

.copy-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.copy-btn svg {
    display: block;
}

.workflow-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workflow-benefits li {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.workflow-benefits li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateX(4px);
}

/* Catches Grid */
.catches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.catch-card {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
}

.catch-card.critical {
    border-color: rgba(239, 68, 68, 0.5);
}

.catch-card.high {
    border-color: rgba(249, 115, 22, 0.5);
}

.catch-card.medium {
    border-color: rgba(234, 179, 8, 0.5);
}

.catch-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.catch-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.catch-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.catch-card li:last-child {
    border-bottom: none;
}

.severity-note {
    font-size: 14px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
}

/* Severity Badges */
.severity-badge {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 15px currentColor;
}

.critical-badge {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.high-badge {
    background: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.medium-badge {
    background: #eab308;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.6);
}

/* Observability Hub - Redesigned */
.observability-hub {
    padding: 120px 20px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 55%);
}

.observability-hub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), transparent);
    pointer-events: none;
}

.observability-header {
    margin-bottom: 60px;
}

.observability-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.observability-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.observability-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(24px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(10, 14, 39, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.observability-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(34, 211, 238, 0.08));
    opacity: 0;
    transition: opacity 0.6s ease;
}

.observability-panel:hover::after {
    opacity: 1;
}

.observability-panel h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.observability-panel p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.observability-commands {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.observability-commands li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.observability-commands code {
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--accent-cyan);
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.observability-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.observability-features {
    display: grid;
    gap: 20px;
}

.observability-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 16px 40px rgba(10, 14, 39, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.observability-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow:
        0 24px 60px rgba(34, 211, 238, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.observability-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.observability-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.observability-upcoming {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px dashed var(--glass-border);
    border-radius: 16px;
}

.observability-upcoming h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-purple);
}

.observability-upcoming p {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.observability-upcoming a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.observability-upcoming a:hover {
    text-shadow: 0 0 10px var(--glow-cyan);
}

/* Platform Support */
.platform-tier {
    margin-bottom: 60px;
}

.platform-tier-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.platform-tier-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.platform {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.platform-validated {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.platform-upcoming {
    border-style: dashed;
    opacity: 0.7;
}

.platform-icon {
    font-size: 24px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-purple);
    box-shadow: 0 0 40px var(--glow-purple);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 20px var(--glow-purple);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    color: var(--text-secondary);
}

.pricing-note {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 15px;
    font-style: italic;
}

.license-info {
    margin-top: 60px;
}

/* Installation Section */
.install {
    background: radial-gradient(ellipse at center,
        rgba(34, 211, 238, 0.1) 0%,
        transparent 70%
    );
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.install-code {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
}

.install-code h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.install-code pre {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
    margin-bottom: 15px;
}

.install-code code {
    color: var(--accent-cyan);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.install-note {
    font-size: 14px;
    color: var(--text-tertiary);
    font-style: italic;
}

.install-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.install-feature {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.install-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px var(--glow-purple);
}

.install-feature h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.install-feature code {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 8px;
    color: var(--accent-cyan);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin-bottom: 10px;
}

.install-feature p {
    color: var(--text-secondary);
    font-size: 14px;
}

.install-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.link:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 10px var(--glow-purple);
}

/* Trust Signals */
.trust-signals {
    background: radial-gradient(ellipse at center,
        rgba(167, 139, 250, 0.08) 0%,
        transparent 60%
    );
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-card {
    backdrop-filter: blur(20px);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px var(--glow-cyan);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

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

/* Utility Elements */
.hidden-gradient-defs {
    position: absolute;
    width: 0;
    height: 0;
}

.footer-note {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Clear Seas Solutions Logo */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.clear-seas-logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 20px rgba(107, 123, 200, 0.4));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover .clear-seas-logo {
    transform: rotate(360deg) scale(1.15);
    filter: drop-shadow(0 6px 30px rgba(167, 139, 250, 0.6));
}

.footer-brand-text {
    flex: 1;
}

.footer-brand-text h4 {
    margin-bottom: 4px;
}

.brand-subtitle {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.manifesto {
    font-style: italic;
    color: var(--accent-purple);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .observability-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid,
    .steps,
    .catches-grid,
    .pricing-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .install-steps {
        grid-template-columns: 1fr;
    }

    .workflow-options {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .observability-main {
        gap: 20px;
    }

    .observability-panel {
        padding: 30px 20px;
    }

    .platform-logos {
        gap: 15px;
    }

    .platform {
        padding: 15px 25px;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 40px 25px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .install-links {
        flex-direction: column;
        align-items: center;
    }
}
