:root {
    --bg-main: #060211;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-red: rgba(180, 0, 0, 1);
    --accent-red-glow: rgba(180, 0, 0, 0.4);
    --accent-blue: rgba(0, 60, 200, 1);
    --accent-blue-glow: rgba(0, 60, 200, 0.4);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-bg-hover: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background: radial-gradient(circle at 15% 40%, rgba(138, 43, 226, 0.18), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(20, 60, 200, 0.18), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(180, 0, 50, 0.12), transparent 50%),
        var(--bg-main);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.5), rgba(20, 60, 200, 0.5));
    border-radius: 6px;
    border: 3px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.8), rgba(20, 60, 200, 0.8));
}

/* Star Background */
.stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-repeat: repeat;
    animation: starScroll linear infinite;
    z-index: -2;
}

.stars.small {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><circle cx='10' cy='20' r='1' fill='white'/><circle cx='200' cy='300' r='1' fill='white'/><circle cx='400' cy='100' r='1' fill='white'/><circle cx='600' cy='500' r='1' fill='white'/><circle cx='700' cy='200' r='1' fill='white'/><circle cx='150' cy='600' r='1' fill='white'/><circle cx='350' cy='700' r='1' fill='white'/></svg>");
    animation-duration: 40s;
    opacity: 0.9;
}

.stars.medium {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><circle cx='100' cy='200' r='2' fill='white'/><circle cx='500' cy='600' r='2' fill='white'/><circle cx='700' cy='300' r='2' fill='white'/><circle cx='300' cy='100' r='2' fill='white'/></svg>");
    animation-duration: 80s;
    opacity: 0.6;
}

.stars.large {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><circle cx='200' cy='400' r='3' fill='white'/><circle cx='600' cy='150' r='3' fill='white'/></svg>");
    animation-duration: 120s;
    opacity: 0.4;
}

@keyframes starScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 -800px;
    }
}

/* Cursor Glow Element */
#cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

/* Scroll Progress */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1000;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    width: 0%;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4vw;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 9, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo .dot {
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.glow-effect:hover {
    box-shadow: 0 0 30px var(--accent-red-glow), 0 0 50px var(--accent-blue-glow);
}

/* Typography & Wrappers */
.animated-brand-title {
    display: block;
    font-size: clamp(40px, 6vw, 85px);
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -3px;
    margin-bottom: 5px;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, rgba(150, 160, 200, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
    opacity: 1;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(39, 201, 63, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0);
    }
}

.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 4vw;
}

.section-divider {
    border-top: 1px solid var(--card-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 20%);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #71717a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle,
.section-content {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 50px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 150px;
}

.badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6vw, 85px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: white;
}

.gradient-text.red-to-blue {
    background: linear-gradient(90deg, #ff4b4b, #4b83ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Terminal Mockup */
.terminal-mockup {
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 100px var(--accent-red-glow);
    text-align: left;
    backdrop-filter: blur(15px);
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
}

.terminal-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.terminal-header .dots {
    display: flex;
    gap: 8px;
}

.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-header .dot.r {
    background: #ff5f56;
}

.terminal-header .dot.y {
    background: #ffbd2e;
}

.terminal-header .dot.g {
    background: #27c93f;
}

.terminal-header .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 25px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.8;
}

.terminal-body p {
    margin-bottom: 5px;
    opacity: 0;
    animation: typeReveal 0.1s forwards;
}

.terminal-body p:nth-child(1) {
    animation-delay: 0.5s;
    color: var(--text-secondary);
}

.terminal-body p:nth-child(2) {
    animation-delay: 1.5s;
}

.terminal-body p:nth-child(3) {
    animation-delay: 2.0s;
}

.terminal-body p:nth-child(4) {
    animation-delay: 3.0s;
}

.terminal-body p:nth-child(5) {
    animation-delay: 3.5s;
    color: var(--text-secondary);
}

.terminal-body p:nth-child(6) {
    animation-delay: 4.0s;
}

.terminal-body p:nth-child(7) {
    animation-delay: 4.3s;
}

.terminal-body p:nth-child(8) {
    animation-delay: 5.5s;
}

.terminal-body p:nth-child(9) {
    animation-delay: 6.0s;
}

.terminal-body p:nth-child(10) {
    animation-delay: 7.0s;
}

.terminal-body .success {
    color: #27c93f;
}

.terminal-body .warning {
    color: #ffbd2e;
}

.terminal-body .cursor {
    animation: blink 1s infinite;
}

@keyframes typeReveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.glass-card:hover {
    background: var(--card-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 25px;
    transform: translateZ(20px);
}

.red-glow {
    background: rgba(180, 0, 0, 0.1);
    border-color: rgba(180, 0, 0, 0.3);
}

.blue-glow {
    background: rgba(0, 60, 200, 0.1);
    border-color: rgba(0, 60, 200, 0.3);
}

.purple-glow {
    background: rgba(120, 0, 200, 0.1);
    border-color: rgba(120, 0, 200, 0.3);
}

.glass-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    transform: translateZ(15px);
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 15px;
    transform: translateZ(10px);
}

/* Flex Split Areas */
.flex-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.flex-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--card-border);
    transition: border-color 0.3s;
}

.feature-list li:hover {
    border-left-color: var(--accent-blue);
}

.feature-list strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: white;
}

.feature-list span {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Architecture Diagram custom pure CSS mockup */
.architecture-diagram {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
}

.arch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.arch-node {
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gateway-node {
    width: 100%;
    max-width: 300px;
    padding: 20px;
    font-weight: 600;
    font-size: 15px;
}

.microservices-row {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.service-node {
    flex: 1;
    max-width: 150px;
    font-size: 11px;
}

.eureka-box {
    width: 100%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.arch-arrow {
    color: var(--text-secondary);
    font-size: 20px;
}

.arch-paths {
    width: 100%;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
}

.path-center {
    width: 2px;
    height: 100%;
    background: var(--card-border);
}

.path-left,
.path-right {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    border-top: 2px solid var(--card-border);
    border-left: 2px solid var(--card-border);
    border-right: 2px solid var(--card-border);
}

.path-left {
    left: 10%;
    border-right: none;
    border-bottom: none;
}

.path-right {
    right: 10%;
    border-left: none;
    border-bottom: none;
}

.glow-red {
    box-shadow: 0 0 20px var(--accent-red-glow), inset 0 0 10px rgba(180, 0, 0, 0.2);
    border-color: rgba(180, 0, 0, 0.5);
}

.glow-blue {
    box-shadow: 0 0 20px var(--accent-blue-glow), inset 0 0 10px rgba(0, 60, 200, 0.2);
    border-color: rgba(0, 60, 200, 0.5);
}


/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 20px;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.bento-item.span-2 {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.bento-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.json-mockup {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: #a6accd;
    min-width: 250px;
}

.json-mockup code {
    color: #82aaff;
}

.perf-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 150px;
    width: 250px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 5px;
}

.graph-bar {
    width: 20px;
    border-radius: 4px 4px 0 0;
}

.graph-bar.red {
    background: linear-gradient(0deg, #b40000, #ff4b4b);
}

.graph-bar.blue {
    background: linear-gradient(0deg, #003cc8, #4b83ff);
}

.graph-bar.white {
    background: rgba(255, 255, 255, 0.2);
}

/* Code Editor */
.code-editor {
    flex: 1;
    background: #0f111a;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.editor-header {
    background: #1a1c23;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editor-header .dots {
    padding: 0 20px;
    display: flex;
    gap: 6px;
}

.editor-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.5;
}

.editor-header .tabs {
    display: flex;
}

.editor-header .tab {
    padding: 12px 20px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--text-secondary);
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.editor-header .tab.active {
    background: #0f111a;
    color: white;
    border-top: 2px solid var(--accent-blue);
}

.editor-code {
    padding: 25px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.7;
    color: #a6accd;
    overflow-x: auto;
}

.editor-code .keyword {
    color: #c792ea;
}

.editor-code .property {
    color: #82aaff;
}

.editor-code .comment {
    color: #676e95;
    font-style: italic;
}

.feature-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Workflow Section */
.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    text-align: left;
    backdrop-filter: blur(10px);
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: white;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    align-self: center;
}

/* Use Cases Section */
.use-case-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.uc-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.uc-icon {
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    flex-shrink: 0;
}

.uc-item h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.uc-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.use-case-visual {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.metric-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01);
}

.metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.faq-item h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.5), rgba(20, 60, 200, 0.5));
    border: 2px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-info h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer */
footer {
    background: rgba(5, 5, 9, 0.7);
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.footer-col .logo {
    margin-bottom: 20px;
    font-size: 28px;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent-blue);
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 25px 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* Animations & Interactives */
.fade-in {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-only {
    display: none;
}

@media (max-width: 900px) {

    .flex-split,
    .flex-split.reverse {
        flex-direction: column;
        gap: 50px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.span-2 {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links,
    .nav-btns {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-block !important;
    }

    .hero-title {
        font-size: 40px;
    }



    /* Footer Fixes for mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col p {
        margin: 0 auto 20px auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* New sections fixes for mobile */
    .workflow-steps {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, transparent, var(--card-border), transparent);
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .use-case-visual {
        padding: 20px;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}