/* =============================================================================
   PLA Astra Product Suite - Refined Palantir-Style Microsite
   Polished execution with subtle animations and precise layouts
   ============================================================================= */

:root {
    /* Dark Theme - Refined */
    --bg-primary: #080B14;
    --bg-secondary: #0B0F1A;
    --bg-elevated: #101624;
    --bg-card: #131A2B;
    --bg-card-hover: #182032;
    --border-color: #1C2535;
    --border-light: #2A3548;
    --border-glow: rgba(139, 92, 246, 0.25);

    /* Text - Better Hierarchy */
    --text-white: #FFFFFF;
    --text-primary: #E8ECF4;
    --text-secondary: #A8B4C8;
    --text-muted: #6B7A94;
    --text-subtle: #4A5568;

    /* PLA Brand */
    --pla-teal: #058798;
    --pla-teal-light: #0EA5A5;
    --pla-blue: #144C71;
    --pla-blue-light: #2B7CB8;
    --pla-navy: #002060;
    --pla-purple: #2E1960;
    --pla-deep-purple: #490B58;
    --pla-purple-light: #8B5CF6;
    --pla-magenta: #A50958;

    /* Status */
    --status-production: #10B981;
    --status-beta: #3B82F6;
    --status-alpha: #8B5CF6;

    /* Metrics */
    --metric-red: #EF4444;
    --metric-orange: #F59E0B;
    --metric-green: #10B981;
    --metric-teal: #0EA5A5;
    --metric-cyan: #06B6D4;
    --metric-blue: #3B82F6;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1140px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Particle Canvas - More Subtle */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Grid Overlay - Barely Visible */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ============================================================================
   Navigation - Cleaner
   ============================================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.4s var(--ease-smooth);
}

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

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

.nav-logo img {
    height: 28px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.nav-logo:hover img {
    opacity: 1;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--text-white);
}

.nav-cta {
    position: relative;
    background: var(--pla-teal);
    padding: 10px 20px !important;
    border-radius: 6px;
    color: var(--text-white) !important;
    font-weight: 600 !important;
    transition: all 0.3s var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--pla-teal-light);
    transform: translateY(-1px);
}

.nav-cta .cta-glow { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(11, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--bg-card);
}

/* ============================================================================
   Gradient Bar - Refined
   ============================================================================ */

.gradient-bar {
    height: 2px;
    background: linear-gradient(90deg,
        var(--pla-teal),
        var(--pla-blue),
        var(--pla-purple),
        var(--pla-deep-purple),
        var(--pla-magenta)
    );
    background-size: 200% 100%;
}

.gradient-bar-animated {
    animation: gradientFlow 12s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.gradient-bar-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* ============================================================================
   Hero Section - More Refined
   ============================================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    will-change: transform;
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: var(--pla-deep-purple);
    top: -250px;
    left: 15%;
    animation: floatSlow 25s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--pla-blue);
    bottom: -150px;
    right: 10%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    background: var(--pla-teal);
    top: 40%;
    left: -150px;
    animation: floatSlow 30s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(20px, -20px); }
    66% { transform: translate(-15px, 15px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--pla-purple-light);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--pla-purple-light);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, var(--pla-teal-light), var(--pla-purple-light), var(--pla-magenta));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 52px;
    line-height: 1.7;
    font-weight: 400;
}

/* Hero Stats - Cleaner */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
}

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

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 28px;
    font-weight: 600;
    color: var(--pla-purple-light);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-light);
    opacity: 0.5;
}

/* Product Cards - More Refined */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.product-card[data-product="label"] { --accent: var(--pla-purple-light); }
.product-card[data-product="trace"] { --accent: var(--metric-blue); }
.product-card[data-product="engage"] { --accent: var(--metric-teal); }

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .card-glow {
    opacity: 1;
}

.card-border { display: none; }

.card-content {
    position: relative;
    z-index: 1;
}

.product-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: var(--accent);
    opacity: 0.9;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
}

.product-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* Status Badges - Cleaner */
.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.status-production {
    background: rgba(16, 185, 129, 0.1);
    color: var(--status-production);
}
.status-production .status-dot { background: var(--status-production); }

.status-beta {
    background: rgba(59, 130, 246, 0.1);
    color: var(--status-beta);
}
.status-beta .status-dot { background: var(--status-beta); }

.status-alpha {
    background: rgba(139, 92, 246, 0.1);
    color: var(--status-alpha);
}
.status-alpha .status-dot { background: var(--status-alpha); }

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-subtle);
    font-size: 11px;
    letter-spacing: 0.05em;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--text-subtle), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ============================================================================
   Sections
   ============================================================================ */

.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.data-lines {
    position: absolute;
    inset: 0;
}

.data-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    animation: dataFlow 15s linear infinite;
}

.data-line:nth-child(1) { top: 25%; animation-delay: 0s; }
.data-line:nth-child(2) { top: 50%; animation-delay: -5s; }
.data-line:nth-child(3) { top: 75%; animation-delay: -10s; }

@keyframes dataFlow {
    0% { left: -50%; width: 30%; }
    100% { left: 120%; width: 30%; }
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-subtle);
    margin-bottom: 16px;
}

.label-line {
    width: 24px;
    height: 1px;
    background: var(--pla-teal);
}

.section-header h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--pla-teal-light), var(--pla-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--pla-purple-light), var(--pla-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: linear-gradient(135deg, var(--metric-cyan), var(--metric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--metric-teal), var(--pla-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

.subsection {
    padding: 64px 0;
}

/* ============================================================================
   Metric Cards - Clean Version
   ============================================================================ */

.metrics-visualization {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card-fancy {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s var(--ease-smooth);
}

.metric-card-fancy:hover {
    border-color: var(--border-light);
}

.metric-card-fancy[data-color="red"] { --metric-accent: var(--metric-red); }
.metric-card-fancy[data-color="orange"] { --metric-accent: var(--metric-orange); }

.metric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--metric-accent);
    border-radius: 12px 12px 0 0;
}

.metric-ring {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
}

.metric-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--bg-elevated);
    stroke-width: 6;
}

.ring-progress {
    fill: none;
    stroke: var(--metric-accent);
    stroke-width: 6;
    stroke-linecap: round;
}

.metric-content {
    position: relative;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--metric-accent);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 6px;
}

.metric-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.metric-card-fancy p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mini Chart */
.metric-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    margin-top: 16px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--bg-elevated);
    border-radius: 2px;
    transition: background 0.3s;
}

.chart-bar.active {
    background: var(--metric-accent);
}

/* Timeline */
.metric-timeline {
    margin-top: 16px;
}

.timeline-track {
    height: 4px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress {
    width: 0%;
    height: 100%;
    background: var(--metric-accent);
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
}

.visible .timeline-progress {
    width: 85%;
}

.timeline-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 10px;
    color: var(--text-subtle);
    font-family: 'JetBrains Mono', monospace;
}

/* Callout Card */
.callout-card {
    position: relative;
    background: rgba(5, 135, 152, 0.05);
    border: 1px solid rgba(5, 135, 152, 0.15);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 720px;
    margin: 40px auto 0;
}

.callout-glow { display: none; }

.callout-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--pla-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.callout-icon svg {
    width: 22px;
    height: 22px;
}

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

.highlight {
    color: var(--pla-teal-light);
    font-weight: 600;
}

/* ============================================================================
   Section Dividers - Cleaner
   ============================================================================ */

.section-divider {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.divider-bg {
    position: absolute;
    inset: 0;
}

.divider-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
}

.divider-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.divider-purple .divider-glow {
    background: var(--pla-deep-purple);
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.divider-blue .divider-glow {
    background: var(--pla-blue);
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.divider-teal .divider-glow {
    background: var(--pla-teal);
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.divider-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.divider-number {
    font-size: clamp(100px, 18vw, 160px);
    font-weight: 800;
    line-height: 1;
    opacity: 0.08;
    font-family: 'JetBrains Mono', monospace;
}

.divider-text h2 {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.divider-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ============================================================================
   Crisis Showcase - Refined
   ============================================================================ */

.crisis-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.crisis-main {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.crisis-visual {
    position: relative;
    flex-shrink: 0;
}

.crisis-circle {
    position: relative;
    width: 160px;
    height: 160px;
}

.crisis-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.crisis-ring-bg {
    fill: none;
    stroke: rgba(239, 68, 68, 0.1);
    stroke-width: 10;
}

.crisis-ring-progress {
    fill: none;
    stroke: var(--metric-red);
    stroke-width: 10;
    stroke-linecap: round;
}

.crisis-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--metric-red);
    font-family: 'JetBrains Mono', monospace;
}

.crisis-value .percent {
    font-size: 24px;
}

.crisis-pulse {
    position: absolute;
    inset: -16px;
    border: 1px solid var(--metric-red);
    border-radius: 50%;
    opacity: 0;
    animation: crisisPulse 3s ease-out infinite;
}

.crisis-pulse.delay-1 { animation-delay: 1s; }
.crisis-pulse.delay-2 { animation-delay: 2s; }

@keyframes crisisPulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.4); }
}

.crisis-text h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.crisis-problems {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crisis-problems span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.crisis-problems i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(239, 68, 68, 0.15);
    color: var(--metric-red);
    border-radius: 50%;
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
}

.crisis-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.crisis-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
}

.stat-icon-orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--metric-orange);
}

.stat-icon-red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--metric-red);
}

.crisis-stat .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 4px;
}

.crisis-stat .stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================================
   Transformation Visual - Cleaner
   ============================================================================ */

.transformation {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 24px;
    align-items: stretch;
}

.transform-before,
.transform-after {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    position: relative;
}

.transform-before {
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.transform-after {
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.transform-header {
    margin-bottom: 20px;
}

.transform-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.transform-badge-before {
    background: rgba(239, 68, 68, 0.1);
    color: var(--metric-red);
}

.transform-badge-after {
    background: rgba(16, 185, 129, 0.1);
    color: var(--metric-green);
}

.transform-header h4 {
    font-size: 20px;
    font-weight: 600;
}

/* Chaos Nodes - Simplified */
.transform-chaos {
    position: relative;
    height: 180px;
    margin-bottom: 20px;
    background: var(--bg-elevated);
    border-radius: 12px;
    overflow: hidden;
}

.chaos-node {
    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    animation: chaosFloat 5s ease-in-out infinite;
}

.chaos-node:nth-child(2) { animation-delay: -1s; }
.chaos-node:nth-child(3) { animation-delay: -2s; }
.chaos-node:nth-child(4) { animation-delay: -3s; }
.chaos-node:nth-child(5) { animation-delay: -4s; }

@keyframes chaosFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(calc(-50% + 4px), calc(-50% - 4px)); }
}

.chaos-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.chaos-lines line {
    stroke: var(--border-color);
    stroke-width: 1;
    stroke-dasharray: 3 3;
    opacity: 0.5;
}

/* Unified Animation - Cleaner */
.transform-unified {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border-radius: 12px;
    margin-bottom: 20px;
}

.unified-core {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.unified-core span {
    font-size: 10px;
    font-weight: 600;
    color: var(--pla-purple-light);
    text-align: center;
}

.core-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--pla-purple-light);
    border-radius: 50%;
    opacity: 0.8;
}

.core-ring.delay-1 {
    inset: -12px;
    border-width: 1px;
    opacity: 0.3;
}

.unified-orbit {
    position: absolute;
    inset: 0;
    animation: orbitSpin 30s linear infinite;
}

.orbit-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(var(--angle)) translateY(-70px) rotate(calc(-1 * var(--angle)));
    background: var(--bg-primary);
    border: 1px solid var(--pla-purple-light);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 500;
    color: var(--pla-purple-light);
    white-space: nowrap;
}

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

/* Transform Lists */
.transform-list {
    list-style: none;
}

.transform-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.transform-list li:last-child {
    border-bottom: none;
}

.icon-x {
    color: var(--metric-red);
    font-size: 14px;
    font-weight: 600;
}

.icon-check {
    color: var(--metric-green);
    font-size: 14px;
}

/* Transform Arrow */
.transform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arrow-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-light), var(--pla-purple-light), var(--border-light));
}

.arrow-head {
    position: absolute;
    right: 0;
    color: var(--pla-purple-light);
}

.arrow-head svg {
    width: 20px;
    height: 20px;
}

.arrow-pulse {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--pla-purple-light);
    border-radius: 50%;
    animation: arrowPulse 2.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0% { left: 10%; opacity: 1; }
    100% { left: 85%; opacity: 0; }
}

/* ============================================================================
   Workflow Visual - Refined
   ============================================================================ */

.workflow-visual {
    position: relative;
    padding-top: 32px;
}

.workflow-track {
    position: absolute;
    top: 72px;
    left: 18%;
    right: 18%;
    height: 2px;
}

.track-line {
    position: relative;
    height: 100%;
    background: var(--border-color);
    border-radius: 1px;
    overflow: hidden;
}

.track-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--pla-purple-light);
    border-radius: 1px;
    transition: width 2s var(--ease-out-expo);
}

.visible .track-progress {
    width: 100%;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.workflow-step {
    text-align: center;
}

.step-marker {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.marker-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--pla-purple-light);
    font-family: 'JetBrains Mono', monospace;
    z-index: 2;
}

.marker-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--pla-purple-light);
    border-radius: 50%;
    background: var(--bg-card);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.3s var(--ease-smooth);
}

.workflow-step:hover .step-content {
    border-color: var(--border-light);
}

.step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pla-purple-light);
}

.step-icon svg {
    width: 22px;
    height: 22px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-subtitle {
    display: block;
    font-size: 12px;
    color: var(--pla-purple-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.step-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================================
   Architecture Visual - Cleaner Hub & Spoke
   ============================================================================ */

.architecture-visual {
    position: relative;
    height: 420px;
    max-width: 700px;
    margin: 0 auto;
}

.arch-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 2;
}

.hub-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(73, 11, 88, 0.4), transparent 70%);
    filter: blur(20px);
}

.hub-ring {
    position: absolute;
    inset: -16px;
    border: 1px solid var(--pla-purple-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: hubPulse 4s ease-in-out infinite;
}

.hub-ring.delay-1 {
    inset: -32px;
    opacity: 0.15;
    animation-delay: -2s;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.15; }
}

.hub-core {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pla-deep-purple), var(--pla-purple));
    border: 2px solid var(--pla-purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-core span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
}

/* Spokes - Fixed Positioning */
.arch-spokes {
    position: absolute;
    inset: 0;
}

.spoke {
    position: absolute;
    display: flex;
    align-items: center;
}

.spoke[data-position="top-left"] {
    left: 8%;
    top: 20%;
}
.spoke[data-position="top-right"] {
    right: 8%;
    top: 20%;
    flex-direction: row-reverse;
}
.spoke[data-position="bottom-left"] {
    left: 8%;
    bottom: 20%;
}
.spoke[data-position="bottom-right"] {
    right: 8%;
    bottom: 20%;
    flex-direction: row-reverse;
}

.spoke-line {
    width: 80px;
    height: 1px;
    background: var(--border-light);
    position: relative;
    margin: 0 12px;
}

.data-packet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--pla-teal-light);
    border-radius: 50%;
    top: -2.5px;
    animation: dataPacket 3s linear infinite;
    box-shadow: 0 0 8px var(--pla-teal-light);
}

.spoke[data-position="top-right"] .data-packet,
.spoke[data-position="bottom-right"] .data-packet {
    animation-direction: reverse;
}

@keyframes dataPacket {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% - 6px); opacity: 0; }
}

.spoke-node {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s;
}

.spoke-node:hover {
    border-color: var(--pla-teal-light);
    transform: scale(1.05);
}

.node-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.node-desc {
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 2px;
}

.arch-badges {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.arch-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ============================================================================
   ROI Visual - Cleaner
   ============================================================================ */

.roi-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.roi-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s var(--ease-smooth);
}

.roi-item:hover {
    border-color: var(--border-light);
}

.roi-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.roi-before,
.roi-after {
    flex: 1;
}

.roi-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    font-weight: 500;
}

.roi-before .roi-label { color: var(--text-muted); }
.roi-after .roi-label { color: var(--metric-green); }

.roi-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    font-family: 'JetBrains Mono', monospace;
}

.roi-arrow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.roi-improvement {
    font-size: 10px;
    font-weight: 600;
    color: var(--metric-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.roi-arrow {
    width: 32px;
    color: var(--metric-green);
}

.roi-metric {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    display: block;
}

/* ============================================================================
   AstraTrace Styles
   ============================================================================ */

.trace-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.trace-metric {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
}

.trace-metric-visual {
    margin-bottom: 12px;
}

.trace-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--metric-red);
    font-family: 'JetBrains Mono', monospace;
    display: block;
    margin-bottom: 10px;
}

.trace-bar {
    height: 4px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.trace-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--metric-red);
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
}

.visible .trace-bar::after {
    width: var(--width);
}

.trace-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Trace Flow */
.trace-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.flow-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    flex: 1;
    max-width: 260px;
    transition: all 0.3s var(--ease-smooth);
}

.flow-step:hover {
    border-color: var(--border-light);
}

.flow-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon svg {
    width: 28px;
    height: 28px;
}

.flow-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--metric-blue);
}

.flow-icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--metric-cyan);
}

.flow-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--metric-green);
}

.flow-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 13px;
    color: var(--text-muted);
}

.flow-connector {
    display: flex;
    align-items: center;
    position: relative;
}

.connector-line {
    width: 32px;
    height: 1px;
    background: var(--border-light);
}

.connector-dot {
    width: 6px;
    height: 6px;
    background: var(--metric-cyan);
    border-radius: 50%;
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
    0%, 100% { transform: translateX(-16px); opacity: 0.5; }
    50% { transform: translateX(16px); opacity: 1; }
}

/* Value Cards */
.value-proposition {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.value-card-cyan {
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.value-card-blue {
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 16px 16px 0 0;
}

.value-card-cyan::before { background: var(--metric-cyan); }
.value-card-blue::before { background: var(--metric-blue); }

.value-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card-cyan .value-icon {
    background: rgba(6, 182, 212, 0.1);
    color: var(--metric-cyan);
}

.value-card-blue .value-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--metric-blue);
}

.value-icon svg {
    width: 20px;
    height: 20px;
}

.value-header h3 {
    font-size: 17px;
    font-weight: 600;
}

.value-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.value-card ul {
    list-style: none;
}

.value-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.value-card-cyan .check { color: var(--metric-cyan); }
.value-card-blue .check { color: var(--metric-blue); }

/* ============================================================================
   AstraEngage Styles
   ============================================================================ */

.engage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.engage-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(14, 165, 165, 0.15);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.engage-visual {
    margin-bottom: 20px;
}

.engage-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.engage-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.engage-ring-bg {
    fill: none;
    stroke: rgba(14, 165, 165, 0.1);
    stroke-width: 8;
}

.engage-ring-progress {
    fill: none;
    stroke: var(--metric-teal);
    stroke-width: 8;
    stroke-linecap: round;
}

.engage-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--metric-teal);
    font-family: 'JetBrains Mono', monospace;
}

.engage-money {
    font-size: 52px;
    font-weight: 700;
    color: var(--metric-teal);
    font-family: 'JetBrains Mono', monospace;
}

.engage-stat-card p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Pillars */
.engage-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pillar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--pla-teal);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s var(--ease-smooth);
}

.pillar:hover {
    border-color: var(--border-light);
    border-top-color: var(--pla-teal);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(14, 165, 165, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--metric-teal);
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.pillar p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================================
   CTA Section
   ============================================================================ */

.cta-section {
    position: relative;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.cta-glow-1 {
    background: var(--pla-deep-purple);
    top: -200px;
    left: 25%;
}

.cta-glow-2 {
    background: var(--pla-teal);
    bottom: -200px;
    right: 25%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    height: 52px;
    margin-bottom: 28px;
    opacity: 0.9;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pla-teal);
    color: var(--text-white);
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
}

.cta-button:hover {
    background: var(--pla-teal-light);
    transform: translateY(-2px);
}

.cta-button .btn-bg { display: none; }

.cta-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

.cta-contact {
    color: var(--text-muted);
    margin: 20px 0 40px;
    font-size: 14px;
}

.cta-products {
    display: flex;
    justify-content: center;
    gap: 56px;
}

.cta-product {
    text-align: center;
}

.cta-product[data-product="label"] strong { color: var(--pla-purple-light); }
.cta-product[data-product="trace"] strong { color: var(--metric-blue); }
.cta-product[data-product="engage"] strong { color: var(--metric-teal); }

.cta-product strong {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
}

.cta-product span {
    font-size: 13px;
    color: var(--text-subtle);
}

/* ============================================================================
   Footer
   ============================================================================ */

.footer {
    background: var(--bg-secondary);
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-subtle);
    font-size: 13px;
}

/* ============================================================================
   Animations
   ============================================================================ */

[data-animate] {
    opacity: 0;
    transition: all 0.7s var(--ease-out-expo);
}

[data-animate="fade-up"] {
    transform: translateY(32px);
}

[data-animate="fade-down"] {
    transform: translateY(-32px);
}

[data-animate="fade-left"] {
    transform: translateX(32px);
}

[data-animate="scale-in"] {
    transform: scale(0.9);
}

[data-animate].visible {
    opacity: 1;
    transform: none;
}

/* ============================================================================
   Responsive
   ============================================================================ */

@media (max-width: 1024px) {
    .metrics-visualization {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .transform-arrow {
        transform: rotate(90deg);
        padding: 12px 0;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .workflow-track {
        display: none;
    }

    .roi-visual {
        grid-template-columns: 1fr;
    }

    .value-proposition {
        grid-template-columns: 1fr;
    }

    .architecture-visual {
        height: 360px;
    }

    .spoke-line {
        width: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .product-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 32px;
        height: 1px;
    }

    .metrics-visualization {
        grid-template-columns: 1fr;
    }

    .divider-content {
        flex-direction: column;
        text-align: center;
    }

    .divider-number {
        font-size: 80px;
    }

    .crisis-main {
        flex-direction: column;
        text-align: center;
    }

    .trace-metrics {
        grid-template-columns: 1fr;
    }

    .trace-flow {
        flex-direction: column;
    }

    .flow-connector {
        transform: rotate(90deg);
    }

    .engage-stats {
        grid-template-columns: 1fr;
    }

    .engage-pillars {
        grid-template-columns: 1fr;
    }

    .cta-products {
        flex-direction: column;
        gap: 28px;
    }

    .architecture-visual {
        height: 320px;
    }

    .spoke-node {
        width: 64px;
        height: 64px;
    }

    .node-label {
        font-size: 12px;
    }

    .spoke-line {
        display: none;
    }

    .infographic-container {
        padding: 0 10px;
    }
}

/* =============================================================================
   Infographic Containers
   ============================================================================= */

.infographic-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.infographic-container:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.infographic-container.infographic-tall {
    max-width: 1280px;
}

.infographic-svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Responsive adjustments for infographics */
@media (max-width: 1024px) {
    .infographic-container {
        border-radius: 12px;
    }

    .infographic-svg {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .infographic-container {
        border-radius: 8px;
        margin: 0 -10px;
        width: calc(100% + 20px);
        max-width: none;
    }

    .infographic-svg {
        border-radius: 8px;
    }

    .infographic-container.infographic-tall {
        max-width: none;
    }
