/* ===================================================
   AIMatric Landing Page - Premium Styling
   =================================================== */

/* CSS Variables Extension */
:root {
    --gradient-primary: linear-gradient(135deg, #0A4A54 0%, #0E6E7C 50%, #1292A4 100%);
    --gradient-hero: linear-gradient(135deg, #0A4A54 0%, #0C5C68 100%);
    --gradient-mark: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    --gradient-vali: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --gradient-su: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-rekon: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(18, 146, 164, 0.3);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

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

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(32, 178, 200, 0.6) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatOrb 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation: floatOrb 25s ease-in-out infinite reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 2s;
}

.hero-particles span:nth-child(3) {
    left: 35%;
    top: 30%;
    animation-delay: 4s;
}

.hero-particles span:nth-child(4) {
    left: 50%;
    top: 70%;
    animation-delay: 6s;
}

.hero-particles span:nth-child(5) {
    left: 65%;
    top: 25%;
    animation-delay: 8s;
}

.hero-particles span:nth-child(6) {
    left: 75%;
    top: 55%;
    animation-delay: 10s;
}

.hero-particles span:nth-child(7) {
    left: 85%;
    top: 35%;
    animation-delay: 12s;
}

.hero-particles span:nth-child(8) {
    left: 90%;
    top: 75%;
    animation-delay: 14s;
}

.hero-particles span:nth-child(9) {
    left: 5%;
    top: 80%;
    animation-delay: 3s;
}

.hero-particles span:nth-child(10) {
    left: 45%;
    top: 15%;
    animation-delay: 7s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-200);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--teal-300);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal-300) 0%, var(--orange-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-differentiators {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.diff-item .diff-icon {
    color: #EF4444;
    font-weight: bold;
    margin: 10px;
}

.hero-value-prop {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    font-size: 15px;
    color: var(--success);
    margin-bottom: 32px;
}

.hero-value-prop svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-value-prop strong {
    color: #34D399;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-primary svg,
.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual - Agent Showcase */
.hero-visual {
    position: relative;
    height: 500px;
}

.agent-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.ai-hub-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 168px;
    height: 168px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(18, 146, 164, 0.5);
    z-index: 10;
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-core img {
    width: 60px;
    height: auto;
}

@keyframes hubPulse {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(18, 146, 164, 0.5);
    }

    50% {
        box-shadow: 0 0 80px rgba(18, 146, 164, 0.7);
    }
}

.hub-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--teal-400);
    border-radius: 50%;
    opacity: 0.5;
}

.hub-ring.r1 {
    width: 140px;
    height: 140px;
    animation: ringPulse 3s ease-in-out infinite;
}

.hub-ring.r2 {
    width: 180px;
    height: 180px;
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

.hub-ring.r3 {
    width: 220px;
    height: 220px;
    animation: ringPulse 3s ease-in-out infinite 1s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.3;
    }
}

/* Orbiting Agents */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation: orbitRotate 20s linear infinite;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    animation: orbitRotate 25s linear infinite reverse;
}

.orbit-3 {
    width: 280px;
    height: 280px;
    animation: orbitRotate 22s linear infinite;
}

.orbit-4 {
    width: 280px;
    height: 280px;
    animation: orbitRotate 28s linear infinite reverse;
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.agent-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: counterRotate 20s linear infinite;
}

.orbit-1 .agent-node {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-2 .agent-node {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 .agent-node {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 22s;
}

.orbit-4 .agent-node {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    animation-duration: 28s;
    animation-direction: reverse;
}

@keyframes counterRotate {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(-360deg);
    }
}

.agent-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    position: relative;
}

.agent-node.mark .agent-icon {
    background: var(--gradient-mark);
}

.agent-node.vali .agent-icon {
    background: var(--gradient-vali);
}

.agent-node.su .agent-icon {
    background: var(--gradient-su);
}

.agent-node.rekon .agent-icon {
    background: var(--gradient-rekon);
}

.agent-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agent-status {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: var(--success);
    border: 2px solid var(--white);
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.data-flow-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.flow-particle {
    animation: particleOrbit 4s linear infinite;
}

.flow-particle.p1 {
    animation-delay: 0s;
}

.flow-particle.p2 {
    animation-delay: 1s;
}

.flow-particle.p3 {
    animation-delay: 2s;
}

.flow-particle.p4 {
    animation-delay: 3s;
}

@keyframes particleOrbit {
    0% {
        transform: translate(0, -120px);
        opacity: 0;
    }

    25% {
        transform: translate(120px, 0);
        opacity: 1;
    }

    50% {
        transform: translate(0, 120px);
        opacity: 1;
    }

    75% {
        transform: translate(-120px, 0);
        opacity: 1;
    }

    100% {
        transform: translate(0, -120px);
        opacity: 0;
    }
}

.hero-stats-display {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

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

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ===================================================
   SECTION BACKGROUNDS
   =================================================== */
.section-white {
    background: var(--white);
    color: var(--gray-900);
}

.section-dark-gradient {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--navy-900) 100%);
    color: var(--white);
}

.section-teal {
    background: var(--teal-800);
    color: var(--white);
}

.section-navy {
    background: var(--navy-900);
    color: var(--white);
}

.section-gradient {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    color: var(--white);
}

/* ===================================================
   FUTURE OF WORK SECTION
   =================================================== */
.future-intro {
    text-align: center;
    margin-bottom: 48px;
}

.pain-points-grid {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--gray-50);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

.pain-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 24px;
    text-align: center;
}

.pain-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 14px;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.pain-item:hover {
    border-color: #EF4444;
    background: #FEF2F2;
}

.pain-x {
    color: #EF4444;
    font-weight: 700;
}

.solution-intro {
    text-align: center;
    margin-bottom: 48px;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--teal-100) 0%, var(--teal-50) 100%);
    border: 1px solid var(--teal-300);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-700);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.solution-headline {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
}

.highlight-text {
    color: var(--teal-600);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--teal-200);
    opacity: 0.5;
    z-index: -1;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.capability-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--teal-400);
}

.cap-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.capability-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.capability-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.compliance-banner {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--teal-50) 0%, var(--white) 100%);
    border-radius: 20px;
    border: 1px solid var(--teal-200);
}

.compliance-banner p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.highlight-statement {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--teal-700) !important;
}

/* ===================================================
   AGENT SECTIONS
   =================================================== */
.agent-section-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.agent-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-xl);
}

.mark-gradient {
    background: var(--gradient-mark);
}

.vali-gradient {
    background: var(--gradient-vali);
}

.su-gradient {
    background: var(--gradient-su);
}

.rekon-gradient {
    background: var(--gradient-rekon);
}

.agent-header-content {
    flex: 1;
}

.agent-subtitle {
    font-weight: 400;
    opacity: 0.8;
}

.agent-personality {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.trait {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.section-white .trait {
    background: var(--gray-100);
    color: var(--gray-700);
}

.agent-identity {
    margin-bottom: 48px;
}

.agent-identity blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--orange-500);
    border-radius: 0 16px 16px 0;
    margin: 0;
}

.section-white .agent-identity blockquote {
    background: var(--gray-50);
    color: var(--gray-700);
}

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

.responsibility-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.responsibility-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.responsibility-card.light {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.responsibility-card.light:hover {
    border-color: var(--teal-400);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.resp-icon {
    font-size: 28px;
}

.resp-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.section-white .resp-header h4 {
    color: var(--gray-900);
}

.resp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.resp-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--gray-300);
}

.section-white .resp-list li {
    color: var(--gray-600);
}

.resp-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal-400);
}

.resp-list.compact li {
    padding: 4px 0 4px 24px;
}

.resp-note {
    font-size: 13px;
    font-style: italic;
    color: var(--orange-400);
    margin: 0;
}

.section-white .resp-note {
    color: var(--teal-600);
}

.resp-highlight {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.section-white .resp-highlight {
    color: var(--teal-700);
}

.resp-text {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

.section-white .resp-text {
    color: var(--gray-600);
}

.resp-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.metric {
    padding: 6px 12px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-400);
}

.ticket-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ticket-label {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.ticket-label.urgent {
    background: #FEE2E2;
    color: #DC2626;
}

.ticket-label.high {
    background: #FEF3C7;
    color: #D97706;
}

.ticket-label.medium {
    background: #E0F2FE;
    color: #0284C7;
}

.ticket-label.low {
    background: #DCFCE7;
    color: #16A34A;
}

.ticket-label.refund {
    background: #F3E8FF;
    color: #9333EA;
}

.ticket-label.tech {
    background: #E0E7FF;
    color: #4F46E5;
}

.language-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lang {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.lang.more {
    background: var(--orange-500);
    color: var(--white);
}

.doc-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.doc-type {
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Workflow Section */
.agent-workflow {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 48px;
}

.workflow-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 32px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 13px;
}

.step-num {
    width: 24px;
    height: 24px;
    background: var(--orange-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.step-text {
    color: var(--gray-200);
}

.workflow-arrow {
    color: var(--teal-400);
    font-size: 18px;
}

.workflow-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-400);
}

.workflow-showcase {
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
    margin-bottom: 48px;
}

.workflow-showcase h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--teal-700);
    margin: 0;
}

/* Impact Section */
.agent-impact {
    padding: 48px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 24px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.agent-impact.light-bg {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.impact-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    color: var(--gray-400);
}

.section-white .impact-title {
    color: var(--gray-500);
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 24px;
}

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

.impact-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.section-white .impact-value,
.agent-impact.light-bg .impact-value {
    color: var(--teal-700);
}

.impact-label {
    font-size: 14px;
    color: var(--gray-300);
    margin-top: 8px;
}

.section-white .impact-label,
.agent-impact.light-bg .impact-label {
    color: var(--gray-600);
}

.impact-note {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--orange-400);
    margin: 0;
}

.section-white .impact-note {
    color: var(--teal-600);
}

/* ===================================================
   MULTI-AGENT COLLABORATION SECTION
   =================================================== */
.unique-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.star-icon {
    font-size: 16px;
}

.collab-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.collab-example {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.collab-example:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--teal-500);
}

.collab-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.collab-flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.collab-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.agent-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.agent-badge.mark {
    background: var(--gradient-mark);
}

.agent-badge.vali {
    background: var(--gradient-vali);
}

.agent-badge.su {
    background: var(--gradient-su);
}

.agent-badge.rekon {
    background: var(--gradient-rekon);
}

.step-action {
    font-size: 13px;
    color: var(--gray-300);
}

.flow-arrow {
    font-size: 24px;
    color: var(--teal-400);
}

.collab-result {
    font-size: 16px;
    color: var(--gray-200);
    margin: 0;
}

.collab-result strong {
    color: var(--success);
}

/* ===================================================
   INDUSTRY SECTION
   =================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.industry-card-large {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--teal-400);
}

.ind-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.industry-card-large h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.ind-uses {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ind-uses li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
}

/* ===================================================
   ROI SECTION
   =================================================== */
.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.roi-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.roi-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.roi-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.roi-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.roi-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roi-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--teal-300);
}

.metric-label {
    font-size: 13px;
    color: var(--gray-400);
}

/* ===================================================
   FINAL CTA SECTION
   =================================================== */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-900) 100%);
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.cta-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.cta-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(32, 178, 200, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-label.light {
    color: var(--teal-300);
}

.cta-headline {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subheadline {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--orange-400);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
}

.cta-urgency svg {
    width: 18px;
    height: 18px;
}

/* ===================================================
   RESPONSIVE STYLES
   =================================================== */
@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-differentiators {
        justify-content: center;
    }

    .hero-value-prop {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

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

    .agent-section-header {
        flex-direction: column;
        text-align: center;
    }

    .agent-personality {
        justify-content: center;
    }

    .responsibilities-grid {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

    .impact-stats {
        flex-wrap: wrap;
        gap: 40px;
    }

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

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

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

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

    .hero-differentiators {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-visual {
        height: 350px;
    }

    .orbit {
        width: 200px !important;
        height: 200px !important;
    }

    .agent-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .agent-label {
        font-size: 9px;
    }

    .hub-core {
        width: 70px;
        height: 70px;
    }

    .hub-core img {
        width: 40px;
    }

    .hub-ring.r1 {
        width: 100px;
        height: 100px;
    }

    .hub-ring.r2 {
        width: 130px;
        height: 130px;
    }

    .hub-ring.r3 {
        width: 160px;
        height: 160px;
    }

    .hero-stats-display {
        gap: 16px;
        padding: 12px 20px;
    }

    .stat-value {
        font-size: 18px;
    }

    .stat-label {
        font-size: 9px;
    }

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

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

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

    .agent-avatar-large {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .agent-identity blockquote {
        font-size: 18px;
        padding: 24px;
    }

    .impact-value {
        font-size: 36px;
    }

    .impact-stats {
        gap: 30px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-headline {
        font-size: 32px;
    }

    .cta-subheadline {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================================
   ANIMATION UTILITIES
   =================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grids */
.capabilities-grid .capability-card:nth-child(1) {
    transition-delay: 0s;
}

.capabilities-grid .capability-card:nth-child(2) {
    transition-delay: 0.1s;
}

.capabilities-grid .capability-card:nth-child(3) {
    transition-delay: 0.2s;
}

.capabilities-grid .capability-card:nth-child(4) {
    transition-delay: 0.3s;
}

.capabilities-grid .capability-card:nth-child(5) {
    transition-delay: 0.4s;
}

.capabilities-grid .capability-card:nth-child(6) {
    transition-delay: 0.5s;
}

.responsibilities-grid .responsibility-card:nth-child(1) {
    transition-delay: 0s;
}

.responsibilities-grid .responsibility-card:nth-child(2) {
    transition-delay: 0.15s;
}

.responsibilities-grid .responsibility-card:nth-child(3) {
    transition-delay: 0.3s;
}

.responsibilities-grid .responsibility-card:nth-child(4) {
    transition-delay: 0.45s;
}

.industry-grid .industry-card-large:nth-child(1) {
    transition-delay: 0s;
}

.industry-grid .industry-card-large:nth-child(2) {
    transition-delay: 0.1s;
}

.industry-grid .industry-card-large:nth-child(3) {
    transition-delay: 0.2s;
}

.industry-grid .industry-card-large:nth-child(4) {
    transition-delay: 0.3s;
}

.industry-grid .industry-card-large:nth-child(5) {
    transition-delay: 0.4s;
}

.roi-grid .roi-card:nth-child(1) {
    transition-delay: 0s;
}

.roi-grid .roi-card:nth-child(2) {
    transition-delay: 0.1s;
}

.roi-grid .roi-card:nth-child(3) {
    transition-delay: 0.2s;
}

.roi-grid .roi-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* Smooth counter animation styling */
.counter {
    display: inline-block;
    min-width: 1.2em;
}

/* ===================================================
   HERO HUB VISUALIZATION (New Interactive Version)
   =================================================== */
.agent-hub {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.hub-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.22;
    mask-image: radial-gradient(circle at 55% 40%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(circle at 55% 40%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 70%);
}

.hub-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.9;
}

.hub-lines svg {
    width: 100%;
    height: 100%;
}

.hub-lines path {
    stroke: rgba(140, 228, 240, 0.35);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 6 10;
    animation: dash 6s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -200;
    }
}

.hero-visual .hub-core {
    position: absolute;
    top: 48%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 80px rgba(32, 178, 200, 0.45);
    display: grid;
    place-items: center;
    z-index: 5;
}

.hero-visual .hub-core::before,
.hero-visual .hub-core::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 2px solid rgba(32, 178, 200, 0.55);
    animation: hubRingAnim 3.2s ease-in-out infinite;
    opacity: 0.55;
}

.hero-visual .hub-core::after {
    inset: -36px;
    border-width: 1px;
    opacity: 0.35;
    animation-delay: .5s;
}

@keyframes hubRingAnim {

    0%,
    100% {
        transform: scale(1);
        opacity: .55;
    }

    50% {
        transform: scale(1.08);
        opacity: .18;
    }
}

.core-title {
    text-align: center;
    color: var(--navy-900);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.core-title small {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
    font-weight: 800;
}

.core-title span {
    display: block;
    font-size: 18px;
}

.hub-node {
    position: absolute;
    width: 145px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.hub-node .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: -0.01em;
}

.hub-node .tag i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.hub-node p {
    margin-top: 6px;
    font-size: 12px;
    color: rgba(229, 231, 235, 0.82);
    line-height: 1.45;
}

.node-mark {
    top: 16%;
    left: 8%;
}

.node-vali {
    top: 16%;
    right: 8%;
}

.node-su {
    bottom: 16%;
    left: 8%;
}

.node-rekon {
    bottom: 16%;
    right: 8%;
}

.node-mark i {
    background: var(--orange-400);
}

.node-vali i {
    background: #A78BFA;
}

.node-su i {
    background: var(--teal-300);
}

.node-rekon i {
    background: #10B981;
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #10B981;
    margin-bottom: 28px;
}

/* ===================================================
   FUTURE OF WORK SECTION
   =================================================== */
.section-kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    padding: 8px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-kicker.light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
}

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

.future-card {
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
    padding: 28px;
    transition: all 0.3s ease;
    animation: floatCard 4s infinite;
}

.future-card:nth-child(1) {
    animation-delay: 0.5s;
}

.future-card:nth-child(2) {
    animation-delay: 1s;
}

.future-card:nth-child(3) {
    animation-delay: 1.5s;
}

.future-card:nth-child(4) {
    animation-delay: 2s;
}

.future-card:nth-child(5) {
    animation-delay: 2.5s;
}

.future-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.1);
    border-color: var(--teal-400);
}

.future-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    color: var(--gray-900);
}

.list {
    display: grid;
    gap: 12px;
}

.li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal-400);
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(32, 178, 200, 0.15);
}

.pills-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    animation: floatCard 4s infinite;
}

.pill:nth-child(1) {
    animation-delay: 0.5s;
}

.pill:nth-child(2) {
    animation-delay: 1s;
}

.pill:nth-child(3) {
    animation-delay: 1.5s;
}

.pill:nth-child(4) {
    animation-delay: 2s;
}

.pill:nth-child(5) {
    animation-delay: 2.5s;
}

.pill strong {
    color: var(--teal-700);
}

/* ===================================================
   INTERACTIVE AGENT TABS + CONSOLE
   =================================================== */
.section-light {
    background: var(--gray-50);
}

.agents-wrap {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 32px;
}

.tabs {
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.tab-btn {
    width: 100%;
    text-align: left;
    padding: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.15s ease;
}

.tab-btn:last-child {
    border-bottom: none;
}

.tab-btn:hover {
    background: var(--gray-50);
}

.tab-btn.active {
    background: linear-gradient(90deg, rgba(18, 146, 164, 0.12), rgba(249, 115, 22, 0.06));
    border-left: 4px solid var(--teal-500);
}

.tab-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.03em;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
    flex-shrink: 0;
}

.av-mark {
    background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
}

.av-vali {
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
}

.av-su {
    background: linear-gradient(135deg, var(--teal-300), var(--teal-600));
}

.av-rekon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.tab-meta {
    min-width: 0;
}

.tab-meta .name {
    font-weight: 900;
    font-size: 15px;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.tab-meta .role {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
    line-height: 1.4;
}

.badge-mini {
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    flex-shrink: 0;
}

.badge-mini.light {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
}

/* Console */
.console {
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    background: linear-gradient(180deg, #FFFFFF, #FAFBFF);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.14);
    overflow: hidden;
}

.console-top {
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(15, 23, 42, 0.02);
}

.window-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.w-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.w-dot.red {
    background: #F87171;
}

.w-dot.yellow {
    background: #FBBF24;
}

.w-dot.green {
    background: #34D399;
}

.console-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--gray-800);
    letter-spacing: -0.01em;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.live-ind {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.18);
    animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .65;
    }
}

.console-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.persona {
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: var(--white);
    padding: 20px;
}

.persona h3 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.persona .identity {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.chip {
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    color: var(--gray-700);
}

.progress-section {
    margin-top: 16px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.progress-title {
    font-weight: 800;
    color: var(--gray-800);
    font-size: 13px;
}

.progress-label {
    font-weight: 800;
    color: var(--teal-700);
    font-size: 12px;
}

.progress {
    height: 10px;
    border-radius: 100px;
    background: var(--gray-100);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.bar {
    height: 100%;
    width: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--teal-500), var(--orange-400));
    transform-origin: left center;
    transform: scaleX(0.3);
}

.console-right {
    display: grid;
    gap: 16px;
}

.mini-card {
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 18px;
    padding: 16px;
}

.mini-card h4 {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 900;
    margin-bottom: 12px;
}

.task-feed {
    display: grid;
    gap: 10px;
    max-height: 200px;
    overflow: hidden;
}

.task {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--gray-100);
    background: linear-gradient(180deg, #fff, #fbfbff);
}

.task .t-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--gray-800);
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task .t-meta {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status {
    font-size: 10px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    background: var(--gray-50);
}

.status.run {
    color: #065F46;
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.12);
}

.status.queue {
    color: #7C2D12;
    border-color: rgba(249, 115, 22, 0.25);
    background: rgba(249, 115, 22, 0.12);
}

.typing {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12px;
    line-height: 1.6;
    background: #0B1220;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 100px;
}

.typing .caret {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: rgba(255, 255, 255, 0.65);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: -2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 12px;
}

/* ===================================================
   WORKFLOW SECTION
   =================================================== */
.workflow-section {
    background: linear-gradient(180deg, var(--teal-900), #052F35);
    color: var(--white);
}

.workflow-section .section-title,
.workflow-section .section-subtitle {
    color: var(--white);
}

.workflow-section .section-subtitle {
    color: rgba(229, 231, 235, 0.88);
}

.workflow-panel {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.workflow-top {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.control-label {
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--white);
}

.select {
    appearance: none;
    background: var(--teal-800);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.wf-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.wf-stat {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.15);
    font-weight: 900;
    letter-spacing: -0.01em;
    font-size: 14px;
}

.wf-stat span {
    font-size: 12px;
    font-weight: 700;
    color: rgba(229, 231, 235, 0.8);
}

.workflow-canvas-wrap {
    position: relative;
    height: 420px;
}

#workflowCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.wf-legend {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 2;
}

.legend-item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.15);
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ld-mark {
    background: var(--orange-400);
}

.ld-vali {
    background: #A78BFA;
}

.ld-su {
    background: var(--teal-300);
}

.ld-rekon {
    background: #10B981;
}

/* ===================================================
   INDUSTRY USE CASES (TAGCARDS)
   =================================================== */
.taggrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.tagcard {
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
    transition: all 0.3s ease;
    animation: floatCard 4s infinite;
}

.tagcard:nth-child(1) {
    animation-delay: 0.5s;
}

.tagcard:nth-child(2) {
    animation-delay: 1s;
}

.tagcard:nth-child(3) {
    animation-delay: 1.5s;
}

.tagcard:nth-child(4) {
    animation-delay: 2s;
}

.tagcard:nth-child(5) {
    animation-delay: 2.5s;
}

.tagcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.1);
    border-color: var(--teal-400);
}

.tagcard-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.tagcard strong {
    display: block;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.tagcard p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ===================================================
   ROI CALCULATOR
   =================================================== */
.roi-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.roi-box {
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.14);
    overflow: hidden;
}

.roi-top {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(15, 23, 42, 0.02);
}

.roi-top.dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.roi-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-800);
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.roi-top.dark .roi-title {
    color: var(--white);
}

.roi-body {
    padding: 24px;
    display: grid;
    gap: 20px;
}

.field {
    display: grid;
    gap: 10px;
}

.field label {
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-800);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.field label span {
    font-weight: 900;
    color: var(--teal-700);
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 100px;
    background: var(--gray-200);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-500);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(18, 146, 164, 0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal-500);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(18, 146, 164, 0.4);
}

.roi-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.roi-out {
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    background: linear-gradient(180deg, #0B1220, #0F172A);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.14);
    overflow: hidden;
}

.roi-metrics {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.metric {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 20px;
}

.metric .k {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.7);
    font-weight: 900;
    margin-bottom: 10px;
}

.metric .v {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--teal-300);
}

.metric .s {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(229, 231, 235, 0.7);
    line-height: 1.6;
}

/* ===================================================
   FINAL CTA BOX STYLES
   =================================================== */
.cta-box {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(229, 231, 235, 0.75);
}

/* ===================================================
   RESPONSIVE - INTERACTIVE COMPONENTS
   =================================================== */
@media (max-width: 1100px) {
    .agents-wrap {
        grid-template-columns: 1fr;
    }

    .console-body {
        grid-template-columns: 1fr;
    }

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

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

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

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

    .hub-node {
        width: 120px;
        padding: 10px;
        font-size: 11px;
    }

    .hub-node .tag {
        font-size: 11px;
    }

    .hub-node p {
        font-size: 10px;
    }

    .hero-visual .hub-core {
        width: 108px;
        height: 108px;
    }

    .core-title span {
        font-size: 14px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .workflow-canvas-wrap {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .taggrid {
        grid-template-columns: 1fr;
    }

    .pills-row {
        flex-direction: column;
        align-items: center;
    }

    .wf-stats {
        flex-direction: column;
        width: 100%;
    }

    .wf-stat {
        width: 100%;
        justify-content: center;
    }
}

/* Reveal animation initial state */
.reveal {
    opacity: 0;
    transform: translateY(18px);
}

.tagcard-link {
    text-decoration: none;
}