@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Sprinto Specific Palette */
    --bg-base: #FFFFFF;
    --bg-surface: #F4F2EE; /* Light gray/beige */
    --bg-surface-alt: #EFEDE9;
    --bg-purple-light: #F2F0FE;
    --border-purple: #D7D1FB;
    
    --text-primary: #211F28;
    --text-secondary: #5E5C59;
    --text-muted: #8E8B86;
    
    --primary-color: #F76A0C; /* The Sprinto Orange */
    --primary-hover: #E05C09;
    
    --accent-purple: #6E41D0;
    --accent-blue: #2348A6;
    /* Enterprise Layout Properties */
    --radius-pill: 9999px;
    --radius-xl: 16px;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 6px;

    --max-width: 1200px;
    --container-padding: 1.5rem;
    --section-spacing: 5rem;

    --font-heading: 'Instrument Sans', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Base Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 4rem; }
.bg-alt { background-color: var(--bg-surface); padding: var(--section-spacing) 0; border-radius: var(--radius-xl); margin: var(--section-spacing) var(--container-padding); }
.section-padding { padding: var(--section-spacing) 0; }
.section-header { margin-bottom: 4rem; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.title-large {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Quirky Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(247, 106, 12, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(247, 106, 12, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: #E2E0D9;
}

.btn-secondary:hover {
    background-color: var(--bg-surface);
    border-color: #C8C6BF;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.navbar.scrolled {
    border-bottom: 1px solid #EFEDE9;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.logo span {
    display: flex;
    align-items: center;
    height: 100%;
    padding-bottom: 1px; /* Optical adjustment */
}

.logo svg rect { fill: var(--primary-color); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--text-primary);
}

.nav-actions { display: flex; gap: 1rem; }
.mobile-menu-btn { display: none; }

/* Hero Section */
.hero {
    padding: 8rem 0 5rem 0;
    background-color: var(--bg-base);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Premium Mesh & Floating Elements */
.hero-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: breatheMesh 8s infinite alternate ease-in-out;
}

.floating-tag {
    position: absolute;
    padding: 0.75rem 1.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: 2px solid #D7D1FB; /* Standard Sprinto Purple */
    border-radius: 100px;
    color: #6E41D0;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    pointer-events: none;
    z-index: 15;
    white-space: nowrap;
    transition: opacity 0.4s ease;
    box-shadow: 0 10px 40px rgba(110, 65, 208, 0.15);
    animation: floatBob 4s infinite alternate ease-in-out;
}

.floating-tag.color-orange {
    border-color: #FFE1D1;
    color: #F76A0C;
    box-shadow: 0 10px 40px rgba(247, 106, 12, 0.15);
}

.floating-tag.color-green {
    border-color: #C1E1C1;
    color: #2E8B57;
    box-shadow: 0 10px 40px rgba(46, 139, 87, 0.15);
}

.floating-tag.color-blue {
    border-color: #DDE2FF;
    color: #2348A6;
    box-shadow: 0 10px 40px rgba(35, 72, 166, 0.15);
}

@keyframes floatBob {
    0% { transform: translateY(0); }
    100% { transform: translateY(-30px); }
}

@keyframes breatheMesh {
    0% { opacity: 0.35; }
    100% { opacity: 0.6; }
}

/* Testimonials Styling (Strict Replication) */
.testimonials-section {
    background: #FCFBF9;
    padding: 6rem 0;
    color: #211F28;
    position: relative;
    overflow: hidden;
}

.t-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.t-carousel-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 2rem;
}

.t-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.t-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 224, 217, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02), 0 20px 40px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.t-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 106, 12, 0.3);
}

.t-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #5E5C59;
    margin-bottom: 2rem;
    font-weight: 500;
}

.t-quote b {
    color: #F76A0C;
    font-weight: 700;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.t-author-details h4 {
    margin: 0 0 2px 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #211F28;
}

.t-author-details p {
    margin: 0;
    font-size: 0.8rem;
    color: #8E8B86;
}

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

@media (max-width: 768px) {
    .t-carousel { grid-template-columns: 1fr; }
    .t-card { padding: 1.5rem; }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .light-solution-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .pane-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
    .mobile-menu-btn span { width: 25px; height: 2px; background: #211F28; transition: 0.3s; }
    
    .hero { padding: 6rem 0 3rem 0; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .light-solution-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .impact-bento { grid-template-columns: 1fr; }
    .ib-span-6 { grid-column: span 1; }
    
    .stack-card { padding: 2rem; flex-direction: column; text-align: center; }
    .sc-visual { width: 100%; height: 250px; }
    
    /* Hide some hero tags on mobile to avoid clutter */
    .floating-tag:nth-child(n+5) { display: none; }
    .floating-tag { font-size: 0.8rem; padding: 0.5rem 1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .section-padding { padding: 3rem 0; }
    .title-large { font-size: 1.75rem; }
}

.hero-spotlight {
    position: absolute;
    top: 0; left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 106, 12, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    mix-blend-mode: screen;
}

.mesh-cell {
    width: 80px;
    height: 80px;
    perspective: 1000px;
    cursor: default;
    border: 0.5px solid rgba(215, 209, 251, 0.6);
    box-sizing: border-box;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.cell-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: none;
    transform-style: preserve-3d;
}

.mesh-cell.flipped .cell-inner {
    transform: rotateY(180deg) translateZ(40px) rotateX(4deg);
}

.mesh-cell.nearby {
    background-color: #FFF5EE;
    border-color: rgba(247, 106, 12, 0.25);
    z-index: 1;
    will-change: background-color;
}

.cell-front, .cell-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-sizing: border-box;
}

.cell-front {
    background: transparent;
}

.cell-back {
    background: #FFFFFF;
    color: #F76A0C;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.52rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transform: rotateY(180deg);
    border: 2px solid #F76A0C;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(247, 106, 12, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.badge-wrap { margin-bottom: 2rem; }
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--bg-purple-light);
    color: var(--accent-purple);
    font-weight: 600;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    cursor: pointer;
}
.new-badge {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #F76A0C;
    background: rgba(247, 106, 12, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    cursor: default;
}
.red-dot {
    width: 6px;
    height: 6px;
    background-color: #F76A0C;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.hero-gradient {
    background: linear-gradient(135deg, #F76A0C, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 3rem;
}

/* Dashboard Mockup - Flat & Quirky */
.hero-dashboard-preview {
    margin-top: 4rem;
}
/* Highly Complex Enterprise App Shell */
.enterprise-app-shell {
    max-width: 1200px; margin: 0 auto;
    background-color: #FFFFFF; border-radius: var(--radius-xl);
    border: 1px solid #E2E0D9; box-shadow: 0 40px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden; display: flex; text-align: left; height: 600px;
}

/* Sidebar */
.app-sidebar {
    width: 260px; 
    background-color: #F9F9F8; 
    border-right: 1px solid #EAEAEA;
    display: flex; 
    flex-direction: column; 
    padding: 0 1.25rem;
}



.sidebar-logo {
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 800; 
    font-size: 1.35rem; 
    margin-bottom: 0.5rem; 
    color: var(--text-primary);
    letter-spacing: -0.03em;
}




.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    color: #64748B;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.nav-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.menu-item:hover {
    background-color: #F1F5F9;
    color: var(--text-primary);
}

.menu-item:hover .nav-icon {
    opacity: 1;
}

.menu-item.active {
    background-color: #E2E8F0;
    color: #0F172A;
    font-weight: 700;
}

.menu-item.active .nav-icon {
    opacity: 1;
    color: var(--primary-color);
}

.sidebar-bottom {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #EAEAEA;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
}

.avatar {
    width: 42px;
    height: 42px;
    background-color: #F76A0C;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(247, 106, 12, 0.2);
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.user-info .name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0F172A;
}

.user-info .role {
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.profile-action {
    color: #94A3B8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    padding: 6px;
    border-radius: 8px;
}

.profile-action:hover {
    color: #0F172A;
    background-color: #F1F5F9;
}

.profile-action svg {
    width: 20px;
    height: 20px;
}
    color: var(--text-primary);
}

.profile-action svg {
    width: 16px;
    height: 16px;
}

/* Main Content */
.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    overflow: hidden;
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E0D9;
    padding: 1rem 1.5rem;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs b {
    color: var(--text-primary);
    font-weight: 700;
}
.topbar-actions { display: flex; gap: 1rem; align-items: center; }
.search-bar { position: relative; display: flex; align-items: center; }
.search-bar input {
    background-color: #F4F2EE; border: 1px solid #E2E0D9; border-radius: 8px;
    padding: 0.5rem 1rem 0.5rem 2.5rem; width: 250px; font-size: 0.9rem; color: var(--text-primary); outline: none;
}
.search-bar .icon { position: absolute; left: 10px; color: var(--text-muted); }
.search-bar .shortcut { position: absolute; right: 10px; font-size: 0.75rem; color: var(--text-muted); padding: 2px 6px; background: #E2E0D9; border-radius: 4px;}
.btn-micro { padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: 1px solid #E2E0D9; background: white; transition: 0.2s;}
.btn-micro.primary { background-color: var(--text-primary); color: white; border-color: var(--text-primary); }

/* Toolbar */
.data-toolbar {
    display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.5rem; border-bottom: 1px solid #E2E0D9; background-color: #FAFAFA; font-size: 0.85rem; color: var(--text-secondary); font-weight: 500;
}
.toolbar-tabs { display: flex; gap: 1.5rem; }
.toolbar-tabs span { cursor: pointer; position: relative;}
.toolbar-tabs span.active { color: var(--text-primary); font-weight: 600; }
.toolbar-tabs span.active::after { content: ''; position: absolute; bottom: -12px; left: 0; width: 100%; height: 2px; background-color: var(--primary-color); }
.toolbar-filters { display: flex; gap: 1rem; }

/* Document Parser UI Component */
.doc-parser-ui {
    background-color: #FAFAFC;
    flex: 1;
    padding: 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mock-data-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FAFAFC;
    overflow-y: auto;
}
.mdt-header {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid #E2E0D9;
    background: #F4F2EE;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mdt-row {
    display: flex;
    padding: 20px 24px;
    border-bottom: 1px solid #EAE8E1;
    align-items: center;
    transition: background 0.2s;
}
.mdt-row:hover {
    background: #FFFFFF;
}
.mdt-col, .mdt-cell {
    padding-right: 16px;
    display: flex;
    align-items: center;
}
.mdt-cell.d-col {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.gap-1 { gap: 8px; flex-wrap: wrap;}

.skel-line {
    height: 12px;
    background-color: #E2E0D9;
    border-radius: 6px;
    animation: skelPulse 2.5s infinite ease-in-out;
}

.skel-line.red {
    background-color: #FFE5E5;
}

.skel-line.green {
    background-color: #E5FFE5;
}

.skel-line.w-95 { width: 95%; }
.skel-line.w-90 { width: 90%; }
.skel-line.w-85 { width: 85%; }
.skel-line.w-80 { width: 80%; }
.skel-line.w-75 { width: 75%; }
.skel-line.w-70 { width: 70%; }
.skel-line.w-60 { width: 60%; }
.skel-line.w-50 { width: 50%; }
.skel-line.w-40 { width: 40%; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }

.skel-highlight {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid transparent;
}

.skel-highlight.blue-block {
    background-color: rgba(0, 122, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.2);
}

.skel-highlight.orange-block {
    background-color: rgba(247, 106, 12, 0.08);
    border-color: rgba(247, 106, 12, 0.2);
}

.skel-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.skel-badge.blue { background-color: #007AFF; box-shadow: 0 4px 12px rgba(0,122,255,0.2); }
.skel-badge.orange { background-color: #F76A0C; box-shadow: 0 4px 12px rgba(247,106,12,0.2); }

@keyframes skelPulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.badge-active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(247, 106, 12, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(247, 106, 12, 0.2);
}

.pulse-dot {
    width: 6px; height: 6px; background-color: var(--primary-color); border-radius: 50%;
    animation: flash 1s infinite alternate;
}
@keyframes flash { from { opacity: 0.2; } to { opacity: 1; } }
.btn-action.outline:hover { background: #FAFAFA; border-color: #C8C6BF; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.red { background-color: #FF5F56; }
.dot.purple { background-color: #CC66FF; }
.dot.orange { background-color: #FFBD2E; }
.dot.blue { background-color: #007AFF; }

/* Footer Info */
.data-footer {
    display: flex; justify-content: space-between; padding: 1rem 1.5rem;
    border-top: 1px solid #E2E0D9; background-color: #FAFAFA; font-size: 0.8rem; color: var(--text-secondary); align-items: center;
}

/* Trusted By */
.trusted-by {
    padding: 3rem 0;
    border-bottom: 1px solid #E2E0D9;
}
.section-label {
    text-align: center; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; font-weight: 500;
}
.marquee-container { overflow: hidden; }
.marquee-track {
    display: flex; gap: 4rem; width: max-content;
    animation: marquee 30s linear infinite;
}
.logo-item {
    font-size: 1.5rem; font-weight: 700; color: #D1CFCA;
}
@keyframes marquee { 100% { transform: translateX(-50%); } }

/* Enterprise Risk Section */
.risk-section {
    background: linear-gradient(135deg, #2B2A2F 0%, #353145 100%);
    border-radius: var(--radius-xl);
    margin: 2rem var(--container-padding);
    padding: var(--section-spacing) 0;
    border: 1px solid #433E55;
    position: relative;
    overflow: hidden;
}
.risk-section::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%; right: -10%; bottom: -10%;
    z-index: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 77, 77, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 77, 77, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: breatheMesh 8s infinite alternate ease-in-out;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}
.risk-section .container {
    position: relative;
    z-index: 10;
}
.risk-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem;
}
.risk-card {
    background-color: #32303A;
    border: 1px solid #43414C;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.risk-card:hover {
    transform: translateY(-5px);
    border-color: #3F1515;
}
.risk-glow {
    position: absolute; top: -50px; right: -50px;
    width: 150px; height: 150px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.1), transparent 70%);
    pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.risk-card:hover .risk-glow { opacity: 1; }
.r-icon-box {
    width: 50px; height: 50px; background-color: rgba(255, 77, 77, 0.05);
    border: 1px solid rgba(255, 77, 77, 0.2);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.risk-card h4 { font-size: 1.25rem; margin-bottom: 0.75rem; color: #FFFFFF; font-weight: 600; }
.risk-card p { color: #A1A0AB; font-size: 0.95rem; line-height: 1.6; }

.risk-banner {
    background: linear-gradient(90deg, #3C2A2A, #423030);
    border: 1px solid #5F3535;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 2rem;
    position: relative; overflow: hidden;
}
.rb-pulsar {
    width: 12px; height: 12px; border-radius: 50%; background-color: #FF4D4D;
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    animation: pulseRisk 2s infinite;
    flex-shrink: 0;
}
@keyframes pulseRisk {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 77, 77, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}
.rb-content { display: flex; flex-direction: column; gap: 0.25rem; }
.rb-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: #FF4D4D; text-transform: uppercase; }
.rb-title { font-size: 1.25rem; font-weight: 500; color: #FFFFFF; margin: 0; line-height: 1.4; }

/* Timeline Steps */
.timeline-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.timeline-steps::before {
    content: '';
    position: absolute;
    top: 3.5rem; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(247, 106, 12, 0.4), transparent);
    z-index: -1;
}
.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 224, 217, 0.6);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex; flex-direction: column;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 10px 15px -3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px -5px rgba(0, 0, 0, 0.05),
        0 20px 40px -10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(247, 106, 12, 0.4);
}
.step-num {
    font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), #FFA066);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    opacity: 0.9;
    letter-spacing: -1px;
}
.step-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Platform Interactive */
.platform-tabs {
    display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 4rem; background-color: rgba(244, 242, 238, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.6); padding: 0.5rem; border-radius: 100px; max-width: max-content; margin-left: auto; margin-right: auto; box-shadow: inset 0 2px 8px rgba(0,0,0,0.04);
}
.tab-btn {
    background: transparent; border: none; color: var(--text-secondary);
    font-size: 1rem; font-weight: 600; padding: 0.75rem 2rem; border-radius: 100px; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); font-family: var(--font-body);
}
.tab-btn.active {
    background-color: #FFFFFF; color: var(--text-primary); box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-1px);
}

.tab-pane { display: none; animation: fadeIn 0.4s ease; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.pane-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.pane-text h3 { font-size: 2rem; margin-bottom: 1rem; }
.pane-text p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.feature-list { list-style: none; margin-bottom: 2rem; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; margin-bottom: 1rem; }
.link-arrow { color: var(--primary-color); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

.bento-visual {
    background-color: #EFEDE9;
    border-radius: var(--radius-xl);
    min-height: 350px;
    padding: 2rem;
    display: flex; flex-direction: column; justify-content: center;
}

.framework-chips { display: flex; gap: 10px; margin-bottom: 2rem; }
.chip { background-color: #FFFFFF; padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.85rem; border: 1px solid #E2E0D9;}
.chip.active { background-color: var(--bg-purple-light); color: var(--accent-purple); border-color: var(--border-purple); }

.progress-wrap { background-color: #FFFFFF; border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid #E2E0D9; }
.progress-wrap div { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 600; }
.progress-track { height: 8px; background-color: #EFEDE9; border-radius: 4px; overflow: hidden; }
.progress-track .line { width: 100%; height: 100%; background-color: #27C93F; }

/* Use Cases Section Styling */
#use-cases {
    background: linear-gradient(180deg, #FAFAFC 0%, #FFFFFF 100%);
    border-top: 1px solid #EAE8E1;
    position: relative;
}

/* Stacking Cards Section */
.stacking-cards {
    display: flex;
    flex-direction: column;
    padding-bottom: 5rem;
    margin-top: 3rem;
}

.stack-card {
    position: sticky;
    background: #FFFFFF;
    border: 1px solid #ECEBE6;
    border-radius: 28px;
    padding: 4rem 5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.02), 0 20px 40px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 2rem;
    min-height: 480px;
    transition: transform 0.3s ease;
}

/* Stagger top offsets to create stacking depth & subtle glow */
.stack-card:nth-child(1) { top: calc(15vh + 0px); z-index: 10; box-shadow: 0 10px 40px -10px rgba(110, 65, 208, 0.15), 0 0 10px rgba(110, 65, 208, 0.05); border-color: rgba(110, 65, 208, 0.15); }
.stack-card:nth-child(2) { top: calc(15vh + 20px); z-index: 11; box-shadow: 0 10px 40px -10px rgba(39, 201, 63, 0.15), 0 0 10px rgba(39, 201, 63, 0.05); border-color: rgba(39, 201, 63, 0.2); }
.stack-card:nth-child(3) { top: calc(15vh + 40px); z-index: 12; box-shadow: 0 10px 40px -10px rgba(0, 122, 255, 0.15), 0 0 10px rgba(0, 122, 255, 0.05); border-color: rgba(0, 122, 255, 0.15); }
.stack-card:nth-child(4) { top: calc(15vh + 60px); z-index: 13; box-shadow: 0 10px 40px -10px rgba(247, 106, 12, 0.15), 0 0 10px rgba(247, 106, 12, 0.05); border-color: rgba(247, 106, 12, 0.15); }
.stack-card:nth-child(5) { top: calc(15vh + 80px); z-index: 14; box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.1); }

.sc-content { flex: 1; max-width: 500px; }
.sc-content h4 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-primary); font-family: var(--font-heading); }
.sc-content p { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.6; }

.sc-visual {
    width: 48%; /* spans almost half the card */
    height: 360px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-visual .uc-icon {
    width: 100px; height: 100px;
    background: #FFFFFF;
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.sc-visual .uc-icon svg {
    width: 44px; height: 44px;
}

.btn-outline-pill {
    display: inline-block;
    background: transparent;
    border: 1px solid #D1CFCA;
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-pill:hover {
    background: #F4F2EE;
    border-color: #A9A69D;
}

@media (max-width: 900px) {
    .stack-card { flex-direction: column-reverse; padding: 2.5rem; gap: 3rem; min-height: auto; }
    .sc-visual { width: 100%; height: 250px; }
    .sc-content h4 { font-size: 1.75rem; }
    .sc-content p { font-size: 1rem; }
}

/* IMPACT BENTO - LIGHT PREMIUM OVERHAUL */
.impact-section {
    background: #FAFAFC;
    margin: 0;
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}
.impact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(247, 106, 12, 0.04), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(110, 65, 208, 0.04), transparent 40%),
        linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.impact-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem; /* Reduced gap */
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}
.ib-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 224, 217, 0.8);
    border-radius: 24px; /* Reduced radius */
    padding: 2.25rem 2rem; /* Reduced padding */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 10px 30px rgba(0, 0, 0, 0.05); /* Softer shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.ib-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: rgba(209, 207, 202, 1);
}
.ib-span-6 { grid-column: span 6; }
.ib-glow { display: none; }

.ib-content { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; }
.ib-val { 
    font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #FFA066);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}
.ib-card h4 { font-size: 1.35rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.2; }
.ib-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0;}

.ib-icon {
    width: 44px; height: 44px; border-radius: 12px; background: #FFFFFF;
    display: flex; justify-content: center; align-items: center; margin-bottom: 1.25rem;
    border: 1px solid #EAE8E1; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.ib-icon svg { width: 22px; height: 22px; }

/* Empty - visual code block removed per user request */

@media (max-width: 1000px) {
    .ib-span-6 { grid-column: span 12; }
    .impact-bento { padding: 0 1rem; }
    .ib-val { font-size: 3.5rem; }
}

@media (max-width: 800px) {
    .impact-bento { display: flex; flex-direction: column; }
    .ib-card { padding: 2.5rem; }
}

/* Premium Testimonials Section */
.testimonials-section {
    background: #FCFBF9;
    padding: calc(var(--section-spacing) * 1) 0;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(247, 106, 12, 0.03), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(110, 65, 208, 0.02), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.t-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.t-carousel-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.t-carousel {
    display: flex;
    gap: 2rem;
    padding: 2rem calc(50vw - 600px); /* Center on large screens */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 1250px) { .t-carousel { padding: 2rem 5vw; } }

.t-carousel::-webkit-scrollbar { display: none; }

.t-card {
    flex: 0 0 clamp(380px, 45vw, 550px);
    scroll-snap-align: center;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.t-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 106, 12, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.t-quote-icon {
    font-family: serif;
    font-size: 4rem;
    color: rgba(247, 106, 12, 0.2);
    line-height: 1;
    margin-bottom: -1rem;
}

.t-quote {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}


.t-author-simple {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    border-top: 1px solid #F1F1F1;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

.t-author-simple::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 18px;
    background-color: #F76A0C;
    border-radius: 4px;
}


/* CTA Overlay Style */
.cta-section {
    background: linear-gradient(135deg, #FF7B22 0%, #D45400 100%);
    padding: 6rem 2rem;
    border-radius: var(--radius-xl);
    margin: 4rem var(--container-padding);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 123, 34, 0.5);
    box-shadow: 0 20px 40px rgba(212, 84, 0, 0.15);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%; right: -10%; bottom: -10%;
    z-index: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: breatheMesh 8s infinite alternate ease-in-out;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 90%);
}
.cta-section .container {
    position: relative;
    z-index: 10;
}
.cta-section h2 { color: #FFFFFF; font-size: 2.25rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.125rem; max-width: 600px; margin: 0 auto 2rem auto; color: rgba(255,255,255,0.9); }
.cta-section .btn-secondary { background-color: #FFFFFF; color: var(--primary-color); border: none; }
.cta-section .btn-secondary:hover { background-color: #FDFDFD; transform: translateY(-2px); }
.cta-section .btn-primary { background-color: transparent; border: 2px solid #FFFFFF; color: #FFFFFF; }
.cta-section .btn-primary:hover { background-color: rgba(255,255,255,0.1); }

/* Footer */
footer {
    padding: 4rem 0 2rem 0; background-color: #FFFFFF; border-top: 1px solid #E2E0D9;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-desc { color: var(--text-secondary); margin-top: 1rem; max-width: 300px; font-size: 0.9rem; }
.footer-links h4 { margin-bottom: 1rem; font-size: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; font-weight: 500; }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; border-top: 1px solid #E2E0D9; color: var(--text-muted); font-size: 0.9rem; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-primary); }

/* ========================================================= */
/* PREMIUM CREATIVES FOR BENTO PANELS                        */
/* ========================================================= */
.ai-bento, .compliance-bento, .workflow-bento, .audit-bento {
    padding: 0;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    min-height: 480px;
}

/* 1. AI Mockup */
.ai-mockup {
    display: flex; height: 100%; width: 100%; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid #E2E0D9;
}
.doc-scan { flex: 1; background: #FAFAFA; padding: 2rem; position: relative; border-right: 1px solid #E2E0D9; overflow: hidden; }
.scan-line-anim { position: absolute; top: 0; left: 0; width: 100%; height: 60px; background: linear-gradient(to bottom, transparent, rgba(110, 65, 208, 0.1) 80%, rgba(110, 65, 208, 0.4)); animation: scan 3s infinite linear; z-index: 10; border-bottom: 2px solid var(--accent-purple); }
@keyframes scan { 0% { top: -60px; } 100% { top: 100%; } }
.skeleton-header { font-size: 0.85rem; font-weight: 700; color: #C8C6BF; margin-bottom: 1.5rem; letter-spacing: 0.5px; }
.s-line { height: 8px; background: #E2E0D9; border-radius: 4px; margin-bottom: 8px; }
.w-full { width: 100%; } .w-90 { width: 90%; } .w-80 { width: 80%; } .w-70 { width: 70%; } .w-60 { width: 60%; } .w-40 { width: 40%; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.doc-highlight { padding: 4px; border-radius: 4px; position: relative; }
.h-blue { background: rgba(0, 122, 255, 0.15); border: 1px solid rgba(0, 122, 255, 0.3); }
.h-orange { background: rgba(247, 106, 12, 0.15); border: 1px solid rgba(247, 106, 12, 0.3); }
.highlight-pin { position: absolute; right: -8px; top: -12px; font-size: 0.65rem; font-weight: 700; color: white; padding: 2px 6px; border-radius: 4px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.highlight-pin.blue { background: #007AFF; }
.highlight-pin.orange { background: var(--primary-color); }
.data-extraction { width: 260px; background: #FFFFFF; display: flex; flex-direction: column; }
.ex-header { padding: 1.5rem; border-bottom: 1px solid #E2E0D9; }
.ex-title { font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; color: var(--accent-purple); }
.ex-score { font-size: 0.8rem; color: #27C93F; font-weight: 600; margin-top: 5px; }
.ex-items { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.ex-item { font-size: 0.9rem; }
.ex-label { color: var(--text-secondary); font-size: 0.8rem; margin-bottom: 4px; }
.ex-val { font-weight: 600; color: var(--text-primary); }
.ex-sync { font-size: 0.75rem; color: #27C93F; margin-top: 4px; font-weight: 500; }
.focus-item { background: #FFF9F5; padding: 10px; border-radius: 8px; border: 1px solid #FFE1D1; margin: -10px; }
.highlight-val { color: var(--primary-color); font-size: 1.1rem; }
.ex-alert { font-size: 0.75rem; color: #D60000; margin-top: 4px; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.ex-alert::before { content: "⚠"; }
.tag { font-size: 0.75rem; background: #F2F0FE; color: var(--accent-purple); padding: 4px 8px; border-radius: 4px; border: 1px solid var(--border-purple); display: inline-block; }

/* 2. Compliance Engine Setup */
.compliance-bento { background: transparent; padding: 0; display: flex; justify-content: center; align-items: center; }
.framework-grid { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 0.75rem; perspective: 1000px; }
.framework-card { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md); 
    padding: 1rem 1.25rem; 
    border: 1px solid rgba(255, 255, 255, 0.8); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03), inset 0 1px 0 rgba(255,255,255,1); 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.framework-card:hover { 
    transform: translateY(-2px) scale(1.02); 
    box-shadow: 0 12px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,1); 
    background: rgba(255, 255, 255, 1);
}
.active-risk { 
    border-color: rgba(255, 189, 46, 0.4); 
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255, 242, 205, 0.4));
    box-shadow: 0 8px 16px rgba(255,189,46,0.08), inset 0 1px 0 rgba(255,255,255,1); 
}
.active-risk:hover {
    border-color: rgba(255, 189, 46, 0.8);
    box-shadow: 0 12px 24px rgba(255,189,46,0.12), inset 0 1px 0 rgba(255,255,255,1);
}
.f-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.f-name { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); letter-spacing: -0.01em; }
.f-badge { font-size: 0.65rem; padding: 4px 8px; border-radius: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.f-badge.green { background: #E5FFE5; color: #008000; border: 1px solid rgba(0, 128, 0, 0.1); }
.f-badge.yellow { background: #FFF2CD; color: #B38600; border: 1px solid rgba(179, 134, 0, 0.1); }
.f-bar-wrap { height: 6px; background: rgba(226, 224, 217, 0.6); border-radius: 3px; overflow: hidden; margin-bottom: 0.5rem; }
.f-bar { height: 100%; }
.f-bar .fill { height: 100%; border-radius: 3px; }
.f-bar .fill.green { background: #27C93F; }
.f-bar .fill.orange { background: #FFBD2E; }
.f-metrics { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.f-issue-alert { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px dashed rgba(226, 224, 217, 0.8); font-size: 0.75rem; color: #D60000; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.pulse { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim { 0% { box-shadow: 0 0 0 0 rgba(214,0,0,0.4); } 70% { box-shadow: 0 0 0 6px rgba(214,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(214,0,0,0); } }

/* 3. Workflow Integrations */
.workflow-bento { background: #FFFFFF; border-radius: var(--radius-xl); border: 1px solid #E2E0D9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 480px; }
.integration-canvas { width: 400px; height: 300px; position: relative; }
.core-node { position: absolute; left: 180px; top: 120px; z-index: 10; display: flex; flex-direction: column; align-items: center; background: #FFFFFF; padding: 10px; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 2px solid var(--primary-color); }
.core-text { font-size: 0.75rem; font-weight: 700; margin-top: 8px; color: var(--text-primary); text-align: center; }
.flow-lines { position: absolute; top: 0; left: 0; width: 400px; height: 300px; pointer-events: none; }
.flow-path { fill: none; stroke: #E2E0D9; stroke-width: 2; stroke-dasharray: 6 6; animation: dashAnim 20s linear infinite; }
@keyframes dashAnim { to { stroke-dashoffset: -1000; } }
.particle { position: absolute; width: 8px; height: 8px; background: var(--primary-color); border-radius: 50%; box-shadow: 0 0 10px var(--primary-color); z-index: 11; }
.p-slack { animation: moveSlack 2s infinite linear; }
.p-jira { animation: moveJira 2.5s infinite linear; }
.p-sf { animation: moveSf 3s infinite linear; }
@keyframes moveSlack { 0% { left: 200px; top: 150px; opacity: 1; } 100% { left: 90px; top: 60px; opacity: 0; } }
@keyframes moveJira { 0% { left: 200px; top: 150px; opacity: 1; } 100% { left: 300px; top: 80px; opacity: 0; } }
@keyframes moveSf { 0% { left: 200px; top: 150px; opacity: 1; } 100% { left: 300px; top: 240px; opacity: 0; } }
.integration-node { position: absolute; z-index: 5; }
.pos-slack { top: 30px; left: -20px; }
.pos-jira { top: 40px; left: 260px; }
.pos-sf { top: 220px; left: 180px; background: #FFFFFF; }
.mock-notification, .mock-ticket { background: #FFFFFF; padding: 12px; border-radius: var(--radius-md); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border: 1px solid #E2E0D9; width: 220px; }
.mn-head, .mt-top { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; color: var(--text-secondary); }
.mn-body, .mt-title { font-size: 0.8rem; line-height: 1.4; color: var(--text-primary); }
.mt-id { margin-right: auto; }

/* 4. Audit Terminal */
.audit-bento { background: transparent; padding: 0; }
.terminal-mockup { background: #1C1A22; border-radius: var(--radius-xl); height: 100%; border: 1px solid #3A3840; overflow: hidden; display: flex; flex-direction: column; font-family: 'JetBrains Mono', 'Courier New', Courier, monospace; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.term-header { background: #2D2B33; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #413F47; }
.term-dots { display: flex; gap: 8px; }
.term-dots span { width: 12px; height: 12px; border-radius: 50%; }
.term-dots span:nth-child(1) { background: #FF5F56; }
.term-dots span:nth-child(2) { background: #FFBD2E; }
.term-dots span:nth-child(3) { background: #27C93F; }
.term-title { color: #A09EAA; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; }
.term-live { color: #27C93F; font-size: 0.75rem; display: flex; align-items: center; gap: 6px; font-weight: 700; text-transform: uppercase; }
.term-body { padding: 20px; flex: 1; overflow-y: hidden; display: flex; flex-direction: column; gap: 10px; font-size: 0.85rem; }
.log-line { display: flex; gap: 10px; line-height: 1.5; }
.t-time { color: #767382; }
.t-mod { color: #D1CFCA; font-weight: 700; }
.t-mod.auth { color: #CC66FF; }
.t-mod.access { color: #FFBD2E; }
.t-mod.sys { color: #007AFF; }
.t-mod.crypto { color: #FF5F56; }
.t-msg { color: #E2E0D9; }
.t-msg.green { color: #27C93F; }
.t-msg.blue { color: #32D7FF; }
.t-msg.success { color: #E5FFE5; background: rgba(39,201,63,0.1); padding: 0 4px; border-radius: 4px; }
.cursor { animation: blink 1s step-end infinite; color: #27C93F; }
@keyframes blink { 50% { opacity: 0; } }

/* Integrations Contrast Section */
.integration-contrast {
    background: 
        radial-gradient(circle at 100% 0%, rgba(110,65,208,0.2) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(39,201,63,0.15) 0%, transparent 40%),
        linear-gradient(135deg, #2E2C35 0%, #2A3340 100%);
    color: #FFFFFF;
    border-radius: var(--radius-xl);
    margin: 4rem var(--container-padding);
    padding: 6rem 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.integration-contrast::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%; right: -10%; bottom: -10%;
    z-index: 0;
    background-image: 
        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: 60px 60px;
    animation: breatheMesh 8s infinite alternate ease-in-out;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}
.integration-contrast .container {
    position: relative;
    z-index: 10;
}
.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ic-visual {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.glass-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
    animation: floatOrb 6s ease-in-out infinite;
}
.orbit-container {
    position: relative;
    width: 480px; height: 480px;
    display: flex; justify-content: center; align-items: center;
}
.tool-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.15);
    display: flex; justify-content: center; align-items: center;
}
.orbit-inner {
    width: 260px; height: 260px;
    animation: rotateOrbit 30s linear infinite;
}
.orbit-outer {
    width: 440px; height: 440px;
    animation: rotateOrbitRev 50s linear infinite;
}
.t-pos {
    position: absolute;
}
/* Inner 5 items */
.oi-1 { transform: rotate(0deg) translate(130px); }
.oi-2 { transform: rotate(72deg) translate(130px); }
.oi-3 { transform: rotate(144deg) translate(130px); }
.oi-4 { transform: rotate(216deg) translate(130px); }
.oi-5 { transform: rotate(288deg) translate(130px); }

/* Outer 10 items */
.oo-1 { transform: rotate(0deg) translate(220px); }
.oo-2 { transform: rotate(36deg) translate(220px); }
.oo-3 { transform: rotate(72deg) translate(220px); }
.oo-4 { transform: rotate(108deg) translate(220px); }
.oo-5 { transform: rotate(144deg) translate(220px); }
.oo-6 { transform: rotate(180deg) translate(220px); }
.oo-7 { transform: rotate(216deg) translate(220px); }
.oo-8 { transform: rotate(252deg) translate(220px); }
.oo-9 { transform: rotate(288deg) translate(220px); }
.oo-10 { transform: rotate(324deg) translate(220px); }

.tool-orbit .t-icon {
    width: 48px; height: 48px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.orbit-inner .t-icon { animation: counterRotate 30s linear infinite; }
.orbit-outer .t-icon { animation: counterRotateRev 50s linear infinite; }
.t-icon img { width: 65%; height: 65%; object-fit: contain; border-radius: 0; }

.lawvek-center {
    position: absolute;
    width: 80px; height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex; justify-content: center; align-items: center;
    font-size: 2.5rem; font-weight: 800; color: #FFF;
    box-shadow: 0 0 40px rgba(247,106,12,0.4);
    z-index: 2;
}

@keyframes rotateOrbit { 100% { transform: rotate(360deg); } }
@keyframes counterRotate { 100% { transform: rotate(-360deg); } }
@keyframes rotateOrbitRev { 100% { transform: rotate(-360deg); } }
@keyframes counterRotateRev { 100% { transform: rotate(360deg); } }
@keyframes floatOrb { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* Responsive Overrides */
@media (max-width: 1000px) {
    html, body { overflow-x: hidden; width: 100%; position: relative; } /* Prevents systemic horizontal viewport sliding */
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; }
    .mobile-menu-btn span { width: 25px; height: 2px; background-color: var(--text-primary); }
    .dashboard-grid, .problems-grid, .timeline-steps, .use-cases-grid, .win-reasons, .outcomes-grid, .pane-grid, .footer-grid, .risk-grid {
        grid-template-columns: 1fr;
    }
    .use-cases-grid .quirky-card:nth-child(1), .use-cases-grid .quirky-card:nth-child(4) { grid-column: span 1; }
    .problem-result-banner { flex-direction: column; text-align: center; }
    .bg-alt, .cta-section { margin-left: 1rem; margin-right: 1rem; }
    .ai-mockup { flex-direction: column; }
    .data-extraction { width: 100%; height: auto; }
    .integration-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; width: 100%; max-width: 100%; box-sizing: border-box; }
    .ic-text { padding: 0 1rem; box-sizing: border-box; }
    .ic-text .subtitle { margin-left: auto; margin-right: auto; max-width: 100%; font-size: 1rem; }
    .ic-visual { width: 100%; max-width: 100%; margin: 0 auto; display: flex; justify-content: center; }
    .integration-contrast { margin: 2rem 1rem; padding: 3rem 0; width: auto; overflow: hidden; }
    .integration-contrast h2 { font-size: 1.8rem; line-height: 1.25; word-wrap: break-word; padding: 0 1rem; }
    
    /* Safely scale orbits via width, not transform, to fix physical bounding box issues */
    .orbit-container { width: 100% !important; max-width: 100vw !important; height: 350px !important; overflow: hidden; }
    .orbit-outer { width: 260px !important; height: 260px !important; }
    .orbit-inner { width: 140px !important; height: 140px !important; }
    .glass-orb { width: 140px !important; height: 140px !important; }
    .t-icon { width: 36px !important; height: 36px !important; }
    .t-icon img { width: 18px !important; }
    
    /* Reposition absolute translations to match new radii (260px/2 = 130px), (140px/2 = 70px) */
    .oi-1 { transform: rotate(0deg) translate(70px) !important; }
    .oi-2 { transform: rotate(72deg) translate(70px) !important; }
    .oi-3 { transform: rotate(144deg) translate(70px) !important; }
    .oi-4 { transform: rotate(216deg) translate(70px) !important; }
    .oi-5 { transform: rotate(288deg) translate(70px) !important; }
    .oo-1 { transform: rotate(0deg) translate(130px) !important; }
    .oo-2 { transform: rotate(36deg) translate(130px) !important; }
    .oo-3 { transform: rotate(72deg) translate(130px) !important; }
    .oo-4 { transform: rotate(108deg) translate(130px) !important; }
    .oo-5 { transform: rotate(144deg) translate(130px) !important; }
    .oo-6 { transform: rotate(180deg) translate(130px) !important; }
    .oo-7 { transform: rotate(216deg) translate(130px) !important; }
    .oo-8 { transform: rotate(252deg) translate(130px) !important; }
    .oo-9 { transform: rotate(288deg) translate(130px) !important; }
    .oo-10 { transform: rotate(324deg) translate(130px) !important; }
    
    /* Force Dashboard Shell Wrap Early */
    .enterprise-app-shell { flex-direction: column !important; height: auto !important; }
    .app-sidebar { width: 100% !important; border-right: none !important; border-bottom: 1px solid #E2E0D9 !important; padding: 1.5rem !important; }
    .sidebar-menu { display: none !important; } /* Hide heavy menu items on mobile for the hero mockup */
    .sidebar-logo { margin-bottom: 0 !important; justify-content: center; }
    .sidebar-bottom { display: none !important; }
    .app-topbar { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* High Fidelity UI Mockups for Use Cases */
.mock-ui {
    width: 320px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    font-family: var(--font-body);
}

.mock-header {
    background: #FFFFFF;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #EAEAEA;
    gap: 12px;
}
.mock-header.dark { background: #1A1A1A; border-bottom-color: #333; }
.mock-header .dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.mock-header .dots .red { background: #FF5F56; }
.mock-header .dots .yellow { background: #FFBD2E; }
.mock-header .dots .green { background: #27C93F; }
.mock-title { font-size: 0.9rem; font-weight: 600; color: #555; flex: 1; text-align: center; margin-right: 48px; }
.mock-header.dark .mock-title { color: #A1A0AB; }

/* 1. Doc Scan */
.mock-doc-scan { height: 280px; position: relative; width: 360px; }
.mock-doc-scan .mock-body { padding: 32px 24px; position: relative; height: 100%; display: flex; flex-direction: column; gap: 16px; }
.d-line { height: 14px; background: #E6E5E0; border-radius: 8px; }
.d-line.w-100 { width: 100%; } .d-line.w-90 { width: 90%; } .d-line.w-85 { width: 85%; } .d-line.w-80 { width: 80%; } .d-line.w-75 { width: 75%; } .d-line.w-60 { width: 60%; }
.d-line.highlight-purple { background: #E8DDFA; position: relative; height: 28px; display: flex; align-items: center; border-radius: 6px;}
.d-line.highlight-green { background: #D5F3DD; position: relative; height: 28px; display: flex; align-items: center; border-radius: 6px;}
.hl-badge { position: absolute; right: -20px; top: -14px; background: var(--accent-purple); color: white; font-size: 0.8rem; padding: 6px 12px; border-radius: 6px; font-weight: 700; white-space: nowrap; box-shadow: 0 4px 12px rgba(110,65,208,0.25); }
.highlight-green .hl-badge { background: #00A650; box-shadow: 0 4px 12px rgba(0,166,80,0.25); right: -10px; top: 12px;}
.scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: rgba(110, 65, 208, 0.6); box-shadow: 0 0 16px rgba(110, 65, 208, 0.6); animation: scanPulse 3s infinite linear; }
@keyframes scanPulse { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* 2. Dashboard */
.mock-header.no-dots { justify-content: space-between; }
.mock-header h5 { margin: 0; font-size: 0.85rem; font-weight: 700; }
.mock-status { font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
.mock-status.green { background: #E5FFE5; color: #00A650; }
.mock-dashboard .mock-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.check-row { display: flex; flex-direction: column; gap: 6px; }
.c-info { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.c-icon { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: white; }
.c-icon.success { background: #00A650; } .c-icon.warn { background: #FFBD2E; }
.c-bar-wrap { height: 6px; background: #E2E0D9; border-radius: 3px; overflow: hidden; }
.c-bar { height: 100%; border-radius: 3px; }
.c-bar.green { background: #00A650; } .c-bar.orange { background: #FFBD2E; }
.c-bar.w-100 { width: 100%; } .c-bar.w-40 { width: 40%; }
.animated-fill { animation: fillBar 4s infinite alternate ease-in-out; }
@keyframes fillBar { 0% { width: 40%; background: #FFBD2E; } 100% { width: 100%; background: #00A650; } }

/* 3. Vendor Card */
.mock-vendor-card { padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.v-top { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.v-avatar { width: 36px; height: 36px; background: linear-gradient(135deg, #007AFF, #0056b3); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.8rem; }
.v-title { font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.v-badge { font-size: 0.6rem; padding: 2px 6px; border-radius: 4px; color: white; font-weight: 700; }
.v-badge.blue { background: #007AFF; }
.v-score-ring { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
.ring-bg { stroke: #E2E0D9; stroke-width: 8; }
.ring-fill { stroke-width: 8; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset 1s ease-out; }
.ring-fill.blue { stroke: #007AFF; }
.v-score-val { position: absolute; text-align: center; font-size: 2rem; font-weight: 800; color: var(--text-primary); line-height: 1; display:flex; flex-direction:column; align-items:center; }
.v-score-val span { font-size: 0.6rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.v-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; width: 100%; }
.v-tag { font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.v-tag.green { background: rgba(0, 166, 80, 0.1); color: #00A650; }

/* 4. Notifications */
.mock-notifications { background: transparent; box-shadow: none; border: none; gap: 20px; display: flex; flex-direction: column; width: 400px;}
.m-noti { background: #FFFFFF; border-radius: 16px; padding: 20px 24px; display: flex; gap: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: none; position: relative; overflow: hidden; align-items: flex-start;}
.n-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; flex-shrink: 0;}
.n-icon.email { background: #007AFF; } .n-icon.slack { background: #451531; }
.n-content h6 { margin: 0 0 6px 0; font-size: 1.1rem; font-weight: 700; color: #111; text-transform: none; letter-spacing: normal;}
.n-content p { margin: 0; font-size: 0.9rem; color: #666; line-height: 1.4; text-transform: none;}
.m-noti.highlight { border-left: none; }
.m-noti.highlight::before { content: ""; position: absolute; left: 0; top: 20px; bottom: 20px; width: 6px; background: #F76A0C; border-radius: 0 4px 4px 0; }
.n-action { margin-left: auto; align-self: center; font-size: 0.85rem; font-weight: 800; color: #F76A0C; background: #FFF0E6; padding: 8px 14px; border-radius: 6px; white-space: nowrap; }
.delayed-1 { animation: slideInUp 0.6s ease-out forwards; }
.delayed-2 { opacity: 0; animation: slideInUp 0.6s ease-out 1s forwards; }
@keyframes slideInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* 5. Terminal */
.mock-terminal { background: #1A1A1A; border: 1px solid #333; }
.term-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; font-family: 'JetBrains Mono', Courier, monospace; font-size: 0.75rem; height: 200px; font-weight: 500;}
.t-line { color: #A1A0AB; }
.t-line.success { color: #27C93F; } .t-line.warn { color: #FFBD2E; }
.t-line.delay-1 { opacity: 0; animation: appear 0.1s forwards 1s; }
.t-line.delay-2 { opacity: 0; animation: appear 0.1s forwards 2.5s; }
.t-line.delay-3 { opacity: 0; animation: appear 0.1s forwards 4s; }
.t-line.delay-4 { opacity: 0; animation: appear 0.1s forwards 4.2s; }
@keyframes appear { to { opacity: 1; } }
.cursor { animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- Premium Enterprise Dashboard & Tables --- */
.enterprise-app-shell {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #EAE8E1;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: left;
    margin-bottom: 20px;
}

.app-sidebar {
    width: 200px;
    background: #F8F7F4;
    border-right: 1px solid #EAE8E1;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
.sidebar-logo {
    padding: 25px 25px 35px 25px;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.sidebar-bottom {
    padding: 20px;
    border-top: 1px solid #EAE8E1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.avatar {
    width: 32px;
    height: 32px;
    background: #F76A0C;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Consolidated into main section */

.app-view-container {
    flex: 1;
    position: relative;
    padding: 0;
}

.app-view {
    display: none;
    padding: 10px 25px;
    animation: fadeIn 0.4s ease;
}

.app-view.active {
    display: block !important;
}

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

.app-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.app-table th {
    text-align: left;
    padding: 12px 0;
    font-size: 0.65rem;
    font-weight: 700;
    color: #8E8B86;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #F0F0F0;
}

.app-table td {
    padding: 15px 0;
    font-size: 0.85rem;
    color: #111;
    border-bottom: 1px solid #F9F9F9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.status-pill.green { background: #E6F6EF; color: #00A650; }
.status-pill.red { background: #FEEEEE; color: #FF4D4D; }
.status-pill.orange { background: #FFF4E6; color: #F76A0C; }
.status-pill.gray { background: #F3F4F6; color: #6B7280; }

.tag-pill {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-right: 4px;
}
.tag-pill.purple { background: #F3E8FF; color: #7E22CE; }
.tag-pill.blue { background: #DBEAFE; color: #1D4ED8; }
.tag-pill.green { background: #DCFCE7; color: #15803D; }
.tag-pill.orange { background: #FFEDD5; color: #9A3412; }

.table-btn {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #EEE;
    background: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.table-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    border-color: #DDD;
}

.table-btn.red { color: #FF4D4D; border-color: #FEEEEE; background: #FFF9F9; }
.table-btn.red:hover { background: #FEEEEE; border-color: #FFBABA; }

.table-btn.blue { color: #2348A6; border-color: #DBEAFE; background: #F5F9FF; }
.table-btn.blue:hover { background: #DBEAFE; border-color: #B2D7FF; }

.upload-pulse {
    font-size: 0.85rem;
    font-weight: 700;
    color: #F76A0C;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-pulse::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #F76A0C;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(0.9); opacity: 0; }
}

.link-blue { color: #2348A6; font-weight: 600; }
.abstract { color: #5E5C59; line-height: 1.4; }
.topbar-search {
    flex: 1;
    max-width: 400px;
    margin: 0 40px;
    position: relative;
}

.topbar-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #8E8B86;
}

.topbar-search input {
    width: 100%;
    padding: 8px 12px 8px 35px;
    background: #F8F7F4;
    border: 1px solid #EAE8E1;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #111;
}

.mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F76A0C;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mini-avatar.blue { background: #007AFF; }
.mini-avatar.purple { background: #7E22CE; }

.cat-pill {
    padding: 4px 8px;
    background: #F1F5F9;
    color: #475569;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid #E2E8F0;
}

.nav-icon { width: 18px; height: 18px; color: inherit; }
.table-icon { width: 16px; height: 16px; margin-right: 8px; vertical-align: middle; }
.ai-icon-svg { width: 60px; height: 60px; margin: 0 auto 20px auto; animation: float 3s ease-in-out infinite; }

.priority { font-weight: 700; }
.priority.high { color: #FF4D4D; }
.priority.med { color: #F76A0C; }
.priority.low { color: #6B7280; }

/* --- Futuristic AI Upload --- */
.futuristic-upload {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(247, 106, 12, 0.03) 0%, transparent 70%);
}

.scanner-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(247, 106, 12, 0.1);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

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

.upload-box {
    background: #FFFFFF;
    border: 1px solid #EAE8E1;
    border-radius: 20px;
    padding: 40px;
    width: 320px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    z-index: 10;
}

.ai-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.upload-box h4 { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 8px; }
.upload-box p { font-size: 0.85rem; color: #8E8B86; margin-bottom: 25px; }

.scanning-bar {
    width: 100%;
    height: 4px;
    background: #F3F4F6;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.bar-fill {
    height: 100%;
    width: 40%;
    background: #F76A0C;
    border-radius: 10px;
    animation: scan 2s linear infinite;
}

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

.scanning-status { font-size: 0.75rem; color: #111; font-weight: 500; }
.scanning-status b { color: #F76A0C; }

/* --- AI Extraction Animation --- */
.extraction-animation {
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.doc-preview {
    width: 120px;
    height: 160px;
    background: #FFF;
    border: 1px solid #EAE8E1;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.doc-line { height: 4px; width: 100%; background: #F3F4F6; border-radius: 2px; }
.doc-line.highlight { background: rgba(247, 106, 12, 0.2); width: 80%; }

.doc-preview::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: #F76A0C;
    box-shadow: 0 0 10px #F76A0C;
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine { 0% { top: 0; } 100% { top: 100%; } }

.extraction-stream {
    display: flex;
    gap: 15px;
    height: 30px;
}

.data-fragment {
    padding: 6px 12px;
    background: #F8F7F4;
    border: 1px solid #EAE8E1;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #F76A0C;
    opacity: 0;
    animation: fragmentPop 1.5s ease-in-out infinite;
}

.data-fragment.delay-1 { animation-delay: 0.5s; }
.data-fragment.delay-2 { animation-delay: 1s; }

@keyframes fragmentPop {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.extraction-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #111;
}

.pulse-icon { animation: float 2s infinite; }

.text-red { color: #FF4D4D; font-weight: 600; }

.global-badge { display: inline-block; padding: 6px 12px; background: rgba(247, 106, 12, 0.1); color: #F76A0C; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1.5rem; border: 1px solid rgba(247, 106, 12, 0.2); }

.n-body-wrapper { display: flex; flex-direction: column; flex: 1; }

/* --- Mobile Responsiveness Enhancements --- */
@media (max-width: 768px) {
    /* 1. Hero & Typography */
    h1 { font-size: 2.5rem !important; line-height: 1.15 !important; }
    .hero { padding: 6rem 1rem 3rem 1rem; }
    .title-large { font-size: 2rem !important; }
    .floating-pill { display: none !important; }
    .hero-subtitle { font-size: 1.05rem !important; padding: 0 1rem; }

    /* 2. Use Cases Stacking Deck */
    .stack-card {
        flex-direction: column !important;
        padding: 2.5rem 1.5rem !important;
        position: relative !important; /* Disables sticky layout for compact mobile flow */
        top: 0 !important;
        min-height: auto !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }
    .sc-content { max-width: 100% !important; text-align: center; }

    /* 3. High-Fidelity Mockups Fluidity */
    .mock-ui, .mock-doc-scan, .mock-notifications, .mock-vendor-card, .mock-dashboard, .mock-terminal {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .mock-doc-scan { height: 260px !important; }
    .mock-notifications { box-sizing: border-box; }
    .m-noti { flex-direction: row !important; padding: 16px !important; gap: 16px !important; align-items: flex-start !important; text-align: left !important; }
    .n-body-wrapper { align-items: flex-start !important; text-align: left !important; }
    .n-content { text-align: left !important; }
    .n-content h6, .n-content p { text-align: left !important; }
    .n-action { align-self: flex-start !important; margin-left: 0 !important; margin-top: 10px !important; font-size: 0.75rem !important; }
    .m-noti.highlight::before { left: 0 !important; top: 0 !important; bottom: 0 !important; height: 100% !important; border-radius: 0 !important; }
    
    /* 4. Bento Grids & Miscellaneous Sections */
    .ib-card { padding: 2rem 1.5rem !important; }
    .ib-val { font-size: 2.5rem !important; }
    .platform-tabs { flex-wrap: wrap !important; border-radius: 12px !important; padding: 0.5rem !important; gap: 0.5rem !important;}
    .tab-btn { flex: 1 1 45%; padding: 0.6rem !important; text-align: center; font-size: 0.9rem !important; border-radius: 8px !important; }
    
    .risk-banner { flex-direction: column !important; text-align: center !important; gap: 1rem !important; padding: 1.5rem !important; }
    .rb-title { font-size: 1.1rem !important; }
    
    /* (Re-declared earlier for 1000px tablet safety) */
}

/* --- LIGHT SOLUTION SECTION --- */
.light-solution-section {
    background-color: #FFFFFF;
    color: #111;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.light-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.ls-card {
    background: #F8F9FA;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ls-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: rgba(247, 106, 12, 0.3);
}

.ls-icon {
    width: 60px;
    height: 60px;
    background: rgba(247, 106, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.ls-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
}

.ls-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .light-solution-grid {
        grid-template-columns: 1fr;
    }
}

/* --- TEXT HIGHLIGHTS --- */
.hl-orange { color: var(--primary-color); }

.hl-gradient-orange {
    background: linear-gradient(90deg, #FF8C00, #F76A0C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hl-gradient-blue {
    background: linear-gradient(90deg, #5AC8FA, #0A84FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hl-gradient-purple {
    background: linear-gradient(90deg, #B18CFF, #6E41D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hl-gradient-green {
    background: linear-gradient(90deg, #69F0AE, #00C853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- IMAGE STYLES --- */
.stack-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.stack-illustration {
    width: 60%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* --- MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-container {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    box-shadow: 0 24px 48px rgba(0,0,0,0.15);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}
.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
}
.modal-close:hover {
    color: var(--text-primary);
}
.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.demo-form .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}
.demo-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.demo-form input, .demo-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D8D6CD;
    border-radius: 8px;
    background: #FDFDFD;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.2s ease;
}
.demo-form input:focus, .demo-form select:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(247, 106, 12, 0.1);
}
.success-message {
    padding: 2rem 1rem;
    text-align: center;
}
.success-icon {
    width: 60px;
    height: 60px;
    background: #00A650;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 12px rgba(0, 166, 80, 0.2);
}
.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}
.success-message p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}
